/* =========================================================
   TATITO FASHIONS — COMPLETE DESIGN SYSTEM
   Preserves the original theme (ivory/gold/ruby/black palette).
   Extended with all e-commerce components.
   ========================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --ivy:        #6A0F1E;
  --ruby:       #7D1128;
  --ruby-deep:  #5A0A18;
  --ivory:      #FAF7F1;
  --champagne:  #F1E8D6;
  --black:      #14120F;
  --charcoal:   #2B2822;
  --gold:       #C9A24B;
  --gold-deep:  #8B6F2E;
  --gold-soft:  #E7D3A1;
  --gold-light: #F0DFA8;
  --white:      #FFFFFF;
  --line:       rgba(20,18,15,0.09);
  --success:    #3f8a5b;
  --danger:     #c44a3f;

  --bg:         var(--ivory);
  --surface:    rgba(250,247,241,0.92);
  --surface-solid: var(--white);
  --text:       var(--charcoal);
  --muted:      #5b564c;
  --navbar-bg:  rgba(250,247,241,0.92);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-soft: 0 12px 40px rgba(20,18,15,0.08);
  --shadow-strong: 0 20px 60px rgba(20,18,15,0.18);
  --ease: cubic-bezier(.22,.68,0,1);
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body[data-theme="dark"] {
  --bg: #0F0D0B;
  --surface: rgba(15,13,11,0.94);
  --surface-solid: #181510;
  --text: #F8F2E8;
  --muted: #C8BCA9;
  --navbar-bg: rgba(15,13,11,0.94);
  --line: rgba(255,255,255,0.15);
  --champagne: rgba(201,162,75,0.1);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- SPLASH SCREEN ---------- */
.splash {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 20%, rgba(201,162,75,0.18), transparent 55%), linear-gradient(180deg, var(--black) 0%, #1c1912 100%);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.splash::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1920&q=80') center/cover; opacity: 0.08; pointer-events: none; }
.splash.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-inner { text-align: center; color: var(--ivory); animation: splashRise 1s var(--ease); }
@keyframes splashRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.splash-logo {
  width: 140px; height: 140px; object-fit: cover; border-radius: 24px;
  margin: 0 auto 16px; border: 2px solid rgba(201,162,75,0.5);
  background: #5A0A18;
  box-shadow: 0 0 0 10px rgba(201,162,75,0.08), var(--shadow-strong); animation: splashPulse 2.4s ease-in-out infinite;
}
@keyframes splashPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(201,162,75,0.08); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 14px rgba(201,162,75,0.14); }
}
.splash-name { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 16px; }
.splash-welcome { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ivory); margin-bottom: 6px; letter-spacing: 0.5px; }
.splash-tagline { font-size: 13px; color: var(--gold-soft); font-style: italic; margin-bottom: 24px; letter-spacing: 1px; }
.splash-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 4px; font-weight: 600; color: var(--ivory); }
.splash-sub { font-family: var(--font-display); font-size: 16px; letter-spacing: 6px; color: var(--gold); font-weight: 500; }
.splash-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.12); margin: 0 auto 16px; border-radius: 2px; overflow: hidden; }
.splash-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); animation: splashLoad 1.8s var(--ease) forwards; border-radius: 2px; }
@keyframes splashLoad { to { width: 100%; } }
.splash-text { font-size: 13px; letter-spacing: 0.4px; color: rgba(250,247,241,0.65); font-style: italic; font-family: var(--font-display); }

/* ---------- OVERLAYS / MODALS ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,18,15,0.55); backdrop-filter: blur(6px); padding: 20px;
  animation: overlayIn .5s var(--ease);
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface-solid); border-radius: var(--radius-l);
  max-width: 420px; width: 100%; padding: 40px 34px 32px; text-align: center;
  box-shadow: var(--shadow-strong); animation: modalRise .5s var(--ease);
}
@keyframes modalRise { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-icon { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: var(--champagne); display: flex; align-items: center; justify-content: center; }
.modal h2 { font-family: var(--font-display); font-size: 23px; margin-bottom: 12px; }
.modal p { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 26px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-status { margin-top: 14px; font-size: 12.5px; color: var(--gold-deep); min-height: 16px; }

/* ---------- BUTTONS ---------- */
.btn {
  padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  letter-spacing: 0.2px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; text-align: center;
}
.btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%); color: var(--white); box-shadow: 0 10px 24px rgba(201,162,75,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,162,75,0.45); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--champagne); }
.btn-dark { background: var(--black); color: var(--gold-soft); }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { opacity: 0.9; }
.btn.small { padding: 8px 14px; font-size: 12px; }
.btn.large { padding: 16px 32px; font-size: 15px; }
.btn.disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn.block { width: 100%; }

/* ---------- CITY SELECTION ---------- */
.city-panel {
  background: var(--surface-solid); border-radius: var(--radius-l);
  max-width: 520px; width: 100%; max-height: 86vh; overflow-y: auto;
  padding: 38px 34px; position: relative; box-shadow: var(--shadow-strong);
  animation: modalRise .5s var(--ease);
}
.city-close { position: absolute; top: 18px; right: 20px; font-size: 24px; color: var(--muted); width: 34px; height: 34px; border-radius: 50%; transition: background .2s; }
.city-close:hover { background: var(--champagne); }
.city-panel h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
.city-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.city-search-wrap { display: flex; align-items: center; gap: 10px; background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; padding: 13px 18px; margin-bottom: 8px; }
.city-search-wrap input { border: none; background: transparent; outline: none; font-size: 14px; width: 100%; font-family: inherit; color: var(--text); }
.city-suggestions { margin: 6px 0 10px; border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow-soft); }
.city-suggestions li { padding: 12px 16px; font-size: 13.5px; cursor: pointer; background: var(--surface-solid); border-bottom: 1px solid var(--line); transition: background .2s; }
.city-suggestions li:hover { background: var(--champagne); }
.city-group { margin-top: 22px; }
.city-group h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.city-chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; background: var(--ivory); transition: all .2s var(--ease); font-weight: 500; }
.city-chip:hover { border-color: var(--gold); background: var(--champagne); transform: translateY(-1px); }
.city-chip.current { background: var(--black); color: var(--gold-soft); border-color: var(--black); }

/* ---------- NAVBAR ---------- */
.navbar { position: sticky; top: 0; z-index: 60; background: var(--navbar-bg); backdrop-filter: blur(12px) saturate(1.2); border-bottom: 1px solid var(--line); }
.navbar::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1920&q=80') center/cover; opacity: 0.06; pointer-events: none; z-index: -1; }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.nav-logo img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; background: #5A0A18; box-shadow: 0 0 0 2px rgba(125,17,40,0.12); }
.nav-brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name .brand-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: 2px; color: var(--text); }
.nav-brand-name .brand-sub { font-style: normal; color: var(--gold); font-weight: 500; letter-spacing: 3px; font-size: 9px; font-family: var(--font-display); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 700; color: var(--text); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--ruby); transition: width .25s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { position: relative; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text); transition: background .2s; border: 1px solid var(--line); background: var(--surface-solid); }
.icon-btn:hover { background: rgba(125,17,40,0.08); }
.pill-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; position: absolute; top: -5px; right: -5px; border-radius: 999px; background: var(--gold); color: var(--black); font-size: 10px; font-weight: 700; }
.pill-count.hidden { display: none; }
.theme-toggle { border-radius: 999px; border: 1px solid var(--line); background: var(--surface-solid); color: var(--text); padding: 9px 12px; font-size: 13px; font-weight: 700; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; }
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--ruby); background: rgba(125,17,40,0.08); }
.nav-login {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  border-radius: 999px; padding: 7px 18px; font-size: 11px; font-weight: 700;
  white-space: nowrap; text-align: center;
  font-family: inherit; text-decoration: none;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--gold-soft);
  box-shadow: 0 4px 14px rgba(20,18,15,0.3), inset 0 1px 0 rgba(201,162,75,0.1);
  transition: all .25s var(--ease); letter-spacing: 0.3px;
}
.nav-login:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--black) 0%, #0a0907 100%);
  box-shadow: 0 6px 20px rgba(20,18,15,0.4), inset 0 1px 0 rgba(201,162,75,0.15);
}
.nav-login::before { content: '👤'; font-size: 10px; }
.nav-login.is-logout {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--gold-soft);
  box-shadow: 0 4px 14px rgba(20,18,15,0.3), inset 0 1px 0 rgba(201,162,75,0.1);
}
.nav-login.is-logout:hover {
  background: linear-gradient(135deg, var(--black) 0%, #0a0907 100%);
  box-shadow: 0 6px 20px rgba(20,18,15,0.4), inset 0 1px 0 rgba(201,162,75,0.15);
}
.nav-login.is-logout::before { content: '🚪'; }
.language-select { border: 1px solid var(--line); background: var(--surface-solid); color: var(--text); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; width: auto; min-width: 0; cursor: pointer; outline: none; transition: border-color .2s ease; }
.location-pill { display: flex; align-items: center; gap: 7px; background: var(--black); color: var(--gold-soft); padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; transition: all .2s var(--ease); max-width: 180px; box-shadow: 0 6px 16px rgba(20,18,15,0.18); }
.location-pill:hover { background: var(--charcoal); transform: translateY(-1px); }
#locationPillText { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-toggle { display: none; flex-direction: column; gap: 4px; width: 38px; height: 38px; align-items: center; justify-content: center; }
.menu-toggle span { width: 20px; height: 1.6px; background: var(--text); border-radius: 2px; }
.mobile-nav { display: none; flex-direction: column; padding: 6px 28px 18px; gap: 2px; border-top: 1px solid var(--line); background: var(--surface); max-height: 80vh; overflow-y: auto; }
.mobile-nav a { padding: 12px 0; font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav.open { display: flex; }
.mobile-nav-section { display: flex; flex-direction: column; padding: 10px 0 4px; }
.mobile-nav-section:not(:last-child) { border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.mobile-nav-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.mobile-nav-controls { display: flex; flex-direction: column; gap: 8px; padding: 4px 0 8px; }
.mobile-nav-btn { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-solid); font: inherit; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; transition: all .2s; }
.mobile-nav-btn:hover { border-color: var(--gold); background: var(--champagne); }
.mobile-nav-logout { color: var(--ruby) !important; font-weight: 700 !important; font-size: 15px !important; padding: 14px 0 !important; }

/* ---------- HERO ---------- */
.hero { max-width: var(--container); margin: 0 auto; padding: 64px 28px 40px; display: grid; grid-template-columns: 1.05fr 0.75fr; gap: 56px; align-items: center; }

/* Search hint below search bars */
.search-hint { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 8px; text-align: center; font-weight: 400; }

/* ---------- HERO SLIDER (Manyavar-style) ---------- */
.hero-slider { position: relative; width: 100%; height: 520px; overflow: hidden; background: var(--espresso); }
.hero-slider-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide-content {
  max-width: var(--container); width: 100%; margin: 0 auto;
  padding: 0 28px;
}
.hero-slide-tag {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: #fff; background: rgba(201,162,75,0.9); padding: 6px 18px;
  border-radius: 999px; margin-bottom: 18px; text-transform: uppercase;
}
.hero-slide-title {
  font-family: var(--font-display); font-size: 52px; font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4); max-width: 560px;
}
.hero-slide-desc {
  font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.6;
  margin-bottom: 28px; max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-slider {
  background: linear-gradient(135deg, #C9A24B, #8B6F2E); color: #fff;
  padding: 14px 32px; border-radius: 999px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.3s; display: inline-block;
  box-shadow: 0 4px 20px rgba(201,162,75,0.4);
}
.btn-gold-slider:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,162,75,0.55); }
.btn-ghost-slider {
  background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 32px; border-radius: 999px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; display: inline-block;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-slider:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.7); }

