/* ============================================================
   Massagem Rio - CSS Sistema PHP
   Fiel ao design original (dark theme + gold accents)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold-400: #d4a843;
  --gold-500: #c9a84c;
  --gold-600: #b8962f;
  --dark-950: #0a0a0a;
  --dark-900: #111111;
  --dark-800: #1a1a1a;
  --dark-700: #252525;
  --dark-600: #333333;
  --dark-500: #555555;
  --dark-400: #777777;
  --dark-300: #999999;
  --dark-200: #bbbbbb;
  --dark-100: #dddddd;
  --green-400: #4ade80;
  --red-400: #f87171;
  --yellow-400: #facc15;
  --blue-400: #60a5fa;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark-950);
  color: var(--dark-100);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; background: var(--gold-500); color: var(--dark-950);
  font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; border: none; cursor: pointer; transition: background 0.3s, box-shadow 0.3s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover { background: var(--gold-400); box-shadow: 0 4px 24px rgba(201,168,76,0.2); }
.btn-gold:active { transform: scale(0.97); }

.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; border: 1px solid var(--gold-500); color: var(--gold-500);
  font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; background: transparent; cursor: pointer; transition: background 0.3s, color 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-outline-gold:hover { background: var(--gold-500); color: var(--dark-950); }

/* ---- Typography helpers ---- */
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.section-subtitle { color: var(--gold-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; margin-bottom: 0.75rem; }
.gold-divider { width: 4rem; height: 1px; background: var(--gold-500); margin: 1rem 0; }
.gold-divider.center { margin: 1rem auto; }

/* ---- Cards & Forms ---- */
.card-dark { background: var(--dark-900); border: 1px solid var(--dark-800); transition: border-color 0.3s, box-shadow 0.3s; }
.card-dark:hover { border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 40px rgba(201,168,76,0.05); }
.input-dark { width: 100%; background: var(--dark-800); border: 1px solid var(--dark-700); color: #fff; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.input-dark::placeholder { color: var(--dark-400); }
.input-dark:focus { border-color: var(--gold-500); }
.select-dark { width: 100%; background: var(--dark-800); border: 1px solid var(--dark-700); color: #fff; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: 'Inter', sans-serif; outline: none; appearance: none; cursor: pointer; transition: border-color 0.2s; }
.select-dark:focus { border-color: var(--gold-500); }
.select-dark option { background: var(--dark-800); }
.label-dark { display: block; color: var(--dark-300); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Header ---- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #000000; backdrop-filter: blur(4px); border-bottom: 1px solid rgba(26,26,26,0.6); padding: 1rem 0; transition: padding 0.3s, background 0.3s, box-shadow 0.3s; }
.site-header.scrolled { background: rgba(10,10,10,0.98); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.3); padding: 0.75rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-img { height: 5rem; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; letter-spacing: 0.05em; }
.logo-sub { color: var(--gold-500); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; }
.desktop-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link { color: var(--dark-200); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; transition: color 0.2s; background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 0.25rem; font-family: 'Inter', sans-serif; }
.nav-link:hover, .nav-link.active { color: var(--gold-400); }
.dropdown-wrap { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%) translateY(-0.5rem); width: 18rem; background: var(--dark-900); border: 1px solid var(--dark-800); box-shadow: 0 20px 60px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; }
.dropdown-menu.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown-inner { padding: 0.5rem; }
.dropdown-header { display: block; padding: 0.5rem 1rem; color: var(--gold-500); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; border-bottom: 1px solid var(--dark-800); margin-bottom: 0.25rem; transition: background 0.15s; }
.dropdown-header:hover { background: var(--dark-800); }
.dropdown-item { display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; color: var(--dark-300); font-size: 0.875rem; transition: color 0.15s, background 0.15s; }
.dropdown-item:hover { color: #fff; background: var(--dark-800); }
.dropdown-duration { display: flex; align-items: center; gap: 0.25rem; color: var(--dark-600); font-size: 0.7rem; transition: color 0.15s; }
.dropdown-item:hover .dropdown-duration { color: rgba(201,168,76,0.6); }
.dropdown-footer { padding: 0.75rem 1rem; background: rgba(26,26,26,0.5); border-top: 1px solid var(--dark-800); text-align: center; }
.dropdown-footer a { color: var(--gold-500); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; transition: color 0.15s; }
.dropdown-footer a:hover { color: var(--gold-400); }
.header-actions { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.header-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--dark-300); font-size: 0.875rem; transition: color 0.2s; }
.header-phone:hover { color: var(--gold-400); }
.mobile-menu-btn { display: flex; align-items: center; background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; transition: color 0.2s; }
.mobile-menu-btn:hover { color: var(--gold-400); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu { background: rgba(10,10,10,0.98); backdrop-filter: blur(12px); border-top: 1px solid var(--dark-800); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-menu.open { max-height: 100vh; }
.mobile-menu-inner { padding: 1rem; }
.mobile-nav-link { display: block; padding: 0.75rem 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark-200); border-bottom: 1px solid var(--dark-800); transition: color 0.2s; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold-400); }
.mobile-services-wrap { border-bottom: 1px solid var(--dark-800); }
.mobile-services-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.75rem 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark-200); background: none; border: none; cursor: pointer; transition: color 0.2s; font-family: 'Inter', sans-serif; }
.mobile-services-btn:hover { color: var(--gold-400); }
.mobile-services-list { max-height: 0; overflow: hidden; background: rgba(17,17,17,0.5); transition: max-height 0.2s; }
.mobile-services-list.open { max-height: 30rem; }
.mobile-service-header { display: block; padding: 0.5rem 1rem; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-500); border-bottom: 1px solid rgba(26,26,26,0.5); }
.mobile-service-item { display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--dark-300); transition: color 0.15s; }
.mobile-service-item:hover { color: #fff; }
.mobile-duration { font-size: 0.7rem; color: var(--dark-600); }
.mobile-cta { width: 100%; text-align: center; margin-top: 1rem; }

/* ---- Footer ---- */
.site-footer { background: var(--dark-950); border-top: 1px solid var(--dark-800); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-grid { padding: 4rem 2rem; } }
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; }
.gold-line { width: 2.5rem; height: 1px; background: var(--gold-500); margin-top: 0.75rem; }
.footer-tagline { color: var(--dark-400); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 22rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 2.25rem; height: 2.25rem; border: 1px solid var(--dark-700); display: flex; align-items: center; justify-content: center; color: var(--dark-400); transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--gold-500); color: var(--gold-500); }
.footer-heading { color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.footer-links, .footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--dark-400); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-list svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a, .footer-contact-list span { color: var(--dark-400); font-size: 0.875rem; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold-400); }
.footer-nav-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-links a { color: var(--dark-400); font-size: 0.875rem; transition: color 0.2s; display: block; }
.footer-nav-links a:hover { color: var(--gold-400); }
.footer-bottom { border-top: 1px solid var(--dark-800); padding: 2rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copy { color: var(--dark-500); font-size: 0.75rem; }
.footer-location { color: var(--dark-600); font-size: 0.75rem; }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.2s;
}
.whatsapp-btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: #25D366; border-radius: 50%; z-index: -1; animation: radar-pulse 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn:hover::before { animation: none; opacity: 0; }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 0.75rem); background: var(--dark-900);
  color: #fff; font-size: 0.7rem; padding: 0.375rem 0.75rem; white-space: nowrap;
  opacity: 0; pointer-events: none; border: 1px solid var(--dark-700); border-radius: 4px; transition: opacity 0.2s;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
