/* ============================================
   STYLEHUB - Component Library
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary, #0A0A0F);
  color: var(--text-primary, #FAFAF8);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition-base); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb { background: var(--black-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── Selection ── */
::selection { background: var(--gold-glow); color: var(--gold-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(201,168,76,0.4); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold-glow); }

.btn-dark {
  background: var(--black-card);
  color: var(--white);
  border: 1px solid var(--black-border);
}
.btn-dark:hover { border-color: var(--gold-dark); background: var(--black-soft); }

.btn-danger {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid rgba(231,76,60,0.3);
}
.btn-danger:hover { background: var(--danger); color: white; }

.btn-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(46,204,113,0.3);
}
.btn-success:hover { background: var(--success); color: white; }

.btn-beauty {
  background: var(--grad-beauty);
  color: white;
  box-shadow: 0 4px 20px rgba(196,96,122,0.3);
}
.btn-beauty:hover { box-shadow: 0 6px 32px rgba(196,96,122,0.5); transform: translateY(-1px); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1rem 2.5rem; font-size: var(--text-base); }
.btn-xl { padding: 1.125rem 3rem; font-size: var(--text-lg); }
.btn-icon { padding: 0.75rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }

.card-glass {
  background: rgba(26,26,38,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.1);
}

.card-light {
  background: #FFFFFF;
  border: 1px solid #E8E4DF;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.card-light:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-color: var(--gold-light); }

/* Stat Cards */
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: var(--transition-base);
}
.stat-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-2px); }

.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.stat-icon-gold { background: var(--gold-glow); color: var(--gold); }
.stat-icon-pink { background: rgba(232,160,191,0.12); color: var(--pink); }
.stat-icon-purple { background: rgba(155,114,207,0.12); color: var(--purple); }
.stat-icon-success { background: var(--success-bg); color: var(--success); }
.stat-icon-danger { background: var(--danger-bg); color: var(--danger); }
.stat-icon-info { background: var(--info-bg); color: var(--info); }

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted, #6A6A7A);
  margin-top: var(--space-1);
}

.stat-change {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}
.stat-change.up { background: var(--success-bg); color: var(--success); }
.stat-change.down { background: var(--danger-bg); color: var(--danger); }

/* Salon Cards */
.salon-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
}
.salon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

.salon-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1A1A26, #252535);
  position: relative;
}

.salon-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #1A1A26 0%, #252535 50%, #1A1A26 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.salon-card-body { padding: var(--space-4); }

.salon-card-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-1);
}

.salon-card-meta {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs);
  color: #6A6A7A;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.salon-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid #F0EDE8;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-gold { background: var(--gold-glow); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-danger { background: var(--danger-bg); color: var(--danger); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-info { background: var(--info-bg); color: var(--info); }
.badge-purple { background: rgba(155,114,207,0.12); color: var(--purple); }
.badge-pink { background: rgba(232,160,191,0.15); color: var(--pink-deep); }
.badge-dark { background: var(--black-card); color: var(--cream); border: 1px solid var(--black-border); }

