/* =============================================
   VISTA CLINIC - Main Stylesheet
   ============================================= */

:root {
    --primary: #0A6E5C;
    --primary-light: #00C9A7;
    --primary-dark: #064E42;
    --accent: #F0A500;
    --dark: #0D1B2A;
    --dark-light: #1B2838;
    --text: #2D3748;
    --text-light: #5A6778;
    --text-muted: #94A3B8;
    --bg: #F8FAFB;
    --bg-alt: #EFF6F4;
    --white: #ffffff;
    --border: #E2E8F0;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 30px rgba(0, 201, 167, 0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 201, 167, 0.25);
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 18px; letter-spacing: -0.3px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 201, 167, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 201, 167, 0.45);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    border-radius: 50px;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
}

.btn-large { padding: 18px 48px; font-size: 1.05rem; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar.scrolled .logo { color: var(--dark); }
.logo-icon { font-size: 1.4rem; }

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-scrolled { display: none; }
.navbar.scrolled .logo-default { display: none; }
.navbar.scrolled .logo-scrolled { display: inline-block; }

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--primary-light); }

.btn-nav {
    background: var(--white) !important;
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.navbar.scrolled .btn-nav {
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #a8b89a 0%, #88987b 30%, #6b7a60 65%, #4a5a3f 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 201, 167, 0.12);
    border: 1px solid rgba(0, 201, 167, 0.25);
    color: var(--primary-light);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 4.2rem;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 680px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.accent {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btns { display: flex; gap: 16px; margin-bottom: 60px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-stats {
    display: flex; gap: 48px;
    animation: fadeInUp 0.8s ease 0.4s both;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 40px;
}
.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* BENEFITS */
.benefits { padding: 110px 0; background: var(--white); position: relative; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon { transform: scale(1.1); }
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.benefit-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* IV TREATMENTS */
.treatments { padding: 100px 0; background: var(--bg-alt); }

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.treatment-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.treatment-card:hover::after { transform: scaleX(1); }

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.treatment-card.hidden { display: none; }

.treatment-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--accent), #e09500);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-icon { font-size: 2rem; margin-bottom: 12px; }
.treatment-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.treatment-desc { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.treatment-details {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 18px;
}

.treatment-details .detail {
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.5;
}

.treatment-details .detail:last-child { margin-bottom: 0; }
.treatment-details .detail strong { color: var(--primary-dark); }

/* WHAT TO EXPECT */
.what-to-expect { padding: 100px 0; background: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card { text-align: center; padding: 32px 20px; position: relative; }

.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 201, 167, 0.3);
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(0, 201, 167, 0.4);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: var(--text-light); font-size: 0.9rem; }

/* ECG SECTION */
.ecg-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D1B2A, #1B2838);
    color: var(--white);
}

.ecg-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ecg-content .section-tag {
    background: rgba(0, 201, 167, 0.2);
    border: 1px solid rgba(0, 201, 167, 0.3);
}

.ecg-content h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 18px; }
.ecg-content > p { color: rgba(255, 255, 255, 0.7); margin-bottom: 32px; font-size: 1.05rem; }

.ecg-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ecg-benefit { display: flex; gap: 16px; align-items: flex-start; }

.check-icon {
    width: 32px; height: 32px; min-width: 32px;
    border-radius: 50%;
    background: rgba(0, 201, 167, 0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 2px;
}

.ecg-benefit h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ecg-benefit p { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.ecg-visual { display: flex; align-items: center; justify-content: center; }

.ecg-card-graphic {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.ecg-card-graphic:hover {
    border-color: rgba(0, 201, 167, 0.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.ecg-pulse-line { margin-bottom: 24px; }
.ecg-pulse-line svg { width: 100%; height: auto; }

.ecg-card-info h3 { color: var(--primary-light); font-size: 1.3rem; margin-bottom: 8px; }
.ecg-card-info p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; margin-bottom: 18px; }

.ecg-card-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ecg-card-info li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    padding-left: 20px;
    position: relative;
}

.ecg-card-info li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

/* WEIGHT LOSS */
.weight-loss-section { padding: 100px 0; background: var(--bg-alt); }

.wl-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.wl-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #FFD166);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.wl-card:hover::before { transform: scaleX(1); }
.wl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.wl-icon { font-size: 2.2rem; margin-bottom: 14px; }
.wl-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.wl-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 18px; }
.wl-features { list-style: none; margin-bottom: 22px; }

.wl-features li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text);
}

.wl-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* SAFETY SECTION */
.safety-section { padding: 80px 0; background: var(--white); }

.safety-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}

.safety-content h2 { font-size: 2rem; margin-bottom: 12px; }
.safety-content p { color: var(--text-light); font-size: 1rem; }

.safety-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.safety-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
}

.safety-card:hover { border-color: var(--primary-light); }
.safety-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }

