/* =====================================================
   BIZ PAGE — DARK SHOWCASE + LIGHT BOOKING MODAL
   Complete redesign: DIKIDI-style business profile
   ===================================================== */

/* === FORCE DARK THEME (override components.css light) === */
.biz-page {
    background: #0f0c29 !important;
    color: #e2e8f0 !important;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
}
:root[data-theme="light"] body.biz-page {
    background: #0f0c29 !important;
    color: #e2e8f0 !important;
}
:root[data-theme="light"] body.biz-page .showcase,
:root[data-theme="light"] body.biz-page .biz-section {
    background: transparent !important;
    color: #e2e8f0 !important;
}

/* === ANIMATIONS === */
@keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
@keyframes modalSlideDown {
    from { transform: translateY(0); }
    to { transform: translateY(100%); }
}
@keyframes bizFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bizSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes bizSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}
@keyframes bizScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes bizBounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes bizConfetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-120px) rotate(720deg); opacity: 0; }
}
@keyframes bizPulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes bizShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes rippleExpand {
    to { transform: scale(4); opacity: 0; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === BREADCRUMB === */
.biz-breadcrumb {
    padding: 12px 16px;
    font-size: 13px;
    max-width: 640px;
    margin: 0 auto;
}
.biz-breadcrumb a {
    color: #6C5CE7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
}
.biz-breadcrumb a:hover { color: #a29bfe; }
.biz-breadcrumb .bc-sep {
    margin: 0 8px;
    opacity: 0.4;
    color: #e2e8f0;
}
.biz-breadcrumb .bc-cat {
    color: #a29bfe;
    text-decoration: none;
}

/* === SHOWCASE CONTAINER === */
.showcase {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px 120px;
}

/* === SECTION LABEL (reusable) === */
.biz-section-label {
    color: #a29bfe;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

/* === HERO === */
.biz-hero {
    background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(162,155,254,0.08));
    border-radius: 20px;
    padding: 32px 20px 28px;
    text-align: center;
    margin-bottom: 12px;
    border: 1px solid rgba(108,92,231,0.15);
    animation: bizFadeUp 0.4s ease-out;
}
.biz-hero-logo-wrap {
    margin-bottom: 14px;
}
.biz-hero-logo-ph {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 0 auto;
}
.biz-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}
.biz-hero-name {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.2;
}
.biz-hero-category {
    margin-bottom: 8px;
}
.biz-hero-category .cat-badge {
    display: inline-block;
    background: rgba(108,92,231,0.2);
    color: #a29bfe;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.biz-hero-rating {
    margin-bottom: 10px;
}
.biz-hero-rating .rating-stars {
    color: #fdcb6e;
    font-size: 16px;
    margin-right: 6px;
}
.biz-hero-rating .rating-num {
    color: #fdcb6e;
    font-weight: 700;
    font-size: 15px;
    margin-right: 6px;
}
.biz-hero-rating .rating-count {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.biz-hero-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}
.biz-hero-contacts .contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: default;
}
.biz-hero-contacts .contact-chip i {
    color: #6C5CE7;
    font-size: 12px;
    width: 14px;
    text-align: center;
}
.biz-hero-contacts .contact-chip a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}
.biz-hero-contacts .contact-chip a:hover { color: #fff; }
.biz-hero-contacts .phone-show-btn {
    background: none;
    border: none;
    color: #6C5CE7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}
.biz-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #6C5CE7, #a855f7);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(108,92,231,0.35);
}
.biz-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,92,231,0.45);
}
.biz-hero-cta:active { transform: scale(0.97); }

/* === BIZ SECTIONS (shared) === */
.biz-section {
    padding: 16px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    animation: bizFadeUp 0.35s ease-out backwards;
}

/* === GALLERY === */
#biz-gallery {
    padding: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}
.gallery-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px;
    -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* === ABOUT === */
