/* ── Salon Detail Page Styles ───────────────────────────────────────── */

/* Services scroll */
.services-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.services-scroll::-webkit-scrollbar {
    display: none;
}
.service-card {
    min-height: 210px;
}

/* ── Services Section ───────────────────────────────────────────────── */
.svc-section { background: #fff; }
.svc-section-inner { padding: 3rem 0 3.5rem; }
.sec-accent-bar {
    width: 4px; height: 28px;
    background: linear-gradient(180deg,#FF6B35,#e8450a);
    border-radius: 3px;
    flex-shrink: 0;
}
.svc-filter { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:1.5rem; }
.svc-filter-btn {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}
.svc-filter-btn:hover { border-color:#FF6B35; color:#FF6B35; background:#fff4ef; }
.svc-filter-btn.active {
    background: linear-gradient(135deg,#FF6B35,#e8450a);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(255,107,53,.3);
}

/* Scroll track */
.svc-track-wrap { position:relative; }
.svc-track {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.svc-track::-webkit-scrollbar { display:none; }

/* Fade edges */
.svc-track-wrap::before,
.svc-track-wrap::after {
    content:'';
    position:absolute;
    top:0; bottom:12px;
    width:32px;
    pointer-events:none;
    z-index:2;
}
.svc-track-wrap::before { left:0;  background:linear-gradient(to right,#fff,transparent); }
.svc-track-wrap::after  { right:0; background:linear-gradient(to left,#fff,transparent); }

/* Individual service card */
.svc-card {
    flex-shrink: 0;
    width: 268px;
    border-radius: 16px;
    border: 1.5px solid #f1f5f9;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255,107,53,0.13);
    border-color: rgba(255,107,53,0.3);
}

/* Image strip */
.svc-img-wrap {
    width:100%; height:130px;
    overflow:hidden; position:relative;
    background: linear-gradient(135deg,#fff4ef,#ffe8df);
}
.svc-img-wrap img {
    width:100%; height:100%; object-fit:cover;
    transition: transform .35s ease;
}
.svc-card:hover .svc-img-wrap img { transform:scale(1.06); }
.svc-img-placeholder {
    width:100%; height:100%;
    display:flex; align-items:center; justify-content:center;
    font-size:2.2rem;
    color: #FF6B35;
    opacity:0.55;
}

/* Category chip on image */
.svc-cat-chip {
    position:absolute; top:10px; left:10px;
    background:rgba(255,255,255,0.9);
    border-radius:50px;
    padding:3px 10px;
    font-size:0.7rem;
    font-weight:600;
    color:#374151;
    backdrop-filter:blur(4px);
}

/* Card body */
.svc-body { padding:1rem 1rem 0.85rem; flex:1; display:flex; flex-direction:column; }

.svc-name {
    font-size:0.95rem;
    font-weight:700;
    color:#1a1a2e;
    margin-bottom:0.35rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.svc-price {
    font-size:1.25rem;
    font-weight:800;
    background: linear-gradient(135deg,#FF6B35,#e8450a);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    line-height:1;
    margin-bottom:0.65rem;
}

.svc-meta {
    display:flex; align-items:center; gap:6px;
    font-size:0.76rem;
    color:#64748b;
    margin-bottom:0.9rem;
}
.svc-meta-pill {
    display:inline-flex; align-items:center; gap:4px;
    background:#f8fafc;
    border:1px solid #e9ecef;
    border-radius:50px;
    padding:3px 9px;
    font-size:0.74rem;
    color:#64748b;
}

/* Footer buttons */
.svc-footer { margin-top:auto; display:flex; flex-direction:column; gap:6px; }

.svc-btn-book {
    background: linear-gradient(135deg,#FF6B35,#e8450a);
    border:none; border-radius:10px;
    padding:0.5rem 1rem;
    font-size:0.82rem;
    font-weight:700;
    color:#fff;
    text-align:center;
    cursor:pointer;
    transition:transform .15s, box-shadow .15s;
    box-shadow:0 3px 10px rgba(255,107,53,.25);
}
.svc-btn-book:hover { transform:translateY(-1px); box-shadow:0 6px 18px rgba(255,107,53,.38); color:#fff; }

.svc-btn-demo {
    background:#f8f9fa;
    border:1.5px solid #e2e8f0;
    border-radius:10px;
    padding:0.45rem 1rem;
    font-size:0.78rem;
    font-weight:600;
    color:#374151;
    text-align:center;
    cursor:pointer;
    transition:background .15s, border-color .15s, color .15s;
    text-decoration:none;
}
.svc-btn-demo:hover { background:#e8f5e9; border-color:#4caf50; color:#2e7d32; }

.svc-btn-disabled {
    background:#f1f5f9;
    border:1.5px solid #e2e8f0;
    border-radius:10px;
    padding:0.5rem 1rem;
    font-size:0.82rem;
    font-weight:600;
    color:#94a3b8;
    text-align:center;
    cursor:not-allowed;
}

/* Scroll nav buttons */
.svc-nav-btn {
    width:36px; height:36px; border-radius:50%;
    border:1.5px solid #e2e8f0;
    background:#fff;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    color:#64748b;
    transition:all .18s;
    box-shadow:0 2px 8px rgba(0,0,0,0.07);
}
.svc-nav-btn:hover { border-color:#FF6B35; color:#FF6B35; background:#fff4ef; }

/* Empty state */
.svc-empty {
    text-align:center; padding:3.5rem 1rem;
    background:#fafafa; border-radius:16px;
    border:2px dashed #e9ecef;
}

/* ── Opening Hours Section ──────────────────────────────────────────── */
.oh-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.oh-section::before {
    content:''; position:absolute; top:-80px; right:-80px;
    width:280px; height:280px; border-radius:50%;
    background:rgba(255,107,53,0.04);
    pointer-events:none;
}
.oh-section::after {
    content:''; position:absolute; bottom:-60px; left:-40px;
    width:200px; height:200px; border-radius:50%;
    background:rgba(255,107,53,0.03);
    pointer-events:none;
}

.oh-title { color:#1a1a2e; font-size:1.35rem; font-weight:700; margin:0; }
.oh-subtitle { color:#6b7280; font-size:0.82rem; margin-top:2px; }

.oh-live-dot {
    width:10px; height:10px; border-radius:50%;
    flex-shrink:0;
    animation: ohPulse 1.8s ease-in-out infinite;
}
.oh-live-dot.open  { background:#16a34a; box-shadow:0 0 0 0 rgba(22,163,74,.5); }
.oh-live-dot.closed{ background:#dc2626; box-shadow:0 0 0 0 rgba(220,38,38,.5); animation:none; }
@keyframes ohPulse {
    0%   { box-shadow:0 0 0 0 rgba(22,163,74,.5); }
    70%  { box-shadow:0 0 0 8px rgba(22,163,74,0); }
    100% { box-shadow:0 0 0 0 rgba(22,163,74,0); }
}

.oh-grid {
    display:grid;
    grid-template-columns: repeat(7,1fr);
    gap:8px;
}
@media(max-width:768px){
    .oh-grid { grid-template-columns: repeat(4,1fr); }
}
@media(max-width:480px){
    .oh-grid { grid-template-columns: repeat(3,1fr); }
}

.oh-day-card {
    border-radius:14px;
    border:1.5px solid #e2e8f0;
    background:#fff;
    padding:0.85rem 0.5rem 0.7rem;
    text-align:center;
    transition:transform .18s, box-shadow .18s;
    cursor:default;
    box-shadow:0 1px 4px rgba(0,0,0,0.05);
}
.oh-day-card:hover { transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,0.09); }
.oh-day-card.today {
    border-color:rgba(255,107,53,0.45);
    background:linear-gradient(135deg,#fff4ef,#fff8f5);
    box-shadow:0 4px 14px rgba(255,107,53,0.15);
}
.oh-day-card.closed-day { opacity:0.5; }

.oh-day-abbr {
    font-size:0.7rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.5px;
    color:#94a3b8;
    margin-bottom:4px;
}
.oh-day-card.today .oh-day-abbr { color:#FF6B35; }

.oh-day-dot {
    width:7px; height:7px; border-radius:50%;
    margin:0 auto 6px;
}
.oh-day-dot.open-dot  { background:#16a34a; }
.oh-day-dot.closed-dot{ background:#cbd5e1; }
.oh-day-card.today .oh-day-dot.open-dot { background:#FF6B35; }

.oh-day-time {
    font-size:0.6rem; color:#475569;
    line-height:1.3;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.oh-day-card.closed-day .oh-day-time { color:#cbd5e1; }
.oh-today-badge {
    display:inline-block;
    background:linear-gradient(135deg,#FF6B35,#e8450a);
    border-radius:4px; padding:1px 6px;
    font-size:0.58rem; font-weight:700; color:#fff;
    margin-top:4px; letter-spacing:0.3px;
}

.oh-status-card {
    background:#fff;
    border:1.5px solid #e2e8f0;
    border-radius:18px;
    padding:1.5rem;
    height:100%;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
}
.oh-status-label {
    font-size:0.72rem; font-weight:600; letter-spacing:0.5px;
    text-transform:uppercase; color:#94a3b8;
    margin-bottom:0.5rem;
}
.oh-status-pill {
    display:inline-flex; align-items:center; gap:8px;
    border-radius:50px;
    padding:7px 18px;
    font-size:0.88rem; font-weight:700;
    margin-bottom:1rem;
}
.oh-status-pill.open-pill  { background:#dcfce7; color:#15803d; border:1px solid #bbf7d0; }
.oh-status-pill.closed-pill{ background:#fee2e2; color:#b91c1c; border:1px solid #fecaca; }

.oh-today-hours {
    background:#f8fafc;
    border:1px solid #e9ecef;
    border-radius:12px; padding:0.9rem 1rem;
    margin-bottom:1rem;
}
.oh-today-hours-label { font-size:0.72rem; color:#94a3b8; font-weight:600; text-transform:uppercase; letter-spacing:0.4px; margin-bottom:3px; }
.oh-today-hours-val   { font-size:1.05rem; font-weight:700; color:#1a1a2e; }

.oh-stat-row { display:flex; gap:8px; }
.oh-stat-chip {
    flex:1; text-align:center;
    background:#f8fafc;
    border:1px solid #e9ecef;
    border-radius:10px; padding:0.6rem 0.5rem;
}
.oh-stat-chip .val { font-size:1.1rem; font-weight:800; color:#FF6B35; }
.oh-stat-chip .lbl { font-size:0.65rem; color:#94a3b8; font-weight:500; }

.oh-book-btn {
    display:block; width:100%;
    margin-top:1.1rem;
    background:linear-gradient(135deg,#FF6B35,#e8450a);
    border:none; border-radius:12px;
    padding:0.72rem 1rem;
    font-size:0.88rem; font-weight:700; color:#fff;
    text-align:center; cursor:pointer;
    transition:transform .15s, box-shadow .15s;
    box-shadow:0 4px 14px rgba(255,107,53,0.35);
}
.oh-book-btn:hover { transform:translateY(-1px); box-shadow:0 7px 20px rgba(255,107,53,0.45); }
.oh-notify-btn {
    display:block; width:100%;
    margin-top:1.1rem;
    background:linear-gradient(135deg,#f59e0b,#d97706);
    border:none; border-radius:12px;
    padding:0.72rem 1rem;
    font-size:0.88rem; font-weight:700; color:#fff;
    text-align:center; cursor:pointer;
    transition:transform .15s, box-shadow .15s;
    box-shadow:0 4px 14px rgba(245,158,11,0.3);
}
.oh-notify-btn:hover { transform:translateY(-1px); box-shadow:0 7px 20px rgba(245,158,11,0.4); }
.oh-closed-btn {
    display:block; width:100%;
    margin-top:1.1rem;
    background:#f1f5f9;
    border:1.5px solid #e2e8f0;
    border-radius:12px;
    padding:0.72rem 1rem;
    font-size:0.88rem; font-weight:600;
    color:#94a3b8;
    text-align:center; cursor:not-allowed;
}

/* ── Reviews Section ────────────────────────────────────────────────── */
.rv-count-badge {
    background: #f1f5f9; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 3px 12px;
    font-size: .78rem; color: #64748b; font-weight: 600;
}
.rv-arrow-group { display: flex; gap: 6px; }
.rv-arrow-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid #e2e8f0; background: #fff;
    color: #374151; font-size: .8rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .15s;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.rv-arrow-btn:hover { background: #0f172a; border-color: #0f172a; color: #fff; }
.rv-arrow-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }

.rv-slider-wrap { position: relative; }

.rv-outer {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
}
.rv-outer::-webkit-scrollbar { display: none; }

.rv-full-col {
    flex-shrink: 0;
    width: 100%;
}

.rv-card {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: calc((100% - 36px) / 3);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s;
}
.rv-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.09);
    transform: translateY(-3px);
}
@media (max-width: 900px) {
    .rv-card { width: calc((100% - 18px) / 2); }
}
@media (max-width: 540px) {
    .rv-card { width: 100%; }
}

.rv-card-top {
    display: flex; align-items: flex-start; gap: 11px;
}
.rv-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.rv-avatar.c0 { background: linear-gradient(135deg,#667eea,#764ba2); }
.rv-avatar.c1 { background: linear-gradient(135deg,#0ea5e9,#2563eb); }
.rv-avatar.c2 { background: linear-gradient(135deg,#f59e0b,#d97706); }
.rv-avatar.c3 { background: linear-gradient(135deg,#10b981,#059669); }
.rv-avatar.c4 { background: linear-gradient(135deg,#ef4444,#dc2626); }
.rv-avatar.c5 { background: linear-gradient(135deg,#8b5cf6,#7c3aed); }
.rv-avatar.c6 { background: linear-gradient(135deg,#06b6d4,#0891b2); }
.rv-avatar.c7 { background: linear-gradient(135deg,#f97316,#ea580c); }

.rv-user-name { font-size: .88rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.rv-date      { font-size: .72rem; color: #94a3b8; margin-top: 2px; }
.rv-stars     { margin-left: auto; flex-shrink: 0; display: flex; gap: 1px; }
.rv-stars i   { font-size: .72rem; }

.rv-quote {
    font-size: 1.6rem; color: #f1f5f9; line-height: 1;
    font-family: Georgia, serif; margin-bottom: -6px;
}

.rv-comment {
    font-size: .85rem; color: #374151; line-height: 1.6; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rv-footer {
    display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
    padding-top: 10px; border-top: 1px solid #f1f5f9; margin-top: auto;
}
.rv-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 20px; font-size: .71rem; font-weight: 600;
}
.rv-chip.service  { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.rv-chip.employee { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.rv-view-btn {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 20px; font-size: .71rem; font-weight: 600;
    background: #fff; border: 1px solid #e2e8f0; color: #475569; text-decoration: none;
    transition: border-color .15s, color .15s;
}
.rv-view-btn:hover { border-color: #2563eb; color: #2563eb; }

.rv-loading {
    text-align: center; padding: 48px 20px; color: #9ca3af;
}
.rv-spinner {
    width: 34px; height: 34px;
    border: 3px solid #f1f5f9; border-top-color: #f59e0b;
    border-radius: 50%; animation: rv-spin .7s linear infinite;
    margin: 0 auto 12px;
}
@keyframes rv-spin { to { transform: rotate(360deg); } }
.rv-empty { text-align: center; padding: 48px 20px; color: #94a3b8; }
.rv-empty i { font-size: 2rem; margin-bottom: 10px; display: block; color: #d1d5db; }

.rv-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 18px; flex-wrap: wrap;
}
.rv-dot {
    width: 8px; height: 8px; border-radius: 99px;
    background: #e2e8f0; border: none; padding: 0; cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.rv-dot.active { width: 22px; background: #f59e0b; }

/* ── Notify Me Modal — Light Theme ──────────────────────────────────── */
#notifyMeModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    overflow: visible;
}
#notifyMeModal .nm-header {
    background: linear-gradient(135deg, #fff8f5 0%, #fff4ef 55%, #ffe8df 100%);
    border-bottom: 1px solid #ffe0d0;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
#notifyMeModal .nm-header::before {
    content:''; position:absolute; top:-40px; right:-40px;
    width:130px; height:130px; border-radius:50%;
    background:rgba(255,107,53,0.08);
}
#notifyMeModal .nm-header::after {
    content:''; position:absolute; bottom:-30px; left:-20px;
    width:100px; height:100px; border-radius:50%;
    background:rgba(255,107,53,0.06);
}
#notifyMeModal .nm-bell-wrap {
    width:60px; height:60px; border-radius:50%;
    background:rgba(255,107,53,0.12);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 0.85rem;
    animation:nmBellRing 2.5s ease-in-out infinite;
}
@keyframes nmBellRing {
    0%,100%{transform:rotate(0deg)}
    10%{transform:rotate(-18deg)} 20%{transform:rotate(18deg)}
    30%{transform:rotate(-10deg)} 40%{transform:rotate(10deg)}
    50%{transform:rotate(0deg)}
}
#notifyMeModal .nm-salon-chip {
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(255,107,53,0.1);
    border:1px solid rgba(255,107,53,0.25);
    border-radius:50px; padding:4px 14px;
    font-size:0.78rem; color:#e8450a; margin-top:0.5rem;
}
/* body */
#notifyMeModal .modal-body { border-radius:0 0 20px 20px; background:#fff; }
/* Fields */
#notifyMeModal .nm-field { margin-bottom:1.1rem; }
#notifyMeModal .nm-field label {
    font-size:0.78rem; font-weight:600; color:#555;
    margin-bottom:5px; display:flex; align-items:center; gap:5px;
}
#notifyMeModal .nm-icon {
    width:22px; height:22px;
    background:linear-gradient(135deg,#FF6B35,#e8450a);
    border-radius:6px; display:inline-flex;
    align-items:center; justify-content:center;
    color:#fff; font-size:0.62rem; flex-shrink:0;
}
#notifyMeModal .nm-ctrl {
    width:100%; border:1.5px solid #e2e8f0; border-radius:10px;
    padding:0.6rem 0.85rem; font-size:0.9rem; color:#1a1a2e;
    background:#f8fafc; outline:none;
    transition:border-color .2s, box-shadow .2s, background .2s;
}
#notifyMeModal .nm-ctrl:focus {
    border-color:#FF6B35;
    box-shadow:0 0 0 3px rgba(255,107,53,0.12);
    background:#fff;
}
#notifyMeModal .nm-ctrl.is-invalid {
    border-color:#ef4444;
    box-shadow:0 0 0 3px rgba(239,68,68,0.1);
}
#notifyMeModal .nm-err {
    font-size:0.74rem; color:#ef4444; margin-top:3px; display:none;
}
#notifyMeModal .nm-err.show { display:block; }

/* In-flow searchable service picker */
#notifyMeModal .nm-picker-trigger {
    width:100%; border:1.5px solid #e2e8f0; border-radius:10px;
    padding:0.6rem 0.85rem; font-size:0.9rem;
    background:#f8fafc; cursor:pointer;
    display:flex; align-items:center; justify-content:space-between;
    user-select:none; transition:border-color .2s, box-shadow .2s, background .2s;
    color:#9ca3af;
}
#notifyMeModal .nm-picker-trigger.has-value { color:#1a1a2e; }
#notifyMeModal .nm-picker-trigger.open,
#notifyMeModal .nm-picker-trigger:focus {
    border-color:#FF6B35;
    box-shadow:0 0 0 3px rgba(255,107,53,0.12);
    background:#fff; outline:none;
}
#notifyMeModal .nm-picker-trigger .nm-arrow {
    font-size:0.75rem; color:#9ca3af; transition:transform .2s;
}
#notifyMeModal .nm-picker-trigger.open .nm-arrow { transform:rotate(180deg); color:#FF6B35; }

#notifyMeModal .nm-panel {
    display:none; margin-top:4px;
    border:1.5px solid #e9ecef; border-radius:10px;
    overflow:hidden; background:#fff;
    box-shadow:0 4px 16px rgba(0,0,0,0.08);
}
#notifyMeModal .nm-panel.open { display:block; }

#notifyMeModal .nm-search-box {
    display:flex; align-items:center; gap:8px;
    padding:8px 10px; border-bottom:1px solid #f1f5f9;
    background:#fafafa;
}
#notifyMeModal .nm-search-box i { color:#adb5bd; font-size:0.8rem; flex-shrink:0; }
#notifyMeModal .nm-search-box input {
    flex:1; border:none; outline:none;
    font-size:0.84rem; background:transparent; color:#333;
}
#notifyMeModal .nm-search-box input::placeholder { color:#adb5bd; }

#notifyMeModal .nm-list {
    max-height:180px; overflow-y:auto;
}
#notifyMeModal .nm-list::-webkit-scrollbar { width:4px; }
#notifyMeModal .nm-list::-webkit-scrollbar-thumb { background:#e9ecef; border-radius:4px; }

#notifyMeModal .nm-opt {
    padding:9px 14px; font-size:0.86rem;
    display:flex; align-items:center; gap:8px;
    cursor:pointer; color:#374151;
    border-left:3px solid transparent;
    transition:background .1s, color .1s;
}
#notifyMeModal .nm-opt:hover { background:#fff4ef; color:#FF6B35; border-left-color:#FF6B35; }
#notifyMeModal .nm-opt.selected { background:#fff4ef; color:#FF6B35; font-weight:600; border-left-color:#FF6B35; }
#notifyMeModal .nm-opt .nm-dot {
    width:7px; height:7px; border-radius:50%;
    background:#dee2e6; flex-shrink:0; transition:background .1s;
}
#notifyMeModal .nm-opt:hover .nm-dot,
#notifyMeModal .nm-opt.selected .nm-dot { background:#FF6B35; }

#notifyMeModal .nm-nores {
    padding:14px; text-align:center;
    font-size:0.82rem; color:#adb5bd; display:none;
}

/* Submit */
#notifyMeModal .nm-submit {
    background:linear-gradient(135deg,#FF6B35 0%,#e8450a 100%);
    border:none; border-radius:12px; padding:0.78rem;
    font-size:0.95rem; font-weight:700; color:#fff;
    width:100%; letter-spacing:0.3px;
    box-shadow:0 4px 15px rgba(255,107,53,0.35);
    transition:transform .15s, box-shadow .15s, opacity .15s;
}
#notifyMeModal .nm-submit:hover:not(:disabled) {
    transform:translateY(-1px); box-shadow:0 7px 22px rgba(255,107,53,0.45);
}
#notifyMeModal .nm-submit:active:not(:disabled) { transform:translateY(0); }
#notifyMeModal .nm-submit:disabled { opacity:0.7; cursor:not-allowed; }

/* Success */
#notifyMeModal .nm-success {
    text-align:center; padding:2.5rem 1rem 1.5rem; display:none;
}
#notifyMeModal .nm-tick {
    width:72px; height:72px;
    background:linear-gradient(135deg,#22c55e,#16a34a);
    border-radius:50%; display:flex;
    align-items:center; justify-content:center;
    margin:0 auto 1rem;
    animation:nmPop .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes nmPop { 0%{transform:scale(0)} 100%{transform:scale(1)} }

/* Alert */
#notifyMeModal .nm-alert {
    border-radius:10px; border:none; font-size:0.82rem;
    padding:0.6rem 0.9rem; margin-bottom:1rem;
    display:none; align-items:center; gap:7px;
}
#notifyMeModal .nm-alert.show { display:flex; }
#notifyMeModal .nm-alert.error { background:#fef2f2; color:#b91c1c; }

/* ── Closed Salon Grayscale Styles ──────────────────────────────────── */
.salon-closed .salon-images-grayscale {
    position: relative;
}
.salon-closed .salon-images-grayscale .carousel-inner,
.salon-closed .salon-images-grayscale .gallery-thumb,
.salon-closed .salon-images-grayscale .salon-pub-thumb,
.salon-closed .salon-images-grayscale video,
.salon-closed .salon-images-grayscale img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.salon-pub-thumb:hover { transform: scale(1.08); }

.sg-thumb:hover { opacity: 0.85 !important; border-color: rgba(13,110,253,0.5) !important; }
.sg-thumb-grid:hover { border-color: rgba(13,110,253,0.5) !important; }
#sgThumbStrip::-webkit-scrollbar { width: 4px; }
#sgThumbStrip::-webkit-scrollbar-track { background: #1c1c1c; }
#sgThumbStrip::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }

.salon-closed .salon-images-grayscale:hover .carousel-inner,
.salon-closed .salon-images-grayscale:hover .gallery-thumb,
.salon-closed .salon-images-grayscale:hover video {
    filter: grayscale(50%);
    opacity: 0.85;
}

.closed-banner {
    animation: fadeInDown 0.5s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.closed-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.closed-badge {
    animation: pulse 2s infinite;
}

.salon-closed .service-card-horizontal .card {
    filter: grayscale(30%);
    opacity: 0.8;
}
.salon-closed .service-card-horizontal .card:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.salon-closed .employee-card-horizontal .card {
    filter: grayscale(30%);
    opacity: 0.8;
}
.salon-closed .employee-card-horizontal .card:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.salon-closed .btn-primary:not(.btn-sm) {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    border-color: #6c757d !important;
}
.salon-closed .btn-primary:not(.btn-sm):hover {
    background: linear-gradient(135deg, #FF6B35 0%, #e55a2b 100%) !important;
    border-color: #FF6B35 !important;
}

.employee-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
}
.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.employee-avatar img {
    transition: transform 0.3s ease;
}
.employee-card:hover .employee-avatar img {
    transform: scale(1.05);
}

.verified-badge {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bg-primary-subtle {
    background-color: rgba(255, 107, 53, 0.1) !important;
}
.text-primary {
    color: #FF6B35 !important;
}
.btn-primary {
    background-color: #FF6B35;
    border-color: #FF6B35;
}
.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}
.btn-outline-primary {
    color: #FF6B35;
    border-color: #FF6B35;
}
.btn-outline-primary:hover {
    background-color: #FF6B35;
    border-color: #FF6B35;
}

.employee-scroll-container {
    position: relative;
}
.employee-scroll-container .d-flex::-webkit-scrollbar {
    display: none;
}
.employee-scroll-container .d-flex {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.employee-card-horizontal .card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}
.employee-card-horizontal .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

.services-scroll-container {
    position: relative;
}
.services-scroll-container .d-flex::-webkit-scrollbar {
    display: none;
}
.services-scroll-container .d-flex {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.service-card-horizontal .card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}
.service-card-horizontal .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}