.safety-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.safety-card p { color: var(--text-light); font-size: 0.85rem; }

/* FAQ SECTION */
.faq-section { padding: 100px 0; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 201, 167, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-toggle {
    font-size: 1.4rem;
    transition: var(--transition);
    color: var(--primary);
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* BOOKING SECTION */
.booking-section { padding: 100px 0; background: var(--white); }

.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.booking-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}

.form-group textarea { resize: vertical; }
.booking-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.info-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

/* MODAL */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover { color: var(--dark); }

.modal-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal h2 { font-size: 1.6rem; margin-bottom: 12px; }
.modal > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

.modal-details {
    background: var(--bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.modal-details p { font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.modal-details p strong { color: var(--primary-dark); }

/* ==============================
   ADMIN PANEL (Overlay)
   ============================== */
.admin-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    background: #ffffff;
    overflow-y: auto;
}
.admin-overlay.active { display: block; }

.admin-overlay-inner {
    min-height: 100vh;
    background: #ffffff;
}

/* Login */
.admin-login-screen {
    padding: 80px 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a4a 100%);
    min-height: 100vh;
}

.admin-login-card {
    background: #fff; border-radius: 16px; padding: 48px 40px;
    width: 100%; max-width: 420px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); text-align: center;
}

.admin-login-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 6px; }
.admin-login-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px; }
.admin-login-card label { display: block; text-align: left; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.admin-login-card input {
    width: 100%; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; margin-bottom: 16px; transition: 0.2s;
}
.admin-login-card input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,201,167,0.15); }

.admin-login-btn {
    width: 100%; padding: 14px; border: none; border-radius: 8px; background: var(--primary-dark);
    color: #fff; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: 0.2s; font-family: 'Inter', sans-serif;
}
.admin-login-btn:hover { background: #085546; }

.admin-login-error { color: #e74c3c; font-size: 0.82rem; margin-top: 12px; display: none; }
.admin-login-error.show { display: block; }

/* Dashboard Panel */
.admin-dashboard-panel { display: none; }
.admin-dashboard-panel.active { display: block; }

.admin-panel-header {
    background: #fff; border-bottom: 1px solid #e2e8f0; padding: 16px 32px;
    display: flex; align-items: center; justify-content: space-between;
}

.admin-panel-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--primary-dark); display: flex; align-items: center; gap: 8px; }
.admin-panel-badge {
    font-family: 'Inter', sans-serif; font-size: 0.75rem; background: var(--primary-dark);
    color: #fff; padding: 3px 10px; border-radius: 12px; margin-left: 10px; font-weight: 600;
}

.admin-panel-actions { display: flex; gap: 10px; align-items: center; }

.admin-panel-btn {
    padding: 8px 18px; border-radius: 8px; border: 1px solid #e2e8f0; background: #fff;
    color: var(--text); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: 0.2s; font-family: 'Inter', sans-serif;
}
.admin-panel-btn:hover { background: var(--light); }
.admin-panel-btn-danger { color: #e74c3c; border-color: #e74c3c; }
.admin-panel-btn-danger:hover { background: #e74c3c; color: #fff; }
.admin-panel-btn-close { color: var(--text); border-color: #e2e8f0; }
.admin-panel-btn-close:hover { background: #e2e8f0; }

/* Tabs */
.admin-tab-bar {
    background: #fff; border-bottom: 1px solid #e2e8f0; padding: 0 32px;
    display: flex; gap: 0;
}

.admin-tab-btn {
    padding: 14px 28px; border: none; background: none; font-family: 'Inter', sans-serif;
    font-size: 0.88rem; font-weight: 600; color: var(--text-light); cursor: pointer;
    border-bottom: 3px solid transparent; transition: 0.2s; display: flex; align-items: center; gap: 8px;
}
.admin-tab-btn:hover { color: var(--text); }
.admin-tab-btn.active { color: var(--primary-dark); border-bottom-color: var(--primary-dark); }
.admin-tab-icon { font-size: 1.1rem; }

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

.admin-content { max-width: 1200px; margin: 0 auto; padding: 32px; }

/* Stats Grid */
.admin-stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-bottom: 32px;
}

.admin-stat-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e2e8f0; }
.admin-stat-label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.admin-stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--dark); }
.admin-stat-sub { font-size: 0.78rem; color: var(--primary-dark); margin-top: 4px; }

/* Filter Bar */
.admin-filter-bar { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }

.admin-filter-bar input {
    flex: 1; min-width: 200px; padding: 10px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; outline: none; transition: 0.2s;
}
.admin-filter-bar input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,201,167,0.1); }

.admin-filter-bar select {
    padding: 10px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; background: #fff; outline: none; cursor: pointer;
}

/* Bookings Table */
.admin-bookings-panel { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; overflow: hidden; }
.admin-bookings-header { padding: 20px 24px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: space-between; }
.admin-bookings-header h2 { font-size: 1.1rem; color: var(--dark); }