@keyframes radar-pulse { 0% { transform: scale(1); opacity: 0.8; } 70% { transform: scale(1.6); opacity: 0; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================================
   GRID PERFEITO - TERAPEUTAS (100% Alinhado e Proporcional)
   ============================================================ */

.therapist-section { padding-top: 5rem; background: var(--dark-950); }
.therapist-title-block { text-align: center; margin-bottom: 2rem; }
.therapist-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 1.875rem); color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.therapist-divider { width: 5rem; height: 1px; background: var(--gold-500); margin: 0 auto; }

/* O Grid Controla as Colunas */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas Mobile */
    gap: 10px; /* Espaço Mobile */
    padding: 20px 0;
}
@media (min-width: 640px) { .therapist-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .therapist-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; } }

/* O Card agora só estica até o limite de seu próprio conteúdo */
.therapist-card {
    display: flex; flex-direction: column; background: var(--dark-900);
    border-radius: 8px; overflow: hidden; border: 1px solid var(--dark-800);
    transition: transform 0.3s, border-color 0.3s; height: 100%;
}
.therapist-card:hover { border-color: var(--gold-500); transform: translateY(-3px); }
.therapist-card-link { display: block; width: 100%; }

/* Wrapper que força o Aspect Ratio 3:4 perfeitamente sem bugs */
.therapist-card-img-wrap {
    position: relative; width: 100%; padding-bottom: 133.33%; /* 4/3 = 1.3333 -> Magia do padding para imagens perfeitas! */
    background: var(--dark-800);
}

