/* ================================================================
   STYLES.CSS — How the app looks
   ================================================================
   Edit this file to change colors, fonts, layout, and appearance.

   SECTIONS:
   - CSS Variables / Theme (line ~5)
   - Loading & Login screens (line ~80)
   - Page System & Navigation (line ~120)
   - Hero Section (line ~300)
   - Buttons & Forms (line ~400)
   - Service Cards (line ~500)
   - Booking Page (line ~600)
   - Admin Dashboard (line ~800)
   - Footer & Review (line ~1000)
   - Responsive / Mobile (line ~2000)
   ================================================================ */

:root {
  --gold: #C8A84E;
  --gold-light: #E2CA7B;
  --gold-dark: #9A7B2F;
  --navy: #0B1120;
  --navy-light: #131D35;
  --navy-mid: #1A2744;
  --ocean: #0E3B5F;
  --pearl: #F5F0E8;
  --pearl-dark: #E8DFD0;
  --cream: #FDF9F0;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #6B7A8D;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(200, 168, 78, 0.15);
  --shadow-luxury: 0 25px 60px rgba(0, 0, 0, 0.3);
  --radius: 16px;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html.dark {
  --bg-primary: #050505;
  --bg-secondary: #0A0A0A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --text-primary: var(--pearl);
  --text-secondary: #8A9BB5;
  --text-heading: var(--white);
  --border-subtle: rgba(200, 168, 78, 0.12);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(200, 168, 78, 0.18);
  --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

html:not(.dark) {
  --bg-primary: #070707;
  --bg-secondary: #0C0C0C;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --text-primary: var(--pearl);
  --text-secondary: #8A9BB5;
  --text-heading: var(--white);
  --border-subtle: rgba(200, 168, 78, 0.12);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(200, 168, 78, 0.18);
  --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
}
html.dark body, html:not(.dark) body {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(200, 168, 78, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 90%, rgba(200, 168, 78, 0.03) 0%, transparent 45%),
    #050505;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #050505;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease;
}
.loading-overlay.fade-out { opacity: 0; pointer-events: none; }
.loading-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(200, 168, 78, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}
.loading-error {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; color: #e8654a;
  text-align: center; max-width: 350px; line-height: 1.6;
}

/* ===== LOGIN PAGE ===== */
.login-page {
  position: fixed; inset: 0; z-index: 9998;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 168, 78, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(200, 168, 78, 0.04) 0%, transparent 40%),
    #050505;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.5s ease;
}
.login-page.hidden { opacity: 0; pointer-events: none; }
.login-card {
  width: 100%; max-width: 400px; margin: 0 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: fadeInUp 0.6s ease both;
}
.login-logo {
  text-align: center; margin-bottom: 2rem;
}
.login-logo-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
}
.login-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--text-heading);
  font-weight: 400;
}
.login-logo-sub {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-secondary); margin-top: 0.25rem;
}
.login-field {
  margin-bottom: 1.25rem;
}
.login-field label {
  display: block; font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.login-field input {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; color: var(--text-primary);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.login-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}
.login-field input::placeholder { color: var(--text-secondary); opacity: 0.5; }
.login-btn {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); cursor: pointer;
  transition: all 0.3s; margin-top: 0.5rem;
}
.login-btn:hover { box-shadow: 0 8px 25px rgba(200, 168, 78, 0.35); transform: translateY(-1px); }
.login-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.login-error {
  background: rgba(232, 101, 74, 0.1);
  border: 1px solid rgba(232, 101, 74, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem; color: #e8654a;
  margin-bottom: 1rem;
  display: none; align-items: center; gap: 0.5rem;
}
.login-error.show { display: flex; }
.login-back {
  display: block; text-align: center; margin-top: 1.25rem;
  font-size: 0.8rem; color: var(--text-secondary);
  text-decoration: none; cursor: pointer;
  transition: color 0.3s;
}
.login-back:hover { color: var(--gold); }

/* ===== PAGE SYSTEM ===== */
.page { display: none; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; overflow-x: hidden; }
.page.active { display: block; opacity: 1; transform: translateY(0); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--bg-primary);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
html.dark .nav.scrolled, html:not(.dark) .nav.scrolled { background: rgba(5, 5, 5, 0.88); }
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; cursor: pointer;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: transparent;
  border-radius: 0;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; letter-spacing: 1px;
  color: var(--text-heading);
  font-weight: 400;
}
.nav-logo-text .logo-gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
/* Nav Items Container */
.nav-items {
  display: flex; align-items: center; gap: 1.25rem;
  flex: 1;
  margin-left: 2rem;
}

/* Dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary);
  background: none; border: none;
  cursor: pointer; padding: 0.5rem 0;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover { color: var(--gold); }
.nav-dropdown-trigger .fa-chevron-down {
  font-size: 0.55rem; transition: transform 0.3s;
}
.nav-dropdown.open .nav-dropdown-trigger .fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-trigger { color: var(--gold); }
.nav-menu-trigger {
  font-size: 1.15rem;
  letter-spacing: 0;
  padding: 0.5rem;
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel.panel-right {
  left: auto; right: 0;
  transform: translateY(8px);
}
.nav-dropdown.open .nav-dropdown-panel.panel-right {
  transform: translateY(0);
}
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem; color: var(--text-secondary);
  text-decoration: none; cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-dropdown-panel a:hover {
  background: rgba(200, 168, 78, 0.08);
  color: var(--gold);
}
.nav-dropdown-panel a i {
  color: var(--gold); width: 20px; text-align: center;
  font-size: 0.85rem;
}

/* Floating Search / Track Bar */
.nav-search-bar {
  display: flex; align-items: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 0.35rem 0.4rem 0.35rem 1rem;
  gap: 0.5rem;
  flex: 1;
  max-width: 400px;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s, box-shadow 0.3s;
}
.nav-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.08);
}
.nav-search-bar.bar-hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.nav-search-icon {
  color: var(--text-secondary); font-size: 0.8rem;
  opacity: 0.5; flex-shrink: 0;
}
.nav-search-input {
  border: none; background: transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
  flex: 1;
  min-width: 0;
}
.nav-search-input::placeholder { color: var(--text-secondary); opacity: 0.5; }
.nav-track-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-track-btn:hover { box-shadow: 0 4px 15px rgba(200, 168, 78, 0.3); transform: translateY(-1px); }
.nav-track-btn i { font-size: 0.6rem; }

.nav-menu-dropdown {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.nav-hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Marcellus', serif;
  font-size: 1.8rem; color: var(--text-heading);
  text-decoration: none; letter-spacing: 3px;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 2rem; color: var(--gold); cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://pfst.cf2.poecdn.net/base/image/7263a17e4d3d8faa93dd06336128e273c80749e5cfcd62c805282b97c66173b3?w=1600&h=739')
    center center / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.5) 70%, rgba(5,5,5,0.95) 100%);
}
html:not(.dark) .hero-bg {
  background:
    url('https://pfst.cf2.poecdn.net/base/image/7263a17e4d3d8faa93dd06336128e273c80749e5cfcd62c805282b97c66173b3?w=1600&h=739')
    center center / cover no-repeat;
}
html:not(.dark) .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.5) 70%, rgba(5,5,5,0.95) 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade 4s infinite;
}
@keyframes particleFade {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  50% { opacity: 0.6; transform: translateY(-30px) scale(1.5); }
}
.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2;
}
.hero-wave svg { display: block; width: 100%; height: auto; }
.hero-wave path {
  fill: var(--bg-primary);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(200, 168, 78, 0.1);
  border: 1px solid rgba(200, 168, 78, 0.25);
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  animation: fadeInUp 0.8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
html.dark .hero-title { color: var(--white); }
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem; font-weight: 300;
  color: var(--text-secondary);
  max-width: 550px; margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 168, 78, 0.35);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200, 168, 78, 0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION COMMON ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: ''; width: 30px; height: 1px; background: var(--gold); opacity: 0.4;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* ===== TABS ===== */
.tabs {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-bottom: 3rem;
}
.tabs-scrollable {
  display: flex; gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.25rem;
  margin-bottom: 2rem;
}
.tabs-scrollable::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 50px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 500;
}
@media(max-width:768px) {
  .tab-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  border-color: rgba(200, 168, 78, 0.3);
}
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.service-card:hover .card-image-inner { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy);
}
.card-price-tag {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gold-light);
}
.card-body { padding: 1.5rem; }
.card-category {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.9rem; font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.card-meta {
  display: flex; align-items: center; gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.card-meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--text-secondary);
}
.card-meta-item i { color: var(--gold); font-size: 0.75rem; }
.card-cta {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-card:hover .card-cta { gap: 0.8rem; }

/* ===== BOOKING PAGE ===== */
.booking-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.booking-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  margin-bottom: 2rem;
  background: none; border: none;
  font-family: 'Outfit', sans-serif;
  transition: gap 0.3s;
}
.booking-back:hover { gap: 0.8rem; }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.booking-detail-image {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
}
.booking-detail-image > div {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.booking-info-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(200, 168, 78, 0.12);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 50px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.booking-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 400;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}
.booking-info-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.booking-info-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: var(--text-secondary);
}
.booking-info-desc {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.booking-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.feature-item i {
  color: var(--gold); font-size: 1rem;
  width: 20px; text-align: center;
}
.feature-item span {
  font-size: 0.85rem; color: var(--text-primary);
}

/* Booking Form */
.booking-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 6rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}
.booking-form-card::-webkit-scrollbar { width: 4px; }
.booking-form-card::-webkit-scrollbar-track { background: transparent; }
.booking-form-card::-webkit-scrollbar-thumb { background: rgba(200, 168, 78, 0.3); border-radius: 2px; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.form-subtitle {
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A84E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 1.5rem 0;
}
.form-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}
.form-total-label {
  font-size: 0.9rem; color: var(--text-secondary);
}
.form-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--gold);
}
.btn-book {
  width: 100%;
  padding: 1.1rem;
  font-size: 0.85rem;
  justify-content: center;
}