.biz-about-text {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin: 0;
    white-space: pre-line;
}
.biz-about-text.truncated {
    max-height: 4.95em; /* 3 lines */
    overflow: hidden;
    position: relative;
}
.biz-about-toggle {
    background: none;
    border: none;
    color: #6C5CE7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0 0;
    display: block;
}
.biz-about-toggle:hover { color: #a29bfe; }

/* === SCHEDULE === */
.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.schedule-day.today {
    color: #6C5CE7;
}
.schedule-time {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.schedule-closed {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
.schedule-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.schedule-status.open { background: #00b894; }
.schedule-status.closed { background: #e74c3c; }
.schedule-now {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 8px;
    display: inline-block;
}
.schedule-now.is-open { background: rgba(0,184,148,0.15); color: #00b894; }
.schedule-now.is-closed { background: rgba(231,76,60,0.15); color: #e74c3c; }

/* === MAP === */
.map-container {
    width: 100%;
    height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.map-container [class*="ymaps-"] { border-radius: 12px; }
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6C5CE7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.map-link:hover { color: #a29bfe; }
.map-address-text {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

/* === SERVICES (showcase dark cards) === */
.svc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    animation: bizFadeUp 0.35s ease-out backwards;
}
.svc-card:nth-child(2) { animation-delay: 0.05s; }
.svc-card:nth-child(3) { animation-delay: 0.1s; }
.svc-card:nth-child(4) { animation-delay: 0.15s; }
.svc-card:nth-child(5) { animation-delay: 0.2s; }
.svc-card:nth-child(6) { animation-delay: 0.25s; }
.svc-card:nth-child(7) { animation-delay: 0.3s; }
.svc-card:nth-child(8) { animation-delay: 0.35s; }
.svc-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(108,92,231,0.3);
}
.svc-card-left { flex: 1; min-width: 0; }
.svc-card-name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}
.svc-card-duration {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.svc-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: 12px;
    flex-shrink: 0;
}
.svc-card-price {
    font-weight: 700;
    color: #a29bfe;
    font-size: 16px;
    white-space: nowrap;
}
.svc-card-book {
    background: none;
    border: none;
    color: #6C5CE7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    white-space: nowrap;
}
.svc-card-book:hover { color: #a29bfe; }
.svc-cat-label {
    color: #a29bfe;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
}

/* === TEAM === */
.team-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}
.team-scroll::-webkit-scrollbar { display: none; }
.team-card {
    flex-shrink: 0;
    text-align: center;
    width: 90px;
    animation: bizScaleIn 0.3s ease-out backwards;
}
.team-card:nth-child(2) { animation-delay: 0.05s; }
.team-card:nth-child(3) { animation-delay: 0.1s; }
.team-card:nth-child(4) { animation-delay: 0.15s; }
.team-card:nth-child(5) { animation-delay: 0.2s; }
.team-card:nth-child(6) { animation-delay: 0.25s; }
.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 6px;
    display: block;
}
.team-avatar-ph {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}
.team-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.team-pos {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}

/* === REVIEWS === */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.reviews-big-num {
    font-size: 40px;
    font-weight: 800;
    color: #fdcb6e;
    line-height: 1;
}
.reviews-big-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
.reviews-histogram {
    flex: 1;
}
.histo-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}
.histo-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    width: 20px;
    text-align: right;
}
.histo-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.histo-bar {
    height: 100%;
    background: #fdcb6e;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.histo-count {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    width: 20px;
}

/* Review cards */
.review-card {
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 8px;
}
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.review-author {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}
.review-date {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.review-stars {
    color: #fdcb6e;
    margin-bottom: 6px;
    font-size: 14px;
}
.review-emp {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.review-reply {
    margin-top: 8px;
    padding: 10px;
    background: rgba(108,92,231,0.1);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    border-left: 3px solid #6C5CE7;
}
.review-reply-label {
    font-size: 12px;
    color: #a29bfe;
    font-weight: 600;
    margin-bottom: 4px;
}

/* === POWERED BY === */
.biz-powered {
    text-align: center;
    padding: 24px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
.biz-powered strong {
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* === STICKY BAR === */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(15,12,41,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}
.sticky-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-left: 8px;
}
.sticky-btn {
    padding: 12px 28px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #6C5CE7, #a855f7);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(108,92,231,0.3);
}
.sticky-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(108,92,231,0.4);
}
.sticky-btn:active { transform: scale(0.97); }

/* === BOOKING MODAL === */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: overlayFadeIn 0.2s ease;
}
.booking-modal-content {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.booking-modal-header span {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
}
.booking-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f0f0f2;
    color: #636e72;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.booking-modal-close:hover { background: #e0e0e2; }

/* === BOOKING CONTAINER (LIGHT THEME inside modal) === */
.booking-container {
    padding: 16px 20px 32px;
    overflow-y: auto;
    flex: 1;
    color: #1a1a2e;
    background: #fff;
}

/* Step indicator */
.booking-container .step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.booking-container .step {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: #dfe6e9;
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.booking-container .step.done {
    background: #6C5CE7;
}
.booking-container .step.done::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: bizShimmer 1.2s ease forwards;
    background-size: 200% 100%;
}
.booking-container .step.active {
    background: linear-gradient(90deg, #a29bfe, #6C5CE7);
    background-size: 200% 100%;
    animation: bizShimmer 2s ease-in-out infinite;
}

/* Section title */
.booking-container .section-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a2e;
}

/* Back button */
.booking-container .back-btn {
    background: none;
    border: none;
    color: #6C5CE7;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.booking-container .back-btn:hover {
    color: #a29bfe;
    transform: translateX(-3px);
}

/* Service cards (light) */
.booking-container .service-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #eee;
    position: relative;
    overflow: hidden;
    animation: bizFadeUp 0.4s ease-out backwards;
}
.booking-container .service-card:nth-child(2) { animation-delay: 0.05s; }
.booking-container .service-card:nth-child(3) { animation-delay: 0.1s; }
.booking-container .service-card:nth-child(4) { animation-delay: 0.15s; }
.booking-container .service-card:nth-child(5) { animation-delay: 0.2s; }
.booking-container .service-card:nth-child(6) { animation-delay: 0.25s; }
.booking-container .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,92,231,0.12);
    border-color: #d5d0ff;
}
.booking-container .service-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}
.booking-container .service-card.selected {
    border-color: #6C5CE7;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    padding-right: 48px;
}
.booking-container .service-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    background: #6C5CE7;
    border-radius: 50%;
    animation: bizBounceIn 0.35s ease-out;
}
.booking-container .service-name {
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
}
.booking-container .service-details {
    font-size: 12px;
    color: #636e72;
    margin-top: 3px;
}
.booking-container .service-price {
    font-weight: 700;
    color: #6C5CE7;
    font-size: 16px;
    white-space: nowrap;
    margin-left: 12px;
}

/* Category label (inside modal) */
.booking-container .category-label {
    font-size: 12px;
    font-weight: 600;
    color: #a29bfe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
}

/* Employee cards (light) */
.booking-container .employee-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}
.booking-container .employee-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #eee;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: bizScaleIn 0.35s ease-out backwards;
}
.booking-container .employee-card:nth-child(2) { animation-delay: 0.05s; }
.booking-container .employee-card:nth-child(3) { animation-delay: 0.1s; }
.booking-container .employee-card:nth-child(4) { animation-delay: 0.15s; }
.booking-container .employee-card:nth-child(5) { animation-delay: 0.2s; }
.booking-container .employee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108,92,231,0.12);
    border-color: #a29bfe;
}
.booking-container .employee-card:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
}
.booking-container .employee-card.selected {
    border-color: #6C5CE7;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    box-shadow: 0 4px 20px rgba(108,92,231,0.2);
}
.booking-container .employee-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    display: block;
    background: #dfe6e9;
    transition: transform 0.3s ease;
}
.booking-container .employee-avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: transform 0.3s ease;
}
.booking-container .employee-card:hover .employee-avatar,
.booking-container .employee-card:hover .employee-avatar-placeholder {
    transform: scale(1.08);
}
.booking-container .employee-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Date buttons (light) */
.booking-container .date-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 16px;
}
.booking-container .date-list::-webkit-scrollbar { display: none; }
.booking-container .date-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    border: 2px solid #dfe6e9;
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s ease;
    color: #1a1a2e;
    position: relative;
    overflow: hidden;
}
.booking-container .date-btn:hover {
    border-color: #6C5CE7;
    transform: translateY(-1px);
}
.booking-container .date-btn.selected {
    border-color: #6C5CE7;
    background: #6C5CE7;
    color: #fff;
    box-shadow: 0 4px 16px rgba(108,92,231,0.35);
}