.admin-bookings-table-wrap { overflow-x: auto; }

.admin-bookings-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.admin-bookings-table th {
    text-align: left; padding: 14px 16px; font-size: 0.72rem; font-weight: 700;
    color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0; background: var(--light); white-space: nowrap;
}
.admin-bookings-table td { padding: 14px 16px; border-bottom: 1px solid #e2e8f0; vertical-align: top; }
.admin-bookings-table tbody tr:hover { background: #f0fdf4; }

.admin-treat-badge {
    display: inline-block; padding: 3px 10px; border-radius: 12px; background: #f0fdf4;
    border: 1px solid #d1fae5; font-size: 0.7rem; font-weight: 600; color: var(--primary-dark); margin: 2px 3px 2px 0; white-space: nowrap;
}

.admin-bookings-table .name-cell { font-weight: 600; color: var(--dark); white-space: nowrap; }
.admin-bookings-table .treatments-cell { max-width: 250px; }
.admin-bookings-table .date-cell { white-space: nowrap; }
.admin-bookings-table .time-cell { white-space: nowrap; font-weight: 600; color: var(--primary-dark); }
.admin-bookings-table .notes-cell { max-width: 180px; font-size: 0.78rem; color: var(--text-light); }
.admin-bookings-table .booked-at-cell { font-size: 0.75rem; color: var(--text-light); white-space: nowrap; }

.admin-delete-row-btn {
    padding: 5px 10px; border-radius: 6px; border: 1px solid #e74c3c; background: transparent;
    color: #e74c3c; font-size: 0.72rem; font-weight: 600; cursor: pointer; transition: 0.2s; font-family: 'Inter', sans-serif;
}
.admin-delete-row-btn:hover { background: #e74c3c; color: #fff; }

.admin-empty-state { text-align: center; padding: 60px 24px; color: var(--text-light); }
.admin-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.admin-empty-state p { font-size: 0.9rem; }

/* Analytics */
.admin-controls-bar { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.admin-controls-bar label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }

.admin-year-select {
    padding: 10px 16px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.85rem; background: #fff; outline: none; cursor: pointer;
}

.admin-summary-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }

.admin-summary-card { background: #fff; border-radius: 12px; padding: 20px 24px; border: 1px solid #e2e8f0; }
.admin-summary-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 6px; }
.admin-summary-value { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark); }
.admin-summary-sub { font-size: 0.78rem; color: var(--primary-dark); margin-top: 3px; }

.admin-charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }

.admin-chart-card { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e2e8f0; }
.admin-chart-full { grid-column: 1 / -1; }
.admin-chart-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }

.admin-chart-wrap { position: relative; width: 100%; }
.admin-chart-wrap canvas { width: 100% !important; }

.admin-breakdown-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; margin-top: 8px; }
.admin-breakdown-table th {
    text-align: left; padding: 10px 12px; font-size: 0.72rem; font-weight: 700;
    color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0; background: var(--light);
}
.admin-breakdown-table td { padding: 10px 12px; border-bottom: 1px solid #e2e8f0; }
.admin-breakdown-table tbody tr:hover { background: #f0fdf4; }

.admin-bar-cell { width: 40%; }
.admin-mini-bar { height: 22px; border-radius: 6px; background: var(--light); overflow: hidden; position: relative; }
.admin-mini-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--primary-dark), var(--accent)); transition: 0.5s ease; }
.admin-mini-bar-label { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 0.7rem; font-weight: 700; color: var(--dark); }

@media (max-width: 768px) {
    .admin-panel-header { padding: 12px 16px; }
    .admin-tab-bar { padding: 0 16px; }
    .admin-content { padding: 16px; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-charts-grid { grid-template-columns: 1fr; }
    .admin-summary-row { grid-template-columns: 1fr 1fr; }
    .admin-login-card { margin: 16px; padding: 32px 24px; }
    .admin-tab-btn { padding: 12px 16px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
    .admin-stats-grid { grid-template-columns: 1fr; }
    .admin-summary-row { grid-template-columns: 1fr; }
}

.admin-footer-link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    margin-left: 8px;
    transition: color 0.2s;
}
.admin-footer-link:hover {
    color: rgba(255,255,255,0.8);
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #091520 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p { font-size: 0.88rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-col ul a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .benefits-grid, .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .ecg-layout { grid-template-columns: 1fr; }
    .ecg-visual { order: -1; }
    .safety-layout { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text) !important; font-size: 1rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
    .section-header h2 { font-size: 1.8rem; }
    .benefits-grid, .treatments-grid, .wl-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .safety-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .filter-bar { gap: 6px; }
    .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .booking-form { padding: 24px; }
    .modal { padding: 32px 24px; }
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.ecg-pulse-line svg { animation: pulse 2s ease-in-out infinite; }

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Smooth section transitions */
.benefits, .treatments, .what-to-expect, .weight-loss-section, .safety-section, .faq-section, .booking-section {
    position: relative;
}

/* =============================================
   BOOKING PANEL (Full-screen overlay)
   ============================================= */
.booking-panel-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.booking-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-panel {
    background: var(--white);
    border-radius: 16px;
    width: 95vw;
    max-width: 1300px;
    height: 90vh;
    max-height: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: 0.3s ease;
}

.booking-panel-overlay.active .booking-panel {
    transform: scale(1) translateY(0);
}

.bp-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 10;
    transition: 0.2s;
    line-height: 1;
}

.bp-close:hover { color: var(--dark); }

.bp-layout {
    display: grid;
    grid-template-columns: 320px 1fr 340px;
    height: 100%;
    overflow: hidden;
}

/* LEFT - Treatments */
.bp-treatments {
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
}

.bp-treatments h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.bp-search input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: 0.2s;
    margin-bottom: 12px;
}