/* ===== ADD-ONS ===== */
.addons-section {
  margin-bottom: 1.5rem;
}
.addons-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}
.addons-subheading {
  font-size: 0.8rem; color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.addons-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.addons-scroll::-webkit-scrollbar { width: 4px; }
.addons-scroll::-webkit-scrollbar-track { background: transparent; }
.addons-scroll::-webkit-scrollbar-thumb { background: rgba(200, 168, 78, 0.3); border-radius: 2px; }
.addon-category {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.addon-category.has-selection {
  border-color: rgba(200, 168, 78, 0.35);
}
.addon-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.1rem;
  background: var(--bg-glass);
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
}
.addon-cat-header:hover {
  background: rgba(200, 168, 78, 0.06);
}
.addon-cat-left {
  display: flex; align-items: center; gap: 0.7rem;
}
.addon-cat-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.15), rgba(200, 168, 78, 0.05));
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
}
.addon-cat-info {
  display: flex; flex-direction: column;
}
.addon-cat-name {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-heading);
  line-height: 1.3;
}
.addon-cat-count {
  font-size: 0.7rem; color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.addon-cat-right {
  display: flex; align-items: center; gap: 0.6rem;
}
.addon-cat-selected-badge {
  display: none;
  padding: 0.2rem 0.6rem;
  background: rgba(200, 168, 78, 0.12);
  border: 1px solid rgba(200, 168, 78, 0.2);
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
}
.addon-category.has-selection .addon-cat-selected-badge {
  display: inline-block;
}
.addon-cat-chevron {
  font-size: 0.7rem;
  color: var(--text-secondary);
  transition: transform 0.3s;
}
.addon-category.open .addon-cat-chevron {
  transform: rotate(180deg);
}
.addon-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.addon-category.open .addon-cat-body {
  max-height: 600px;
}
.addon-cat-body-inner {
  padding: 0.25rem 1.1rem 0.9rem;
}
.addon-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.addon-item:last-child {
  border-bottom: none;
}
.addon-item-left {
  display: flex; flex-direction: column; gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.addon-item-name {
  font-size: 0.85rem; font-weight: 400;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.addon-item-price {
  font-size: 0.75rem; font-weight: 400;
  color: var(--gold);
}
.addon-qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--input-border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.addon-qty-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass);
  border: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Outfit', sans-serif;
}
.addon-qty-btn:hover {
  background: rgba(200, 168, 78, 0.12);
  color: var(--gold);
}
.addon-qty-btn:active {
  background: rgba(200, 168, 78, 0.2);
}
.addon-qty-value {
  width: 36px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-heading);
  background: var(--input-bg);
  border-left: 1px solid var(--input-border);
  border-right: 1px solid var(--input-border);
}
.addon-qty-control.active {
  border-color: rgba(200, 168, 78, 0.4);
}
.addon-qty-control.active .addon-qty-value {
  color: var(--gold);
  font-weight: 600;
}

/* Price breakdown */
.price-breakdown {
  margin-bottom: 0.75rem;
}
.price-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}
.price-line-label { color: var(--text-secondary); }
.price-line-value { color: var(--text-primary); font-weight: 400; }
.price-line-addon {
  font-size: 0.8rem;
  padding: 0.25rem 0 0.25rem 0.75rem;
}
.price-line-addon .price-line-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.8;
}
.price-line-addon .price-line-value {
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.9;
}

/* Discount display */
.discount-banner {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(46, 160, 67, 0.1), rgba(46, 160, 67, 0.05));
  border: 1px solid rgba(46, 160, 67, 0.25);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.discount-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 160, 67, 0.15);
  border-radius: 8px;
  color: #2ea043;
  font-size: 0.9rem;
  flex-shrink: 0;
}
html.dark .discount-icon { color: #56d364; }
.discount-info {
  display: flex; flex-direction: column;
}
.discount-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #2ea043;
}
html.dark .discount-label { color: #56d364; }
.discount-detail {
  font-size: 0.82rem; color: var(--text-primary);
}
.discount-detail .original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-right: 0.4rem;
}
.discount-detail .save-amount {
  color: #2ea043;
  font-weight: 500;
}
html.dark .discount-detail .save-amount { color: #56d364; }
.price-line .discount-tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.15rem 0.5rem;
  background: rgba(46, 160, 67, 0.12);
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 600;
  color: #2ea043;
  margin-left: 0.4rem;
}
html.dark .price-line .discount-tag { color: #56d364; }

/* Referral section */
.referral-section {
  margin-bottom: 1.5rem;
}
.referral-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}
.referral-subheading {
  font-size: 0.8rem; color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.referral-source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.referral-source-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 0.7rem 0.4rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}
.referral-source-btn:hover {
  border-color: var(--gold);
}
.referral-source-btn.active {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
}
.referral-source-btn i {
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.referral-source-btn.active i {
  color: var(--gold);
}
.referral-source-btn span {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.referral-source-btn.active span {
  color: var(--gold);
  font-weight: 500;
}
.referral-code-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.referral-code-wrapper.open {
  max-height: 120px;
}
.referral-code-inner {
  padding-top: 0.5rem;
}
.referral-code-field {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.referral-code-field:focus-within {
  border-color: var(--gold);
}
.referral-code-prefix {
  padding: 0.8rem 0.9rem;
  background: var(--bg-glass);
  color: var(--gold);
  font-size: 0.9rem;
  border-right: 1px solid var(--input-border);
  display: flex; align-items: center;
}
.referral-code-input {
  flex: 1;
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--input-bg);
  border: none;
  color: var(--text-primary);
  outline: none;
}
@media (max-width: 600px) {
  .referral-source-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PROMO SCHEDULE ON CARDS ===== */
.card-schedule-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, rgba(200, 168, 78, 0.08), rgba(200, 168, 78, 0.03));
  border-top: 1px solid var(--border-subtle);
  gap: 0.75rem;
  flex-wrap: wrap;
}
.card-schedule-left {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--text-secondary);
  flex: 1; min-width: 0;
  line-height: 1.4;
}
.card-schedule-left i { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.card-countdown {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 500;
  color: #e8654a;
  letter-spacing: 0.3px;
}
html.dark .card-countdown { color: #f0876e; }
.card-countdown i { font-size: 0.65rem; }

/* ===== SCHEDULE SECTION ON BOOKING PAGE ===== */
.schedule-section {
  margin-bottom: 1.5rem;
}
.schedule-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.3rem;
}
.schedule-subheading {
  font-size: 0.8rem; color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.schedule-expiry-banner {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, rgba(232, 101, 74, 0.08), rgba(232, 101, 74, 0.03));
  border: 1px solid rgba(232, 101, 74, 0.2);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.schedule-expiry-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 101, 74, 0.12);
  border-radius: 8px;
  color: #e8654a;
  font-size: 0.85rem;
  flex-shrink: 0;
}
html.dark .schedule-expiry-icon { color: #f0876e; }
.schedule-expiry-info {
  display: flex; flex-direction: column;
}
.schedule-expiry-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #e8654a;
}
html.dark .schedule-expiry-label { color: #f0876e; }
.schedule-expiry-countdown {
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.schedule-expiry-countdown span {
  color: #e8654a;
  font-weight: 600;
}
html.dark .schedule-expiry-countdown span { color: #f0876e; }

/* Date pills */
.schedule-date-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.schedule-date-label i { color: var(--gold); font-size: 0.7rem; }
.schedule-date-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.schedule-date-pill {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.6rem 1rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  min-width: 80px;
}
.schedule-date-pill:hover { border-color: var(--gold); }
.schedule-date-pill.active {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
}
.schedule-date-pill .pill-day {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-secondary);
}
.schedule-date-pill.active .pill-day { color: var(--gold); }
.schedule-date-pill .pill-date {
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-heading);
  line-height: 1.3;
}
.schedule-date-pill.active .pill-date { color: var(--gold); }
.schedule-date-pill .pill-month {
  font-size: 0.62rem; font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.schedule-date-pill.active .pill-month { color: var(--gold); opacity: 0.8; }

/* Time slot pills */
.schedule-time-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.schedule-time-pill {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.schedule-time-pill i { font-size: 0.7rem; color: var(--text-secondary); }
.schedule-time-pill:hover { border-color: var(--gold); color: var(--gold); }
.schedule-time-pill:hover i { color: var(--gold); }
.schedule-time-pill.active {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.schedule-time-pill.active i { color: var(--gold); }
.schedule-time-pill.booked {
  opacity: 0.4; cursor: not-allowed;
  background: rgba(232, 101, 74, 0.06);
  border-color: rgba(232, 101, 74, 0.2);
  pointer-events: none;
  position: relative;
}
.schedule-time-pill.booked::after {
  content: 'BOOKED';
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 1px;
  color: #e8654a;
  position: absolute; bottom: 2px; right: 6px;
}

/* Locked field display */
.locked-field {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(200, 168, 78, 0.06);
  border: 1.5px solid rgba(200, 168, 78, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}
.locked-field i {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== CONFIRMATION MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-luxury);
  animation: modalIn 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  flex-shrink: 0;
}
@media(max-width:600px) {
  .modal-card {
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }
  .modal-icon { width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 1rem; }
  .modal-title { font-size: 1.6rem; }
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--navy);
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}
.modal-text {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.modal-text strong { color: var(--gold); }
.modal-close {
  padding: 0.85rem 2.5rem;
}

/* ===== FOOTER ===== */
/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  display: flex; align-items: center; gap: 0;
  transition: all 0.3s ease;
}
.wa-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.65rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.55);
}
.wa-float-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}
.wa-float-tooltip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: var(--text-heading);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.wa-float-tooltip::after {
  content: ''; position: absolute;
  right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--bg-card);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
