    /* ===== VARIABLES ===== */
    :root {
      --rose:        #D4607A;
      --rose-dark:   #B04565;
      --rose-light:  #2A1420;
      --gold:        #C4A25A;
      --gold-light:  #1E1608;
      --dark:        #F0D8DC;
      --text:        #C4A0A8;
      --text-muted:  #7A5860;
      --bg:          #0E0709;
      --white:       #180C10;
      --border:      #3A1E28;
      --shadow:      rgba(180,50,80,.30);
      --radius:      12px;
      --radius-lg:   20px;
      --transition:  .3s ease;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark); text-align: center; margin-bottom: .5rem; }
    .section-subtitle { text-align: center; color: var(--text-muted); font-size: .95rem; margin-bottom: 3rem; }
    .section-subtitle span { color: var(--rose); font-weight: 600; }

    /* ===== LAYOUT ===== */
    section { padding: 80px 20px; }
    .container { max-width: 1100px; margin: 0 auto; }

    /* ===== HEADER ===== */
    header {
      position: sticky; top: 0; z-index: 999;
      background: rgba(14,7,9,.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: 14px 24px;
    }
    .header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: flex; align-items: center; }
    .logo-img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(180,50,80,.35)); }
    nav { display: flex; gap: 2rem; align-items: center; }
    nav a { font-size: .88rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
    nav a:hover { color: var(--rose); }
    .btn-nav { background: var(--rose); color: #fff !important; padding: 8px 18px; border-radius: 50px; transition: background var(--transition) !important; }
    .btn-nav:hover { background: var(--rose-dark) !important; }
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

    /* ===== HERO ===== */
    #hero {
      min-height: 92vh;
      display: flex; align-items: center;
      background: linear-gradient(145deg, #0E0709 0%, #1A0A12 50%, #220D16 100%);
      padding: 60px 24px;
      position: relative; overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute; top: -80px; right: -80px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(212,96,122,.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    #hero::after {
      content: '';
      position: absolute; bottom: -100px; left: -60px;
      width: 320px; height: 320px;
      background: radial-gradient(circle, rgba(196,162,90,.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
    .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: 50px; padding: 6px 14px; font-size: .8rem; color: var(--rose); font-weight: 500; margin-bottom: 1.2rem; }
    .hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--dark); margin-bottom: 1rem; }
    .hero-title em { color: var(--rose); font-style: italic; }
    .hero-desc { color: var(--text-muted); font-size: .97rem; margin-bottom: 2rem; max-width: 480px; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 50px; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; transition: all var(--transition); text-decoration: none; }
    .btn-primary { background: var(--rose); color: #fff; box-shadow: 0 4px 20px var(--shadow); }
    .btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--shadow); }
    .btn-whatsapp { background: #25D366; color: #fff; }
    .btn-whatsapp:hover { background: #1EBE5D; transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--rose); border: 2px solid var(--rose); }
    .btn-outline:hover { background: var(--rose); color: #fff; }

    .hero-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: 0 20px 60px var(--shadow);
    }
    .hero-card-title { font-size: 1rem; color: var(--rose); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; }
    .hours-list { display: grid; gap: .7rem; }
    .hours-item { display: flex; justify-content: space-between; align-items: center; padding: .6rem 1rem; background: var(--bg); border-radius: var(--radius); }
    .hours-day { font-size: .85rem; color: var(--text); font-weight: 500; }
    .hours-time { font-size: .83rem; color: var(--text-muted); }
    .hours-badge { font-size: .72rem; background: var(--rose-light); color: var(--rose); padding: 2px 8px; border-radius: 50px; font-weight: 600; }
    .hours-badge.closed { background: rgba(176,80,80,.2); color: #D07070; }

    /* ===== ABOUT STRIP ===== */
    .about-strip { background: #06030A; padding: 40px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .about-strip .container { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
    .about-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: .6rem; }
    .about-item h3 { color: #fff; font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; }
    .about-item p { color: rgba(255,255,255,.6); font-size: .82rem; }

    /* ===== SERVICES ===== */
    #servicos { background: var(--white); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
    .service-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.3rem 1.5rem;
      display: flex; align-items: center; gap: 1rem;
      transition: all var(--transition);
      cursor: default;
    }
    .service-card:hover { border-color: var(--rose); box-shadow: 0 6px 24px var(--shadow); transform: translateY(-2px); }
    .service-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
    .service-icon.hair { background: var(--rose-light); color: var(--rose); }
    .service-icon.nail { background: var(--gold-light); color: var(--gold); }
    .service-icon.brow { background: rgba(91,126,201,.18); color: #7A9EE0; }
    .service-icon.foot { background: rgba(76,168,122,.15); color: #5DC48E; }
    .service-info { flex: 1; }
    .service-name { font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: .2rem; }
    .service-meta { display: flex; gap: 1rem; align-items: center; }
    .service-price { font-size: .82rem; color: var(--rose); font-weight: 600; }
    .service-time { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

    /* ===== COMBOS ===== */
    #combos { background: linear-gradient(160deg, #1A0A12 0%, #120C05 100%); }
    .combo-notice {
      display: flex; align-items: center; gap: 10px;
      background: var(--white); border: 1px solid var(--gold); border-radius: var(--radius);
      padding: 12px 18px; margin-bottom: 2.5rem;
      font-size: .88rem; color: var(--text); font-weight: 500;
      max-width: 520px; margin-left: auto; margin-right: auto;
    }
    .combo-notice i { color: var(--gold); font-size: 1.1rem; }
    .combos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.2rem; }
    .combo-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.4rem 1.5rem;
      border: 1px solid var(--border);
      transition: all var(--transition);
      position: relative; overflow: hidden;
    }
    .combo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--gold)); }
    .combo-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px var(--shadow); }
    .combo-label { font-size: .72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); margin-bottom: .4rem; }
    .combo-name { font-size: .95rem; font-weight: 600; color: var(--dark); margin-bottom: .8rem; line-height: 1.4; }
    .combo-bottom { display: flex; justify-content: space-between; align-items: center; }
    .combo-price { font-size: 1.1rem; font-weight: 700; color: var(--rose); }
    .combo-time { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

    /* ===== AGENDAMENTO ===== */
    #agendamento { background: var(--white); }
    .booking-wrapper {
      max-width: 720px; margin: 0 auto;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 2.5rem;
      box-shadow: 0 8px 40px var(--shadow);
    }

    /* Steps indicator */
    .steps { display: flex; justify-content: center; gap: 0; margin-bottom: 2.5rem; position: relative; }
    .steps::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: calc(100% - 80px); height: 2px; background: var(--border); z-index: 0; }
    .step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; position: relative; z-index: 1; }
    .step-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 700; border: 2px solid var(--border); background: var(--white); color: var(--text-muted); transition: all var(--transition); }
    .step.active .step-num { background: var(--rose); border-color: var(--rose); color: #fff; }
    .step.done .step-num { background: var(--rose-dark); border-color: var(--rose-dark); color: #fff; }
    .step-label { font-size: .7rem; color: var(--text-muted); font-weight: 500; text-align: center; white-space: nowrap; }
    .step.active .step-label { color: var(--rose); }

    /* Form steps */
    .booking-step { display: none; animation: fadeSlide .4s ease; }
    .booking-step.active { display: block; }
    @keyframes fadeSlide { from { opacity:0; transform:translateY(12px);} to { opacity:1; transform:translateY(0);} }

    .step-title { font-size: 1.2rem; color: var(--dark); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; font-family: 'Poppins',sans-serif; font-weight: 600; }
    .step-title i { color: var(--rose); }

    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }
    .form-group input, .form-group select {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--border); border-radius: var(--radius);
      background: var(--white); font-size: .9rem; color: var(--dark);
      font-family: 'Poppins', sans-serif;
      transition: border-color var(--transition);
      outline: none;
    }
    .form-group input:focus, .form-group select:focus { border-color: var(--rose); }
    .form-group input[type="date"] { cursor: pointer; color-scheme: light; }
    .form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }

    .time-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .6rem; margin-top: .5rem; }
    .time-slot {
      padding: 8px 4px; text-align: center; font-size: .84rem; font-weight: 500;
      border: 1.5px solid var(--border); border-radius: var(--radius);
      background: var(--white); cursor: pointer; color: var(--text);
      transition: all var(--transition);
    }
    .time-slot:hover { border-color: var(--rose); color: var(--rose); }
    .time-slot.selected { background: var(--rose); border-color: var(--rose); color: #fff; }
    .time-slot.busy { background: #F5F0F0; color: #CCC; cursor: not-allowed; border-color: #EEE; pointer-events: none; }
    .no-slots { text-align: center; padding: 1.5rem; color: var(--text-muted); font-size: .9rem; }

    .btn-booking { width: 100%; margin-top: 1.5rem; justify-content: center; padding: 14px; font-size: .95rem; }
    .btn-back { background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: .85rem; display: flex; align-items: center; gap: 6px; margin-bottom: 1rem; font-family: 'Poppins',sans-serif; padding: 0; }
    .btn-back:hover { color: var(--rose); }

    .booking-summary {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 1.2rem 1.4rem; margin-top: 1.2rem;
    }
    .summary-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .88rem; border-bottom: 1px solid var(--border); }
    .summary-row:last-child { border-bottom: none; font-weight: 600; color: var(--dark); }
    .summary-label { color: var(--text-muted); }

    .booking-success {
      text-align: center; padding: 2rem 1rem;
    }
    .success-icon { width: 70px; height: 70px; border-radius: 50%; background: #EAF5EE; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
    .success-icon i { font-size: 2rem; color: #4CA87A; }
    .booking-success h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: .5rem; }
    .booking-success p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
    .booking-detail-box { background: var(--bg); border-radius: var(--radius); padding: 1.2rem; text-align: left; margin-bottom: 1.5rem; }
    .booking-detail-row { display: flex; gap: 8px; font-size: .88rem; margin-bottom: .4rem; }
    .booking-detail-row i { color: var(--rose); width: 16px; flex-shrink: 0; margin-top: 3px; }

    .alert { padding: 10px 14px; border-radius: var(--radius); font-size: .84rem; margin-top: .8rem; display: none; }
    .alert.error { background: #FEF0F0; border: 1px solid #FBCACA; color: #B33; }
    .alert.show { display: block; }

    /* ===== CONTACT ===== */
    #contato { background: var(--bg); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .contact-info h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 1rem; }
    .contact-info p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.5rem; }
    .contact-items { display: grid; gap: 1rem; margin-bottom: 2rem; }
    .contact-item { display: flex; gap: 12px; align-items: flex-start; }
    .contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--rose-light); display: flex; align-items: center; justify-content: center; color: var(--rose); flex-shrink: 0; }
    .contact-item-text h4 { font-size: .88rem; font-weight: 600; color: var(--dark); }
    .contact-item-text p { font-size: .83rem; color: var(--text-muted); }
    .social-links { display: flex; gap: .8rem; }
    .social-link {
      width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1rem; transition: all var(--transition);
    }
    .social-link.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
    .social-link.whatsapp { background: #25D366; color: #fff; }
    .social-link:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

    .map-card {
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: 0 4px 20px var(--shadow);
    }
    .map-embed { height: 260px; display: block; width: 100%; border: 0; }
    .map-address { padding: 1.2rem 1.4rem; }
    .map-address p { font-size: .88rem; color: var(--text-muted); display: flex; gap: 6px; align-items: flex-start; }
    .map-address i { color: var(--rose); flex-shrink: 0; margin-top: 3px; }

    /* ===== FLOAT WHATSAPP ===== */
    .float-whatsapp {
      position: fixed; bottom: 28px; right: 28px; z-index: 888;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; color: #fff; font-size: 1.6rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.45);
      transition: all var(--transition); cursor: pointer;
    }
    .float-whatsapp:hover { transform: scale(1.12); background: #1EBE5D; }
    .float-whatsapp::before {
      content: 'Fale Conosco';
      position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
      background: var(--dark); color: #fff; font-size: .75rem; font-weight: 500;
      padding: 5px 10px; border-radius: 6px; white-space: nowrap;
      opacity: 0; pointer-events: none; transition: opacity var(--transition);
    }
    .float-whatsapp:hover::before { opacity: 1; }

    /* ===== FOOTER ===== */
    footer {
      background: #06030A; color: rgba(255,255,255,.6);
      padding: 40px 24px 24px;
      border-top: 1px solid var(--border);
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
    .footer-brand p { font-size: .84rem; margin-top: .8rem; line-height: 1.7; }
    .footer-col h4 { color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; font-family: 'Poppins',sans-serif; }
    .footer-col ul { display: grid; gap: .5rem; }
    .footer-col ul li { font-size: .83rem; }
    .footer-col ul li a:hover { color: var(--rose); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .78rem; }
    .footer-bottom a { color: var(--rose); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .about-strip .container { grid-template-columns: 1fr; gap: 1.5rem; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
    }

    @media (max-width: 680px) {
      /* Sections */
      section { padding: 52px 16px; }
      .container { padding: 0; }

      /* Header */
      .header-inner { padding: 0; }
      nav {
        display: none; position: fixed; top: 65px; left: 0; right: 0;
        background: #120A0D; border-bottom: 1px solid var(--border);
        flex-direction: column; padding: 1.2rem 1.5rem; gap: .8rem;
        z-index: 998; box-shadow: 0 8px 24px rgba(0,0,0,.4);
      }
      nav.open { display: flex; }
      nav a { font-size: .95rem; padding: .4rem 0; border-bottom: 1px solid var(--border); }
      nav a:last-child { border-bottom: none; }
      .menu-toggle { display: block; }
      #authArea { margin-right: .2rem; }
      .btn-auth { padding: 6px 12px; font-size: .78rem; }
      .user-chip-name span:not(i) { display: none; }

      /* Hero */
      #hero { min-height: auto; padding: 48px 16px 40px; }
      .hero-inner { gap: 1.8rem; }
      .hero-badge { font-size: .75rem; }
      .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
      .hero-desc { font-size: .88rem; }
      .hero-actions { flex-direction: column; gap: .7rem; }
      .hero-actions .btn { width: 100%; justify-content: center; padding: 13px 20px; }
      .hero-card { padding: 1.4rem; }

      /* About strip */
      .about-strip { padding: 28px 16px; }
      .about-item { display: flex; align-items: center; gap: 1rem; text-align: left; }
      .about-item i { font-size: 1.4rem; margin-bottom: 0; flex-shrink: 0; }

      /* Services */
      .services-grid { grid-template-columns: 1fr; }

      /* Combos */
      .combos-grid { grid-template-columns: 1fr; }
      .combo-notice { font-size: .82rem; padding: 10px 14px; }

      /* Booking */
      .booking-wrapper { padding: 1.2rem 1rem; border-radius: var(--radius); }
      .steps { margin-bottom: 1.8rem; }
      .steps::before { display: none; }
      .step-label { display: none; }
      .step-num { width: 30px; height: 30px; font-size: .75rem; }
      .step-title { font-size: 1rem; margin-bottom: 1.2rem; }
      .time-slots { grid-template-columns: repeat(auto-fill, minmax(75px, 1fr)); gap: .5rem; }
      .time-slot { padding: 10px 4px; font-size: .82rem; }
      .btn-booking { padding: 13px; font-size: .9rem; }
      .summary-row { font-size: .82rem; }
      .booking-success { padding: 1.2rem .5rem; }
      .booking-success h3 { font-size: 1.2rem; }

      /* Contact */
      #contato { padding: 52px 16px; }
      .contact-info h3 { font-size: 1.2rem; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
      .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }

      /* Float WhatsApp */
      .float-whatsapp { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
      .float-whatsapp::before { display: none; }

      /* Auth modal */
      .auth-overlay { align-items: flex-end; padding: 0; }
      .auth-modal { border-radius: 20px 20px 0 0; max-width: 100%; max-height: 92vh; overflow-y: auto; }

      /* My panel */
      .my-panel { max-width: 100%; }

      /* Reschedule */
      .reschedule-overlay { align-items: flex-end; padding: 0; }
      .reschedule-modal { border-radius: 20px 20px 0 0; max-width: 100%; }
    }

    @media (max-width: 400px) {
      .hero-title { font-size: 1.7rem; }
      .section-title { font-size: 1.5rem; }
      .time-slots { grid-template-columns: repeat(auto-fill, minmax(65px, 1fr)); }
    }

    /* ===== AUTH BUTTON ===== */
    .btn-auth {
      background: transparent; border: 1.5px solid var(--rose); color: var(--rose);
      padding: 7px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600;
      cursor: pointer; font-family: 'Poppins', sans-serif; transition: all var(--transition);
      display: flex; align-items: center; gap: 6px; white-space: nowrap;
    }
    .btn-auth:hover { background: var(--rose); color: #fff; }
    .user-chip {
      display: flex; align-items: center; gap: 8px; position: relative;
    }
    .user-chip-name {
      font-size: .85rem; font-weight: 600; color: var(--dark); cursor: pointer;
      display: flex; align-items: center; gap: 6px;
    }
    .user-chip-name i { color: var(--rose); font-size: .8rem; }
    .user-dropdown {
      position: absolute; top: calc(100% + 10px); right: 0; min-width: 190px;
      background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
      box-shadow: 0 8px 28px var(--shadow); z-index: 999; overflow: hidden;
      display: none;
    }
    .user-dropdown.open { display: block; }
    .user-dropdown-item {
      display: flex; align-items: center; gap: 8px; padding: 11px 16px;
      font-size: .85rem; color: var(--text); cursor: pointer; transition: background .15s;
      border: none; background: none; width: 100%; font-family: 'Poppins', sans-serif;
      text-align: left;
    }
    .user-dropdown-item:hover { background: var(--bg); }
    .user-dropdown-item i { color: var(--rose); width: 14px; }
    .user-dropdown-item.logout { color: #B33; }
    .user-dropdown-item.logout i { color: #B33; }
    .user-dropdown-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

    /* ===== AUTH MODAL ===== */
    .auth-overlay {
      display: flex; position: fixed; inset: 0; background: rgba(0,0,0,.45);
      z-index: 1000; align-items: center; justify-content: center; padding: 1rem;
      opacity: 0; pointer-events: none; transition: opacity .2s ease;
    }
    .auth-overlay.open { opacity: 1; pointer-events: auto; }
    .auth-modal {
      background: var(--white); border-radius: 20px; width: 100%; max-width: 420px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25); overflow: hidden;
    }
    .auth-header {
      padding: 1.4rem 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
    }
    .auth-header h3 { font-size: 1.1rem; color: var(--dark); }
    .auth-close { background: none; border: none; font-size: 1.2rem; color: var(--text-muted); cursor: pointer; padding: 4px; }
    .auth-tabs {
      display: flex; border-bottom: 1px solid var(--border); margin: 1rem 1.5rem 0;
    }
    .auth-tab {
      flex: 1; padding: .7rem; text-align: center; font-size: .85rem; font-weight: 600;
      color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent;
      transition: all .2s; background: none; border-top: none; border-left: none; border-right: none;
      font-family: 'Poppins', sans-serif;
    }
    .auth-tab.active { color: var(--rose); border-bottom-color: var(--rose); }
    .auth-body { padding: 1.4rem 1.5rem 1.5rem; }
    .auth-form { display: none; }
    .auth-form.active { display: block; }
    .auth-field { margin-bottom: 1rem; }
    .auth-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; }
    .auth-input {
      width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
      font-size: .88rem; color: var(--dark); font-family: 'Poppins', sans-serif; outline: none;
      transition: border-color .2s; background: var(--white);
    }
    .auth-input:focus { border-color: var(--rose); }
    .btn-auth-submit {
      width: 100%; padding: 12px; background: var(--rose); color: #fff; border: none;
      border-radius: var(--radius); font-size: .92rem; font-weight: 600; cursor: pointer;
      font-family: 'Poppins', sans-serif; transition: background .2s; margin-top: .5rem;
    }
    .btn-auth-submit:hover { background: var(--rose-dark); }
    .btn-auth-submit:disabled { opacity: .6; cursor: not-allowed; }
    .auth-error {
      background: #FEF0F0; border: 1px solid #FBCACA; color: #B33;
      border-radius: var(--radius); padding: 9px 12px; font-size: .82rem;
      margin-bottom: 1rem; display: none;
    }
    .auth-error.show { display: block; }
    .auth-success {
      background: #EAF5EE; border: 1px solid #A8E0C0; color: #2E7D52;
      border-radius: var(--radius); padding: 9px 12px; font-size: .82rem;
      margin-bottom: 1rem; display: none;
    }
    .auth-success.show { display: block; }
    .auth-switch { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 1rem; }
    .auth-switch a { color: var(--rose); font-weight: 600; cursor: pointer; }
    .auth-divider { display: flex; align-items: center; gap: .75rem; margin: 1.1rem 0 .9rem; color: var(--text-muted); font-size: .78rem; }
    .auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .btn-google {
      width: 100%; padding: 11px; background: transparent; border: 1.5px solid var(--border);
      border-radius: var(--radius); font-size: .88rem; font-weight: 500; cursor: pointer;
      font-family: 'Poppins', sans-serif; color: var(--dark); display: flex; align-items: center;
      justify-content: center; gap: .6rem; transition: border-color .2s, background .2s;
    }
    .btn-google:hover { border-color: var(--rose); background: var(--rose-light); }
    .btn-google img { width: 18px; height: 18px; }

    /* ===== MY BOOKINGS PANEL ===== */
    .my-panel-overlay {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 999;
    }
    .my-panel-overlay.open { display: block; }
    .my-panel {
      position: fixed; top: 0; right: -480px; width: 100%; max-width: 460px;
      height: 100vh; background: var(--white); z-index: 1000; overflow-y: auto;
      box-shadow: -8px 0 40px rgba(0,0,0,.2); transition: right .35s ease;
      display: flex; flex-direction: column;
    }
    .my-panel.open { right: 0; }
    .my-panel-header {
      padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      background: var(--white); position: sticky; top: 0; z-index: 1;
    }
    .my-panel-header h3 { font-size: 1rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; }
    .my-panel-header h3 i { color: var(--rose); }
    .my-panel-close { background: none; border: none; font-size: 1.2rem; color: var(--text-muted); cursor: pointer; }
    .my-panel-body { padding: 1.2rem 1.5rem; flex: 1; }
    .my-booking-card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 1rem 1.1rem; margin-bottom: .8rem; position: relative;
    }
    .my-booking-card.cancelled { opacity: .55; }
    .my-booking-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .5rem; }
    .my-booking-service { font-size: .9rem; font-weight: 700; color: var(--dark); }
    .my-booking-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .6rem; display: flex; gap: 1rem; flex-wrap: wrap; }
    .my-booking-meta i { color: var(--rose); }
    .my-booking-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
    .btn-reschedule {
      background: var(--rose-light); color: var(--rose); border: none; border-radius: 8px;
      padding: 6px 12px; font-size: .78rem; font-weight: 600; cursor: pointer;
      font-family: 'Poppins', sans-serif; transition: background .2s;
    }
    .btn-reschedule:hover { background: var(--border); }
    .btn-cancel-booking {
      background: #FEF0F0; color: #B33; border: none; border-radius: 8px;
      padding: 6px 12px; font-size: .78rem; font-weight: 600; cursor: pointer;
      font-family: 'Poppins', sans-serif; transition: background .2s;
    }
    .btn-cancel-booking:hover { background: #FBCACA; }
    .my-panel-empty { text-align: center; padding: 2.5rem 1rem; color: var(--text-muted); }
    .my-panel-empty i { font-size: 2.5rem; opacity: .25; display: block; margin-bottom: .8rem; }

    /* ===== RESCHEDULE MODAL ===== */
    .reschedule-overlay {
      display: flex; position: fixed; inset: 0; background: rgba(0,0,0,.45);
      z-index: 1100; align-items: center; justify-content: center; padding: 1rem;
      opacity: 0; pointer-events: none; transition: opacity .2s ease;
    }
    .reschedule-overlay.open { opacity: 1; pointer-events: auto; }
    .reschedule-modal {
      background: var(--white); border-radius: 16px; width: 100%; max-width: 400px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 1.5rem;
    }
    .reschedule-modal h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px; }
    .reschedule-modal h3 i { color: var(--rose); }

    /* ===== MULTI-SERVICE SELECTION ===== */
    .svc-group-label { font-size: .73rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .6px; margin: .7rem 0 .35rem; }
    .svc-check-item {
      display: flex; align-items: flex-start; gap: .8rem;
      padding: .7rem .9rem; border: 1.5px solid var(--border);
      border-radius: var(--radius); margin-bottom: .35rem;
      cursor: pointer; transition: border-color .2s, background .2s;
      user-select: none;
    }
    .svc-check-item:hover { border-color: var(--rose); }
    .svc-check-item.selected { border-color: var(--rose); background: var(--rose-light); }
    .svc-check-item input[type=checkbox] { accent-color: var(--rose); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; margin-top: 3px; }
    .svc-check-obs { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; font-style: italic; }