.therapist-card-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top; display: block; transition: transform 0.7s;
}

.therapist-card-overlay {
    position: absolute; inset: 0; background: rgba(10,10,10,0.6);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s;
}
.therapist-card-link:hover .therapist-card-overlay { opacity: 1; }

.therapist-card-overlay-text {
    color: #fff; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em;
    border: 1px solid rgba(255,255,255,0.3); padding: 0.375rem 1rem;
}

.therapist-card-badge {
    position: absolute; top: 0.5rem; left: 0.5rem; background: var(--gold-500); color: var(--dark-950);
    font-size: 0.6rem; font-weight: 700; padding: 0.125rem 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; z-index: 10;
}

/* Footer do Card com espaço fixo pra não quebrar nunca */
.therapist-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem; background: var(--dark-900); min-height: 48px; margin-top: auto;
}

.therapist-card-name {
    color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 500; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-right: 5px;
}

.therapist-wa-btn { color: #25D366; flex-shrink: 0; transition: transform 0.2s; display: flex; }
.therapist-wa-btn:hover { transform: scale(1.1); }

/* ---- Locations Section ---- */
.locations-section { padding: 6rem 0; background: var(--dark-950); }
.locations-header { text-align: center; margin-bottom: 4rem; }
.locations-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: 1fr 1fr; } }
.location-card { background: var(--dark-900); border: 1px solid var(--dark-800); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.location-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 40px rgba(201,168,76,0.05); }
.location-img-wrap { position: relative; height: 13rem; overflow: hidden; }
.location-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.location-card:hover .location-img { transform: scale(1.05); }
.location-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%); }
.location-name { position: absolute; bottom: 1rem; left: 1rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; }
.location-body { padding: 1.5rem; }
.location-address { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.location-address svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.location-address span { color: var(--dark-300); font-size: 0.875rem; }
.location-desc { color: var(--dark-400); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }

/* ---- CTA Section ---- */
.cta-section { position: relative; padding: 8rem 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.cta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.85); }
.cta-content { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
.cta-desc { color: var(--dark-300); max-width: 36rem; margin: 1rem auto 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; justify-content: center; } }

/* ---- Page Hero ---- */
.page-hero { position: relative; padding: 5rem 0; background: var(--dark-900); border-bottom: 1px solid var(--dark-800); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; }
.page-hero-content { position: relative; max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1rem; }