.badge-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary, #C8C8D8);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--black-soft, #F8F6F2);
  border: 1.5px solid var(--black-border, #E0DDD8);
  border-radius: var(--radius-md);
  color: var(--text-primary, #0A0A0F);
  font-size: var(--text-base);
  font-family: var(--font-body);
  transition: var(--transition-base);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-control::placeholder { color: var(--text-muted, #9A9A9A); }

.form-control-dark {
  background: var(--black-soft);
  border-color: var(--black-border);
  color: var(--white);
}
.form-control-dark::placeholder { color: #5A5A6A; }
.form-control-dark:focus { border-color: var(--gold); }

.form-hint {
  font-size: var(--text-xs);
  color: var(--text-muted, #9A9A9A);
  margin-top: var(--space-1);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--danger);
  margin-top: var(--space-1);
  display: flex; align-items: center; gap: 4px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group .form-control { padding-left: 3rem; }
.input-group .input-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted, #9A9A9A);
  pointer-events: none;
  font-size: 1.1rem;
}

.input-group .input-suffix {
  position: absolute;
  right: 1rem;
  color: var(--text-muted, #9A9A9A);
}

/* OTP Input */
.otp-group {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.otp-input {
  width: 56px; height: 64px;
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  background: var(--black-soft);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition-base);
  outline: none;
}
.otp-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.otp-input.filled { border-color: var(--gold); background: var(--gold-glow); }

/* Toggle / Switch */
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-track {
  width: 52px; height: 28px;
  background: var(--black-border);
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition-base);
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: white;
  border-radius: 50%;
  transition: var(--transition-spring);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.toggle-switch input:checked + .toggle-track { background: var(--gold); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(24px); }

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--black-border);
  border-radius: 5px;
  background: var(--black-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
  margin-top: 2px;
}

.checkbox-group input:checked ~ .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

/* Select */
.form-select {
  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='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================
   NAVIGATION - Public
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: 0 var(--space-8);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.navbar-logo span {
  font-style: italic;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(250,250,248,0.7);
  transition: var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============================================
   SIDEBAR - Dashboard
   ============================================ */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--black-soft);
  border-right: 1px solid var(--black-border);
  display: flex;
  flex-direction: column;
  z-index: var(--z-sticky);
  transition: var(--transition-base);
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-header {
  padding: var(--space-6) var(--space-5);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: var(--topbar-height);
}

.sidebar-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-nav { padding: var(--space-4) 0; flex: 1; }

.sidebar-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, #5A5A6A);
  padding: var(--space-4) var(--space-5) var(--space-2);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem var(--space-5);
  color: rgba(250,250,248,0.6);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
  position: relative;
}

.sidebar-link:hover {
  color: var(--white);
  background: rgba(201,168,76,0.05);
  border-left-color: rgba(201,168,76,0.3);
}

.sidebar-link.active {
  color: var(--gold);
  background: var(--gold-glow);
  border-left-color: var(--gold);
}

.sidebar-link .link-icon {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sidebar-link .link-badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  min-width: 18px;
  text-align: center;
}

.sidebar-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--black-border);
}

/* ============================================
   TOPBAR - Dashboard
   ============================================ */
.topbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  height: var(--topbar-height);
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-8);
  z-index: var(--z-dropdown);
  transition: var(--transition-base);
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  width: 320px;
  transition: var(--transition-base);
}
.topbar-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.topbar-search input { background: none; border: none; outline: none; color: var(--white); font-size: var(--text-sm); width: 100%; }
.topbar-search input::placeholder { color: #5A5A6A; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar-icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,248,0.7);
  font-size: 1.1rem;
  transition: var(--transition-base);
  position: relative;
}
.topbar-icon-btn:hover { border-color: var(--gold-dark); color: var(--gold); }

.topbar-icon-btn .notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--black-soft);
}

.topbar-avatar {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--black);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
}
.topbar-avatar:hover { border-color: var(--gold); }

/* ============================================
   DASHBOARD LAYOUT
   ============================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: var(--black);
}

.dashboard-main {
  margin-left: var(--sidebar-width);
  padding-top: var(--topbar-height);
  flex: 1;
  min-width: 0;
  transition: var(--transition-base);
}

.dashboard-content {
  padding: var(--space-8);
  max-width: 1400px;
}

.page-header {
  margin-bottom: var(--space-8);
}

.page-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted, #6A6A7A);
  margin-top: var(--space-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* ============================================
   TABLES
   ============================================ */
.table-container {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.table-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.table-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
}

.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #6A6A7A);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--black-border);
  white-space: nowrap;
}

tbody td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-secondary, #C8C8D8);
  border-bottom: 1px solid rgba(37,37,53,0.5);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(201,168,76,0.03); }

.table-avatar {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition-spring);
  position: relative;
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.modal-close {
  width: 32px; height: 32px;
  border-radius: var(--radius-md);
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted, #6A6A7A);
  font-size: 1.2rem;
  transition: var(--transition-base);
}
.modal-close:hover { background: var(--danger-bg); color: var(--danger); border-color: rgba(231,76,60,0.3); }

.modal-body { padding: var(--space-6); }
.modal-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  gap: 0;
  background: var(--black-soft);
  border-radius: var(--radius-lg);
  padding: 4px;
  border: 1px solid var(--black-border);
}

.tab-btn {
  flex: 1;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(250,250,248,0.5);
  transition: var(--transition-base);
  text-align: center;
}

.tab-btn.active {
  background: var(--black-card);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) { color: var(--white); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   RATING STARS
   ============================================ */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}