.bp-search input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.12);
}

.bp-category-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.bp-cat-btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.bp-cat-btn:hover, .bp-cat-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.bp-treatment-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 4px;
}

.bp-treatment-list::-webkit-scrollbar { width: 5px; }
.bp-treatment-list::-webkit-scrollbar-track { background: transparent; }
.bp-treatment-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.bp-treat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: 0.2s;
    gap: 8px;
}

.bp-treat-item:hover { border-color: var(--primary-light); background: var(--bg); }
.bp-treat-item.added { border-color: var(--primary); background: rgba(0, 201, 167, 0.06); }
.bp-treat-item.bp-hidden { display: none; }

.bp-treat-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.bp-treat-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-treat-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bp-treat-tag.ecg-tag { color: #e74c3c; }
.bp-treat-tag.wl-tag { color: var(--accent); }

.bp-add-btn {
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.bp-add-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.bp-treat-item.added .bp-add-btn {
    background: var(--primary);
    color: var(--white);
}

/* CENTER - Calendar */
.bp-calendar {
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.bp-calendar h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.bp-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bp-cal-month {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.bp-cal-nav {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    color: var(--text);
}

.bp-cal-nav:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.bp-cal-grid, .bp-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bp-cal-day-name {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 8px 0;
}

.bp-cal-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    color: var(--text);
    border: 1px solid transparent;
}

.bp-cal-day:hover:not(.disabled):not(.empty) {
    background: var(--bg-alt);
    border-color: var(--primary-light);
}

.bp-cal-day.selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.bp-cal-day.today {
    border-color: var(--primary-light);
    font-weight: 700;
    color: var(--primary);
}

.bp-cal-day.today.selected { color: var(--white); }

.bp-cal-day.disabled {
    color: var(--border);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.4;
}

.bp-cal-day.empty { cursor: default; }

/* Time Section */
.bp-time-section {
    margin-top: 24px;
}

.bp-time-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.bp-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.bp-time-slot {
    padding: 8px 4px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.bp-time-slot:hover {
    border-color: var(--primary-light);
    background: rgba(0, 201, 167, 0.06);
}

.bp-time-slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* RIGHT - Basket */
.bp-basket-area {
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
}

.bp-basket-area h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bp-basket-count {
    background: var(--primary);
    color: var(--white);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.bp-basket-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 60px;
}

.bp-basket-items::-webkit-scrollbar { width: 5px; }
.bp-basket-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.bp-basket-empty {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-align: center;
    padding: 24px 12px;
}

.bp-basket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    gap: 8px;
}

.bp-basket-item-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bp-basket-remove {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: none;
    background: #fce4e4;
    color: #e74c3c;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
}

.bp-basket-remove:hover { background: #e74c3c; color: white; }

.bp-selected-info {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bp-selected-info strong { color: var(--primary-dark); }

/* Details Form in Basket */
.bp-details-form h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.bp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.bp-details-form input,
.bp-details-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: 0.2s;
    margin-bottom: 8px;
}

.bp-details-form input:focus,
.bp-details-form textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.1);
}

.bp-details-form textarea { resize: none; }

.bp-confirm-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.9rem;
}

/* RESPONSIVE BOOKING PANEL */
@media (max-width: 1024px) {
    .bp-layout {
        grid-template-columns: 280px 1fr;
        grid-template-rows: 1fr auto;
    }
    .bp-basket-area {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid var(--border);
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .booking-panel {
        width: 100vw;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }
    .bp-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bp-treatments { max-height: 300px; border-right: none; border-bottom: 1px solid var(--border); }
    .bp-calendar { max-height: 400px; }
    .bp-basket-area { border-left: none; border-top: 1px solid var(--border); }
    .bp-time-grid { grid-template-columns: repeat(3, 1fr); }
}
