/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dark:     #A8882C;
  --maroon:        #6B1C2E;
  --maroon-light:  #8B2E42;
  --bg:            #FAF8F3;
  --bg-card:       #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #666666;
  --text-light:    #999999;
  --border:        #E8E0D0;
  --border-light:  #F0EAE0;
  --radius-card:   8px;
  --radius-btn:    4px;
  --header-h:      72px;
  --font-head:     'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --shadow-card:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-hover:  0 4px 16px rgba(0,0,0,0.12);
  --transition:    0.2s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::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);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hidden { display: none !important; }
.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.text-muted { color: var(--text-muted); }
.section { padding: 64px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { color: var(--text); }
.section-title span { color: var(--gold); }
.section-title p { color: var(--text-muted); margin-top: 8px; font-size: 0.95rem; }
.divider-gold { width: 56px; height: 2px; background: var(--gold); margin: 12px auto; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-btn); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.5px; transition: background var(--transition), color var(--transition), transform var(--transition); }
.btn-primary { background: var(--gold); color: var(--text); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--text); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-control::placeholder { color: #bbb; }
.form-control.is-invalid { border-color: #dc3545; }
.form-error { color: #dc3545; font-size: 0.78rem; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--text); }
.logo-text span { color: var(--gold); }

.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.main-nav > ul > li > a:hover { color: var(--gold); }
.main-nav > ul > li.active > a { color: var(--gold); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 16px; font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition), background var(--transition); }
.dropdown li a:hover { color: var(--gold); background: var(--bg); }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--border-light); color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--maroon);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.cart-badge.hidden { display: none; }

/* Auth header buttons */
.auth-header-btns { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.btn-signin {
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
}
.btn-signin:hover { border-color: var(--gold); color: var(--gold); }
.btn-signup {
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--text);
  border: 1px solid var(--gold);
  transition: all var(--transition);
}
.btn-signup:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* User menu */
.user-menu { position: relative; }
.user-menu-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
  transition: all var(--transition);
}
.user-menu-btn:hover { border-color: var(--gold); color: var(--gold); }
.user-menu-btn svg { width: 18px; height: 18px; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
}
.user-menu.open .user-dropdown,
.user-menu:hover .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.user-dropdown a:hover { color: var(--gold); background: var(--bg); }
.user-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Auth Slide-down Panel ───────────────────────────────────────────────── */
.auth-panel {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
}
.auth-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.auth-panel-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 998;
  background: transparent;
  display: none;
}
.auth-panel-overlay.active { display: block; }
.auth-panel-inner { max-width: 460px; margin: 0 auto; padding: 36px 24px 40px; }
.auth-panel-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.auth-tab-btn {
  flex: 1; padding: 12px; font-size: 0.9rem; font-weight: 600;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}
.auth-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-form h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 6px; }
.auth-form p.subtitle { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 24px; }

/* OTP inputs */
.otp-row { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-input {
  width: 48px; height: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color var(--transition);
  color: var(--text);
}
.otp-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }

.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-muted); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-google {
  width: 100%; padding: 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-google:hover { background: var(--bg); }
.auth-link { color: var(--gold); font-weight: 600; cursor: pointer; }
.auth-link:hover { text-decoration: underline; }
.switch-auth { font-size: 0.875rem; color: var(--text-muted); margin-top: 20px; text-align: center; }
.forgot-link { font-size: 0.8rem; color: var(--text-muted); display: block; text-align: right; margin-top: -8px; margin-bottom: 16px; }
.forgot-link:hover { color: var(--gold); }

/* ── Marquee Ticker ──────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--maroon);
  color: #fff;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-text {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.ticker-text span { padding: 0 32px; }
.ticker-text span::before { content: '✦'; margin-right: 12px; color: var(--gold); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2418 50%, #1A1A1A 100%);
  overflow: hidden;
  margin-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-soft 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ── Collections Grid ────────────────────────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.collection-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover img { transform: scale(1.05); }
.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.collection-card-overlay h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.collection-card-overlay p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.collection-card-overlay .arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(201,168,76,0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.collection-card:hover .arrow { background: var(--gold); }
.collection-card .arrow svg { width: 16px; height: 16px; color: #fff; }

/* ── Product Cards ───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-new { background: var(--maroon); color: #fff; }
.badge-sale { background: #E74C3C; color: #fff; }
.badge-bestseller { background: var(--gold); color: var(--text); }
.badge-out { background: #888; color: #fff; }
.product-wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}
.product-wishlist-btn:hover,
.product-wishlist-btn.active { color: #E74C3C; background: #fff; }
.product-wishlist-btn svg { width: 16px; height: 16px; }
.product-wishlist-btn.active svg { fill: #E74C3C; }
.product-card-body { padding: 16px; }
.product-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.price-current { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.price-original { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; font-weight: 700; color: #27AE60; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 0.75rem; }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }
.product-card-actions { display: flex; gap: 8px; }
.btn-cart {
  flex: 1;
  padding: 10px 12px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-align: center;
}
.btn-cart:hover { background: var(--gold); color: var(--text); }
.btn-cart.added { background: var(--gold); color: var(--text); }
.btn-cart.pulse { animation: pulse-btn 0.4s ease; }

/* Product Size Chips */
.size-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.size-chip {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  color: var(--text-muted);
}
.size-chip:hover { border-color: var(--gold); color: var(--gold); }
.size-chip.selected { border-color: var(--text); background: var(--text); color: #fff; }
.size-chip.out-of-stock {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
  background: #f5f5f5;
}

/* ── New Arrivals Horizontal Scroll ──────────────────────────────────────── */
.scroll-row-wrap { position: relative; }
.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row .product-card {
  flex-shrink: 0;
  width: 240px;
  scroll-snap-align: start;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.scroll-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--text); }
.scroll-arrow svg { width: 18px; height: 18px; }
.scroll-arrow-left { left: -16px; }
.scroll-arrow-right { right: -16px; }

/* ── Trust Badges ────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  transition: box-shadow var(--transition);
}
.trust-item:hover { box-shadow: var(--shadow-hover); }
.trust-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-item h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.5; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 8px;
}
.testimonial-inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-family: var(--font-head); font-size: 1.1rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.2); }

/* ── Gallery Strip ───────────────────────────────────────────────────────── */
.gallery-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 28px; height: 28px; }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--text) 0%, #2D2418 100%);
  padding: 64px 24px;
  text-align: center;
}
.newsletter-section h2 { color: #fff; margin-bottom: 8px; }
.newsletter-section p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: var(--radius-btn) 0 0 var(--radius-btn);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: var(--text);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.875rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

/* ── Shop Page Sidebar ───────────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.filter-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; }
.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.filter-option label { font-size: 0.875rem; cursor: pointer; color: var(--text-muted); }
.filter-option label:hover { color: var(--gold); }
.price-range-inputs { display: flex; gap: 8px; align-items: center; margin-top: 12px; }
.price-range-inputs input[type="number"] {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  outline: none;
  width: 0;
}
.price-range-inputs input:focus { border-color: var(--gold); }
.price-range-inputs span { font-size: 0.8rem; color: var(--text-muted); flex-shrink: 0; }
input[type="range"] { width: 100%; accent-color: var(--gold); margin-top: 8px; }
.filter-reset { font-size: 0.8rem; color: var(--gold); cursor: pointer; float: right; font-weight: 600; }
.filter-reset:hover { text-decoration: underline; }

/* Sort bar */
.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.sort-bar p { font-size: 0.875rem; color: var(--text-muted); }
.sort-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
  outline: none;
  color: var(--text);
}
.sort-select:focus { border-color: var(--gold); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--text-muted);
  background: #fff;
  transition: all var(--transition);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--text); font-weight: 700; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Product Detail ──────────────────────────────────────────────────────── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumb {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-category-breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.product-category-breadcrumb a:hover { color: var(--gold); }
.product-info h1 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; line-height: 1.2; }
.product-info-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.product-info-meta span { display: flex; align-items: center; gap: 6px; }
.product-info-meta strong { color: var(--text); }
.product-price-section { margin-bottom: 20px; }
.product-price-section .price-current { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.product-price-section .price-original { font-size: 1rem; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }
.product-price-section .price-discount { font-size: 0.875rem; font-weight: 700; color: #27AE60; margin-left: 8px; }

.size-section { margin-bottom: 24px; }
.size-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; display: flex; justify-content: space-between; }
.size-guide-link { font-size: 0.78rem; color: var(--gold); cursor: pointer; text-transform: none; letter-spacing: 0; }

.product-detail-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.product-detail-actions .btn-cart-large {
  flex: 1;
  padding: 14px 24px;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.product-detail-actions .btn-cart-large:hover { background: var(--gold); color: var(--text); }
.product-detail-actions .btn-buynow {
  flex: 1;
  padding: 14px 24px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.product-detail-actions .btn-buynow:hover { background: var(--maroon-light); }

.product-info-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.info-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.info-tag svg { width: 14px; height: 14px; color: var(--gold); }

.product-description { border-top: 1px solid var(--border); padding-top: 20px; }
.product-description h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; color: var(--text); letter-spacing: 0.5px; text-transform: uppercase; }
.product-description p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Cart Page ───────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item-img {
  width: 96px; height: 96px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-family: var(--font-head); font-size: 1rem; margin-bottom: 4px; font-weight: 500; }
.cart-item-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-btn); overflow: hidden; width: fit-content; }
.qty-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: transparent; color: var(--text); font-size: 1.1rem; transition: background var(--transition); }
.qty-btn:hover { background: var(--bg); }
.qty-value { width: 40px; height: 34px; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.9rem; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.cart-item-remove { font-size: 0.78rem; color: var(--text-muted); cursor: pointer; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.cart-item-remove:hover { color: #E74C3C; }
.cart-item-price { font-weight: 700; font-size: 1rem; white-space: nowrap; text-align: right; }

.order-summary-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.order-summary-box h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 6px 0; color: var(--text-muted); }
.summary-row.total { font-weight: 700; font-size: 1rem; color: var(--text); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px; }
.summary-row .discount-val { color: #27AE60; font-weight: 600; }
.coupon-section { margin: 16px 0; }
.coupon-row { display: flex; gap: 0; }
.coupon-row input { flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-right: none; border-radius: var(--radius-btn) 0 0 var(--radius-btn); font-size: 0.85rem; outline: none; }
.coupon-row input:focus { border-color: var(--gold); }
.coupon-row button { padding: 10px 16px; background: var(--text); color: #fff; border-radius: 0 var(--radius-btn) var(--radius-btn) 0; font-size: 0.8rem; font-weight: 600; border: none; cursor: pointer; transition: background var(--transition); }
.coupon-row button:hover { background: var(--gold); color: var(--text); }
.coupon-success { font-size: 0.78rem; color: #27AE60; margin-top: 6px; }
.coupon-error { font-size: 0.78rem; color: #dc3545; margin-top: 6px; }
.free-shipping-note { font-size: 0.78rem; color: var(--gold); margin-top: 8px; text-align: center; }

/* ── Checkout ────────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 20px;
}
.checkout-section h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.checkout-section h3 .step-num {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--text);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.address-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color var(--transition);
  display: flex; gap: 12px; align-items: flex-start;
}
.address-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.address-card input[type="radio"] { accent-color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.address-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.address-card strong { color: var(--text); }

/* Payment tabs */
.payment-tabs { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-btn); overflow: hidden; margin-bottom: 20px; flex-wrap: wrap; }
.pay-tab-btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  background: #fff;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.pay-tab-btn:last-child { border-right: none; }
.pay-tab-btn.active { background: var(--text); color: #fff; }
.pay-tab-btn:hover:not(.active) { background: var(--bg); color: var(--text); }
.pay-tab-content { display: none; }
.pay-tab-content.active { display: block; }

/* UPI section */
.upi-row { display: flex; gap: 8px; margin-bottom: 16px; }
.upi-row input { flex: 1; }
.upi-apps { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.upi-app-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: 0.8rem;
  background: #fff;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  font-weight: 500;
}
.upi-app-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Card form */
.card-number-field { letter-spacing: 2px; }
.card-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Net banking */
.bank-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; margin-bottom: 16px; }
.bank-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}
.bank-option:hover,
.bank-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.04); }

/* QR */
.qr-container { text-align: center; padding: 20px; }
.qr-container canvas, .qr-container img { margin: 0 auto 16px; border: 1px solid var(--border); border-radius: 8px; }
.qr-container p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Orders Page ─────────────────────────────────────────────────────────── */
.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
}
.order-card:hover { box-shadow: var(--shadow-card); }
.order-card-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.order-number { font-weight: 700; font-size: 0.875rem; color: var(--text); }
.order-date { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.order-status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pending { background: #FFF3CD; color: #856404; }
.status-confirmed { background: #D1ECF1; color: #0C5460; }
.status-shipped { background: #CCE5FF; color: #004085; }
.status-delivered { background: #D4EDDA; color: #155724; }
.status-cancelled { background: #F8D7DA; color: #721C24; }
.order-items-preview { display: flex; gap: 8px; margin-bottom: 12px; overflow-x: auto; }
.order-item-thumb {
  width: 56px; height: 56px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.order-total { font-weight: 700; font-size: 1rem; }
.order-actions { display: flex; gap: 8px; }

/* ── About Page ──────────────────────────────────────────────────────────── */
.about-hero {
  height: 60vh;
  background: linear-gradient(135deg, #1A1A1A, #2D2418);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: var(--header-h);
}
.about-hero h1 { color: #fff; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 520px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-img { border-radius: var(--radius-card); overflow: hidden; }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-content h2 { margin-bottom: 16px; }
.story-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 32px 20px; border: 1px solid var(--border); border-radius: var(--radius-card); background: #fff; }
.team-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--gold); }
.team-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cert-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-card); text-align: center; background: #fff; }
.cert-card img { height: 56px; object-fit: contain; margin: 0 auto 12px; }
.cert-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); }
.map-section iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius-card); }

/* ── Forgot Password Wizard ──────────────────────────────────────────────── */
.wizard-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); margin-top: var(--header-h); }
.wizard-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 48px 40px; width: 100%; max-width: 440px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h2 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 8px; }
.wizard-step p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 28px; line-height: 1.6; }
.wizard-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.progress-dot {
  flex: 1; height: 3px;
  background: var(--border);
  border-radius: 2px;
  transition: background var(--transition);
}
.progress-dot.done { background: var(--gold); }

/* ── Toast Notifications ─────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  min-width: 280px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: var(--radius-card);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  animation: toast-in 0.3s ease;
  background: #fff;
  border-left: 4px solid var(--gold);
  color: var(--text);
}
.toast.toast-success { border-left-color: #27AE60; }
.toast.toast-error { border-left-color: #E74C3C; }
.toast.toast-info { border-left-color: #3498DB; }
.toast svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.toast.toast-success svg { color: #27AE60; }
.toast.toast-error svg { color: #E74C3C; }
.toast.toast-info svg { color: #3498DB; }
.toast-out { animation: toast-out 0.3s ease forwards; }

/* ── Loading Overlay ─────────────────────────────────────────────────────── */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(250,248,243,0.9);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.spinner {
  width: 42px; height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.loading-text { font-size: 0.875rem; color: var(--text-muted); }

/* ── Page Header Strip ───────────────────────────────────────────────────── */
.page-header {
  background: var(--text);
  color: #fff;
  padding: 40px 24px;
  margin-top: var(--header-h);
  text-align: center;
}
.page-header h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Empty State ─────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 24px; }
.empty-state svg { width: 64px; height: 64px; color: var(--border); margin: 0 auto 20px; }
.empty-state h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