.stars .empty { color: #3A3A4A; }

.rating-display {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.rating-value {
  font-weight: 700;
  color: var(--gold);
  font-size: var(--text-sm);
}

.rating-count {
  font-size: var(--text-xs);
  color: var(--text-muted, #6A6A7A);
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notif-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--black-border);
  transition: var(--transition-base);
  cursor: pointer;
}
.notif-item:hover { background: rgba(201,168,76,0.04); }
.notif-item.unread { background: rgba(201,168,76,0.03); border-left: 3px solid var(--gold); }

.notif-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notif-content { flex: 1; min-width: 0; }
.notif-title { font-size: var(--text-sm); font-weight: 600; color: var(--white); margin-bottom: 2px; }
.notif-text { font-size: var(--text-xs); color: var(--text-muted, #6A6A7A); line-height: 1.5; }
.notif-time { font-size: var(--text-xs); color: var(--text-muted, #6A6A7A); margin-top: 4px; }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  pointer-events: none;
}

.toast {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 300px;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
  pointer-events: all;
  transform: translateX(120%);
  transition: var(--transition-spring);
}

.toast.show { transform: translateX(0); }
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast.info { border-left: 3px solid var(--info); }

/* ============================================
   BOOKING SLOT GRID
   ============================================ */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: var(--space-3);
}

.slot-btn {
  padding: 0.625rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--black-border);
  background: var(--black-soft);
  color: var(--text-secondary, #C8C8D8);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-base);
  cursor: pointer;
}

.slot-btn:hover:not(.disabled):not(.booked) {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.slot-btn.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.slot-btn.booked {
  background: rgba(231,76,60,0.08);
  border-color: rgba(231,76,60,0.2);
  color: rgba(231,76,60,0.5);
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============================================
   PROGRESS / STEPS
   ============================================ */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-8);
}

.step {
  display: flex;
  align-items: center;
  flex: 1;
}

.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--black-border);
  background: var(--black-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted, #6A6A7A);
  flex-shrink: 0;
  transition: var(--transition-base);
  z-index: 1;
}

.step.active .step-circle { border-color: var(--gold); background: var(--gold-glow); color: var(--gold); }
.step.completed .step-circle { border-color: var(--success); background: var(--success); color: white; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--black-border);
  transition: var(--transition-base);
}
.step.completed + .step .step-line,
.step.completed .step-line { background: var(--success); }

.step-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted, #6A6A7A);
  margin-top: var(--space-2);
  text-align: center;
  white-space: nowrap;
}
.step.active .step-label { color: var(--gold); }
.step.completed .step-label { color: var(--success); }

/* ============================================
   BOTTOM NAV (Customer Mobile)
   ============================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--black-border);
  padding: var(--space-2) 0 calc(var(--space-2) + env(safe-area-inset-bottom));
  z-index: var(--z-sticky);
}

.bottom-nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: var(--space-2) var(--space-4);
  color: rgba(250,250,248,0.4);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.bottom-nav-item .nav-icon { font-size: 1.4rem; transition: var(--transition-spring); }
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-item.active .nav-icon { transform: scale(1.15); }

.bottom-nav-item.center-btn {
  background: var(--grad-gold);
  width: 52px; height: 52px;
  border-radius: 50%;
  color: var(--black);
  margin-top: -20px;
  box-shadow: var(--shadow-gold);
  font-size: 1.6rem;
  padding: 0;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding: var(--space-4) 0;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #E0DDD8;
  background: white;
  color: #4A4A5A;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
}

.filter-chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-chip.active { background: var(--black); border-color: var(--black); color: var(--gold); }

/* ============================================
   GENDER TOGGLE
   ============================================ */
.gender-toggle {
  display: flex;
  background: #F4F1EC;
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}

.gender-btn {
  flex: 1;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #6A6A7A;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.gender-btn.active-male {
  background: #1A1A26;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.gender-btn.active-female {
  background: var(--grad-beauty);
  color: white;
  box-shadow: 0 4px 16px rgba(196,96,122,0.3);
}

/* ============================================
   BOOKING CODE
   ============================================ */
.booking-code {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin: var(--space-6) 0;
}

.booking-code-digit {
  width: 64px; height: 72px;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--gold);
}

/* ============================================
   ONLINE/OFFLINE TOGGLE
   ============================================ */
.status-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
}

.status-indicator {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
  transition: var(--transition-base);
}

.status-indicator.online {
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 8px var(--success); }
  50% { box-shadow: 0 0 16px var(--success), 0 0 24px rgba(46,204,113,0.3); }
}

/* ============================================
   CHART CONTAINERS
   ============================================ */