/* Slot buttons (light) */
.booking-container .slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}
.booking-container .slot-btn {
    padding: 9px 4px;
    border: 2px solid #dfe6e9;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #1a1a2e;
    position: relative;
    overflow: hidden;
    animation: bizFadeUp 0.3s ease-out backwards;
}
.booking-container .slot-btn:hover {
    border-color: #6C5CE7;
    color: #6C5CE7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108,92,231,0.15);
}
.booking-container .slot-btn:active { transform: scale(0.95); }
.booking-container .slot-btn.selected {
    border-color: #6C5CE7;
    background: #6C5CE7;
    color: #fff;
    box-shadow: 0 4px 20px rgba(108,92,231,0.35);
    transform: scale(1.05);
}

/* Form fields (light) */
.booking-container .form-group {
    margin-bottom: 14px;
}
.booking-container .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #636e72;
    margin-bottom: 6px;
}
.booking-container .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dfe6e9;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
    color: #1a1a2e;
    background: #fff;
}
.booking-container .form-group input:focus {
    border-color: #6C5CE7;
    box-shadow: 0 0 0 3px rgba(108,92,231,0.12);
    transform: translateY(-1px);
}
.booking-container .form-group input::placeholder {
    color: #aaa;
}

/* Booking summary */
.booking-container .booking-summary {
    background: linear-gradient(135deg, #f0edff, #e8e4ff);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(108,92,231,0.12);
    animation: bizFadeUp 0.3s ease-out;
    position: relative;
    overflow: hidden;
}
.booking-container .booking-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6C5CE7, #a29bfe, #6C5CE7);
    background-size: 200% 100%;
    animation: bizShimmer 3s ease-in-out infinite;
}