@media (max-width: 600px) {
  .wa-float { bottom: 1rem; right: 1rem; }
  .wa-float-btn { width: 50px; height: 50px; font-size: 1.45rem; }
  .wa-float-tooltip { display: none; }
}

/* ===== ADMIN SETTINGS ===== */
.settings-container { max-width: 720px; }
.settings-group {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.settings-group.open { border-color: rgba(200,168,78,0.3); }
.settings-group-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer; user-select: none;
  transition: background 0.2s;
}
.settings-group-header:hover { background: rgba(200,168,78,0.03); }
.settings-group-left {
  display: flex; align-items: center; gap: 0.75rem;
}
.settings-group-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 0.95rem; flex-shrink: 0;
}
.settings-group-icon.wa { background: rgba(37,211,102,0.1); color: #25D366; }
.settings-group-icon.email { background: rgba(66,133,244,0.1); color: #4285F4; }
.settings-group-icon.payment { background: rgba(200,168,78,0.1); color: var(--gold); }
.settings-group-icon.review { background: rgba(251,188,5,0.1); color: #FBBC05; }
.settings-group-icon.social { background: rgba(131,58,180,0.1); color: #833AB4; }
.settings-group-icon.location { background: rgba(234,67,53,0.1); color: #EA4335; }
.settings-group-icon.usermgmt { background: rgba(99,179,237,0.1); color: #63B3ED; }
.settings-group-icon.branding { background: rgba(200,168,78,0.12); color: var(--gold); }
.settings-group-icon.addons { background: rgba(255,159,67,0.1); color: #FF9F43; }
.settings-group-icon.partners { background: rgba(0,206,209,0.1); color: #00CED1; }

.brand-preview {
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 0.85rem;
}
.brand-preview-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy); flex-shrink: 0;
}
.brand-preview-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; letter-spacing: 1px; color: var(--text-heading);
}
.brand-preview-text span { color: var(--gold); font-style: italic; font-weight: 600; }
.brand-preview-label {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-secondary); margin-bottom: 0.6rem;
}
.brand-icon-grid {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.35rem;
}
.brand-icon-opt {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1.5px solid var(--border-subtle);
  background: var(--bg-glass); color: var(--text-secondary);
  font-size: 0.9rem; cursor: pointer; transition: all 0.2s;
}
.brand-icon-opt:hover { border-color: var(--gold); color: var(--gold); }
.brand-icon-opt.selected { border-color: var(--gold); background: rgba(200,168,78,0.12); color: var(--gold); }

/* Logo display toggle */
.brand-display-toggle {
  display: flex; gap: 0; border-radius: 10px; overflow: hidden;
  border: 1.5px solid var(--border-subtle); margin-bottom: 0.85rem;
}
.brand-display-opt {
  flex: 1; padding: 0.6rem 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-secondary); background: transparent;
  border: none; cursor: pointer; transition: all 0.25s;
  font-family: 'Outfit', sans-serif;
}
.brand-display-opt:first-child { border-right: 1.5px solid var(--border-subtle); }
.brand-display-opt:hover { color: var(--gold); background: rgba(200,168,78,0.04); }
.brand-display-opt.active {
  color: var(--navy); background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-weight: 600;
}
.brand-display-opt i { font-size: 0.85rem; }

/* Logo upload */
.brand-logo-upload {
  position: relative;
  border: 2px dashed var(--border-subtle);
  border-radius: 12px; padding: 1rem;
  text-align: center; cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: var(--bg-glass); margin-top: 0.35rem;
}
.brand-logo-upload:hover { border-color: var(--gold); background: rgba(200,168,78,0.04); }
.brand-logo-upload.has-logo { border-style: solid; border-color: var(--gold); padding: 0; overflow: hidden; }
.brand-logo-upload input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2;
}
.brand-logo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--text-secondary); font-size: 0.8rem; padding: 0.5rem 0;
}
.brand-logo-placeholder i { font-size: 1.4rem; color: var(--gold); }
.brand-logo-img {
  max-width: 100%; max-height: 120px;
  object-fit: contain; display: block; margin: 0.6rem auto;
}
.brand-logo-actions {
  position: absolute; top: 0.5rem; right: 0.5rem;
  display: flex; gap: 0.35rem; z-index: 3;
}
.brand-logo-actions button {
  width: 28px; height: 28px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; cursor: pointer;
  background: rgba(0,0,0,0.6); color: #fff;
  backdrop-filter: blur(6px); transition: background 0.2s;
}
.brand-logo-actions button:hover { background: rgba(0,0,0,0.85); }
.brand-logo-actions button.remove { background: rgba(232,101,74,0.8); }
.brand-logo-actions button.remove:hover { background: rgba(232,101,74,1); }

/* Preview logo image */
.brand-preview-icon img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 50%;
}
/* Nav logo image */
.nav-logo-icon img.nav-logo-img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 50%;
}

/* Panel sections for conditional show/hide */
.brand-section-icon, .brand-section-logo { display: none; }
.brand-section-icon.visible, .brand-section-logo.visible { display: block; }