.chart-container {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.chart-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
}

.chart-canvas-wrapper {
  position: relative;
  height: 240px;
}

/* ============================================
   MEMBERSHIP CARDS
   ============================================ */
.membership-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1A1A26, #12121A);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.membership-card.featured::before { background: var(--grad-gold); height: 4px; }

.membership-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--grad-gold);
  color: var(--black);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.membership-price {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin: var(--space-4) 0 var(--space-2);
}

.membership-original {
  font-size: var(--text-lg);
  color: var(--text-muted, #6A6A7A);
  text-decoration: line-through;
  margin-bottom: var(--space-4);
}

.membership-features {
  text-align: left;
  margin: var(--space-6) 0;
}

.membership-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary, #C8C8D8);
  border-bottom: 1px solid rgba(37,37,53,0.5);
}

.membership-feature:last-child { border-bottom: none; }
.membership-feature .check { color: var(--success); font-size: 1rem; }

/* ============================================
   PAYMENT METHODS
   ============================================ */
.payment-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--black-soft);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-base);
}

.payment-method:hover { border-color: var(--gold-dark); }
.payment-method.selected { border-color: var(--gold); background: var(--gold-glow); }

.payment-method-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--black-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: white;
  border: 1.5px solid #E0DDD8;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-base);
}

.search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--text-base);
  color: var(--black);
  background: transparent;
}

.search-bar input::placeholder { color: #9A9A9A; }

/* ============================================
   PROFILE AVATAR
   ============================================ */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.avatar-sm { width: 32px; height: 32px; font-size: var(--text-xs); }
.avatar-md { width: 48px; height: 48px; font-size: var(--text-sm); }
.avatar-lg { width: 64px; height: 64px; font-size: var(--text-lg); }
.avatar-xl { width: 96px; height: 96px; font-size: var(--text-2xl); }
.avatar-2xl { width: 128px; height: 128px; font-size: var(--text-3xl); }

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-8);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  opacity: 0.4;
}

.empty-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.empty-text {
  font-size: var(--text-sm);
  color: var(--text-muted, #6A6A7A);
  max-width: 320px;
  margin: 0 auto var(--space-6);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--black-card) 25%, var(--black-border) 50%, var(--black-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--black-border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted, #6A6A7A); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.font-display { font-family: var(--font-display); }
.font-serif { font-family: var(--font-serif); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.border { border: 1px solid var(--black-border); }
.border-gold { border-color: var(--gold); }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 1px;
  background: var(--black-border);
  margin: var(--space-6) 0;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-6) 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-left: 0; }
  .topbar { left: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-8: 1.5rem; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bottom-nav { display: block; }
  .dashboard-content { padding: var(--space-4); padding-bottom: 80px; }
  .topbar-search { display: none; }
  .membership-card.featured { transform: scale(1); }
  .otp-input { width: 48px; height: 56px; font-size: var(--text-xl); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .booking-code-digit { width: 52px; height: 60px; font-size: var(--text-3xl); }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fadeInUp { animation: fadeInUp 0.5s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.4s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.4s var(--transition-spring) forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   PERMISSION POPUP
   ============================================ */
.permission-popup {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  width: calc(100% - var(--space-8));
  max-width: 420px;
  z-index: var(--z-modal);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-spring);
}

.permission-popup.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-container {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1A1A26 0%, #12121A 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--black-border);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-pin-icon {
  width: 36px; height: 36px;
  background: var(--grad-gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}

.map-pin-icon span { transform: rotate(45deg); font-size: 1rem; }

.map-pin-label {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 4px 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  margin-top: 4px;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SUPPORT CHAT
   ============================================ */
.chat-container {
  display: flex;
  flex-direction: column;
  height: 500px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.chat-bubble {
  max-width: 75%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.chat-bubble.sent {
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.received {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--text-secondary, #C8C8D8);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-input-bar {
  padding: var(--space-4);
  border-top: 1px solid var(--black-border);
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

/* ============================================
   SECTION HEADERS (Public Pages)
   ============================================ */
.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted, #6A6A7A);
  max-width: 560px;
  line-height: 1.7;
  margin-top: var(--space-4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(155,114,207,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(196,96,122,0.05) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-24) var(--space-8);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero-title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(250,250,248,0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: var(--space-16) var(--space-8) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(250,250,248,0.5);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(250,250,248,0.5);
  transition: var(--transition-base);
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(250,250,248,0.3);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}