/* Arrows */
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; z-index: 5;
}
.hero-slider-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}
.hero-slider-arrow.prev { left: 24px; }
.hero-slider-arrow.next { right: 24px; }

/* Dots */
.hero-slider-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
  border: none;
}
.hero-slider-dot.active {
  width: 32px; border-radius: 999px;
  background: var(--gold);
}

/* Hero slider responsive */
@media (max-width: 1024px) {
  .hero-slider { height: 440px; }
  .hero-slide-title { font-size: 40px; }
  .hero-slide-desc { font-size: 15px; }
}
@media (max-width: 860px) {
  .hero-slider { height: 380px; }
  .hero-slide-title { font-size: 32px; }
  .hero-slide-desc { font-size: 14px; margin-bottom: 20px; }
  .hero-slide-actions { gap: 10px; }
  .btn-gold-slider, .btn-ghost-slider { padding: 11px 22px; font-size: 13px; }
  .hero-slider-arrow { width: 40px; height: 40px; }
  .hero-slider-arrow.prev { left: 12px; }
  .hero-slider-arrow.next { right: 12px; }
}
@media (max-width: 600px) {
  .hero-slider { height: 340px; }
  .hero-slide-content { padding: 0 18px; }
  .hero-slide-tag { font-size: 11px; padding: 4px 12px; margin-bottom: 12px; }
  .hero-slide-title { font-size: 26px; margin-bottom: 10px; }
  .hero-slide-desc { font-size: 13px; margin-bottom: 18px; }
  .hero-slider-arrow { width: 36px; height: 36px; }
  .hero-slider-arrow svg { width: 18px; height: 18px; }
}
@media (max-width: 380px) {
  .hero-slider { height: 300px; }
  .hero-slide-title { font-size: 22px; }
  .hero-slide-desc { display: none; }
  .btn-gold-slider, .btn-ghost-slider { padding: 10px 18px; font-size: 12px; }
  .hero-slide-actions { gap: 8px; }
}

.eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 1px; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.hero h1 { font-family: var(--font-display); font-size: 48px; line-height: 1.12; font-weight: 600; margin-bottom: 20px; max-width: 560px; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero-desc { font-size: 15.5px; line-height: 1.7; color: var(--muted); max-width: 480px; margin-bottom: 30px; }
.hero-search { display: flex; align-items: center; gap: 0; background: var(--surface-solid); border: 1px solid var(--line); border-radius: 999px; padding: 6px; max-width: 560px; box-shadow: var(--shadow-soft); margin-bottom: 34px; }
.hero-search-location { display: flex; align-items: center; gap: 7px; padding: 10px 16px 10px 14px; border-radius: 999px; background: var(--champagne); color: var(--gold-deep); font-size: 13px; font-weight: 700; flex-shrink: 0; max-width: 150px; transition: background .2s; }
.hero-search-location:hover { background: var(--gold-soft); }
.hero-search-location span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-search-location .chev { opacity: 0.6; flex-shrink: 0; }
.hero-search-divider { width: 1px; height: 24px; background: var(--line); flex-shrink: 0; margin: 0 8px; }
.hero-search-icon { flex-shrink: 0; margin-right: 8px; }
.hero-search input { flex: 1; min-width: 0; border: none; outline: none; font-size: 14px; font-family: inherit; background: transparent; color: var(--text); }
.hero-search-submit { background: var(--black); color: var(--gold-soft); padding: 12px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 600; transition: background .2s; flex-shrink: 0; }
.hero-search-submit:hover { background: var(--charcoal); }
.hero-stats { display: flex; gap: 36px; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--black); }
.hero-stats span { font-size: 12px; color: var(--muted); }
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-strong); position: relative; z-index: 2; }
.hero-visual-glow { position: absolute; inset: -30px; z-index: 1; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,75,0.28), transparent 65%); filter: blur(10px); pointer-events: none; max-width: 100%; overflow: hidden; }
.hero-visual { position: relative; overflow: hidden; }

/* ---------- SECTIONS ---------- */
.section { max-width: var(--container); margin: 0 auto; padding: 64px 28px; }
.section:last-of-type { margin-bottom: 0; }
.section.alt { background: var(--champagne); max-width: none; }
.section.alt .section-head, .section.alt .store-grid { max-width: var(--container); margin-left: auto; margin-right: auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-display); font-size: 30px; font-weight: 600; margin-bottom: 8px; }
.section-head p { font-size: 14.5px; color: var(--muted); }
.sort-row { display: flex; gap: 10px; flex-wrap: wrap; }
.sort-chip { padding: 8px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); background: var(--surface-solid); color: var(--text); transition: all .2s; }
.sort-chip.active { background: var(--black); color: var(--gold-soft); border-color: var(--black); }
.sort-chip:hover { border-color: var(--gold); }

/* ---------- CATEGORY GRID ---------- */
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-card { display: block; background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 0; text-align: center; transition: all .3s var(--ease); cursor: pointer; overflow: hidden; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold-soft); }
.cat-image-wrap { height: 80px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--champagne), var(--gold-soft)); }
.cat-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.category-card:hover .cat-image { transform: scale(1.08); }
.cat-emoji { font-size: 26px; margin-bottom: 10px; }
.category-card span { font-size: 12.5px; font-weight: 600; color: var(--text); display: block; padding: 10px 8px; }

/* ---------- STORE / PRODUCT GRID ---------- */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.store-card { background: var(--surface-solid); border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.store-card-link { display: block; color: inherit; }
.product-card { display: flex; flex-direction: column; }
.product-media-wrap { background: linear-gradient(135deg, rgba(201,162,75,0.14), rgba(125,17,40,0.08)); padding: 12px; }
.product-image { width: 100%; height: 220px; object-fit: cover; border-radius: 16px; display: block; }
.product-thumbnail-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.product-thumb { border: 1px solid var(--line); background: var(--surface-solid); padding: 3px; border-radius: 10px; overflow: hidden; cursor: pointer; transition: all .2s ease; }
.product-thumb img { width: 100%; height: 52px; object-fit: cover; border-radius: 7px; display: block; }
.product-thumb.active { border-color: var(--ruby); box-shadow: 0 0 0 2px rgba(125,17,40,0.12); }
.store-media { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 34px; background: linear-gradient(135deg, var(--champagne), var(--gold-soft)); position: relative; overflow: hidden; }
.store-media-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.store-card:hover .store-media-img { transform: scale(1.06); }
.store-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25)); pointer-events: none; }
.store-badge { position: absolute; top: 12px; left: 12px; background: var(--black); color: var(--gold-soft); font-size: 10.5px; font-weight: 700; letter-spacing: 0.3px; padding: 5px 10px; border-radius: 999px; }
.store-dist { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.9); color: var(--text); font-size: 10.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.store-body { padding: 18px; }
.store-body h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.store-cat { font-size: 12px; color: var(--gold-deep); font-weight: 600; margin-bottom: 10px; }
.store-desc { font-size: 12.5px; color: var(--muted); margin: 8px 0 12px; line-height: 1.6; }
.store-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.store-rating { display: flex; align-items: center; gap: 4px; font-weight: 700; color: var(--text); }
.store-open { color: var(--success); font-weight: 600; }
.store-open.closed { color: var(--danger); }
.product-variant-row { margin-top: 12px; display: flex; flex-direction: column; align-items: flex-start; }
.size-label { display: block; margin: 0 0 6px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.45px; color: var(--gold-deep); }
.size-select { width: auto; min-width: 142px; max-width: 180px; border: 1px solid rgba(125,17,40,0.24); background: var(--surface-solid); color: var(--text); padding: 9px 38px 9px 12px; border-radius: 12px; font-size: 12px; font-weight: 700; outline: none; box-shadow: 0 8px 20px rgba(20,18,15,0.06); appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ruby) 50%), linear-gradient(135deg, var(--ruby) 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.size-select.compact { max-width: 180px; }
.size-select:hover { border-color: var(--ruby); box-shadow: 0 10px 24px rgba(125,17,40,0.12); }
.size-select:focus { border-color: var(--ruby); box-shadow: 0 0 0 3px rgba(125,17,40,0.12); }
.variant-pill { display: inline-flex; align-items: center; padding: 6px 10px; background: var(--champagne); color: var(--gold-deep); border-radius: 999px; font-size: 11px; font-weight: 700; margin-top: 10px; }
.compact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.store-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.price-tag { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text); }
.price-original { font-size: 13px; text-decoration: line-through; color: var(--muted); margin-left: 6px; }
.discount-badge { display: inline-block; background: var(--ruby); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }

/* ---------- FEATURE STRIP ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 30px 24px; transition: transform .3s var(--ease); }
.feature-card:hover { transform: translateY(-4px); }
.feature-card.dark { background: var(--black); color: var(--ivory); border-color: var(--black); }
.feature-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; background: var(--champagne); color: var(--gold-deep); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.feature-tag.gold { background: var(--gold); color: var(--black); }
.feature-card h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; line-height: 1.6; opacity: 0.85; }

/* ---------- AUTH PAGES ---------- */
.auth-page { min-height: calc(100vh - 90px); display: flex; align-items: center; justify-content: center; padding: 40px 18px 60px; position: relative; }
.auth-page::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1920&q=80') center/cover; opacity: 0.04; pointer-events: none; }
.auth-page > * { position: relative; z-index: 1; }
.login-logo-intro { position: fixed; inset: 0; z-index: 40; display: grid; place-items: center; background: radial-gradient(circle at top, rgba(125,17,40,0.32), transparent 50%), var(--bg); transition: opacity .45s ease, visibility .45s ease; }
.login-logo-intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.login-logo-intro .brand-plate { display: flex; flex-direction: column; align-items: center; gap: 16px; background: var(--surface-solid); border: 1px solid var(--line); border-radius: 28px; padding: 40px 48px; box-shadow: var(--shadow-strong); }
.login-logo-intro img { width: 140px; height: 140px; border-radius: 24px; object-fit: cover; border: 2px solid rgba(201,162,75,0.4); background: #5A0A18; box-shadow: 0 0 0 10px rgba(125,17,40,0.12); }
.login-logo-intro .brand-name { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.login-logo-intro .brand-title { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: 4px; }
.login-logo-intro .brand-sub { font-style: normal; color: var(--gold); font-weight: 500; letter-spacing: 6px; font-size: 16px; font-family: var(--font-display); }
.auth-card { width: min(100%, 460px); background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-l); box-shadow: var(--shadow-soft); padding: 36px; opacity: 1; transition: opacity .4s ease, transform .4s ease; }
.auth-card.is-hidden { opacity: 0; transform: translateY(14px); pointer-events: none; }
.auth-logo { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 24px; }
.auth-logo img { width: 96px; height: 96px; border-radius: 20px; object-fit: cover; border: 2px solid rgba(201,162,75,0.3); background: #5A0A18; box-shadow: 0 0 0 6px rgba(125,17,40,0.1); }
.auth-logo .brand-name { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.auth-logo .brand-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; letter-spacing: 3px; }
.auth-logo .brand-sub { font-style: normal; color: var(--gold); font-weight: 500; letter-spacing: 5px; font-size: 13px; font-family: var(--font-display); }
.auth-card h1 { font-family: var(--font-display); font-size: 28px; margin-bottom: 10px; text-align: center; }
.auth-text { color: var(--muted); line-height: 1.7; margin-bottom: 22px; text-align: center; font-size: 14px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form label { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.auth-form input { border: 1px solid var(--line); border-radius: 999px; padding: 12px 14px; font: inherit; background: var(--surface-solid); color: var(--text); }
.auth-form input::placeholder { color: var(--muted); opacity: 0.7; }
.auth-form input:focus { border-color: var(--ruby); outline: none; }
.auth-switch { margin-top: 16px; font-size: 13px; color: var(--muted); text-align: center; }
.auth-switch a { color: var(--ruby); font-weight: 700; }
body[data-theme="dark"] .auth-switch a { color: var(--gold-soft); }

/* Forgot Password link */
.forgot-link { font-size: 13px; color: var(--gold-deep); text-align: right; display: block; margin-top: 8px; font-weight: 600; text-decoration: none; transition: color .2s; }
.forgot-link:hover { color: var(--ruby); }
body[data-theme="dark"] .forgot-link { color: var(--gold-soft); }
body[data-theme="dark"] .forgot-link:hover { color: var(--gold-light); }

/* Forgot password modal input */
.auth-form-input-dark { border: 1px solid var(--line); border-radius: 999px; padding: 12px 14px; font: inherit; background: var(--surface-solid); color: var(--text); outline: none; width: 100%; }
body[data-theme="dark"] .auth-form-input-dark { background: #1E1A15; color: #F8F2E8; border-color: rgba(255,255,255,0.18); }

/* Forgot password status text */
.forgot-status { text-align: center; font-size: 13px; color: var(--gold-deep); display: none; }
body[data-theme="dark"] .forgot-status { color: var(--gold-soft); }

/* Auth tab switcher */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 22px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .25s var(--ease);
  letter-spacing: 0.3px;
}
.auth-tab:hover { color: var(--text); background: rgba(125,17,40,0.04); }
.auth-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(201,162,75,0.30);
}
/* Inactive tab readable in dark mode */
.auth-tab:not(.active) {
  color: var(--text);
}
.auth-tab:not(.active):hover {
  color: var(--gold-deep);
}

/* Auth method tabs (email/mobile) */
.auth-method-tab.active {
  background: var(--champagne);
  color: var(--gold-deep) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* OTP input boxes */
.otp-digit:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}

/* Hidden class for login method toggle */
.is-hidden { display: none !important; }

/* ---------- PASSWORD TOGGLE ---------- */
.pwd-field { position: relative; display: block; width: 100%; box-sizing: border-box; }
.pwd-field input { padding-right: 44px; width: 100%; box-sizing: border-box; }
.pwd-toggle {
  position: absolute; top: 50%; right: 8px; transform: translateY(-50%);
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--muted);
  border-radius: 50%; transition: background .2s, color .2s; padding: 0;
}
.pwd-toggle:hover { background: rgba(125,17,40,0.08); color: var(--ruby); }
.pwd-toggle svg { width: 18px; height: 18px; }
body[data-theme="dark"] .pwd-toggle { color: rgba(248,242,232,0.5); }
body[data-theme="dark"] .pwd-toggle:hover { color: var(--gold-soft); background: rgba(255,255,255,0.08); }

/* ---------- AUTH FORM UNIFIED HEIGHTS ---------- */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form .cc-select,
.auth-form .cc-flag-select { height: 46px; box-sizing: border-box; }

/* ---------- OTP SECTION ---------- */
.otp-section { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.otp-section .otp-btn-row { display: flex; justify-content: flex-start; }

/* ---------- COUNTRY CODE SELECT ---------- */
.cc-select {
  border: 1px solid var(--line); border-radius: 999px; background: var(--surface-solid);
  font-size: 14px; font-weight: 600; color: var(--text); padding: 0 28px 0 14px;
  cursor: pointer; outline: none; white-space: nowrap; appearance: none; -webkit-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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; transition: border-color .2s;
  min-width: 110px;
}
.cc-select:focus { border-color: var(--ruby); }
.cc-select option { font-size: 14px; padding: 8px; }

/* ---------- COUNTRY FLAG SELECT ---------- */
.cc-wrap { display: flex; gap: 8px; align-items: stretch; width: 100%; }
.cc-wrap input[type="tel"] { flex: 1 1 auto; min-width: 0; }
.cc-flag-select {
  display: block; height: 100%; width: auto; min-width: 0; max-width: none;
  border: none; background: none; appearance: none; -webkit-appearance: none;
  padding: 0; cursor: pointer; outline: none;
  font: inherit; font-weight: 600; font-size: 14px; color: var(--text);
}
.cc-flag-select:focus { border-color: var(--ruby); }
.cc-flag-select option { font-size: 14px; padding: 8px; }
.cc-flag-img { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.cc-flag-wrap { display: inline-flex; align-items: center; gap: 6px; height: 46px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-solid); padding: 0 10px; flex-shrink: 0; box-sizing: border-box; }
.cc-flag-wrap img { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.cc-flag-wrap select { border: none; background: none; outline: none; font: inherit; font-weight: 600; color: var(--text); cursor: pointer; padding: 0; min-width: 0; }

/* ---------- CART / WISHLIST ---------- */
.cart-layout { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 24px; align-items: start; }
.cart-stack { display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); }
.cart-item h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.cart-item p { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.cart-item span { font-size: 12px; color: var(--gold-deep); font-weight: 700; }
.cart-item-thumb { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface-solid); color: var(--text); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.qty-btn:hover { border-color: var(--ruby); background: rgba(125,17,40,0.06); }
.qty-display { min-width: 28px; text-align: center; font-weight: 700; font-size: 14px; }
.cart-summary { background: var(--black); color: var(--ivory); border-radius: var(--radius-m); padding: 24px; position: sticky; top: 90px; }
.cart-summary h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; color: rgba(250,247,241,0.8); font-size: 14px; }
.cart-summary-row.total { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; margin-top: 12px; font-size: 18px; font-weight: 700; color: var(--gold-soft); }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-input { flex: 1; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--ivory); padding: 10px 14px; border-radius: 999px; font-size: 13px; outline: none; }
.coupon-input::placeholder { color: rgba(250,247,241,0.4); }
.stacked-actions { display: flex; flex-direction: column; gap: 8px; }

/* ---------- TOAST ---------- */
.shop-toast { position: fixed; right: 20px; bottom: 20px; background: var(--black); color: var(--ivory); padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-strong); z-index: 200; opacity: 0; transform: translateY(8px); transition: all .25s ease; font-size: 14px; font-weight: 500; max-width: 320px; }
.shop-toast.show { opacity: 1; transform: translateY(0); }
.shop-toast.success { border-left: 3px solid var(--success); }
.shop-toast.error { border-left: 3px solid var(--danger); }

/* ---------- CATEGORY PAGE ---------- */
.page-shell { max-width: var(--container); margin: 0 auto; padding: 40px 28px 72px; }
.category-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: stretch; background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px; margin-bottom: 30px; position: relative; overflow: hidden; }
.category-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,18,15,0.72), rgba(90,10,24,0.55) 50%, rgba(201,162,75,0.25)); z-index: 0; }
.category-hero > * { position: relative; z-index: 1; }
.category-hero h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 12px; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.category-hero p { color: rgba(255,255,255,0.88); line-height: 1.7; }
.category-hero .eyebrow { color: var(--gold-soft); }
.category-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.category-badge { padding: 8px 13px; border-radius: 999px; background: var(--surface-solid); border: 1px solid var(--line); font-size: 12px; font-weight: 600; transition: all .2s; }
.category-badge:hover { border-color: var(--gold); }
.category-badge.active { background: var(--black); color: var(--gold-soft); border-color: var(--black); }
.hero-card { background: var(--black); color: var(--ivory); border-radius: var(--radius-m); padding: 24px; box-shadow: var(--shadow-soft); }
.hero-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.hero-card p { color: rgba(250,247,241,0.74); }
.empty-state { padding: 48px 24px; border: 1px dashed var(--line); border-radius: var(--radius-m); background: var(--surface-solid); color: var(--muted); text-align: center; font-size: 15px; }

/* ---------- FILTER SIDEBAR ---------- */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.filter-sidebar { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px; position: sticky; top: 90px; }
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold-deep); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 6px 0; cursor: pointer; font-size: 14px; }
.filter-option input { accent-color: var(--ruby); width: 16px; height: 16px; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 8px 10px; font-size: 13px; background: var(--surface-solid); color: var(--text); outline: none; }
.price-inputs input:focus { border-color: var(--ruby); }
.filter-actions { display: flex; gap: 8px; margin-top: 16px; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.sort-select { border: 1px solid var(--line); background: var(--surface-solid); color: var(--text); padding: 10px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; outline: none; cursor: pointer; height: 40px; width: 100%; }

/* ---------- CHECKOUT ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 0.5fr; gap: 28px; align-items: start; }
.checkout-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.step-indicator { display: flex; align-items: center; gap: 8px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; background: var(--surface-solid); border: 2px solid var(--line); color: var(--muted); transition: all .3s; }
.step-dot.active { background: var(--black); color: var(--gold-soft); border-color: var(--black); }
.step-dot.completed { background: var(--success); color: var(--white); border-color: var(--success); }
.step-label { font-size: 13px; font-weight: 600; color: var(--muted); }
.step-label.active { color: var(--text); }
.step-divider { width: 40px; height: 2px; background: var(--line); }
.checkout-panel { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 28px; }
.checkout-panel h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 20px; }
.address-option { border: 2px solid var(--line); border-radius: var(--radius-m); padding: 16px; margin-bottom: 12px; cursor: pointer; transition: border-color .2s; }
.address-option:hover { border-color: var(--gold-soft); }
.address-option.selected { border-color: var(--ruby); }
.address-option-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.address-option-label h4 { font-size: 15px; font-weight: 700; }
.address-badge { font-size: 11px; padding: 3px 10px; border-radius: 999px; background: var(--champagne); color: var(--gold-deep); font-weight: 700; }
.payment-option { border: 2px solid var(--line); border-radius: var(--radius-m); padding: 16px; margin-bottom: 12px; cursor: pointer; transition: border-color .2s; display: flex; align-items: center; gap: 14px; }
.payment-option:hover { border-color: var(--gold-soft); }
.payment-option.selected { border-color: var(--ruby); }
.payment-option-icon { font-size: 28px; }
.payment-option-info h4 { font-size: 15px; font-weight: 700; }
.payment-option-info p { font-size: 13px; color: var(--muted); }
.payment-fields { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payment-fields .full { grid-column: 1 / -1; }

/* ---------- ORDER SUCCESS ---------- */
.success-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.success-card { max-width: 520px; width: 100%; background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 48px 36px; text-align: center; box-shadow: var(--shadow-soft); }
.success-icon { width: 80px; height: 80px; margin: 0 auto 24px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--white); }
.success-card h1 { font-family: var(--font-display); font-size: 32px; margin-bottom: 12px; }
.success-card p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.order-number-box { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 16px; margin-bottom: 24px; }
.order-number-box label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.order-number-box strong { font-family: var(--font-display); font-size: 24px; color: var(--text); }