/* Add-on & Partner Management */
.mgmt-toolbar { display:flex; align-items:center; gap:0.6rem; margin-bottom:0.8rem; flex-wrap:wrap; }
.mgmt-toolbar-title { font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-secondary); flex:1; display:flex; align-items:center; gap:0.4rem; }
.mgmt-toolbar-title i { font-size:0.68rem; }
.mgmt-add-btn { padding:0.45rem 0.9rem; border-radius:8px; border:1px solid var(--gold); background:transparent; color:var(--gold); font-size:0.75rem; font-weight:600; cursor:pointer; transition:var(--transition); display:flex; align-items:center; gap:0.35rem; }
.mgmt-add-btn:hover { background:var(--gold); color:#fff; }
.mgmt-scroll-area { max-height:420px; overflow-y:auto; padding-right:0.25rem; }
.mgmt-scroll-area::-webkit-scrollbar { width:4px; }
.mgmt-scroll-area::-webkit-scrollbar-thumb { background:var(--gold); border-radius:2px; }
.mgmt-cat-card { border:1px solid var(--border-subtle); border-radius:12px; background:var(--bg-glass); margin-bottom:0.65rem; overflow:hidden; transition:var(--transition); }
.mgmt-cat-card:hover { border-color:rgba(200,168,78,0.25); }
.mgmt-cat-header { display:flex; align-items:center; gap:0.65rem; padding:0.75rem 1rem; cursor:pointer; user-select:none; }
.mgmt-cat-icon { width:32px; height:32px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.8rem; flex-shrink:0; }
.mgmt-cat-icon.food { background:rgba(255,159,67,0.12); color:#FF9F43; }
.mgmt-cat-icon.activity { background:rgba(46,160,67,0.12); color:#2ea043; }
.mgmt-cat-icon.comfort { background:rgba(131,58,180,0.12); color:#833AB4; }
.mgmt-cat-icon.safety { background:rgba(100,108,255,0.12); color:#646cff; }
.mgmt-cat-icon.default { background:rgba(200,168,78,0.12); color:var(--gold); }
.mgmt-cat-info { flex:1; min-width:0; }
.mgmt-cat-name { font-weight:600; font-size:0.88rem; color:var(--text-heading); }
.mgmt-cat-count { font-size:0.68rem; color:var(--text-secondary); margin-top:0.05rem; }
.mgmt-cat-actions { display:flex; gap:0.35rem; }
.mgmt-cat-actions button { width:28px; height:28px; border-radius:6px; border:1px solid var(--border-subtle); background:var(--bg-glass); color:var(--text-secondary); font-size:0.65rem; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.mgmt-cat-actions button:hover { border-color:var(--gold); color:var(--gold); }
.mgmt-cat-actions button.danger:hover { border-color:#e87461; color:#e87461; }
.mgmt-cat-chevron { color:var(--text-secondary); font-size:0.65rem; transition:transform 0.3s ease; flex-shrink:0; margin-left:0.2rem; }
.mgmt-cat-card.mgmt-open .mgmt-cat-chevron { transform:rotate(180deg); }
.mgmt-items-list { border-top:1px solid var(--border-subtle); max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.mgmt-cat-card.mgmt-open .mgmt-items-list { max-height:600px; }
.mgmt-item-row { display:flex; align-items:center; gap:0.6rem; padding:0.5rem 1rem 0.5rem 2.8rem; border-bottom:1px solid var(--border-subtle); font-size:0.82rem; }
.mgmt-item-row:last-child { border-bottom:none; }
.mgmt-item-name { flex:1; color:var(--text-primary); min-width:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mgmt-item-price { font-weight:600; color:var(--gold); font-size:0.78rem; white-space:nowrap; }
.mgmt-item-actions { display:flex; gap:0.25rem; }
.mgmt-item-actions button { width:24px; height:24px; border-radius:5px; border:1px solid var(--border-subtle); background:transparent; color:var(--text-secondary); font-size:0.58rem; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.mgmt-item-actions button:hover { border-color:var(--gold); color:var(--gold); }
.mgmt-item-actions button.danger:hover { border-color:#e87461; color:#e87461; }
.mgmt-empty { text-align:center; padding:1.5rem; color:var(--text-secondary); font-size:0.82rem; }
.mgmt-empty i { display:block; font-size:1.5rem; margin-bottom:0.5rem; opacity:0.4; }

/* Partner cards */
.partner-card { display:flex; align-items:center; gap:0.75rem; padding:0.75rem 1rem; border:1px solid var(--border-subtle); border-radius:10px; background:var(--bg-glass); margin-bottom:0.5rem; transition:var(--transition); }
.partner-card:hover { border-color:rgba(0,206,209,0.3); }
.partner-icon-circle { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:0.85rem; flex-shrink:0; background:rgba(0,206,209,0.1); color:#00CED1; }
.partner-info { flex:1; min-width:0; }
.partner-name { font-weight:600; font-size:0.88rem; color:var(--text-heading); }
.partner-detail { font-size:0.68rem; color:var(--text-secondary); display:flex; align-items:center; gap:0.5rem; margin-top:0.1rem; flex-wrap:wrap; }
.partner-type-badge { font-size:0.6rem; padding:0.12rem 0.45rem; border-radius:4px; background:rgba(0,206,209,0.08); border:1px solid rgba(0,206,209,0.2); color:#00CED1; font-weight:600; text-transform:uppercase; letter-spacing:0.03em; }
html:not(.dark) .partner-type-badge { color:#008B8B; }
.partner-commission { font-size:0.68rem; color:var(--gold); font-weight:600; }
.partner-actions { display:flex; gap:0.3rem; }
.partner-actions button { width:28px; height:28px; border-radius:6px; border:1px solid var(--border-subtle); background:var(--bg-glass); color:var(--text-secondary); font-size:0.65rem; cursor:pointer; transition:var(--transition); display:flex; align-items:center; justify-content:center; }
.partner-actions button:hover { border-color:var(--gold); color:var(--gold); }
.partner-actions button.danger:hover { border-color:#e87461; color:#e87461; }

/* Inline edit form for modals */
.mgmt-form-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:9999; display:flex; align-items:center; justify-content:center; padding:1rem; }
.mgmt-form-panel { background:var(--bg-secondary); border-radius:16px; max-width:440px; width:100%; max-height:90vh; overflow-y:auto; padding:1.8rem; border:1px solid var(--border-subtle); }
.mgmt-form-panel h4 { font-family:'Marcellus',serif; font-size:1.1rem; color:var(--text-heading); margin-bottom:1.2rem; display:flex; align-items:center; gap:0.5rem; }
.mgmt-form-panel h4 i { color:var(--gold); }
.mgmt-form-row { margin-bottom:0.8rem; }
.mgmt-form-row label { display:block; font-size:0.75rem; font-weight:600; color:var(--text-secondary); margin-bottom:0.3rem; text-transform:uppercase; letter-spacing:0.05em; }
.mgmt-form-row input, .mgmt-form-row select { width:100%; padding:0.6rem 0.75rem; border:1px solid var(--input-border); border-radius:8px; background:var(--input-bg); color:var(--text-primary); font-family:'Outfit',sans-serif; font-size:0.85rem; transition:var(--transition); }
.mgmt-form-row input:focus, .mgmt-form-row select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,168,78,0.1); }
.mgmt-form-btns { display:flex; gap:0.6rem; margin-top:1.2rem; }
.mgmt-form-btns button { flex:1; padding:0.65rem 1rem; border-radius:10px; font-size:0.85rem; font-weight:500; cursor:pointer; transition:var(--transition); border:none; }
.mgmt-form-cancel { background:var(--bg-glass); color:var(--text-primary); border:1px solid var(--border-subtle) !important; }
.mgmt-form-cancel:hover { background:var(--input-bg); }
.mgmt-form-save { background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:#fff; }
.mgmt-form-save:hover { filter:brightness(1.1); transform:translateY(-1px); }
.mgmt-form-row-duo { display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; }
@media(max-width:480px) { .mgmt-form-row-duo { grid-template-columns:1fr; } }

/* WhatsApp Message Management */
.wa-msg-section { margin-top:0.8rem; }
.wa-msg-section-title { font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:#25D366; margin-bottom:0.6rem; display:flex; align-items:center; gap:0.4rem; }
.wa-msg-section-title i { font-size:0.7rem; }
.wa-msg-card { padding:0.9rem 1rem; border-radius:10px; border:1px solid var(--border-subtle); background:var(--bg-glass); margin-bottom:0.65rem; transition:var(--transition); }
.wa-msg-card:hover { border-color:rgba(37,211,102,0.3); }
.wa-msg-card-header { display:flex; align-items:center; gap:0.6rem; margin-bottom:0.55rem; }
.wa-msg-status-icon { width:28px; height:28px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:0.7rem; flex-shrink:0; }
.wa-msg-status-icon.confirmed { background:rgba(46,160,67,0.12); color:#2ea043; }
.wa-msg-status-icon.updated { background:rgba(100,108,255,0.12); color:#646cff; }
.wa-msg-status-icon.completed { background:rgba(200,168,78,0.12); color:var(--gold); }
.wa-msg-card-label { font-size:0.82rem; font-weight:600; color:var(--text-heading); }
.wa-msg-card-sub { font-size:0.68rem; color:var(--text-secondary); margin-top:0.05rem; }
.wa-msg-card textarea { width:100%; min-height:80px; border:1px solid var(--input-border); border-radius:8px; background:var(--input-bg); color:var(--text-primary); padding:0.6rem 0.75rem; font-family:'Outfit',sans-serif; font-size:0.82rem; line-height:1.5; resize:vertical; transition:var(--transition); }
.wa-msg-card textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(200,168,78,0.1); }
.wa-msg-vars { display:flex; flex-wrap:wrap; gap:0.3rem; margin-top:0.45rem; }
.wa-msg-var { font-size:0.6rem; padding:0.15rem 0.45rem; border-radius:4px; background:rgba(37,211,102,0.08); border:1px solid rgba(37,211,102,0.2); color:#25D366; cursor:pointer; transition:var(--transition); font-family:monospace; }
html:not(.dark) .wa-msg-var { color:#1a8f3f; }
.wa-msg-var:hover { background:rgba(37,211,102,0.15); transform:translateY(-1px); }

/* WhatsApp toast notification */
.wa-toast { position:fixed; bottom:6rem; right:1.5rem; z-index:10000; padding:0.85rem 1.2rem; border-radius:12px; background:#25D366; color:#fff; font-size:0.85rem; font-weight:500; display:flex; align-items:center; gap:0.65rem; box-shadow:0 8px 30px rgba(37,211,102,0.35); transform:translateY(20px); opacity:0; transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1); pointer-events:none; max-width:420px; }
.wa-toast.show { transform:translateY(0); opacity:1; pointer-events:auto; }
.wa-toast i { font-size:1.15rem; flex-shrink:0; }
.wa-toast-content { flex:1; min-width:0; }
.wa-toast-title { font-weight:600; font-size:0.82rem; }
.wa-toast-msg { font-size:0.7rem; opacity:0.9; margin-top:0.1rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.wa-toast-link { color:#fff; text-decoration:underline; font-weight:600; white-space:nowrap; font-size:0.78rem; flex-shrink:0; }
.wa-toast-link:hover { opacity:0.85; }

/* WhatsApp preview in booking actions */
.wa-preview-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:9999; display:flex; align-items:center; justify-content:center; padding:1rem; }
.wa-preview-card { background:var(--bg-secondary); border-radius:16px; max-width:440px; width:100%; padding:1.8rem; border:1px solid var(--border-subtle); }
.wa-preview-header { display:flex; align-items:center; gap:0.7rem; margin-bottom:1.2rem; }
.wa-preview-icon { width:42px; height:42px; border-radius:12px; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0; }
.wa-preview-title { font-family:'Marcellus',serif; font-size:1.1rem; color:var(--text-heading); }
.wa-preview-sub { font-size:0.72rem; color:var(--text-secondary); margin-top:0.1rem; }
.wa-preview-bubble { background:rgba(37,211,102,0.06); border:1px solid rgba(37,211,102,0.15); border-radius:0 12px 12px 12px; padding:0.9rem 1rem; margin-bottom:1.2rem; font-size:0.82rem; line-height:1.6; color:var(--text-primary); white-space:pre-wrap; word-break:break-word; max-height:200px; overflow-y:auto; }
.wa-preview-btns { display:flex; gap:0.6rem; }
.wa-preview-btns button { flex:1; padding:0.65rem 1rem; border-radius:10px; font-size:0.85rem; font-weight:500; cursor:pointer; transition:var(--transition); border:none; }
.wa-preview-skip { background:var(--bg-glass); color:var(--text-primary); border:1px solid var(--border-subtle) !important; }
.wa-preview-skip:hover { background:var(--input-bg); }
.wa-preview-send { background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; gap:0.4rem; }
.wa-preview-send:hover { background:#20bd5a; transform:translateY(-1px); }
@media(max-width:600px) {
  .wa-toast { left:1rem; right:1rem; bottom:5rem; max-width:none; }
  .wa-preview-card { padding:1.3rem; }
}
.settings-group-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-heading);
}
.settings-group-desc {
  font-size: 0.72rem; color: var(--text-secondary);
  margin-top: 0.1rem;
}
.settings-group-chevron {
  color: var(--text-secondary); font-size: 0.7rem;
  transition: transform 0.3s;
}
.settings-group.open .settings-group-chevron { transform: rotate(180deg); }
.settings-group-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.settings-group.open .settings-group-body { max-height: 800px; }
.settings-group-inner {
  padding: 0 1.25rem 1.25rem;
}
.settings-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.settings-row.single { grid-template-columns: 1fr; }
.settings-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.settings-field input, .settings-field textarea {
  width: 100%; box-sizing: border-box;
  padding: 0.6rem 0.85rem;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; color: var(--text-primary);
  transition: border-color 0.2s;
}
.settings-field input:focus, .settings-field textarea:focus { outline: none; border-color: var(--gold); }
.settings-field textarea { min-height: 60px; resize: vertical; }
.settings-save-row {
  display: flex; justify-content: flex-end; margin-top: 0.5rem;
}
.settings-save-btn {
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: var(--navy); cursor: pointer;
  transition: all 0.2s;
}
.settings-save-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.settings-saved-msg {
  font-size: 0.75rem; color: #2ea043;
  margin-right: 0.75rem; opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: center; gap: 0.3rem;
}
.settings-saved-msg.show { opacity: 1; }
@media (max-width: 600px) {
  .settings-row { grid-template-columns: 1fr; }
  .settings-group-header { padding: 0.85rem 1rem; }
  .settings-group-inner { padding: 0 1rem 1rem; }
}

/* ===== GOOGLE REVIEW SECTION ===== */
.review-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 168, 78, 0.02) 50%, transparent 100%);
  border-top: 1px solid var(--border-subtle);
}
.review-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px 340px;
  gap: 2rem; align-items: start;
}
.review-left {}
.review-google-icon {
  width: 52px; height: 52px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.review-google-icon span {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.6rem;
  background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-label {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.review-label-line {
  width: 32px; height: 2px; background: var(--gold); border-radius: 2px;
}
.review-label-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
}
.review-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 400;
  color: var(--text-heading); line-height: 1.2;
  margin-bottom: 1rem;
}
.review-heading em {
  font-style: italic; color: var(--gold);
}
.review-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 2rem; max-width: 480px;
}
.review-cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #4285F4;
  border: none; border-radius: 12px;
  color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}
.review-cta-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(66, 133, 244, 0.4);
}
.review-cta-btn .g-logo {
  font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-stars {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
}
.review-stars i { color: #FBBC05; font-size: 1.15rem; }
.review-stars-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; color: var(--text-secondary);
  margin-left: 0.25rem;
}

/* QR code card */
.review-qr-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}
.review-qr-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.review-qr-title i { color: var(--gold); font-size: 0.85rem; }
.review-qr-code {
  width: 200px; height: 200px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
}
.review-qr-code canvas { width: 100% !important; height: 100% !important; }
.review-qr-hint {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.review-qr-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: var(--gold);
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.review-qr-link:hover { text-decoration: underline; }
.review-qr-link i { font-size: 0.65rem; }
.review-dl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.review-dl-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Map Card */
.review-map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.review-map-canvas-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.review-map-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.review-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
  pointer-events: none;
}
.review-map-pin i {
  font-size: 2rem;
  color: #e74c3c;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}
.review-map-pin-pulse {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 5px;
  background: rgba(231,76,60,0.35);
  border-radius: 50%;
  animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50% { transform: translateX(-50%) scale(2.5); opacity: 0; }
}
.review-map-info {
  padding: 1.25rem 1.4rem;
}
.review-map-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-map-label i { font-size: 0.8rem; }
.review-map-name {
  font-family: 'Marcellus', serif;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.review-map-addr {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.review-map-coords {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.review-map-coords i { color: var(--gold); font-size: 0.65rem; }
.review-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}
.review-map-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 1050px) {
  .review-inner { grid-template-columns: 1fr 1fr; }
  .review-left { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .review-inner { grid-template-columns: 1fr; }
  .review-heading { font-size: 2rem; }
}
@media (max-width: 600px) {
  .review-section { padding: 3.5rem 1.25rem; }
  .review-heading { font-size: 1.7rem; }
  .review-qr-card { padding: 1.5rem; }
  .review-map-info { padding: 1rem 1.2rem; }
}

.footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.footer-brand {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem; letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.footer-text {
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex; justify-content: center; gap: 1.25rem;
  margin-bottom: 2rem;
}
.footer-socials a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.6;
  margin: 0;
}
.footer-tagline-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
  margin: 0;
}
@media(max-width:600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-items { display: none; }
  .nav-menu-dropdown { display: none; }
  .nav-hamburger { display: flex; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-card { position: static; max-height: calc(100vh - 5rem); }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .booking-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
  .booking-form-card { padding: 1.5rem; }
  .booking-info-title { font-size: 2rem; }
}

/* ===== ADMIN PAGE ===== */
.admin-content-scroll {
  padding-bottom: 2rem;
}
@media(max-width:768px) {
  #page-admin > .section {
    padding-top: 5rem;
  }
  #page-admin .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.1rem;
  }
  #page-admin .booking-back {
    margin-bottom: 0.5rem;
  }
}
.admin-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
  box-shadow: var(--card-shadow);
}
.admin-item:hover { border-color: rgba(200, 168, 78, 0.3); }
.admin-item-gradient {
  width: 56px; height: 56px;
  border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: rgba(255,255,255,0.3);
}
.admin-item-info { flex: 1; min-width: 0; }
.admin-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--text-heading); margin-bottom: 0.15rem;
}
.admin-item-meta {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-secondary);
}
.admin-item-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.admin-item-meta i { color: var(--gold); font-size: 0.7rem; }
.admin-item-sched {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.15);
  border-radius: 50px;
  font-size: 0.68rem; color: var(--gold); white-space: nowrap;
}
.admin-item-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.admin-action-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-secondary); font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
}
.admin-action-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200, 168, 78, 0.06); }
.admin-action-btn.danger:hover { border-color: #e8654a; color: #e8654a; background: rgba(232, 101, 74, 0.06); }
.admin-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--text-secondary); font-size: 0.95rem;
}
.admin-empty i { display: block; font-size: 2.5rem; color: var(--gold); opacity: 0.3; margin-bottom: 1rem; }
.admin-form-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 2rem; overflow-y: auto;
}
.admin-form-overlay.open { display: flex; }
.admin-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  width: 100%; max-width: 640px;
  margin: 2rem auto;
  box-shadow: var(--shadow-luxury);
  animation: modalIn 0.4s ease;
}
.admin-form-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.admin-form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--text-heading);
}
.admin-form-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-secondary); font-size: 1rem;
  cursor: pointer; transition: all 0.2s;
}
.admin-form-close:hover { border-color: var(--gold); color: var(--gold); }
.admin-form-body {
  padding: 1.5rem 2rem 2rem;
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
}
.admin-form-body::-webkit-scrollbar { width: 4px; }
.admin-form-body::-webkit-scrollbar-track { background: transparent; }
.admin-form-body::-webkit-scrollbar-thumb { background: rgba(200, 168, 78, 0.3); border-radius: 2px; }
.admin-form-section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.admin-form-section-label:first-child { margin-top: 0; }
.admin-form-footer {
  display: flex; justify-content: flex-end; gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border-subtle);
}
.admin-days-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.admin-day-check {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 8px; cursor: pointer;
  transition: all 0.2s;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; color: var(--text-secondary);
}
.admin-day-check:hover { border-color: var(--gold); }
.admin-day-check input { display: none; }
.admin-day-check.checked { background: rgba(200, 168, 78, 0.1); border-color: var(--gold); color: var(--gold); }
.admin-sched-fields { display: none; }
.admin-sched-fields.visible { display: block; }
.admin-confirm-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
@media (max-width: 600px) {
  .admin-item { flex-direction: column; align-items: flex-start; }
  .admin-item-actions { align-self: flex-end; }
  .admin-form-body { padding: 1.25rem; }
  .admin-form-header { padding: 1.25rem; }
  .admin-form-footer { padding: 1rem 1.25rem; }
}