/* Submit button */
.booking-container .btn-book {
    width: 100%;
    padding: 16px;
    background: #6C5CE7;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(108,92,231,0.3);
    position: relative;
    overflow: hidden;
}
.booking-container .btn-book:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108,92,231,0.4);
}
.booking-container .btn-book:active:not(:disabled) {
    transform: scale(0.98);
}
.booking-container .btn-book:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.booking-container .btn-book.loading {
    pointer-events: none;
}
.booking-container .btn-book.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* Alerts */
.booking-container .alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.booking-container .alert-success { background: #d4edda; color: #155724; }
.booking-container .alert-error { background: #f8d7da; color: #721c24; }

/* Field errors */
.booking-container .input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231,76,60,0.2) !important;
}
.booking-container .field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

/* Empty/loading states */
.booking-container .empty-state {
    color: #636e72;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
.booking-container .loading-state {
    text-align: center;
    padding: 40px 16px;
    color: #636e72;
}

/* Skeleton */
.booking-container .skeleton {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: bizShimmer 1.5s ease-in-out infinite;
    border-radius: 14px;
    min-height: 60px;
}
.booking-container .skeleton-slot {
    height: 42px;
    border-radius: 10px;
}

/* Ripple */
.booking-container .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(108,92,231,0.2);
    transform: scale(0);
    animation: rippleExpand 0.5s ease-out forwards;
    pointer-events: none;
}

/* Success */
.booking-container .success-container {
    text-align: center;
    padding: 40px 16px;
    animation: bizFadeUp 0.5s ease-out;
}
.booking-container .success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6C5CE7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    animation: bizBounceIn 0.6s ease-out;
    position: relative;
}
.booking-container .success-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: bizPulseRing 1.5s ease-out;
}

/* Confetti (global, on body) */
.success-confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: bizConfetti 1.2s ease-out forwards;
    z-index: 1001;
}

/* === COOKIE BANNER (dark override for biz page) === */
.biz-page .cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 680px;
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    border-radius: 14px;
    padding: 16px 20px;
    display: none;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.08);
}
.biz-page .cookie-banner p { flex: 1; line-height: 1.5; margin: 0; }
.biz-page .cookie-banner a { color: #a29bfe; text-decoration: underline; }
.biz-page .cookie-accept {
    background: #6C5CE7;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.biz-page .cookie-accept:hover { background: #5a4bd6; }
.biz-page .cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s;
}
.biz-page .cookie-decline:hover { color: rgba(255,255,255,0.7); }

/* === ERROR PAGE === */
.biz-error {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.6);
}
.biz-error i {
    font-size: 48px;
    color: rgba(255,255,255,0.15);
    margin-bottom: 16px;
    display: block;
}
.biz-error h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

/* === DESKTOP: centered modal overlay === */
@media (min-width: 640px) {
    .booking-modal {
        align-items: center;
    }
    .booking-modal-content {
        max-width: 500px;
        border-radius: 20px;
        max-height: 85vh;
    }
}

/* === MOBILE 480 === */
@media (max-width: 480px) {
    .biz-hero { padding: 24px 16px 20px; }
    .biz-hero-name { font-size: 20px; }
    .biz-hero-cta { padding: 12px 24px; font-size: 15px; }
    .gallery-img { width: 240px; height: 170px; }
    .reviews-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
    .reviews-big-num { font-size: 32px; }
    .biz-page .cookie-banner { flex-direction: column; text-align: center; gap: 12px; }
    .biz-page .cookie-banner p { font-size: 12px; }
    .sticky-label { font-size: 13px; }
    .sticky-btn { padding: 10px 22px; font-size: 14px; }
}

/* === MOBILE 375 === */
@media (max-width: 375px) {
    .showcase { padding: 0 12px 120px; }
    .biz-hero-name { font-size: 18px; }
    .svc-card { padding: 12px; }
    .svc-card-price { font-size: 14px; }
    .team-card { width: 76px; }
    .team-avatar, .team-avatar-ph { width: 48px; height: 48px; }
    .team-name { font-size: 12px; }
}