/* ---------- ORDERS LIST ---------- */
.order-card { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 24px; margin-bottom: 16px; transition: box-shadow .2s; }
.order-card:hover { box-shadow: var(--shadow-soft); }
.order-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.order-card-head h3 { font-family: var(--font-display); font-size: 20px; }
.order-status-badge { padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.order-status-badge.placed { background: var(--champagne); color: var(--gold-deep); }
.order-status-badge.confirmed { background: #e3f2fd; color: #1565c0; }
.order-status-badge.shipped { background: #f3e5f5; color: #7b1fa2; }
.order-status-badge.out_for_delivery { background: #fff3e0; color: #e65100; }
.order-status-badge.delivered { background: #e8f5e9; color: var(--success); }
.order-status-badge.cancelled { background: #ffebee; color: var(--danger); }
.order-items-preview { display: flex; gap: 10px; flex-wrap: wrap; }
.order-item-thumb { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; border: 1px solid var(--line); }
.order-card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.order-card-foot .price-tag { font-size: 20px; }

/* ---------- ORDER DETAIL / TRACKING ---------- */
.tracking-timeline { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.tracking-step { display: flex; gap: 16px; position: relative; padding-bottom: 28px; }
.tracking-step:last-child { padding-bottom: 0; }
.tracking-step::before { content: ''; position: absolute; left: 15px; top: 32px; bottom: -4px; width: 2px; background: var(--line); }
.tracking-step:last-child::before { display: none; }
.tracking-step.completed::before { background: var(--success); }
.tracking-dot { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 2px solid var(--line); background: var(--surface-solid); color: var(--muted); z-index: 1; }
.tracking-step.completed .tracking-dot { background: var(--success); border-color: var(--success); color: var(--white); }
.tracking-step.current .tracking-dot { background: var(--gold); border-color: var(--gold); color: var(--black); animation: trackPulse 2s ease-in-out infinite; }
@keyframes trackPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.tracking-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.tracking-info time { font-size: 12px; color: var(--muted); }
.invoice-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.invoice-table th { text-align: left; padding: 12px; border-bottom: 2px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gold-deep); font-weight: 700; }
.invoice-table td { padding: 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.invoice-table .item-cell { display: flex; align-items: center; gap: 10px; }
.invoice-table .item-cell img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.invoice-total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.invoice-total-row.grand { border-top: 2px solid var(--line); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 700; font-family: var(--font-display); }

/* ---------- PROFILE ---------- */
.profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.profile-sidebar { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 28px; text-align: center; position: sticky; top: 90px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; background: var(--black); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; font-family: var(--font-display); }
.profile-sidebar h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 4px; }
.profile-sidebar p { font-size: 13px; color: var(--muted); }
.profile-content { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 28px; }
.profile-content h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 20px; }
.profile-stats { display: flex; gap: 24px; margin-bottom: 24px; }
.profile-stat { text-align: center; }
.profile-stat strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--text); }
.profile-stat span { font-size: 12px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input, .form-field select, .form-field textarea { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit; background: var(--surface-solid); color: var(--text); outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ruby); }
.form-field textarea { resize: vertical; min-height: 70px; }

/* ---------- ADDRESS CARDS ---------- */
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.address-card { background: var(--surface-solid); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 20px; position: relative; transition: box-shadow .2s; }
.address-card:hover { box-shadow: var(--shadow-soft); }
.address-card.is-default { border-color: var(--gold); }
.address-card h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.address-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.address-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- NEWSLETTER ---------- */
.newsletter { background: var(--black); color: var(--ivory); text-align: center; padding: 64px 28px 32px; margin-bottom: 0; }
.newsletter h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 10px; }
.newsletter p { font-size: 14px; color: rgba(250,247,241,0.65); margin-bottom: 26px; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 6px; }
.newsletter-form input { flex: 1; background: transparent; border: none; outline: none; padding: 12px 16px; color: var(--ivory); font-size: 13.5px; }
.newsletter-form input::placeholder { color: rgba(250,247,241,0.45); }
.newsletter-form button { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--black); padding: 11px 24px; border-radius: 999px; font-size: 13px; font-weight: 700; }

/* ---------- FOOTER ---------- */
.footer { position: relative; background: #1A120F; border-top: 3px solid var(--gold); padding: 56px 28px 24px; overflow: hidden; margin-top: -3px; }
.footer::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; opacity: 0.12; pointer-events: none; z-index: 0; }
.footer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,18,15,0.88), rgba(90,10,24,0.82)); pointer-events: none; z-index: 0; }
.footer > * { position: relative; z-index: 1; }
.footer-top { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 14px; margin-bottom: 12px; object-fit: cover; background: #5A0A18; }
.footer-brand p { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; }
.footer-brand span { font-size: 12.5px; color: rgba(255,255,255,0.65); }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 16px; color: var(--gold); }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.68); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(201,162,75,0.22); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 8px; }
body[data-theme="dark"] .footer { background: #0F0A07; }
body[data-theme="dark"] .footer::before { opacity: 0.08; }

/* ============================================================
   COMPREHENSIVE DARK MODE OVERRIDES
   Ensures all text, inputs, surfaces, and interactive elements
   have proper contrast in dark mode.
   ============================================================ */

/* --- Form inputs: use dark surface + light text --- */
body[data-theme="dark"] .auth-form input,
body[data-theme="dark"] .auth-form select,
body[data-theme="dark"] .auth-form textarea,
body[data-theme="dark"] .seller-input,
body[data-theme="dark"] .seller-select,
body[data-theme="dark"] .seller-textarea,
body[data-theme="dark"] input[type="text"],
body[data-theme="dark"] input[type="email"],
body[data-theme="dark"] input[type="password"],
body[data-theme="dark"] input[type="tel"],
body[data-theme="dark"] input[type="number"],
body[data-theme="dark"] input[type="search"],
body[data-theme="dark"] textarea,
body[data-theme="dark"] select,
body[data-theme="dark"] .otp-digit {
  background: #1E1A15 !important;
  color: #F8F2E8 !important;
  border-color: rgba(255,255,255,0.18) !important;
}
body[data-theme="dark"] .auth-form input::placeholder,
body[data-theme="dark"] .seller-input::placeholder,
body[data-theme="dark"] input::placeholder,
body[data-theme="dark"] textarea::placeholder {
  color: rgba(248,242,232,0.4) !important;
}
body[data-theme="dark"] select option {
  background: #181510;
  color: #F8F2E8;
}

/* --- Auth tabs: ensure both states readable --- */
body[data-theme="dark"] .auth-tab:not(.active) {
  color: #C8BCA9;
}
body[data-theme="dark"] .auth-method-tab {
  color: #C8BCA9;
}
body[data-theme="dark"] .auth-method-tab.active {
  background: rgba(201,162,75,0.15) !important;
  color: var(--gold-soft) !important;
}

/* --- Hero card / category hero inputs stay dark --- */
body[data-theme="dark"] .hero-card input,
body[data-theme="dark"] .hero-card select {
  background: rgba(255,255,255,0.08) !important;
  color: #F8F2E8 !important;
}

/* --- Skeleton shimmer in dark mode --- */
body[data-theme="dark"] .skeleton {
  background: linear-gradient(90deg, #1E1A15 25%, #2B2822 50%, #1E1A15 75%);
  background-size: 200% 100%;
}

/* --- Mega menu dropdown: ensure dark surface --- */
body[data-theme="dark"] .mega-fw {
  background: linear-gradient(180deg, #181510 0%, #0F0D0B 100%);
  border-top-color: var(--gold);
}
body[data-theme="dark"] .mega-group-label {
  color: var(--gold);
}
body[data-theme="dark"] .mega-sub-link {
  color: #C8BCA9;
}
body[data-theme="dark"] .mega-sub-link:hover {
  color: var(--gold-soft);
}
body[data-theme="dark"] .mega-view-all {
  color: var(--gold-soft);
}
body[data-theme="dark"] .mega-col-title {
  color: #F8F2E8;
}

/* --- Category badge active in dark mode --- */
body[data-theme="dark"] .category-badge {
  background: #1E1A15;
  color: #C8BCA9;
}
body[data-theme="dark"] .category-badge.active {
  background: #2B2822;
  color: var(--gold-soft);
}

/* --- Filter sidebar elements --- */
body[data-theme="dark"] .filter-label,
body[data-theme="dark"] .sidebar h4 {
  color: #F8F2E8;
}
body[data-theme="dark"] .filter-chip {
  background: #1E1A15;
  color: #C8BCA9;
  border-color: rgba(255,255,255,0.15);
}
body[data-theme="dark"] .filter-chip.active {
  background: var(--ruby);
  color: #fff;
}

/* --- Location dropdown menu --- */
body[data-theme="dark"] .location-dropdown-menu {
  background: #181510;
  border-color: rgba(255,255,255,0.15);
}
body[data-theme="dark"] .loc-detect-btn {
  background: rgba(201,162,75,0.1);
  color: var(--gold-soft);
}
body[data-theme="dark"] .loc-search-input {
  background: #1E1A15;
  color: #F8F2E8;
}
body[data-theme="dark"] .loc-search-result-item {
  color: #C8BCA9;
}
body[data-theme="dark"] .loc-divider {
  color: rgba(248,242,232,0.4);
}
body[data-theme="dark"] .loc-city-chip {
  background: #1E1A15;
  color: #C8BCA9;
}

/* --- Modal content --- */
body[data-theme="dark"] .modal-box {
  background: #181510;
}
body[data-theme="dark"] .modal-box h3 {
  color: #F8F2E8;
}

/* --- Cart summary stays dark, ensure contrast --- */
body[data-theme="dark"] .cart-summary {
  background: #0F0D0B;
}

/* --- Toast --- */
body[data-theme="dark"] .shop-toast {
  background: #181510;
  border: 1px solid var(--line);
}

/* --- Product cards --- */
body[data-theme="dark"] .product-card {
  background: #181510;
  border-color: rgba(255,255,255,0.12);
}
body[data-theme="dark"] .product-card h3 {
  color: #F8F2E8;
}
body[data-theme="dark"] .product-card .price {
  color: var(--gold-soft);
}

/* --- Checkout panels --- */
body[data-theme="dark"] .checkout-panel {
  background: #181510;
}
body[data-theme="dark"] .checkout-panel h2 {
  color: #F8F2E8;
}

/* --- Order cards --- */
body[data-theme="dark"] .order-card {
  background: #181510;
  border-color: rgba(255,255,255,0.12);
}
body[data-theme="dark"] .order-card h3 {
  color: #F8F2E8;
}

/* --- Profile --- */
body[data-theme="dark"] .profile-content {
  background: #181510;
}

/* --- Notification items --- */
body[data-theme="dark"] .notification-item {
  background: #181510;
  border-color: rgba(255,255,255,0.1);
}

/* --- About / careers / contact pages --- */
body[data-theme="dark"] .about-hero-content h1,
body[data-theme="dark"] .careers-hero h1,
body[data-theme="dark"] .contact-hero h1 {
  color: #F8F2E8;
}
body[data-theme="dark"] .about-card,
body[data-theme="dark"] .career-card,
body[data-theme="dark"] .contact-info-card {
  background: #181510;
  border-color: rgba(255,255,255,0.12);
}

/* --- Deals --- */
body[data-theme="dark"] .deal-banner {
  background: #181510;
}

/* --- Referral --- */
body[data-theme="dark"] .referral-card {
  background: #181510;
}

/* --- Mobile nav --- */
body[data-theme="dark"] .mobile-nav {
  background: #181510;
}
body[data-theme="dark"] .mobile-nav a {
  color: #C8BCA9;
}

/* --- Accordion / FAQ --- */
body[data-theme="dark"] .accordion-item,
body[data-theme="dark"] .faq-item {
  background: #181510;
  border-color: rgba(255,255,255,0.12);
}

/* --- Empty state --- */
body[data-theme="dark"] .empty-state {
  background: #181510;
  color: #C8BCA9;
}

/* --- Seller form --- */
body[data-theme="dark"] .seller-step-card {
  background: #181510;
}
body[data-theme="dark"] .seller-cat-card {
  background: #1E1A15;
  border-color: rgba(255,255,255,0.12);
}
body[data-theme="dark"] .seller-cat-card.selected {
  border-color: var(--gold);
  background: rgba(201,162,75,0.08);
}

/* --- Customize / try-on --- */
body[data-theme="dark"] .tryon-studio {
  background: #181510;
}
body[data-theme="dark"] .quote-card,
body[data-theme="dark"] .consultation-card {
  background: #181510;
}

/* --- Buttons ensure text readable --- */
body[data-theme="dark"] .btn-gold-slider,
body[data-theme="dark"] .btn-ghost-slider {
  color: #fff;
}

/* --- Wishlist --- */
body[data-theme="dark"] .wishlist-item {
  background: #181510;
}

/* --- Country code select (auth pages) --- */
body[data-theme="dark"] .country-code-select {
  background: #1E1A15 !important;
  color: #F8F2E8 !important;
  border-color: rgba(255,255,255,0.18) !important;
}

/* --- Invoice / table --- */
body[data-theme="dark"] .invoice-table th {
  background: #1E1A15;
  color: var(--gold-soft);
}
body[data-theme="dark"] .invoice-table td {
  color: #C8BCA9;
}

/* --- Newsletter --- */
body[data-theme="dark"] .newsletter {
  background: #181510;
}
body[data-theme="dark"] .newsletter input {
  background: #1E1A15;
  color: #F8F2E8;
}

/* --- Feature strip cards --- */
body[data-theme="dark"] .feature-strip .card,
body[data-theme="dark"] .feature-card {
  background: #181510;
}

/* --- Section headings --- */
body[data-theme="dark"] .section-head h2,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3 {
  color: #F8F2E8;
}

/* --- Paragraphs / muted text --- */
body[data-theme="dark"] p,
body[data-theme="dark"] .text-muted {
  color: #C8BCA9;
}

/* --- Breadcrumb --- */
body[data-theme="dark"] .breadcrumb {
  color: #C8BCA9;
}
body[data-theme="dark"] .breadcrumb a {
  color: var(--gold-soft);
}

/* --- Fix all gold-deep text → lighter gold in dark mode --- */
body[data-theme="dark"] .modal-status,
body[data-theme="dark"] .mobile-nav-title,
body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .hero h1 em,
body[data-theme="dark"] .store-cat,
body[data-theme="dark"] .size-label,
body[data-theme="dark"] .cart-item span,
body[data-theme="dark"] .filter-group h4,
body[data-theme="dark"] .address-badge,
body[data-theme="dark"] .order-status-badge.placed,
body[data-theme="dark"] .invoice-table th,
body[data-theme="dark"] .not-found-page h1,
body[data-theme="dark"] .loc-nearby-dist,
body[data-theme="dark"] .team-card p,
body[data-theme="dark"] .feature-tag {
  color: var(--gold-soft);
}

/* --- Elements with champagne bg + gold-deep text: adjust for dark mode --- */
body[data-theme="dark"] .variant-pill,
body[data-theme="dark"] .feature-tag,
body[data-theme="dark"] .address-badge,
body[data-theme="dark"] .order-status-badge.placed,
body[data-theme="dark"] .hero-search-location {
  background: rgba(201,162,75,0.15);
  color: var(--gold-soft);
}

/* --- Mega-menu group labels and triggers --- */
body[data-theme="dark"] .mega-trigger:hover,
body[data-theme="dark"] .mega-item.open > .mega-trigger,
body[data-theme="dark"] .mega-group-label,
body[data-theme="dark"] .mega-col-title,
body[data-theme="dark"] .mega-view-all,
body[data-theme="dark"] .mega-promo-overlay span {
  color: var(--gold-soft);
}

/* --- Seller page gold-deep elements --- */
body[data-theme="dark"] .seller-step-title,
body[data-theme="dark"] .seller-cat-label,
body[data-theme="dark"] .seller-fee-label {
  color: var(--gold-soft);
}

/* --- Other gold-deep text from mega-menu / catalog --- */
body[data-theme="dark"] .catalog-mini-label,
body[data-theme="dark"] .catalog-section-title,
body[data-theme="dark"] .store-distance,
body[data-theme="dark"] .deal-save,
body[data-theme="dark"] .deal-price-old,
body[data-theme="dark"] .tracking-step-label,
body[data-theme="dark"] .consultation-time,
body[data-theme="dark"] .quote-price {
  color: var(--gold-soft);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--gold-deep); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { opacity: 0.5; }

/* ---------- LOADING SKELETON ---------- */
.skeleton { background: linear-gradient(90deg, var(--ivory) 25%, var(--champagne) 50%, var(--ivory) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-m); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { height: 320px; }
.loading-overlay { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; background: rgba(250,247,241,0.7); backdrop-filter: blur(4px); }
.loading-overlay .spinner { width: 48px; height: 48px; border: 4px solid var(--champagne); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 404 PAGE ---------- */
.not-found-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; }
.not-found-page h1 { font-family: var(--font-display); font-size: 72px; color: var(--gold-deep); margin-bottom: 16px; }
.not-found-page h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; }
.not-found-page p { color: var(--muted); margin-bottom: 24px; }

/* ---------- MODAL (generic) ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; background: rgba(20,18,15,0.55); backdrop-filter: blur(6px); padding: 20px; }
.modal-box { background: var(--surface-solid); border-radius: var(--radius-l); max-width: 500px; width: 100%; padding: 32px; box-shadow: var(--shadow-strong); animation: modalRise .4s var(--ease); }
.modal-box h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 16px; }
.modal-close { position: absolute; top: 16px; right: 20px; font-size: 24px; color: var(--muted); cursor: pointer; }

/* ---------- RESPONSIVE ---------- */

/* ===== TABLET LANDSCAPE (≤1024px) ===== */
@media (max-width: 1024px) {
  /* Navbar — hide desktop links, show hamburger */
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-location { display: none; }
  .nav-inner { padding: 12px 20px; gap: 16px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; order: -1; }

  /* Grids */
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .store-grid { grid-template-columns: repeat(2, 1fr); }

  /* Layouts collapse to single column */
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }

  /* Hide secondary nav actions to save space */
  .nav-actions .icon-btn[aria-label="Wishlist"],
  .nav-actions .theme-toggle { display: none; }

  /* Mobile nav links */
  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex; }
}

/* ===== TABLET PORTRAIT (≤860px) ===== */
@media (max-width: 860px) {
  .feature-strip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .category-hero { grid-template-columns: 1fr; }
  .payment-fields { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 24px; }
  .checkout-panel { padding: 20px; }

  /* Jobs list */
  .jobs-list { grid-template-columns: 1fr; }

  /* Checkout steps — smaller dots */
  .step-dot { width: 28px; height: 28px; font-size: 12px; }
  .step-divider { width: 24px; }

  /* Nav actions — keep only cart + account + hamburger */
  .nav-actions .icon-btn[aria-label="Wishlist"] { display: none; }
  .nav-actions .nav-dropdown { display: none; }
  .nav-actions .language-select { display: none; }
  .nav-actions .nav-login { padding: 6px 14px; font-size: 10px; }

  /* Seller form rows collapse to single column */
  .seller-form-row { grid-template-columns: 1fr; }

  /* Category select grid — 2 cols on tablet */
  .category-select-grid { grid-template-columns: repeat(2, 1fr); }

  /* Section heads */
  .section-head h2 { font-size: 26px; }
}

/* ===== MOBILE (≤600px) ===== */
@media (max-width: 600px) {
  /* Navbar */
  .nav-inner { padding: 10px 14px; gap: 8px; }
  .nav-logo img { width: 36px; height: 36px; }
  .nav-brand-name .brand-title { font-size: 14px; letter-spacing: 1px; }
  .nav-brand-name .brand-sub { font-size: 7px; letter-spacing: 2px; }
  .icon-btn { width: 34px; height: 34px; }
  .nav-login { padding: 7px 12px; font-size: 11px; }

  /* Hero */
  .hero { padding: 30px 14px 24px; }
  .hero h1 { font-size: 26px; }
  .hero-desc { font-size: 14px; margin-bottom: 20px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span { font-size: 11px; }
  .hero-search { flex-wrap: wrap; border-radius: 20px; padding: 10px; }
  .hero-search-location { max-width: none; width: 100%; justify-content: center; margin-bottom: 6px; }
  .hero-search-divider { display: none; }
  .hero-search input { width: 100%; padding: 6px 4px; }
  .hero-search-submit { width: 100%; margin-top: 6px; }

  /* Sections */
  .section { padding: 36px 14px; }
  .section.alt { padding: 36px 14px; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 13px; }

  /* Category grid — 3 cols on small phones */
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-image-wrap { height: 60px; }
  .category-card span { font-size: 11px; padding: 8px 4px; }

  /* Store grid — 1 column */
  .store-grid { grid-template-columns: 1fr; }

  /* Product grid — 2 columns */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-media { height: 160px; }
  .product-card-body { padding: 10px 12px 12px; }
  .product-card-body h3 { font-size: 13px; }
  .price-now { font-size: 15px; }
  .price-was { font-size: 11px; }

  /* Footer */
  .footer { padding: 36px 14px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }

  /* Page shell */
  .page-shell { padding: 20px 14px 40px; }
  .breadcrumb { font-size: 12px; margin-bottom: 14px; }

  /* Category hero */
  .category-hero { padding: 22px 16px; border-radius: 14px; min-height: 180px; }
  .category-hero h1 { font-size: 26px; }
  .hero-card { padding: 18px; }

  /* Search bars — mini search responsive */
  .hero-search-mini { flex-wrap: nowrap; }
  .hero-search-mini input { min-width: 0; flex: 1; }
  .hero-search-mini .btn { flex-shrink: 0; }

  /* Auth pages */
  .auth-page { padding: 24px 14px 40px; }
  .auth-card { padding: 24px 20px; }
  .auth-card h1 { font-size: 22px; }
  .auth-logo img { width: 80px; height: 80px; }
  .auth-logo .brand-title { font-size: 20px; }
  .auth-logo .brand-sub { font-size: 11px; }
  .login-logo-intro img { width: 120px; height: 120px; }
  .login-logo-intro .brand-title { font-size: 26px; }
  .login-logo-intro .brand-sub { font-size: 14px; }
  .login-logo-intro .brand-plate { padding: 32px 28px; }

  /* Splash */
  .splash-logo { width: 120px; height: 120px; }
  .splash-name { font-size: 28px; }
  .splash-title { font-size: 14px; }

  /* Cart items */
  .cart-item { padding: 14px; gap: 12px; flex-wrap: wrap; }
  .cart-item-thumb { width: 56px; height: 56px; }
  .cart-item h3 { font-size: 15px; }

  /* Checkout */
  .checkout-steps { gap: 4px; }
  .step-dot { width: 24px; height: 24px; font-size: 11px; }
  .step-divider { width: 12px; }
  .step-label { font-size: 10px; }
  .checkout-panel { padding: 16px; }
  .checkout-panel h2 { font-size: 20px; }

  /* Orders */
  .order-card { padding: 16px; }
  .order-card-head h3 { font-size: 17px; }
  .order-card-foot .price-tag { font-size: 17px; }

  /* Invoice table — horizontal scroll */
  .invoice-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .invoice-table { min-width: 360px; }
  .invoice-table { font-size: 12px; }
  .invoice-table th, .invoice-table td { padding: 8px; }

  /* Profile */
  .profile-content { padding: 18px; }
  .profile-stats { gap: 16px; flex-wrap: wrap; }

  /* Newsletter */
  .newsletter { padding: 44px 14px; }
  .newsletter h2 { font-size: 22px; }

  /* 404 */
  .not-found-page h1 { font-size: 56px; }
  .not-found-page h2 { font-size: 20px; }

  /* City panel */
  .city-panel { padding: 28px 18px; }

  /* About page */
  .about-hero-content h1 { font-size: 30px; }
  .about-lead { font-size: 14px; }

  /* Deals */
  .deals-hero h1 { font-size: 26px; }
  .deal-banner { padding: 18px; min-height: 100px; }
  .deal-banner-text h3 { font-size: 20px; }
  .deal-banner-emoji { font-size: 36px; }
  .timer-count { font-size: 22px; }

  /* Toast */
  .shop-toast { right: 12px; left: 12px; bottom: 12px; max-width: none; font-size: 13px; }

  /* Try-on studio */
  .tryon-studio { grid-template-columns: 1fr; }

  /* Referral tree */
  .referral-node.level-3 { margin-left: 16px; }
  .referral-node.level-4 { margin-left: 24px; }
  .referral-code-box code { font-size: 16px; }

  /* Multi-step forms */
  .multi-step-form { max-width: 100%; }
  .form-step-dot { width: 30px; height: 30px; font-size: 12px; }
  .form-step-connector { width: 20px; }

  /* Category select grid */
  .category-select-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero search mini (products page) — handled in its own breakpoints */

  /* Notification items */
  .notification-item { padding: 12px; gap: 10px; }
  .notification-item .notif-icon { width: 34px; height: 34px; font-size: 16px; }

  /* About CTA */
  .about-cta-actions { flex-wrap: wrap; justify-content: center; }

  /* Sort chips / filters */
  .sort-row { gap: 6px; }
  .sort-chip { padding: 7px 12px; font-size: 11.5px; }
  .careers-filter { flex-direction: column; }
}

/* ===== SMALL PHONES (≤380px) ===== */
@media (max-width: 380px) {
  .hero h1 { font-size: 22px; }
  .section-head h2 { font-size: 19px; }
  .footer-top { grid-template-columns: 1fr; }
  .deals-hero h1 { font-size: 22px; }
  .about-hero-content h1 { font-size: 26px; }
  .auth-card { padding: 20px 16px; }
  .about-stats { grid-template-columns: 1fr; }
  .nav-login { display: none; }
  .icon-btn { width: 32px; height: 32px; }

  /* Search bars stack vertically on tiny phones */
  .hero-search-mini { flex-direction: column; gap: 8px; border-radius: 14px; }
  .hero-search-mini input { width: 100%; }
  .hero-search-mini .btn { width: 100%; }

  /* OTP inputs — smaller on small phones */
  .otp-digit { width: 36px !important; height: 44px !important; font-size: 18px !important; }
  .otp-input-row { gap: 5px !important; }

  /* Auth method tabs — stack on very small screens */
  .auth-method-tabs { flex-direction: column; gap: 4px; }
}

/* ===== LARGE DESKTOPS (>1440px) ===== */
@media (min-width: 1441px) {
  :root { --container: 1320px; }
  .hero { max-width: 1320px; }
}

/* ===== MEDIUM DESKTOPS (1025px–1280px) — mega menu squeeze ===== */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-links { gap: 12px; }
  .mega-menu-nav { gap: 12px; }
  .mega-trigger { font-size: 13px; }
  .nav-brand-name .brand-title { font-size: 15px; letter-spacing: 1px; }
}

/* ===== UTILITY ===== */
.img-fluid { max-width: 100%; height: auto; }
.text-center { text-align: center; }
.invoice-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* =========================================================
   NEW FEATURE STYLES — Seller, Try-On, Customization,
   Quotations, Consultations, Reviews, Referrals, Notifications
   ========================================================= */

/* ---- Multi-step Form ---- */
.multi-step-form { max-width: 720px; margin: 0 auto; }
.form-step-indicator { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 32px; flex-wrap: wrap; }
.form-step-dot { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; background: var(--surface); border: 2px solid var(--line); color: var(--muted); transition: all .3s ease; }
.form-step-dot.active { background: var(--ruby); border-color: var(--ruby); color: #fff; }
.form-step-dot.completed { background: var(--gold); border-color: var(--gold); color: var(--black); }
.form-step-connector { width: 36px; height: 2px; background: var(--line); }
.form-step-connector.completed { background: var(--gold); }
.form-step-label { font-size: 11px; color: var(--muted); margin-top: 6px; text-align: center; }
.form-step-content { display: none; }
.form-step-content.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Category Select Grid ---- */
.category-select-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 16px; }
.category-select-card { padding: 20px 16px; border: 2px solid var(--line); border-radius: 16px; text-align: center; cursor: pointer; transition: all .25s ease; background: var(--surface); }
.category-select-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.category-select-card.selected { border-color: var(--ruby); background: rgba(125,17,40,0.05); }
.category-select-card .emoji { font-size: 32px; display: block; margin-bottom: 8px; }
.category-select-card h4 { font-size: 14px; font-family: var(--font-display); margin-bottom: 4px; }
.category-select-card p { font-size: 11px; color: var(--muted); }

/* ---- Seller Form — consistent input/select/textarea styling ---- */
.seller-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seller-field { display: flex; flex-direction: column; gap: 6px; }
.seller-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.seller-input,
.seller-select,
.seller-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 15px;
  background: var(--ivory);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}