/* ===== CALENDAR AVAILABILITY ===== */
.cal-container { margin-top: 0.5rem; }
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 0.75rem;
}
.cal-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--text-heading);
  text-align: center; flex: 1;
}
.cal-nav-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-secondary); font-size: 1rem;
  cursor: pointer; transition: all 0.2s;
  flex-shrink: 0;
}
.cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(200, 168, 78, 0.06); }
.cal-legend {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: 1.25rem; font-size: 0.78rem;
  color: var(--text-secondary); font-family: 'Outfit', sans-serif;
}
.cal-legend-item { display: flex; align-items: center; gap: 0.35rem; }
.cal-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.cal-legend-dot.dot-available { background: #2ea043; }
.cal-legend-dot.dot-partial { background: #d4a017; }
.cal-legend-dot.dot-full { background: #e8654a; }
.cal-legend-dot.dot-none { background: var(--border-subtle); }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-bottom: 1.5rem;
}
.cal-weekday {
  text-align: center; padding: 0.6rem 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
}
.cal-cell {
  position: relative;
  min-height: 62px; padding: 0.45rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex; flex-direction: column; align-items: center;
}
.cal-cell:hover { border-color: rgba(200, 168, 78, 0.3); transform: translateY(-1px); }
.cal-cell.cal-empty {
  background: transparent; border-color: transparent;
  cursor: default; pointer-events: none;
}
.cal-cell.cal-today { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.cal-cell.cal-past { opacity: 0.4; pointer-events: none; }
.cal-cell.cal-selected {
  border-color: var(--gold);
  background: rgba(200, 168, 78, 0.08);
  box-shadow: 0 0 12px rgba(200, 168, 78, 0.15);
}
.cal-cell-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-heading); line-height: 1.3;
}
.cal-cell.cal-today .cal-cell-num { color: var(--gold); font-weight: 600; }
.cal-cell-dots {
  display: flex; gap: 3px; margin-top: 4px;
  flex-wrap: wrap; justify-content: center;
}
.cal-dot {
  width: 7px; height: 7px; border-radius: 50%;
}
.cal-dot.avail { background: #2ea043; }
.cal-dot.partial { background: #d4a017; }
.cal-dot.full { background: #e8654a; }
.cal-cell-count {
  font-size: 0.58rem; color: var(--text-secondary);
  margin-top: 2px; font-family: 'Outfit', sans-serif;
}

/* Day detail panel */
.cal-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  animation: modalIn 0.35s ease;
}
.cal-detail-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem;
}
.cal-detail-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--text-heading);
}
.cal-detail-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
}
.cal-detail-badge.available { background: rgba(46,160,67,0.12); color: #2ea043; }
.cal-detail-badge.partial { background: rgba(212,160,23,0.12); color: #d4a017; }
.cal-detail-badge.fully-booked { background: rgba(232,101,74,0.12); color: #e8654a; }
.cal-detail-badge.no-service { background: var(--bg-glass); color: var(--text-secondary); }

.cal-service-group {
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.cal-service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.cal-service-title i { color: var(--gold); font-size: 0.85rem; }
.cal-slot-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.cal-slot-row:last-child { margin-bottom: 0; }
.cal-slot-row:hover { background: rgba(200, 168, 78, 0.04); }
.cal-slot-time {
  color: var(--text-primary);
  display: flex; align-items: center; gap: 0.4rem;
}
.cal-slot-time i { color: var(--gold); font-size: 0.75rem; }
.cal-slot-status {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.cal-slot-status.open { background: rgba(46,160,67,0.1); color: #2ea043; }
.cal-slot-status.has-bookings { background: rgba(212,160,23,0.1); color: #d4a017; }
.cal-slot-status.full { background: rgba(232,101,74,0.1); color: #e8654a; }

.cal-booking-card {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  margin-top: 0.35rem; margin-left: 1rem;
  font-size: 0.8rem;
}
.cal-booking-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.7rem; font-weight: 600;
  flex-shrink: 0;
}
.cal-booking-info { flex: 1; min-width: 0; }
.cal-booking-name {
  font-weight: 500; color: var(--text-heading);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cal-booking-meta {
  font-size: 0.72rem; color: var(--text-secondary);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.cal-booking-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.cal-booking-meta i { font-size: 0.6rem; color: var(--gold); }
.cal-booking-status-badge {
  font-size: 0.65rem; font-weight: 500;
  padding: 0.15rem 0.5rem;
  border-radius: 50px; white-space: nowrap;
}
.cal-booking-status-badge.confirmed { background: rgba(46,160,67,0.1); color: #2ea043; }
.cal-booking-status-badge.pending { background: rgba(212,160,23,0.1); color: #d4a017; }
.cal-booking-status-badge.cancelled { background: rgba(232,101,74,0.1); color: #e8654a; }
.cal-booking-status-badge.completed { background: rgba(100,108,255,0.1); color: #646cff; }
.cal-booking-status-badge.noshow { background: rgba(120,120,120,0.1); color: #888; }

/* Booking action buttons */
.cal-booking-actions {
  display: flex; gap: 0.35rem; flex-shrink: 0; margin-left: auto;
}
.cal-bk-btn {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-subtle);
  border-radius: 7px; background: var(--bg-glass);
  color: var(--text-secondary); font-size: 0.65rem;
  cursor: pointer; transition: all 0.2s;
  position: relative;
}
.cal-bk-btn:hover { border-color: var(--gold); color: var(--gold); }
.cal-bk-btn.btn-approve:hover { border-color: #2ea043; color: #2ea043; background: rgba(46,160,67,0.06); }
.cal-bk-btn.btn-complete:hover { border-color: #646cff; color: #646cff; background: rgba(100,108,255,0.06); }
.cal-bk-btn.btn-cancel:hover { border-color: #e8654a; color: #e8654a; background: rgba(232,101,74,0.06); }
.cal-bk-btn.btn-edit:hover { border-color: var(--gold); color: var(--gold); }

/* Tooltip for action buttons */
.cal-bk-btn[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy); color: #fff;
  padding: 0.2rem 0.5rem; border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
html.dark .cal-bk-btn[data-tip]::after { background: #1a1a2e; }
.cal-bk-btn[data-tip]:hover::after { opacity: 1; }

/* Booking edit form */
.bk-edit-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2600;
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.bk-edit-overlay.open { display: flex; }
.bk-edit-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  width: 100%; max-width: 520px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}
.bk-edit-panel::-webkit-scrollbar { width: 4px; }
.bk-edit-panel::-webkit-scrollbar-thumb { background: rgba(200, 168, 78, 0.3); border-radius: 2px; }
.bk-edit-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--border-subtle);
}
.bk-edit-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  color: var(--text-heading); margin: 0;
}
.bk-edit-body { padding: 1.5rem 2rem; }
.bk-edit-footer {
  display: flex; justify-content: flex-end; gap: 0.75rem;
  padding: 1.25rem 2rem; border-top: 1px solid var(--border-subtle);
}
.bk-edit-status-grid {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem;
}
.bk-status-opt {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: 8px; cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem; color: var(--text-secondary);
  background: var(--bg-glass);
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.bk-status-opt:hover { border-color: var(--gold); }
.bk-status-opt.active-pending { border-color: #d4a017; background: rgba(212,160,23,0.08); color: #d4a017; }
.bk-status-opt.active-confirmed { border-color: #2ea043; background: rgba(46,160,67,0.08); color: #2ea043; }
.bk-status-opt.active-completed { border-color: #646cff; background: rgba(100,108,255,0.08); color: #646cff; }
.bk-status-opt.active-cancelled { border-color: #e8654a; background: rgba(232,101,74,0.08); color: #e8654a; }
.bk-status-opt.active-noshow { border-color: #888; background: rgba(120,120,120,0.08); color: #888; }

/* Booking card - cancelled/completed styling */
.cal-booking-card.status-cancelled { opacity: 0.5; }
.cal-booking-card.status-cancelled .cal-booking-name { text-decoration: line-through; }
.cal-booking-card.status-completed { border-left: 3px solid #646cff; }
.cal-booking-card.status-confirmed { border-left: 3px solid #2ea043; }
.cal-booking-card.status-pending { border-left: 3px solid #d4a017; }
.cal-booking-card.status-noshow { border-left: 3px solid #888; opacity: 0.6; }

/* Booking edit add-ons mini grid */
.bke-addons-section {
  margin-top: 0.5rem;
}
.bke-addon-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-family: 'Outfit', sans-serif;
}
.bke-addon-row:last-child { border-bottom: none; }
.bke-addon-left { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.bke-addon-name { font-size: 0.82rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bke-addon-price { font-size: 0.7rem; color: var(--gold); }
.bke-addon-qty {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--input-border); border-radius: 7px;
  overflow: hidden; flex-shrink: 0;
}
.bke-addon-qty button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-glass); border: none;
  color: var(--text-secondary); font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s; font-family: 'Outfit', sans-serif;
}
.bke-addon-qty button:hover { background: rgba(200,168,78,0.12); color: var(--gold); }
.bke-addon-qty .bke-qty-val {
  width: 30px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500; color: var(--text-heading);
  background: var(--input-bg);
  border-left: 1px solid var(--input-border); border-right: 1px solid var(--input-border);
}
.bke-addon-qty.has-qty { border-color: rgba(200,168,78,0.4); }
.bke-addon-qty.has-qty .bke-qty-val { color: var(--gold); font-weight: 600; }
.bke-addon-cats { max-height: 260px; overflow-y: auto; }
.bke-addon-cats::-webkit-scrollbar { width: 3px; }
.bke-addon-cats::-webkit-scrollbar-thumb { background: rgba(200,168,78,0.3); border-radius: 2px; }
.bke-cat-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-secondary); margin: 0.75rem 0 0.35rem; display: flex; align-items: center; gap: 0.4rem;
}
.bke-cat-label:first-child { margin-top: 0; }
.bke-cat-label i { color: var(--gold); font-size: 0.65rem; }
.bke-total-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0; margin-top: 0.5rem;
  border-top: 1.5px solid var(--border-subtle);
  font-family: 'Outfit', sans-serif;
}
.bke-total-label { font-size: 0.78rem; font-weight: 400; color: var(--text-secondary); }
.bke-total-value { font-size: 1.1rem; font-weight: 600; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

@media (max-width: 600px) {
  .cal-booking-card { flex-wrap: wrap; gap: 0.5rem; }
  .cal-booking-actions { width: 100%; justify-content: flex-end; }
  .bk-edit-body { padding: 1.25rem; }
  .bk-edit-header { padding: 1.25rem; }
  .bk-edit-footer { padding: 1rem 1.25rem; }
  .bk-status-opt { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
}

.cal-no-services {
  text-align: center; padding: 2rem;
  color: var(--text-secondary); font-size: 0.9rem;
}
.cal-no-services i {
  display: block; font-size: 2rem;
  color: var(--gold); opacity: 0.3; margin-bottom: 0.75rem;
}
.cal-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.cal-stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
}
.cal-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--text-heading); line-height: 1.2;
}
.cal-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px; margin-top: 0.15rem;
}
@media (max-width: 600px) {
  .cal-cell { min-height: 52px; padding: 0.35rem; }
  .cal-cell-num { font-size: 0.75rem; }
  .cal-dot { width: 5px; height: 5px; }
  .cal-header-title { font-size: 1.2rem; }
  .cal-detail { padding: 1.25rem; }
  .cal-detail-header { flex-direction: column; align-items: flex-start; }
  .cal-stats { grid-template-columns: repeat(2, 1fr); }
  .cal-booking-card { flex-wrap: wrap; }
}

/* ===== BOOKINGS MANAGEMENT ===== */
.bkm-toolbar {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bkm-search {
  flex: 1; min-width: 180px;
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; color: var(--text-primary);
  transition: border-color 0.2s;
}
.bkm-search:focus { outline: none; border-color: var(--gold); }
.bkm-search-wrap {
  position: relative; flex: 1; min-width: 180px;
}
.bkm-search-wrap i {
  position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%);
  color: var(--text-secondary); font-size: 0.8rem; pointer-events: none;
}
.bkm-filter-btn {
  padding: 0.6rem 1rem;
  background: var(--bg-glass);
  border: 1.5px solid var(--border-subtle);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: var(--text-secondary);
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.35rem;
}
.bkm-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.bkm-filter-btn.active {
  background: rgba(200, 168, 78, 0.1);
  border-color: var(--gold); color: var(--gold);
}
.bkm-filter-btn.active-pending { border-color: #d4a017; color: #d4a017; background: rgba(212,160,23,0.08); }
.bkm-filter-btn.active-confirmed { border-color: #2ea043; color: #2ea043; background: rgba(46,160,67,0.08); }
.bkm-filter-btn.active-completed { border-color: #646cff; color: #646cff; background: rgba(100,108,255,0.08); }
.bkm-filter-btn.active-cancelled { border-color: #e8654a; color: #e8654a; background: rgba(232,101,74,0.08); }

.bkm-list { display: flex; flex-direction: column; gap: 0.65rem; }
.bkm-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: all 0.25s ease;
}
.bkm-card:hover { border-color: rgba(200,168,78,0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.bkm-card.status-cancelled { opacity: 0.55; }
.bkm-card.status-cancelled .bkm-name { text-decoration: line-through; }
.bkm-card.status-noshow { opacity: 0.6; }

.bkm-status-bar {
  width: 4px; height: 48px; border-radius: 4px; flex-shrink: 0;
}
.bkm-status-bar.pending { background: #d4a017; }
.bkm-status-bar.confirmed { background: #2ea043; }
.bkm-status-bar.completed { background: #646cff; }
.bkm-status-bar.cancelled { background: #e8654a; }
.bkm-status-bar.noshow { background: #888; }

.bkm-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.8rem; font-weight: 600;
  flex-shrink: 0;
}
.bkm-info { flex: 1; min-width: 0; }
.bkm-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-heading);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bkm-service-tag {
  font-size: 0.72rem; color: var(--gold);
  display: flex; align-items: center; gap: 0.3rem;
  margin-top: 0.1rem;
}
.bkm-service-tag i { font-size: 0.6rem; }
.bkm-details {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem;
  color: var(--text-secondary); margin-top: 0.3rem;
}
.bkm-details span { display: inline-flex; align-items: center; gap: 0.25rem; }
.bkm-details i { font-size: 0.6rem; color: var(--gold); }
.bkm-right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.5rem; flex-shrink: 0;
}
.bkm-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--text-heading);
}
.bkm-actions {
  display: flex; gap: 0.35rem;
}
.bkm-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--text-secondary);
}
.bkm-empty i {
  display: block; font-size: 2.5rem; color: var(--gold); opacity: 0.25;
  margin-bottom: 0.75rem;
}
.bkm-count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem; color: var(--text-secondary);
  margin-bottom: 1rem;
}
.bkm-count strong { color: var(--text-heading); }
@media (max-width: 600px) {
  .bkm-card { flex-wrap: wrap; padding: 0.85rem; gap: 0.65rem; }
  .bkm-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .bkm-toolbar { gap: 0.5rem; }
  .bkm-filter-btn { padding: 0.5rem 0.7rem; font-size: 0.72rem; }
}

/* ===== GRADIENT ILLUSTRATIONS ===== */
.illust-yacht {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.illust-yacht .water {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(180deg, #0D4F7A 0%, #093558 50%, #061E36 100%);
}
.illust-yacht .water::before {
  content: ''; position: absolute; top: 0; left: -50%; right: -50%;
  height: 20px;
  background: repeating-linear-gradient(90deg,
    transparent 0%, rgba(255,255,255,0.06) 25%,
    transparent 50%
  );
  background-size: 100px 20px;
  animation: waveMove 3s linear infinite;
}
@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(100px); }
}
.illust-yacht .sky {
  position: absolute; top: 0; left: 0; right: 0; height: 55%;
}
.illust-yacht .sun {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(200, 168, 78, 0.4);
}
.illust-yacht .boat-body {
  position: absolute;
  bottom: 42%;
  left: 50%;
  transform: translateX(-50%);
}

/* Unique card gradients */
.grad-sunset { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 20%, #5c2d82 40%, #c84e6e 65%, #e8a04e 85%, #f5d76e 100%); }
.grad-ocean { background: linear-gradient(135deg, #0a1628 0%, #0e3b5f 30%, #1a6b8a 55%, #4ecdc4 80%, #a8edea 100%); }
.grad-twilight { background: linear-gradient(135deg, #0d1b3e 0%, #1b3a5c 25%, #2d6187 50%, #c8a84e 75%, #f5e6c8 100%); }
.grad-coral { background: linear-gradient(135deg, #1a0a1e 0%, #3d1c47 20%, #8b3a62 45%, #e87461 70%, #f5c77e 90%, #fdf0d5 100%); }
.grad-emerald { background: linear-gradient(135deg, #0a1e18 0%, #0d3b2e 25%, #1a6b52 50%, #4ecda0 75%, #a8edce 100%); }
.grad-golden { background: linear-gradient(135deg, #1a1408 0%, #3d2f10 20%, #8b6a20 45%, #c8a84e 65%, #f5d76e 85%, #fdf4d8 100%); }
.grad-azure { background: linear-gradient(135deg, #050d1a 0%, #0a2540 25%, #134e78 50%, #1e8bc3 75%, #7ec8e3 100%); }
.grad-midnight { background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 25%, #2d2d6b 50%, #4e4ec8 70%, #8a8af0 90%); }
.grad-sunrise { background: linear-gradient(135deg, #1a1025 0%, #3d1c47 15%, #7a2e5a 30%, #c84e6e 50%, #e88a50 70%, #f5d76e 90%, #fdf4d8 100%); }

/* Icon overlays on cards */
.card-icon-overlay {
  position: absolute;
  font-size: 4rem;
  color: rgba(255,255,255,0.15);
  bottom: 1rem; right: 1.5rem;
}
.card-image-inner img.card-cover-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.admin-item-gradient img.admin-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.booking-detail-image img.booking-cover-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Image upload zone */
.img-upload-zone {
  position: relative;
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: var(--card-bg);
  overflow: hidden;
}
.img-upload-zone:hover { border-color: var(--gold); background: rgba(200,168,78,0.04); }
.img-upload-zone.has-image { border-style: solid; border-color: var(--gold); padding: 0; }
.img-upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2;
}
.img-upload-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-secondary); font-size: 0.82rem;
}
.img-upload-placeholder i { font-size: 1.6rem; color: var(--gold); }
.img-upload-preview {
  width: 100%; height: 180px;
  object-fit: cover; border-radius: calc(var(--radius) - 2px);
  display: block;
}
.img-upload-actions {
  position: absolute; bottom: 0.6rem; right: 0.6rem;
  display: flex; gap: 0.4rem; z-index: 3;
}
.img-upload-actions button {
  width: 30px; height: 30px;
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; cursor: pointer;
  background: rgba(0,0,0,0.65); color: #fff;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.img-upload-actions button:hover { background: rgba(0,0,0,0.85); }
.img-upload-actions button.remove-img { background: rgba(232,101,74,0.8); }
.img-upload-actions button.remove-img:hover { background: rgba(232,101,74,1); }

/* Stagger animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* ===== USER MANAGEMENT ===== */
.usr-stats { display:grid; grid-template-columns:repeat(auto-fit, minmax(140px,1fr)); gap:1rem; margin-bottom:1.5rem; }
.usr-stat-card { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:12px; padding:1rem 1.2rem; text-align:center; }
.usr-stat-num { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:700; color:var(--gold); }
.usr-stat-label { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-secondary); margin-top:0.2rem; }
.usr-toolbar { display:flex; gap:1rem; align-items:center; flex-wrap:wrap; margin-bottom:1.5rem; }
.usr-search { flex:1; min-width:200px; padding:0.7rem 1rem 0.7rem 2.5rem; background:var(--input-bg); border:1px solid var(--input-border); border-radius:10px; color:var(--text-primary); font-size:16px; font-family:'Outfit',sans-serif; }
.usr-search:focus { outline:none; border-color:var(--gold); }
.usr-search-wrap { position:relative; flex:1; min-width:200px; }
.usr-search-wrap i { position:absolute; left:0.85rem; top:50%; transform:translateY(-50%); color:var(--text-secondary); font-size:0.85rem; }
.usr-add-btn { padding:0.7rem 1.3rem; background:var(--gold); color:var(--navy); border:none; border-radius:10px; font-family:'Outfit',sans-serif; font-weight:600; font-size:0.85rem; cursor:pointer; transition:var(--transition); display:flex; align-items:center; gap:0.5rem; white-space:nowrap; }
.usr-add-btn:hover { background:var(--gold-light); transform:translateY(-1px); }
.usr-role-filters { display:flex; gap:0.5rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.usr-role-pill { padding:0.45rem 1rem; border-radius:20px; border:1px solid var(--border-subtle); background:var(--bg-glass); color:var(--text-secondary); font-size:0.8rem; font-family:'Outfit',sans-serif; cursor:pointer; transition:var(--transition); }
.usr-role-pill.active { background:var(--gold); color:var(--navy); border-color:var(--gold); font-weight:600; }
.usr-role-pill .pill-count { font-size:0.7rem; opacity:0.7; margin-left:0.3rem; }
.usr-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(320px,1fr)); gap:1rem; }
.usr-card { background:var(--bg-card); border:1px solid var(--border-subtle); border-radius:14px; padding:1.3rem; transition:var(--transition); position:relative; overflow:hidden; }
.usr-card:hover { transform:translateY(-2px); box-shadow:var(--card-shadow); }
.usr-card-top { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; }
.usr-avatar { width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.1rem; color:#fff; flex-shrink:0; text-transform:uppercase; }
.usr-avatar.role-admin { background:linear-gradient(135deg,#c84e6e,#e87461); }
.usr-avatar.role-developer { background:linear-gradient(135deg,#4e6ec8,#6ea0e8); }
.usr-avatar.role-user { background:linear-gradient(135deg,#4ec89a,#6ee8b0); }
.usr-info { flex:1; min-width:0; }
.usr-name { font-family:'Marcellus',serif; font-size:1.05rem; color:var(--text-heading); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.usr-email { font-size:0.8rem; color:var(--text-secondary); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.usr-meta { display:flex; align-items:center; gap:0.75rem; flex-wrap:wrap; margin-bottom:1rem; }
.usr-role-badge { display:inline-flex; align-items:center; gap:0.3rem; padding:0.25rem 0.7rem; border-radius:20px; font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; }
.usr-role-badge.badge-admin { background:rgba(200,78,110,0.15); color:#e87461; }
.usr-role-badge.badge-developer { background:rgba(78,110,200,0.15); color:#6ea0e8; }
.usr-role-badge.badge-user { background:rgba(78,200,154,0.15); color:#4ec89a; }
html:not(.dark) .usr-role-badge.badge-admin { background:rgba(200,78,110,0.1); color:#b83b5e; }
html:not(.dark) .usr-role-badge.badge-developer { background:rgba(78,110,200,0.1); color:#3b6fb8; }
html:not(.dark) .usr-role-badge.badge-user { background:rgba(78,200,154,0.1); color:#2d9a6e; }
.usr-status-dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.usr-status-dot.active { background:#4ec89a; box-shadow:0 0 6px rgba(78,200,154,0.5); }
.usr-status-dot.inactive { background:#e87461; }
.usr-status-text { font-size:0.78rem; color:var(--text-secondary); }
.usr-joined { font-size:0.75rem; color:var(--text-secondary); margin-left:auto; }
.usr-actions { display:flex; gap:0.5rem; justify-content:flex-end; }
.usr-action-btn { padding:0.4rem 0.8rem; border-radius:8px; border:1px solid var(--border-subtle); background:var(--bg-glass); color:var(--text-secondary); font-size:0.78rem; font-family:'Outfit',sans-serif; cursor:pointer; transition:var(--transition); display:flex; align-items:center; gap:0.35rem; }
.usr-action-btn:hover { border-color:var(--gold); color:var(--gold); }
.usr-action-btn.danger:hover { border-color:#e87461; color:#e87461; }
.usr-empty { text-align:center; padding:3rem 1rem; color:var(--text-secondary); }
.usr-empty i { font-size:2.5rem; margin-bottom:1rem; display:block; opacity:0.4; }

/* User Edit Modal */
.usr-edit-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); z-index:9999; display:flex; align-items:center; justify-content:center; padding:1rem; backdrop-filter:blur(4px); }
.usr-edit-panel { background:var(--bg-secondary); border-radius:16px; width:100%; max-width:480px; max-height:90vh; overflow-y:auto; padding:2rem; position:relative; border:1px solid var(--border-subtle); }
.usr-edit-panel h3 { font-family:'Marcellus',serif; font-size:1.3rem; color:var(--text-heading); margin-bottom:1.5rem; }
.usr-edit-close { position:absolute; top:1rem; right:1rem; background:none; border:none; color:var(--text-secondary); font-size:1.3rem; cursor:pointer; padding:0.3rem; transition:var(--transition); }
.usr-edit-close:hover { color:var(--gold); }
.usr-field { margin-bottom:1.2rem; }
.usr-field label { display:block; font-size:0.8rem; font-weight:500; color:var(--text-secondary); margin-bottom:0.4rem; text-transform:uppercase; letter-spacing:0.06em; }
.usr-field input, .usr-field select { width:100%; padding:0.7rem 1rem; background:var(--input-bg); border:1px solid var(--input-border); border-radius:10px; color:var(--text-primary); font-size:16px; font-family:'Outfit',sans-serif; }
.usr-field input:focus, .usr-field select:focus { outline:none; border-color:var(--gold); }
.usr-role-selector { display:flex; gap:0.6rem; flex-wrap:wrap; }
.usr-role-opt { flex:1; min-width:100px; padding:0.8rem; border-radius:10px; border:2px solid var(--border-subtle); background:var(--bg-glass); text-align:center; cursor:pointer; transition:var(--transition); }
.usr-role-opt:hover { border-color:var(--gold-dark); }
.usr-role-opt.selected { border-color:var(--gold); background:rgba(200,168,78,0.1); }
.usr-role-opt i { display:block; font-size:1.3rem; margin-bottom:0.3rem; }
.usr-role-opt span { font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.05em; }
.usr-role-opt.opt-admin i { color:#e87461; }
.usr-role-opt.opt-developer i { color:#6ea0e8; }
.usr-role-opt.opt-user i { color:#4ec89a; }
.usr-status-toggle { display:flex; align-items:center; gap:0.8rem; }
.usr-toggle-track { width:44px; height:24px; border-radius:12px; background:var(--border-subtle); cursor:pointer; position:relative; transition:var(--transition); }
.usr-toggle-track.on { background:var(--gold); }
.usr-toggle-knob { width:20px; height:20px; border-radius:50%; background:#fff; position:absolute; top:2px; left:2px; transition:var(--transition); box-shadow:0 1px 3px rgba(0,0,0,0.2); }
.usr-toggle-track.on .usr-toggle-knob { left:22px; }
.usr-toggle-label { font-size:0.85rem; color:var(--text-primary); }
.usr-edit-actions { display:flex; gap:0.75rem; margin-top:1.5rem; }
.usr-edit-actions button { flex:1; padding:0.75rem; border-radius:10px; font-family:'Outfit',sans-serif; font-weight:600; font-size:0.9rem; cursor:pointer; transition:var(--transition); }
.usr-save-btn { background:var(--gold); color:var(--navy); border:none; }
.usr-save-btn:hover { background:var(--gold-light); }
.usr-cancel-btn { background:none; border:1px solid var(--border-subtle); color:var(--text-secondary); }
.usr-cancel-btn:hover { border-color:var(--gold); color:var(--gold); }

@media(max-width:768px) {
  .usr-grid { grid-template-columns:1fr; }
  .usr-edit-panel { padding:1.5rem; }
  .usr-role-selector { flex-direction:column; }
}

/* Permissions Editor */
.perm-section { margin-bottom:1.2rem; }
.perm-section-title { font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--gold); margin-bottom:0.6rem; display:flex; align-items:center; gap:0.4rem; }
.perm-section-title i { font-size:0.75rem; }
.perm-grid { display:grid; grid-template-columns:1fr 1fr; gap:0.4rem; }
.perm-item { display:flex; align-items:center; gap:0.5rem; padding:0.45rem 0.65rem; border-radius:8px; border:1px solid var(--border-subtle); background:var(--bg-glass); cursor:pointer; transition:var(--transition); user-select:none; }
.perm-item:hover { border-color:var(--gold-dark); }
.perm-item.granted { border-color:rgba(78,200,154,0.4); background:rgba(78,200,154,0.06); }
.perm-item.denied { opacity:0.55; }
.perm-check { width:16px; height:16px; border-radius:4px; border:1.5px solid var(--border-subtle); display:flex; align-items:center; justify-content:center; font-size:0.55rem; color:transparent; transition:var(--transition); flex-shrink:0; }
.perm-item.granted .perm-check { border-color:#4ec89a; background:#4ec89a; color:#fff; }
.perm-label { font-size:0.72rem; color:var(--text-primary); display:flex; align-items:center; gap:0.35rem; }
.perm-label i { font-size:0.65rem; color:var(--text-secondary); width:14px; text-align:center; }
.perm-item.granted .perm-label i { color:#4ec89a; }
.perm-divider { height:1px; background:var(--border-subtle); margin:0.8rem 0; }

/* Permission badges on user cards */
.usr-perm-badges { display:flex; flex-wrap:wrap; gap:0.3rem; margin-top:0.6rem; }
.usr-perm-badge { font-size:0.62rem; padding:0.15rem 0.45rem; border-radius:4px; background:var(--bg-glass); border:1px solid var(--border-subtle); color:var(--text-secondary); display:inline-flex; align-items:center; gap:0.25rem; }
.usr-perm-badge i { font-size:0.55rem; }
.usr-perm-badge.granted { background:rgba(78,200,154,0.08); border-color:rgba(78,200,154,0.3); color:#4ec89a; }
html:not(.dark) .usr-perm-badge.granted { color:#2d9a6e; }
.usr-perm-badge.denied { background:rgba(232,116,97,0.06); border-color:rgba(232,116,97,0.2); color:#e87461; opacity:0.5; }
@media(max-width:768px) {
  .perm-grid { grid-template-columns:1fr; }
}