/* ---- Therapist Detail (Página Perfil da Menina) ---- */
.therapist-detail { max-width: 1280px; margin: 0 auto; padding: 1.5rem 1rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--dark-400); font-size: 0.875rem; margin-bottom: 2rem; transition: color 0.2s; }
.back-link:hover { color: var(--gold-400); }
.therapist-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .therapist-detail-grid { grid-template-columns: 1fr 1fr; } }
.photo-column { max-width: 480px; width: 100%; }
.therapist-main-img-square { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: top; border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.4); background-color: var(--dark-900); }
.gallery-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; }
.gallery-thumb { flex-shrink: 0; width: 5rem; height: 5rem; overflow: hidden; border: 2px solid transparent; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: all 0.2s; }
.gallery-thumb.active { border-color: var(--gold-500); opacity: 1; }
.gallery-thumb:hover { opacity: 1; border-color: var(--gold-500); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.therapist-info-stars { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.therapist-info-name { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #fff; margin-bottom: 0.75rem; }
.therapist-info-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.therapist-info-spec { font-size: 0.65rem; color: var(--gold-400); border: 1px solid rgba(201,168,76,0.4); padding: 0.25rem 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.therapist-gold-line { width: 3rem; height: 1px; background: var(--gold-500); margin-bottom: 1.5rem; }
.therapist-bio { color: var(--dark-300); line-height: 1.8; white-space: pre-line; margin-bottom: 2rem; }
.therapist-cta-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .therapist-cta-btns { flex-direction: row; } }

/* ---- Services / Massagens ---- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card { background: var(--dark-900); border: 1px solid var(--dark-800); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.3s; }
.service-card:hover { border-color: rgba(201,168,76,0.4); }
.service-img-wrap { position: relative; height: 14rem; overflow: hidden; flex-shrink: 0; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-card:hover .service-img { transform: scale(1.1); }
.service-img-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 60%); }
.service-duration { position: absolute; bottom: 0.75rem; left: 1rem; display: flex; align-items: center; gap: 0.375rem; color: var(--gold-400); font-size: 0.75rem; }
.service-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.5rem; }
.service-desc { color: var(--dark-400); font-size: 0.875rem; line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.service-footer { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.service-book-link { display: flex; align-items: center; gap: 0.375rem; color: var(--gold-500); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; transition: color 0.2s; }
.service-book-link:hover { color: var(--gold-400); }
.service-wa-link { margin-left: auto; display: flex; align-items: center; gap: 0.375rem; color: #25D366; font-size: 0.75rem; transition: opacity 0.2s; }
.service-wa-link:hover { opacity: 0.8; }

/* ---- Schedule Page ---- */
.schedule-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .schedule-grid { grid-template-columns: 2fr 1fr; } }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 2rem; }
.error-msg { color: var(--red-400); font-size: 0.875rem; margin-bottom: 1rem; }
.submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 1rem; }
.schedule-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; }
.sidebar-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.sidebar-card-sm-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.75rem; }
.sidebar-card-desc { color: var(--dark-400); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.schedule-hours { display: flex; flex-direction: column; gap: 0.75rem; }
.schedule-hour-row { display: flex; justify-content: space-between; font-size: 0.875rem; }
.schedule-hour-day { color: var(--dark-400); }
.schedule-hour-time { color: var(--gold-400); }
.schedule-units { display: flex; flex-direction: column; gap: 0.75rem; }
.schedule-unit-name { color: var(--gold-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.schedule-unit-addr { color: var(--dark-400); font-size: 0.875rem; }
.unit-divider { width: 100%; height: 1px; background: var(--dark-800); margin: 0.375rem 0; }

/* ---- About Page ---- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 24rem; object-fit: cover; }
.about-img-deco-1 { position: absolute; bottom: -1rem; left: -1rem; width: 6rem; height: 6rem; border: 2px solid var(--gold-500); }
.about-img-deco-2 { position: absolute; top: -1rem; right: -1rem; width: 6rem; height: 6rem; border: 2px solid rgba(201,168,76,0.3); }
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .about-values-grid { grid-template-columns: repeat(4, 1fr); } }
.about-value-card { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; text-align: center; }
.about-value-icon { width: 3rem; height: 3rem; border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.about-value-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }
.about-value-desc { color: var(--dark-400); font-size: 0.875rem; line-height: 1.6; }
.about-mission { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 3rem; text-align: center; }
.about-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2.5vw, 1.875rem); color: #fff; font-style: italic; line-height: 1.5; max-width: 48rem; margin: 0.5rem auto 2rem; }

/* ---- Clinic Info Page ---- */
.clinic-units-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; margin-bottom: 5rem; }
@media (min-width: 1024px) { .clinic-units-grid { grid-template-columns: 1fr 1fr; } }
.clinic-unit-img { width: 100%; height: 16rem; object-fit: cover; margin-bottom: 1.5rem; }
.clinic-unit-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.clinic-unit-address { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.clinic-unit-address svg { color: var(--gold-500); flex-shrink: 0; }
.clinic-unit-address span { color: var(--dark-300); font-size: 0.875rem; }
.clinic-unit-desc { color: var(--dark-400); line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.875rem; }
.clinic-unit-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.clinic-info-item { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1rem; }
.clinic-info-label { display: flex; align-items: center; gap: 0.5rem; color: var(--dark-500); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.clinic-info-label svg { color: var(--gold-500); }
.clinic-info-value { color: #fff; font-size: 0.875rem; }
.clinic-map { height: 14rem; overflow: hidden; }
.clinic-map iframe { border: 0; width: 100%; height: 100%; }
.clinic-no-map { height: 14rem; background: var(--dark-900); border: 1px solid var(--dark-800); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; color: var(--dark-500); font-size: 0.875rem; }
.gallery-section { text-align: center; margin-bottom: 4rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* ---- Admin ---- */
.admin-layout { min-height: 100vh; background: var(--dark-950); display: flex; }
.admin-sidebar { position: fixed; top: 0; bottom: 0; left: 0; width: 16rem; background: var(--dark-900); border-right: 1px solid var(--dark-800); transform: translateX(-100%); transition: transform 0.3s; z-index: 50; }
.admin-sidebar.open { transform: translateX(0); }
@media (min-width: 1024px) { .admin-sidebar { transform: translateX(0) !important; } }
.admin-sidebar-header { padding: 1.5rem; border-bottom: 1px solid var(--dark-800); }
.admin-sidebar-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; display: block; }
.admin-sidebar-sub { color: var(--gold-500); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.2em; display: block; margin-top: 0.25rem; }
.admin-nav { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.admin-nav-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--dark-400); transition: color 0.2s, background 0.2s; border-left: 2px solid transparent; }
.admin-nav-item:hover { color: #fff; background: var(--dark-800); }
.admin-nav-item.active { background: rgba(201,168,76,0.1); color: var(--gold-400); border-left-color: var(--gold-500); }
.admin-nav-arrow { margin-left: auto; }
.admin-sidebar-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; border-top: 1px solid var(--dark-800); }
.admin-user-email { padding: 0.5rem 1rem 0.25rem; color: var(--dark-500); font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.admin-logout-btn { display: flex; align-items: center; gap: 0.75rem; width: 100%; padding: 0.75rem 1rem; color: var(--dark-400); background: none; border: none; cursor: pointer; font-size: 0.875rem; font-family: 'Inter', sans-serif; transition: color 0.2s, background 0.2s; text-align: left; }
.admin-logout-btn:hover { color: var(--red-400); background: rgba(248,113,113,0.05); }
.admin-main { flex: 1; margin-left: 0; min-width: 0; }
@media (min-width: 1024px) { .admin-main { margin-left: 16rem; } }
.admin-topbar { background: var(--dark-900); border-bottom: 1px solid var(--dark-800); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.admin-hamburger { display: flex; background: none; border: none; color: var(--dark-400); cursor: pointer; padding: 0; transition: color 0.2s; }
.admin-hamburger:hover { color: #fff; }
@media (min-width: 1024px) { .admin-hamburger { display: none; } }
.admin-topbar-actions { display: flex; align-items: center; gap: 1rem; }
.admin-view-site { color: var(--dark-400); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.2s; }
.admin-view-site:hover { color: var(--gold-400); }
.admin-content { padding: 1.5rem; }
@media (min-width: 1024px) { .admin-content { padding: 2rem; } }
.admin-card { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; }
.admin-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.admin-page-title { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; }
.stat-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.stat-card-label { color: var(--dark-400); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-card-icon svg { width: 20px; height: 20px; }
.stat-card-icon.gold svg { color: var(--gold-500); }
.stat-card-icon.blue svg { color: var(--blue-400); }
.stat-card-icon.green svg { color: var(--green-400); }
.stat-card-icon.purple svg { color: #a78bfa; }
.stat-card-value { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: #fff; }
.dashboard-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .dashboard-grid { grid-template-columns: 1fr 1fr; } }
.chart-bars { display: flex; align-items: flex-end; gap: 0.75rem; height: 10rem; }
.chart-bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; height: 100%; }
.chart-bar-count { color: var(--dark-500); font-size: 0.75rem; }
.chart-bar { width: 100%; background: rgba(201,168,76,0.2); border-top: 2px solid var(--gold-500); min-height: 4px; transition: height 0.5s; }
.chart-bar-date { color: var(--dark-500); font-size: 0.75rem; }
.no-data { text-align: center; padding: 3rem 0; color: var(--dark-500); }
.recent-appointments-list { display: flex; flex-direction: column; gap: 0; }
.recent-appt-row { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--dark-800); }
.recent-appt-row:last-child { border-bottom: none; }
.recent-appt-name { color: #fff; font-size: 0.875rem; font-weight: 500; }
.recent-appt-phone { color: var(--dark-500); font-size: 0.75rem; }
.status-badge { font-size: 0.65rem; font-weight: 500; }
.status-badge.pending { color: var(--yellow-400); }
.status-badge.confirmed { color: var(--green-400); }
.status-badge.cancelled { color: var(--red-400); }
.status-badge.completed { color: var(--dark-400); }
.therapists-list { display: flex; flex-direction: column; gap: 0.75rem; }
.therapist-list-row { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.therapist-thumb { width: 3rem; height: 3rem; overflow: hidden; background: var(--dark-800); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark-600); }
.therapist-thumb img { width: 100%; height: 100%; object-fit: cover; }
.therapist-row-info { flex: 1; min-width: 0; }
.therapist-row-name { color: #fff; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.therapist-row-specs { color: var(--dark-500); font-size: 0.75rem; }
.therapist-row-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.status-pill { font-size: 0.65rem; padding: 0.25rem 0.75rem; border: 1px solid; cursor: pointer; background: none; font-family: 'Inter', sans-serif; transition: background 0.2s; }
.status-pill.active { border-color: rgba(74,222,128,0.4); color: var(--green-400); }
.status-pill.active:hover { background: rgba(74,222,128,0.1); }
.status-pill.inactive { border-color: var(--dark-700); color: var(--dark-500); }
.status-pill.inactive:hover { border-color: var(--dark-600); }
.icon-btn { padding: 0.5rem; color: var(--dark-400); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.icon-btn:hover.edit { color: var(--gold-400); }
.icon-btn:hover.delete { color: var(--red-400); }
.icon-btn svg { width: 16px; height: 16px; }
.admin-modal-backdrop { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,0.6); display: flex; align-items: flex-start; justify-content: center; padding: 1rem; overflow-y: auto; }
.admin-modal { background: var(--dark-900); border: 1px solid var(--dark-800); width: 100%; max-width: 42rem; margin: 2rem auto; }
.admin-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--dark-800); }
.admin-modal-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; }
.admin-modal-close { background: none; border: none; color: var(--dark-400); cursor: pointer; transition: color 0.2s; }
.admin-modal-close:hover { color: #fff; }
.admin-modal-body { padding: 1.5rem; }
.admin-modal-footer { display: flex; gap: 0.75rem; padding: 1.5rem; border-top: 1px solid var(--dark-800); }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tag-item { display: flex; align-items: center; gap: 0.375rem; background: rgba(201,168,76,0.1); color: var(--gold-400); font-size: 0.75rem; padding: 0.25rem 0.75rem; border: 1px solid rgba(201,168,76,0.3); }
.tag-remove { background: none; border: none; cursor: pointer; color: var(--gold-400); display: flex; padding: 0; }
.gallery-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.gallery-preview-item { position: relative; }
.gallery-preview-item img { width: 100%; height: 5rem; object-fit: cover; }
.gallery-preview-remove { position: absolute; top: 0.25rem; right: 0.25rem; background: rgba(239,68,68,0.8); color: #fff; border: none; border-radius: 50%; width: 1.25rem; height: 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.2s; }
.gallery-preview-item:hover .gallery-preview-remove { opacity: 1; }
.toggle-switch { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.toggle-track { position: relative; width: 2.5rem; height: 1.5rem; border-radius: 0; transition: background 0.2s; cursor: pointer; }
.toggle-track.on { background: var(--gold-500); }
.toggle-track.off { background: var(--dark-700); }
.toggle-thumb { position: absolute; top: 0.25rem; width: 1rem; height: 1rem; background: #fff; transition: left 0.2s; }
.toggle-thumb.on { left: 1.25rem; }
.toggle-thumb.off { left: 0.25rem; }
.toggle-label { color: var(--dark-300); font-size: 0.875rem; }
.appt-filters { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .appt-filters { flex-direction: row; } }
.search-wrap { position: relative; flex: 1; }
.search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--dark-500); width: 16px; height: 16px; }
.search-input { padding-left: 2.5rem; }
.appt-list { display: flex; flex-direction: column; gap: 0.75rem; }
.appt-row { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 1.5rem; cursor: pointer; transition: border-color 0.2s; }
.appt-row:hover { border-color: rgba(201,168,76,0.3); }
.appt-row-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.appt-client { display: flex; align-items: center; gap: 0.75rem; }
.appt-avatar { width: 2.5rem; height: 2.5rem; background: var(--dark-800); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-name { color: #fff; font-weight: 500; }
.appt-meta { display: flex; align-items: center; gap: 0.75rem; color: var(--dark-500); font-size: 0.75rem; margin-top: 0.25rem; }
.appt-meta-item { display: flex; align-items: center; gap: 0.25rem; }
.appt-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.appt-date { display: flex; align-items: center; gap: 0.25rem; color: var(--dark-400); font-size: 0.75rem; }
.appt-status-badge { font-size: 0.65rem; padding: 0.25rem 0.625rem; border: 1px solid; }
.appt-status-badge.pending { background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.3); color: var(--yellow-400); }
.appt-status-badge.confirmed { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); color: var(--green-400); }
.appt-status-badge.cancelled { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.3); color: var(--red-400); }
.appt-status-badge.completed { background: var(--dark-800); border-color: var(--dark-700); color: var(--dark-400); }
.appt-created { color: var(--dark-600); font-size: 0.75rem; }
.appt-detail-grid { display: flex; flex-direction: column; gap: 1rem; }
.appt-detail-row { display: flex; gap: 1rem; }
.appt-detail-label { color: var(--dark-500); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; width: 6rem; flex-shrink: 0; padding-top: 2px; }
.appt-detail-value { color: var(--dark-200); font-size: 0.875rem; flex: 1; }
.status-change-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.status-change-btn { font-size: 0.75rem; padding: 0.5rem 1rem; border: 1px solid; background: none; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s, color 0.2s; color: var(--dark-400); border-color: var(--dark-700); }
.status-change-btn:hover { border-color: var(--dark-500); color: #fff; }
.status-change-btn.pending.active { background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.3); color: var(--yellow-400); }
.status-change-btn.confirmed.active { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3); color: var(--green-400); }
.status-change-btn.cancelled.active { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.3); color: var(--red-400); }
.status-change-btn.completed.active { background: var(--dark-800); border-color: var(--dark-700); color: var(--dark-400); font-weight: 600; }
.settings-groups { display: flex; flex-direction: column; gap: 2rem; }
.settings-group-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--dark-800); }
.settings-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .settings-grid { grid-template-columns: 1fr 1fr; } }
.color-input-wrap { display: flex; align-items: center; gap: 0.75rem; }
.color-swatch { width: 3rem; height: 2.5rem; background: transparent; border: 1px solid var(--dark-700); cursor: pointer; }
.admin-login-page { min-height: 100vh; background: var(--dark-950); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.admin-login-box { width: 100%; max-width: 28rem; }
.admin-login-header { text-align: center; margin-bottom: 2.5rem; }
.admin-login-icon { width: 3.5rem; height: 3.5rem; border: 1px solid var(--gold-500); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.admin-login-icon svg { color: var(--gold-500); }
.admin-login-title { font-family: 'Playfair Display', serif; font-size: 1.875rem; color: #fff; margin-bottom: 0.5rem; }
.admin-login-sub { color: var(--dark-400); font-size: 0.875rem; }
.admin-login-form { background: var(--dark-900); border: 1px solid var(--dark-800); padding: 2rem; }
.add-btn-row { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; }
.add-btn-row .input-dark { flex: 1; }
.add-btn-row .btn-gold { padding: 0.75rem 1rem; flex-shrink: 0; }
.animate-pulse { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.loading-block { background: var(--dark-800); height: 1rem; }

/* Status action buttons in appointment modal */
.status-action-btn { font-size: 0.75rem; padding: 0.5rem 1rem; border: 1px solid var(--dark-700); color: var(--dark-400); background: transparent; cursor: pointer; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.status-action-btn:hover { border-color: var(--dark-500); color: var(--dark-200); }
.status-action-btn.active.status-pending   { border-color: rgba(250,204,21,0.4);  color: var(--yellow-400); background: rgba(250,204,21,0.08); }
.status-action-btn.active.status-confirmed { border-color: rgba(74,222,128,0.4);  color: var(--green-400);  background: rgba(74,222,128,0.08); }
.status-action-btn.active.status-cancelled { border-color: rgba(248,113,113,0.4); color: var(--red-400);    background: rgba(248,113,113,0.08); }
.status-action-btn.active.status-completed { border-color: var(--dark-600); color: var(--dark-300); background: var(--dark-800); }

/* Appointment status pills */
.status-pill { font-size: 0.65rem; padding: 0.25rem 0.75rem; border: 1px solid; cursor: pointer; background: none; font-family: 'Inter', sans-serif; transition: background 0.2s; }
.status-pill.status-pending   { border-color: rgba(250,204,21,0.4);  color: var(--yellow-400); }
.status-pill.status-confirmed { border-color: rgba(74,222,128,0.4);  color: var(--green-400); }
.status-pill.status-cancelled { border-color: rgba(248,113,113,0.4); color: var(--red-400); }
.status-pill.status-completed { border-color: var(--dark-700); color: var(--dark-400); }
.status-pill.active { border-color: rgba(74,222,128,0.4); color: var(--green-400); }
.status-pill.active:hover { background: rgba(74,222,128,0.1); }
.status-pill.inactive { border-color: var(--dark-700); color: var(--dark-500); }
.status-pill.inactive:hover { border-color: var(--dark-600); }