.seller-input:focus,
.seller-select:focus,
.seller-textarea:focus {
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px rgba(125,17,40,0.08);
}
.seller-select { cursor: pointer; appearance: auto; }
.seller-textarea { resize: vertical; line-height: 1.5; }

/* Step connector */
.form-step-connector {
  width: 28px;
  height: 2px;
  background: var(--line);
  flex-shrink: 0;
}
.form-step-connector.completed { background: var(--gold); }

/* ---- Upload Zone ---- */
.upload-zone { border: 2px dashed var(--line); border-radius: 16px; padding: 36px 20px; text-align: center; cursor: pointer; transition: all .25s ease; background: var(--surface); position: relative; overflow: hidden; }
.upload-zone:hover { border-color: var(--gold); background: rgba(201,162,75,0.04); }
.upload-zone.drag-over { border-color: var(--ruby); background: rgba(125,17,40,0.04); }
.upload-zone .upload-icon { font-size: 36px; margin-bottom: 10px; }
.upload-zone p { color: var(--muted); font-size: 14px; }
.upload-zone .preview-img { max-width: 100%; max-height: 300px; border-radius: 12px; margin-top: 12px; }
.upload-zone .preview-thumb { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; display: inline-block; margin: 4px; border: 2px solid var(--line); }

/* ---- Measurement Grid ---- */
.measurement-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.measurement-field label { font-size: 12px; color: var(--muted); display: block; margin-bottom: 4px; }
.measurement-field input { width: 100%; }

/* ---- Cost Estimate Box ---- */
.cost-estimate-box { background: linear-gradient(135deg, rgba(201,162,75,0.1), rgba(125,17,40,0.05)); border: 1px solid rgba(201,162,75,0.3); border-radius: 16px; padding: 20px; margin: 20px 0; }
.cost-estimate-box h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 12px; color: var(--gold-dark); }
.cost-estimate-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; }
.cost-estimate-row:last-child { border-bottom: none; font-weight: 700; font-size: 16px; }

/* ---- Quotation Card ---- */
.quotation-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-bottom: 14px; transition: all .25s ease; position: relative; }
.quotation-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.quotation-card .quote-head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 12px; }
.quotation-card .quote-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ruby); }
.quotation-card .quote-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-top: 8px; }
.quotation-card .quote-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Package Card ---- */
.package-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-bottom: 14px; position: relative; transition: all .25s ease; }
.package-card:hover { box-shadow: var(--shadow); }
.package-card .pkg-tag { position: absolute; top: 16px; right: 16px; font-size: 11px; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; font-weight: 600; }
.package-card .pkg-tag.combo { background: var(--gold); color: var(--black); }
.package-card .pkg-tag.premium { background: var(--ruby); color: #fff; }
.package-card .pkg-tag.standard { background: var(--line); color: var(--text); }
.package-card .pkg-features { list-style: none; padding: 0; margin: 12px 0; }
.package-card .pkg-features li { padding: 4px 0; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.package-card .pkg-features li::before { content: "✓"; color: var(--gold-dark); font-weight: 700; }

/* ---- Try-On Studio ---- */
.tryon-studio { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.tryon-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 20px; }
.tryon-canvas-wrap { position: relative; aspect-ratio: 3/4; background: linear-gradient(135deg, #f8f5f0, #f0ebe5); border-radius: 16px; overflow: hidden; display: grid; place-items: center; }
.tryon-canvas-wrap img { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 8px; }
.tryon-canvas-wrap canvas { width: 100%; height: 100%; object-fit: contain; }
.tryon-product-selector { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0; margin-top: 12px; }
.tryon-product-selector img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; }
.tryon-product-selector img.active { border-color: var(--ruby); }
.tryon-color-pills { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.color-pill { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; transition: all .2s ease; }
.color-pill.active { border-color: var(--gold); transform: scale(1.1); }

/* ---- Review System ---- */
.star-rating-input { display: flex; gap: 6px; font-size: 28px; cursor: pointer; }
.star-rating-input span { color: var(--line); transition: color .15s ease; user-select: none; }
.star-rating-input span.active { color: #f5a623; }
.star-rating-input span:hover { color: #f5a623; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 12px; }
.review-card .review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-card .review-stars { color: #f5a623; font-size: 14px; }
.review-card .review-images { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review-card .review-images img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; }

/* ---- Referral ---- */
.referral-hero { background: linear-gradient(135deg, var(--ruby), #5a0a18); border-radius: 24px; padding: 36px; color: #fff; text-align: center; }
.referral-code-box { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.15); border: 2px dashed rgba(255,255,255,0.4); border-radius: 14px; padding: 14px 28px; margin: 16px 0; }
.referral-code-box code { font-size: 24px; font-weight: 700; letter-spacing: 3px; font-family: 'Inter', monospace; }
.referral-tree { position: relative; padding: 20px 0; }
.referral-node { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 8px; position: relative; }
.referral-node.level-1 { margin-left: 0; border-left: 4px solid var(--gold); }
.referral-node.level-2 { margin-left: 32px; border-left: 4px solid #c0a050; }
.referral-node.level-3 { margin-left: 64px; border-left: 4px solid #d0c080; }
.referral-node.level-4 { margin-left: 96px; border-left: 4px solid var(--line); }
.referral-node .ref-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--black); display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.referral-reward-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.referral-reward-table th { text-align: left; padding: 10px; border-bottom: 2px solid var(--line); font-size: 13px; color: var(--muted); }
.referral-reward-table td { padding: 10px; border-bottom: 1px solid var(--line); font-size: 14px; }

/* ---- Notifications ---- */
.notification-item { display: flex; gap: 14px; padding: 16px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 8px; cursor: pointer; transition: all .2s ease; position: relative; }
.notification-item:hover { box-shadow: var(--shadow); }
.notification-item.unread { border-left: 3px solid var(--ruby); background: rgba(125,17,40,0.02); }
.notification-item .notif-icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; background: rgba(201,162,75,0.1); }
.notification-item .notif-body h4 { font-size: 14px; margin-bottom: 2px; }
.notification-item .notif-body p { font-size: 13px; color: var(--muted); }
.notification-item .notif-time { font-size: 11px; color: var(--muted); white-space: nowrap; }
.notification-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.notif-filter-chip { padding: 6px 16px; border-radius: 20px; font-size: 13px; border: 1px solid var(--line); cursor: pointer; background: var(--surface); transition: all .2s ease; }
.notif-filter-chip.active { background: var(--ruby); color: #fff; border-color: var(--ruby); }

/* ---- Consultation Card ---- */
.consultation-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 10px; }
.consultation-card .con-status { font-size: 12px; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.consultation-card .con-status.scheduled { background: rgba(0,128,0,0.1); color: green; }
.consultation-card .con-status.completed { background: var(--line); color: var(--muted); }

/* ---- Dropdown Menu ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; right: 0; background: var(--surface-solid); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-strong); padding: 8px; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease; z-index: 50; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--text); text-decoration: none; transition: background .15s ease; }
.nav-dropdown-menu a:hover { background: rgba(201,162,75,0.08); }

/* ---- Notif badge on bell ---- */
.notif-badge { position: absolute; top: -4px; right: -4px; background: var(--ruby); color: #fff; font-size: 10px; min-width: 16px; height: 16px; border-radius: 8px; display: grid; place-items: center; padding: 0 4px; font-weight: 700; }

/* ---- Responsive for new features ---- */
@media (max-width: 768px) {
  .tryon-studio { grid-template-columns: 1fr; }
  .category-select-grid { grid-template-columns: repeat(2, 1fr); }
  .referral-code-box code { font-size: 18px; }
  .referral-node.level-3 { margin-left: 32px; }
  .referral-node.level-4 { margin-left: 48px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; max-width: var(--container); margin: 0 auto; }

.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { background: var(--surface-solid); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.contact-info-card .contact-icon { font-size: 28px; margin-bottom: 8px; }
.contact-info-card h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.contact-social { background: var(--surface-solid); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.contact-social h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 12px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; background: var(--surface); border: 1px solid var(--line); text-decoration: none; transition: all .2s ease; }
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold); }

/* FAQ */
.faq-list { max-width: var(--container); margin: 0 auto; }
.faq-item { background: var(--surface-solid); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: border-color .2s ease; }
.faq-item.open { border-color: var(--gold); }
.faq-question { width: 100%; padding: 16px 20px; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--text); text-align: left; font-family: inherit; }
.faq-toggle { font-size: 22px; color: var(--gold); flex-shrink: 0; width: 24px; text-align: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   NAVBAR LOCATION SELECTOR
   ========================================================= */
.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
.location-dropdown { position: relative; }
.location-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .2s ease;
}
.location-btn:hover { border-color: var(--gold); background: var(--champagne); }
.location-btn svg { color: var(--ruby); flex-shrink: 0; }
.nav-chev { font-size: 10px; opacity: .6; }

.location-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(20,18,15,.15);
  padding: 12px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
}
.location-dropdown-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.loc-detect-btn {
  width: 100%;
  padding: 10px 14px;
  border: 1px dashed var(--gold);
  border-radius: 10px;
  background: var(--champagne);
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 10px;
  transition: all .2s ease;
}
.loc-detect-btn:hover { background: var(--gold-soft); }
.loc-divider {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}
.loc-city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
}
.loc-city-chip {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  color: var(--text);
  transition: all .15s ease;
}
.loc-city-chip:hover { border-color: var(--ruby); background: var(--ivory); color: var(--ruby); }

/* Location search input */
.loc-search-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  margin-bottom: 10px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.loc-search-input:focus { border-color: var(--gold); }
.loc-search-input::placeholder { color: var(--muted); }

/* Search results dropdown */
.loc-search-results {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.loc-search-results.open { display: block; }
.loc-search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: var(--surface);
  font-size: 12.5px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.loc-search-result-item:hover { background: var(--champagne); }
.loc-search-result-item .loc-country {
  font-size: 11px;
  color: var(--muted);
}
.loc-no-results {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Nearby shops section */
.loc-nearby-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.loc-nearby-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: all .15s ease;
}
.loc-nearby-chip:hover { border-color: var(--gold); background: var(--champagne); }
.loc-nearby-name { font-weight: 600; }
.loc-nearby-dist { font-size: 10px; color: var(--gold-deep); font-weight: 700; }

/* City suggestion country tag */
.city-sugg-country { font-size: 11px; color: var(--muted); margin-left: 6px; }

/* ---------- LOCATION RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .location-dropdown-menu { width: 280px; }
}
@media (max-width: 860px) {
  .modal { max-width: 400px; padding: 32px 26px 28px; }
  .modal h2 { font-size: 21px; }
  .modal p { font-size: 13.5px; }
  .city-panel { max-width: 460px; padding: 32px 26px; }
  .city-panel h2 { font-size: 22px; }
}
@media (max-width: 600px) {
  /* Location permission modal */
  .overlay { padding: 14px; }
  .modal { max-width: 100%; padding: 28px 22px 24px; }
  .modal h2 { font-size: 19px; }
  .modal p { font-size: 13px; line-height: 1.55; margin-bottom: 20px; }
  .modal-icon { width: 56px; height: 56px; margin-bottom: 14px; }
  .modal-icon svg { width: 28px; height: 28px; }
  .modal-actions { gap: 8px; }
  .modal-actions .btn { padding: 12px 18px; font-size: 13px; }
  .modal-status { font-size: 12px; }

  /* City selection panel */
  .city-panel { max-width: 100%; max-height: 90vh; padding: 26px 18px; border-radius: 16px; }
  .city-panel h2 { font-size: 20px; }
  .city-sub { font-size: 12.5px; margin-bottom: 16px; }
  .city-close { top: 14px; right: 16px; font-size: 22px; width: 30px; height: 30px; }
  .city-search-wrap { padding: 11px 14px; gap: 8px; border-radius: 12px; }
  .city-search-wrap input { font-size: 13px; }
  .city-search-wrap svg { width: 16px; height: 16px; }
  .city-suggestions li { padding: 11px 14px; font-size: 13px; }
  .city-group { margin-top: 18px; }
  .city-group h3 { font-size: 11px; margin-bottom: 10px; }
  .city-chip-list { gap: 8px; }
  .city-chip { padding: 8px 14px; font-size: 12.5px; }

  /* Splash screen */
  .splash-logo { width: 110px; height: 110px; border-radius: 20px; }
  .splash-welcome { font-size: 18px; }
  .splash-tagline { font-size: 12px; margin-bottom: 20px; }
  .splash-title { font-size: 26px; letter-spacing: 3px; }
  .splash-sub { font-size: 13px; letter-spacing: 4px; }
  .splash-bar { width: 140px; }
  .splash-text { font-size: 12px; }
}
@media (max-width: 380px) {
  /* Tiny phones — everything full width */
  .overlay { padding: 10px; }
  .modal { padding: 24px 18px 20px; }
  .modal h2 { font-size: 17px; }
  .modal p { font-size: 12.5px; margin-bottom: 16px; }
  .modal-actions .btn { padding: 11px 14px; font-size: 12.5px; }

  .city-panel { padding: 22px 14px; max-height: 92vh; }
  .city-panel h2 { font-size: 18px; }
  .city-chip { padding: 7px 11px; font-size: 11.5px; }

  .splash-logo { width: 96px; height: 96px; border-radius: 18px; }
  .splash-welcome { font-size: 16px; }
  .splash-title { font-size: 22px; letter-spacing: 2px; }
  .splash-sub { font-size: 11px; letter-spacing: 3px; }
}

/* Categories mega-dropdown */
.nav-cat-dropdown { position: relative; }
.nav-cat-trigger {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.nav-cat-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(20,18,15,.15);
  padding: 8px;
  min-width: 220px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.nav-cat-dropdown:hover .nav-cat-menu,
.nav-cat-dropdown:focus-within .nav-cat-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-cat-menu a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  transition: background .15s ease;
  white-space: nowrap;
}
.nav-cat-menu a:hover { background: var(--champagne); color: var(--ruby); }

.city-select {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  outline: none;
  max-width: 120px;
}
.city-select:focus { border-color: var(--gold); }

@media (max-width: 1024px) {
  .nav-location { display: none; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.about-hero-content h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 8px 0 16px;
}
.about-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.about-hero-image { border-radius: 18px; overflow: hidden; }
.about-hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ruby);
}
.stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 24px;
}
.mv-icon { font-size: 40px; margin-bottom: 12px; }
.mv-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
}
.mv-card p { font-size: 14px; line-height: 1.8; color: var(--muted); }

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(20,18,15,.08); }
.feature-emoji { font-size: 36px; margin-bottom: 10px; }
.feature-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  text-align: center;
}
.team-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid var(--gold-soft);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 { font-family: var(--font-display); font-size: 16px; }
.team-card p { font-size: 13px; color: var(--gold-deep); font-weight: 500; }

.about-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 48px;
}
.about-cta h2 { font-family: var(--font-display); font-size: 28px; }
.about-cta p { color: var(--muted); margin-top: 4px; }
.about-cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image img { height: 240px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-mission-vision { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta { flex-direction: column; text-align: center; }
}

/* =========================================================
   CAREERS PAGE
   ========================================================= */
.careers-filter {
  display: flex;
  gap: 12px;
}
.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.job-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(20,18,15,.07); }
.job-card-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.job-emoji { font-size: 32px; flex-shrink: 0; }
.job-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.job-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  background: var(--champagne);
  color: var(--gold-deep);
  font-weight: 500;
}
.job-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

@media (max-width: 768px) {
  .careers-filter { flex-direction: column; }
  .jobs-list { grid-template-columns: 1fr; }
}

/* =========================================================
   CATALOG PRODUCT CARDS (Add to Cart on category pages)
   ========================================================= */
.catalog-store-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.catalog-store-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(20,18,15,.08); }
.catalog-store-header { text-decoration: none; color: inherit; }
.catalog-store-header .store-media { height: 180px; }
.catalog-store-header .store-media-img { width: 100%; height: 100%; object-fit: cover; }

.catalog-products-strip {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalog-products-empty {
  padding: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.catalog-products-empty a { color: var(--ruby); font-weight: 500; }

.catalog-product-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 110px;
  max-width: 130px;
  background: var(--surface);
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
}
.catalog-product-thumb {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.catalog-product-info { text-align: center; }
.catalog-product-name {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 2px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-add-cart-btn {
  width: 100%;
  font-size: 11px;
  padding: 5px 8px;
  gap: 3px;
}
.catalog-add-cart-btn:disabled { opacity: .4; }
.catalog-store-footer {
  padding: 12px 16px;
  text-align: right;
}

/* =========================================================
   PRODUCT CARDS (grid layout for products/deals/homepage)
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(20,18,15,.08); }
.product-card-media {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ruby);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 2;
}
.product-card-body { padding: 14px 16px 16px; }
.product-card-store {
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-body a { text-decoration: none; color: var(--text); }
.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.price-now { font-size: 18px; font-weight: 700; color: var(--ruby); }
.price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.deal-savings {
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* =========================================================
   PRODUCTS PAGE (filter + grid layout)
   ========================================================= */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.filter-sidebar {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.filter-sidebar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 16px;
}
.filter-group { margin-bottom: 16px; }
.filter-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.filter-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--ruby);
  margin-right: 6px;
  vertical-align: middle;
  cursor: pointer;
}
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-range-inputs input {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: var(--surface-solid);
  color: var(--text);
  outline: none;
  height: 44px;
}
.price-range-inputs input:focus { border-color: var(--gold); }
}
.catalog-results { min-height: 400px; }
.results-bar {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}
/* ---- Category-hero search card: glassmorphic gold-accented ---- */
.category-hero .hero-card {
  background: rgba(26, 18, 15, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.35);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-m);
  padding: 20px;
}
.category-hero .hero-search-mini { max-width: 100%; }
.category-hero .hero-search-mini input {
  flex: 1; min-width: 0; padding: 12px 16px;
  border: 1.5px solid rgba(201, 162, 75, 0.4);
  border-radius: 12px; font-size: 14px; font-family: inherit;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  height: 44px;
}
.category-hero .hero-search-mini input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.2);
}
.category-hero .hero-search-mini input::placeholder { color: var(--muted); }
.category-hero .hero-search-mini button {
  height: 44px; padding: 0 20px; white-space: nowrap; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff; border: none; border-radius: 12px; font-weight: 600;
  font-size: 13px; transition: opacity .2s;
}
.category-hero .hero-search-mini button:hover { opacity: 0.9; }

.hero-search-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 420px;
}
.hero-search-mini input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  background: var(--surface-solid);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease;
  height: 44px;
}
.hero-search-mini input:focus { border-color: var(--gold); }
.hero-search-mini input::placeholder { color: var(--muted); }
.hero-search-mini button { height: 44px; padding: 0 20px; white-space: nowrap; flex-shrink: 0; }

@media (max-width: 768px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .hero-search-mini { max-width: 100%; }
}
@media (max-width: 600px) {
  .hero-search-mini { flex-direction: row; gap: 6px; }
  .hero-search-mini input { padding: 11px 12px; font-size: 13px; height: 42px; }
  .hero-search-mini button { padding: 0 16px; font-size: 12px; height: 42px; }
}
@media (max-width: 380px) {
  .hero-search-mini input { font-size: 12px; padding: 10px 10px; }
  .hero-search-mini button { padding: 0 12px; }
}

/* =========================================================
   DEALS PAGE
   ========================================================= */
.deals-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--ivory), var(--champagne));
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  padding: 28px 28px;
  margin-bottom: 24px;
}
.deals-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 4px 0 6px;
}
.deals-hero p { color: var(--muted); }
.deals-timer {
  text-align: center;
  background: var(--surface-solid);
  border-radius: 16px;
  padding: 14px 24px;
}
.timer-label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.timer-count { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ruby); }

.deals-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.deal-banner {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  min-height: 120px;
}
.deal-banner-emoji { font-size: 48px; }
.deal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 8px;
}
.deal-tag.gold { background: rgba(201,162,75,0.3); }
.deal-banner-text h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); margin-bottom: 4px; }
.deal-banner-text p { font-size: 13px; opacity: .9; }

@media (max-width: 768px) {
  .deals-hero { flex-direction: column; text-align: center; }
  .deals-banners { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-head .sort-select { width: auto; min-width: 200px; }
  .section-head .careers-filter { width: 100%; }
}

.catalog-product-mini-actions {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 3px;
}
.catalog-mini-link {
  font-size: 14px;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--surface);
  text-decoration: none;
  transition: background .15s ease;
}
.catalog-mini-link:hover { background: var(--champagne); }

/* =========================================================
   PRODUCT CARD ACTIONS (Try-On + Customize mini buttons)
   ========================================================= */
.product-card-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.product-mini-action {
  flex: 1;
  font-size: 11px !important;
  padding: 6px 8px !important;
  text-decoration: none;
  justify-content: center;
}

.product-detail-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.product-detail-actions a {
  flex: 1;
  text-decoration: none;
  justify-content: center;
}

/* =========================================================
   MEASUREMENT SECTION (product detail page)
   ========================================================= */
.measurement-section {
  margin: 16px 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.measurement-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.measurement-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.measurement-size-card {
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.measurement-size-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--ruby);
  margin-bottom: 4px;
}
.measurement-detail {
  font-size: 11px;
  color: var(--muted);
}
.measurement-details {
  margin-top: 8px;
}
.measurement-details summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  cursor: pointer;
  padding: 6px 0;
}
.measurement-fields-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.measurement-field-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--champagne);
  color: var(--gold-deep);
  font-weight: 500;
}
.measurement-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========================================================
   MEGA MENU — Full-width Manyavar-style with images + color
   ======================================================== */
.mega-menu-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.mega-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
.mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.mega-trigger::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold-deep);
  transition: width .25s ease;
}
.mega-trigger:hover::after,
.mega-item.open > .mega-trigger::after {
  width: 100%;
}
.mega-trigger:hover,
.mega-item.open > .mega-trigger {
  color: var(--gold-deep);
}
.nav-chev {
  font-size: 9px;
  transition: transform .25s ease;
  opacity: .5;
}
.mega-item:hover .nav-chev,
.mega-item.open .nav-chev {
  transform: rotate(180deg);
}

/* ---- Full-width dropdown panel ---- */
.mega-fw {
  position: fixed;
  top: var(--nav-h, 64px);
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--surface-solid) 100%);
  border-top: 2px solid var(--ruby);
  box-shadow: 0 20px 60px rgba(90, 10, 24, .15);
  display: none;
  z-index: 9998;
  max-height: calc(100vh - var(--nav-h, 64px));
  overflow: hidden;
  animation: megaSlideDown .3s cubic-bezier(.16, 1, .3, 1);
}
.mega-item:hover .mega-fw,
.mega-item.open .mega-fw {
  display: block;
}
@keyframes megaSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Inner layout ---- */
.mega-fw-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}
.mega-fw-footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 40px;
  border-top: 1px solid var(--gold-soft);
  display: flex;
  justify-content: center;
  gap: 16px;
  background: var(--champagne);
}

/* ---- Collections: 3 columns with header images ---- */
.mega-fw-collections {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-height: calc(100vh - var(--nav-h, 64px) - 60px);
  overflow-y: auto;
}
.mega-fw-collections::-webkit-scrollbar { width: 4px; }
.mega-fw-collections::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
.mega-fw-collections > .mega-col {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
}
.mega-fw-collections > .mega-col + .mega-col {
  border-left: 1px solid var(--line);
}
.mega-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-soft);
}
.mega-col-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--gold-soft);
  flex-shrink: 0;
}
.mega-col-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ruby-deep);
  margin: 0;
  text-decoration: none;
}
.mega-col-title:hover { color: var(--ruby); }
.mega-fw-collections .mega-sub-link {
  font-size: 12px;
  padding: 2px 6px;
}

/* ---- Vertical panels: links + promo image ---- */
.mega-fw-vertical {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  max-height: calc(100vh - var(--nav-h, 64px));
  overflow: hidden;
}
.mega-fw-links {
  padding: 22px 30px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h, 64px) - 20px);
}
.mega-fw-links::-webkit-scrollbar { width: 4px; }
.mega-fw-links::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
.mega-fw-links .mega-view-all {
  margin-top: 12px;
}
.mega-fw-promo {
  position: relative;
  overflow: hidden;
  background: var(--ruby-deep);
}
.mega-fw-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}
.mega-promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(90, 10, 24, .95), rgba(90, 10, 24, .3) 60%, transparent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-promo-overlay span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.mega-promo-overlay a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 8px;
  background: var(--gold);
  transition: all .2s ease;
  align-self: flex-start;
}
.mega-promo-overlay a:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

/* ---- Groups + sub-links ---- */
.mega-fw-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
}
.mega-fw-grid .mega-group {
  min-width: 140px;
  max-width: 200px;
}
.mega-group {
  margin-bottom: 10px;
}
.mega-group-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--ruby);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-soft);
}
.mega-group-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mega-sub-link {
  display: block;
  padding: 3px 8px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: all .15s ease;
  white-space: nowrap;
}
.mega-sub-link:hover {
  background: var(--champagne);
  color: var(--ruby);
  font-weight: 600;
  padding-left: 12px;
}
.mega-view-all {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--champagne), var(--gold-soft));
  border: 1px solid var(--gold);
  transition: all .2s ease;
}
.mega-view-all:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 75, .35);
}

/* ---- Responsive ---- */
@media (max-width: 1280px) {
  .mega-fw-collections { grid-template-columns: 1fr 1fr 1fr; }
  .mega-fw-vertical { grid-template-columns: 1fr 220px; }
  .mega-fw-links { padding: 18px 20px; }
  .mega-fw-grid .mega-group { min-width: 120px; }
}
@media (max-width: 1080px) {
  .mega-menu-nav,
  .mega-fw {
    display: none !important;
  }
}

  }
}


/* Google Maps Autocomplete dropdown — ensure it renders above navbar */
.pac-container {
  z-index: 10000 !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 12px 40px rgba(20, 18, 15, .15) !important;
  border: 1px solid var(--gold-soft) !important;
  font-family: var(--font-body) !important;
}
.pac-item {
  padding: 8px 12px !important;
  font-size: 13px !important;
}
.pac-item:hover {
  background: var(--champagne) !important;
}
.pac-item-query {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ========================================================
   AI TRY-ON — premium styling
   ======================================================== */
.tryon-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ruby-deep);
}
.ai-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 10px;
}
.ai-loading-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold-deep);
}
.ai-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-light);
  border-top-color: var(--ruby);
  border-radius: 50%;
  display: inline-block;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.tryon-canvas-wrap {
  background: var(--champagne);
  border-radius: 12px;
  padding: 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tryon-placeholder {
  text-align: center;
  padding: 32px 16px;
  color: var(--muted);
}
.tryon-placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.tryon-placeholder-icon.spinning {
  animation: bounce 1.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.tryon-loading-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.tryon-error {
  color: var(--ruby);
}
.upload-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.upload-zone.drag-over {
  border-color: var(--ruby) !important;
  background: var(--champagne) !important;
}
.tryon-cat-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.tryon-cat-tab {
  padding: 5px 12px;
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
}
.tryon-cat-tab.active {
  background: var(--ruby);
  color: var(--white);
  border-color: var(--ruby);
}
.tryon-product-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px;
}
.tryon-product-thumb {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all .2s;
  background: var(--white);
}
.tryon-product-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}
.tryon-product-thumb.active {
  border-color: var(--ruby);
  box-shadow: 0 4px 12px rgba(90, 10, 24, .2);
}
.tryon-product-thumb .thumb-name {
  display: block;
  font-size: 10px;
  padding: 2px 4px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tryon-product-thumb .thumb-price {
  display: block;
  font-size: 10px;
  padding: 0 4px 4px;
  color: var(--ruby);
  font-weight: 600;
}
.tryon-product-info {
  margin-top: 16px;
  padding: 12px;
  background: var(--champagne);
  border-radius: 10px;
}
.tryon-product-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 4px;
}
.tryon-product-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.tryon-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tryon-comparison {
  margin-top: 20px;
}
.tryon-comparison #savedLooks {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.tryon-tips {
  margin-top: 20px;
  padding: 14px;
  background: var(--ivory);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.tryon-tips p {
  font-size: 12px;
  margin: 0 0 6px;
}
.tryon-tips ul {
  margin: 0;
  padding-left: 18px;
}
.tryon-tips li {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 3px;
}

/* AI Analysis card */
.ai-analysis-card {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gold-light);
}
.ai-analysis-score {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid;
  border-radius: 12px;
  padding: 8px;
  gap: 2px;
}
.ai-analysis-details {
  flex: 1;
}
.ai-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
  border-bottom: 1px dashed var(--line);
}
.ai-detail-row span { color: var(--muted); }
.ai-detail-row strong { color: var(--ink); }
.ai-styling-note {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5;
  margin: 8px 0 0;
}
.ai-fit-rec {
  font-size: 12px;
  color: #1e8449;
  margin: 4px 0 0;
}
.measurement-note a { color: var(--ruby); font-weight: 500; }

/* Product distance badge */
.product-dist-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(20, 18, 15, .82);
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ========================================================
   SUBCATEGORY CHIPS — Second-level filter
   ======================================================== */
.subcategory-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.subcategory-badge {
  display: inline-block;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  transition: all .2s ease;
  white-space: nowrap;
}
.subcategory-badge:hover {
  border-color: var(--gold);
  background: var(--champagne);
  color: var(--ruby);
  transform: translateY(-1px);
}
.subcategory-badge.active {
  background: linear-gradient(135deg, var(--ruby), var(--ruby-deep));
  color: var(--white);
  border-color: var(--ruby-deep);
  box-shadow: 0 4px 12px rgba(125,17,40,.25);
}

/* Catalog item card (category page product card) */
.catalog-item-card {
  background: var(--surface-solid);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.catalog-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.catalog-item-media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}
.catalog-item-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.catalog-item-card:hover .catalog-item-media img { transform: scale(1.05); }
.catalog-item-body {
  padding: 12px 14px 14px;
}
.catalog-item-store {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 3px;
}
.catalog-item-body h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.catalog-item-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--champagne);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.catalog-item-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.catalog-item-type {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--champagne);
  padding: 2px 8px;
  border-radius: 6px;
}
.catalog-item-actions {
  display: flex;
  gap: 6px;
}
.catalog-item-actions .btn { flex: 1; }
