/* ─── G3Q Fashion — Custom Styles ─────────────────────────────────────────── */

/* ─── Google Fonts (import in HTML) ─── */
/* Already imported via <link> in HTML */

/* ─── CSS Variables ────────────────────────────────────────────────────────── */
:root {
  --brand-brown:    #3B1F0E;
  --brand-brown-lt: #6B3A24;
  --brand-green:    #2D6A1F;
  --brand-green-lt: #4CAF50;
  --brand-gold:     #C8960C;
  --brand-gold-lt:  #F0C040;
  --brand-rose:     #C2185B;
  --brand-rose-lt:  #E91E8C;
  --brand-cream:    #FDF8F2;
  --brand-cream-dk: #F5EDE0;

  --text-dark:   #1A0F08;
  --text-mid:    #4A2C18;
  --text-light:  #8B6A52;
  --text-muted:  #B5937A;

  --border:      rgba(59,31,14,0.12);
  --shadow-sm:   0 2px 8px rgba(59,31,14,0.08);
  --shadow-md:   0 8px 24px rgba(59,31,14,0.12);
  --shadow-lg:   0 20px 60px rgba(59,31,14,0.18);
  --shadow-glow: 0 0 40px rgba(200,150,12,0.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  --gradient-brand: linear-gradient(135deg, var(--brand-brown) 0%, var(--brand-brown-lt) 100%);
  --gradient-gold:  linear-gradient(135deg, #C8960C 0%, #F0C040 50%, #C8960C 100%);
  --gradient-hero:  linear-gradient(135deg, #2D0D05 0%, #5C2309 40%, #8B4A2B 100%);
  --gradient-green: linear-gradient(135deg, #1B3A10 0%, #2D6A1F 100%);

  --glass-bg:     rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.20);
  --glass-blur:   blur(16px);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--brand-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--brand-brown);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ─── Scroll Reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ─── Toast Notifications ──────────────────────────────────────────────────── */
.g3q-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--brand-brown);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.g3q-toast.show { transform: translateX(-50%) translateY(0); }
.g3q-toast--wish { background: var(--brand-rose); }

/* ─── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
}
.badge--discount { background: #E53935; color: #fff; }
.badge--new      { background: var(--brand-green); color: #fff; }
.badge--rts      { background: var(--brand-gold); color: var(--text-dark); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--brand-rose);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59,31,14,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,31,14,0.4);
}
.btn--secondary {
  background: #fff;
  color: var(--brand-brown);
  border-color: var(--brand-brown);
}
.btn--secondary:hover {
  background: var(--brand-brown);
  color: #fff;
}
.btn--gold {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-weight: 700;
}
.btn--hero-primary {
  background: var(--gradient-gold);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 25px rgba(200,150,12,0.4);
}
.btn--hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,150,12,0.5);
}
.btn--hero-secondary {
  background: var(--glass-bg);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: var(--glass-blur);
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn--hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}
.btn--add-cart {
  background: var(--gradient-brand);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(59,31,14,0.3);
  flex: 1;
}
.btn--add-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,31,14,0.4); }
.btn--wishlist-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--brand-rose);
  color: var(--brand-rose);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}
.btn--wishlist-lg:hover,
.btn--wishlist-lg.active { background: var(--brand-rose); color: #fff; }
.btn--wishlist-lg.active svg { fill: #fff; stroke: #fff; }

/* ─── HEADER ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--brand-gold);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-brown);
  letter-spacing: 0.04em;
}

.header-search { flex: 1; max-width: 520px; }
.search-wrap {
  display: flex;
  align-items: center;
  background: var(--brand-cream);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition-fast);
}
.search-wrap:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.15);
}
.search-icon {
  width: 18px;
  height: 18px;
  margin-left: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  background: none;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
  padding: 0.6rem 1.2rem;
  background: var(--brand-brown);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 50px 50px 0;
  transition: var(--transition-fast);
}
.search-btn:hover { background: var(--brand-brown-lt); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: var(--transition-fast);
}
.header-action-btn:hover {
  background: var(--brand-cream-dk);
  color: var(--brand-brown);
}
.header-login-btn {
  width: auto;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--brand-brown);
  color: #fff !important;
}
.header-login-btn:hover { background: var(--brand-brown-lt) !important; }
.login-label { display: none; }
@media (min-width: 640px) { .login-label { display: inline; } }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-cream-dk);
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-brown);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-btn--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn--open span:nth-child(2) { opacity: 0; }
.menu-btn--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── NAV ──────────────────────────────────────────────────────────────────── */
.site-nav {
  background: var(--brand-brown);
}
.nav-inner {
  display: flex;
  align-items: stretch;
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.85rem 1.25rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link:focus { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link--story {
  background: var(--gradient-gold);
  color: var(--text-dark) !important;
  font-weight: 700;
  border-radius: 0;
}
.nav-link--story:hover { filter: brightness(1.1); background: var(--gradient-gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 520px;
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
  border-top: 3px solid var(--brand-gold);
}
.nav-item.dropdown--open .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-grid {
  display: flex;
  gap: 2rem;
}
.dropdown-col { display: flex; flex-direction: column; gap: 0.5rem; min-width: 140px; }
.dropdown-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.dropdown-col a {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}
.dropdown-col a:hover { color: var(--brand-brown); padding-left: 0.4rem; }
.dropdown-col--special { border-left: 1px solid var(--border); padding-left: 2rem; }
.special-link { display: flex; flex-direction: column; gap: 0.25rem; }
.special-badge {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  background: linear-gradient(135deg, #C8960C, #F0C040);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  width: fit-content;
}

/* Mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.nav-overlay.overlay--show { display: block; }

/* ─── PRODUCT CARDS ────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img { transform: scale(1.07); }

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,31,14,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-card__overlay { opacity: 1; }

.quick-view-btn {
  background: #fff;
  color: var(--brand-brown);
  border: 2px solid #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.quick-view-btn:hover { background: var(--brand-brown); color: #fff; }

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.5);
}
.wishlist-btn:hover, .wishlist-btn.active { background: #fff; color: var(--brand-rose); }

.product-card__info { padding: 1rem; }

.product-card__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  transition: var(--transition-fast);
}
.product-card__name:hover { color: var(--brand-gold); }

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.stars { display: flex; align-items: center; gap: 1px; }
.rating-num { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-brown);
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-save { font-size: 0.8rem; font-weight: 600; color: #2E7D32; }
.price-save-tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.add-to-cart-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--brand-cream-dk);
  color: var(--brand-brown);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: var(--transition-fast);
}
.add-to-cart-btn:hover {
  background: var(--brand-brown);
  color: #fff;
  border-color: var(--brand-brown);
}

/* ─── SECTION HEADINGS ─────────────────────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--brand-brown);
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── HERO ─────────────────────────────────────────────────────────────────── */
.hero-section {
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-slide { width: 100%; }
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold-lt);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(240,192,64,0.4);
  border-radius: 50px;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-heading em { font-style: normal; color: var(--brand-gold-lt); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,12,0.3) 0%, transparent 70%);
}
.hero-img {
  width: 100%;
  max-width: 420px;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border: 3px solid rgba(200,150,12,0.3);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}
.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--brand-gold-lt);
}

/* ─── CATEGORY CARDS ───────────────────────────────────────────────────────── */
.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,31,14,0.85) 0%, rgba(59,31,14,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.category-card__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.category-card__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
  transition: var(--transition-fast);
}
.category-card:hover .category-card__cta { transform: translateX(4px); }

/* ─── GLASSMORPHISM CARDS ──────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.story-card {
  background: rgba(253,248,242,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,150,12,0.4);
}

/* ─── REVIEW CARDS ─────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.925rem; color: var(--brand-brown); }
.reviewer-location { font-size: 0.78rem; color: var(--text-muted); }
.verified-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.review-rating { margin-bottom: 0.5rem; }
.review-product { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.review-date { font-size: 0.75rem; color: var(--text-muted); }

/* ─── OFFER BANNER ─────────────────────────────────────────────────────────── */
.offer-banner {
  background: var(--gradient-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.offer-banner__text { font-weight: 700; color: var(--text-dark); font-size: 1.05rem; }
.offer-banner__code {
  background: rgba(59,31,14,0.15);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-family: monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}
.offer-banner__countdown { font-size: 0.9rem; }
.offer-banner__countdown span {
  background: rgba(59,31,14,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-family: monospace;
}

/* ─── NEWSLETTER ───────────────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200,150,12,0.15) 0%, transparent 60%);
}
.newsletter-section h2 { color: #fff; font-size: 2rem; margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  outline: none;
  transition: var(--transition-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: var(--brand-gold-lt); }
.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Footer newsletter form (white bg) */
.footer-newsletter .newsletter-form input {
  border-color: var(--border);
  background: var(--brand-cream);
  color: var(--text-dark);
}
.footer-newsletter .newsletter-form input::placeholder { color: var(--text-muted); }
.footer-newsletter .newsletter-form button {
  background: var(--brand-brown);
  color: #fff;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1A0F08;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
}
.footer-brand .footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.social-icon:hover { background: var(--brand-gold); color: var(--text-dark); }

.footer-links h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--brand-gold-lt); padding-left: 0.3rem; }

.footer-newsletter h4 {
  color: #fff;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}
.footer-newsletter p { font-size: 0.875rem; margin-bottom: 1rem; }
.footer-trust { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.825rem; }
.footer-payment { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.payment-tag {
  padding: 0.2rem 0.6rem;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ─── MODALS ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,15,8,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-box {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.size-chart-modal-box { width: min(600px, 100%); padding: 2rem; }
.quick-view-box { width: min(900px, 100%); overflow: hidden; }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { font-size: 1.4rem; color: var(--brand-brown); }
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-cream-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--brand-brown); color: #fff; }
.modal-close--top { position: absolute; top: 1rem; right: 1rem; z-index: 10; }
.modal-open { overflow: hidden; }

.table-wrap { overflow-x: auto; }
.size-table { width: 100%; border-collapse: collapse; }
.size-table th {
  background: var(--brand-brown);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.size-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.size-table tbody tr:hover { background: var(--brand-cream); }
.size-name { font-weight: 700; color: var(--brand-brown); }
.size-chart-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #FFF8E1;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-mid);
  border-left: 3px solid var(--brand-gold);
}

/* Quick View */
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.qv-img-wrap { overflow: hidden; }
.qv-img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.qv-info { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.qv-category { font-size: 0.8rem; color: var(--text-muted); text-transform: capitalize; }
.qv-name { font-size: 1.4rem; line-height: 1.3; color: var(--brand-brown); }
.qv-rating { display: flex; align-items: center; gap: 0.5rem; }
.qv-price { display: flex; align-items: baseline; gap: 0.75rem; }
.qv-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.qv-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qv-meta span {
  padding: 0.3rem 0.75rem;
  background: var(--brand-cream);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.qv-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: auto; }
.qv-actions .btn { width: 100%; justify-content: center; }

/* ─── CATEGORY PAGE ────────────────────────────────────────────────────────── */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
#filter-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: sticky;
  top: 140px;
}
.filter-section { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-title { font-size: 0.875rem; font-weight: 700; color: var(--brand-brown); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; }
.filter-price-range { display: flex; flex-direction: column; gap: 0.5rem; }
.price-display { font-size: 0.875rem; font-weight: 600; color: var(--text-mid); }
input[type=range] { width: 100%; accent-color: var(--brand-brown); }
.filter-checkboxes { display: flex; flex-direction: column; gap: 0.5rem; }
.filter-checkbox { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.filter-checkbox input { accent-color: var(--brand-brown); }
.filter-checkbox span { font-size: 0.875rem; color: var(--text-mid); }
.filter-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--brand-cream);
  color: var(--text-dark);
  font-size: 0.875rem;
  outline: none;
}
.filter-select:focus { border-color: var(--brand-gold); }

.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.sort-bar__count { font-size: 0.9rem; color: var(--text-muted); }
.sort-select-wrap { display: flex; align-items: center; gap: 0.5rem; }
.sort-select-wrap label { font-size: 0.875rem; color: var(--text-mid); white-space: nowrap; }
#sort-select {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
}

.breadcrumb { display: flex; align-items: center; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.breadcrumb-link { font-size: 0.875rem; color: var(--text-muted); transition: var(--transition-fast); }
.breadcrumb-link:hover { color: var(--brand-brown); }
.breadcrumb-sep { color: var(--text-muted); font-size: 0.875rem; }
.breadcrumb-current { font-size: 0.875rem; color: var(--brand-brown); font-weight: 500; }

.mobile-filter-btn {
  display: none;
  padding: 0.65rem 1.25rem;
  background: var(--brand-brown);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  grid-column: 1 / -1;
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--brand-brown); font-size: 1.4rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); }
.empty-state a { color: var(--brand-brown); text-decoration: underline; }

/* Most searched pills */
.search-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.search-pill {
  padding: 0.3rem 0.85rem;
  background: var(--brand-cream-dk);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-mid);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}
.search-pill:hover { background: var(--brand-brown); color: #fff; border-color: var(--brand-brown); }

/* ─── PRODUCT DETAIL PAGE ──────────────────────────────────────────────────── */
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.pd-gallery { position: sticky; top: 160px; }
.gallery-main-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}
.gallery-main { width: 100%; height: 100%; object-fit: cover; }
.pd-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.pd-badge--new { top: 3.5rem; }
.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
}
.gallery-thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--brand-gold); }

.pd-breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.pd-breadcrumb a { color: var(--text-muted); }
.pd-breadcrumb a:hover { color: var(--brand-brown); }
.custom-fit-banner {
  background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
  border: 1.5px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7B4F00;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.custom-fit-banner span { font-weight: 700; }

.pd-name { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--brand-brown); margin-bottom: 0.75rem; }
.pd-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.reviews-link { font-size: 0.85rem; color: var(--brand-gold); text-decoration: underline; }

.pd-price-block { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pd-price { font-size: 2rem; font-weight: 800; color: var(--brand-brown); }
.pd-price-original { font-size: 1.1rem; }

.rts-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #2E7D32;
  margin-bottom: 1rem;
}
.rts-badge span { font-weight: 700; }

.pd-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.pd-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

.pd-meta-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.25rem; }
.pd-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.pd-meta-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.pd-meta-item > span:last-child { font-size: 0.875rem; color: var(--text-mid); font-weight: 500; }

.pd-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--brand-brown); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.size-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.size-chart-link {
  font-size: 0.8rem;
  color: var(--brand-gold);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.size-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.size-btn {
  min-width: 52px;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  background: #fff;
  transition: var(--transition-fast);
}
.size-btn:hover { border-color: var(--brand-brown); color: var(--brand-brown); }
.size-btn--active {
  border-color: var(--brand-brown);
  background: var(--brand-brown);
  color: #fff;
}

.pd-custom-size { margin-bottom: 1.25rem; }
.custom-size--highlighted {
  padding: 1rem;
  background: #FFF8E1;
  border: 1.5px solid var(--brand-gold);
  border-radius: var(--radius-md);
}
.optional-tag { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.custom-fit-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.custom-size-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}
.custom-size-input:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(200,150,12,0.12); }
.custom-size-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; }

.pd-qty-section { margin-bottom: 1.25rem; }
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-mid);
  background: var(--brand-cream);
  transition: var(--transition-fast);
}
.qty-btn:hover { background: var(--brand-brown); color: #fff; }
.qty-num { padding: 0 1.5rem; font-weight: 700; font-size: 1rem; min-width: 48px; text-align: center; }
.qty-control--sm .qty-btn { width: 32px; height: 32px; font-size: 1rem; }
.qty-control--sm .qty-num { padding: 0 1rem; min-width: 40px; font-size: 0.9rem; }

.pd-ctas { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--brand-cream-dk);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ─── CART PAGE ────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-md); }
.cart-item__img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.cart-item__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-brown);
  display: block;
  margin-bottom: 0.3rem;
}
.cart-item__name:hover { color: var(--brand-gold); }
.cart-item__meta { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.cart-item__meta span { display: flex; align-items: center; gap: 0.25rem; }
.cart-item__cat { padding: 0.15rem 0.5rem; background: var(--brand-cream); border-radius: 4px; text-transform: capitalize; }
.custom-size-tag { color: var(--brand-gold); font-weight: 500; }
.cart-item__price-row { display: flex; align-items: center; gap: 0.5rem; }
.cart-item__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.cart-item__subtotal { font-weight: 700; color: var(--brand-brown); font-size: 1rem; }
.cart-remove-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.cart-remove-btn:hover { background: #DC2626; color: #fff; }

.order-summary {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: sticky;
  top: 140px;
}
.order-summary h3 { font-size: 1.2rem; margin-bottom: 1.25rem; color: var(--brand-brown); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.9rem; }
.summary-row--total { font-size: 1.1rem; font-weight: 700; border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; color: var(--brand-brown); }
.summary-row--savings { color: #2E7D32; font-weight: 500; }
.promo-section { margin: 1rem 0; }
.promo-input-wrap { display: flex; gap: 0.5rem; }
.promo-input-wrap input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  outline: none;
}
.promo-input-wrap input:focus { border-color: var(--brand-gold); }
.promo-input-wrap button {
  padding: 0.6rem 1rem;
  background: var(--brand-brown);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
}
.promo-msg { font-size: 0.8rem; margin-top: 0.4rem; }
.promo-msg--success { color: #2E7D32; }
.promo-msg--error { color: #DC2626; }
#checkout-btn { width: 100%; margin-top: 1.25rem; padding: 1rem; font-size: 1rem; }
#checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── LOGIN PAGE ───────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding: 2rem;
}
.auth-card {
  width: min(460px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.auth-logo img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--brand-gold); object-fit: cover; }
.auth-logo span { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--brand-brown); }
.auth-tabs { display: flex; border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid var(--border); margin-bottom: 2rem; }
.auth-tab {
  flex: 1;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: #fff;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}
.auth-tab.active { background: var(--brand-brown); color: #fff; }
.auth-form { display: none; flex-direction: column; gap: 1rem; }
.auth-form.active { display: flex; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--brand-brown); }
.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-fast);
}
.form-input:focus { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(200,150,12,0.12); }
.form-submit {
  padding: 0.9rem;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: var(--transition-fast);
}
.form-submit:hover { filter: brightness(1.1); transform: translateY(-2px); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.social-login { display: flex; gap: 0.75rem; }
.social-login-btn {
  flex: 1;
  padding: 0.7rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  cursor: pointer;
}
.social-login-btn:hover { border-color: var(--brand-brown); color: var(--brand-brown); }
.auth-footer { text-align: center; font-size: 0.825rem; color: var(--text-muted); margin-top: 1rem; }
.auth-footer a { color: var(--brand-brown); font-weight: 600; }

/* ─── OUR STORY PAGE ───────────────────────────────────────────────────────── */
.story-hero {
  background: var(--gradient-hero);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}
.story-hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; position: relative; }
.story-hero h1 em { color: var(--brand-gold-lt); font-style: normal; }
.story-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 560px; margin: 0 auto; position: relative; }

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-split--reverse { direction: rtl; }
.story-split--reverse > * { direction: ltr; }
.story-split__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story-split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.story-split__img:hover img { transform: scale(1.05); }
.story-split__text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-split__label { color: var(--brand-gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.story-split__title { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--brand-brown); line-height: 1.2; }
.story-split__body { font-size: 1rem; color: var(--text-light); line-height: 1.8; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); }
.why-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card__title { font-size: 1.1rem; color: var(--brand-brown); margin-bottom: 0.5rem; }
.why-card__body { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

.story-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 1rem;
}
.story-photo { border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.story-photo:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo--large { grid-row: span 2; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { padding: 1.5rem; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--brand-brown); font-family: 'Playfair Display', serif; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: var(--text-light); }

/* ─── INSTAGRAM / SOCIAL SECTION ──────────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.insta-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,31,14,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-item__overlay { opacity: 1; }

/* ─── BUYING GUIDE ─────────────────────────────────────────────────────────── */
.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
}
.guide-step { text-align: center; position: relative; }
.guide-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 15px rgba(59,31,14,0.3);
}
.guide-step__title { font-size: 1rem; color: var(--brand-brown); margin-bottom: 0.4rem; }
.guide-step__body { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ─── PERSONALIZED SECTION ─────────────────────────────────────────────────── */
.personalized-section {
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-cream-dk) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(200,150,12,0.2);
}

/* ─── DISCOUNT UI ──────────────────────────────────────────────────────────── */
.discount-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.discount-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.discount-card--sub { background: var(--gradient-brand); }
.discount-card--share { background: var(--gradient-green); }
.discount-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.discount-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.5rem; }
.discount-card p { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
.discount-code-display {
  background: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.4);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.25rem;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 auto 0.75rem;
  width: fit-content;
}

/* ─── SECTION SPACING ──────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--bg-cream { background: var(--brand-cream-dk); }
.section--bg-dark { background: #1A0F08; }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
  .category-cards { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { gap: 0.75rem; height: 60px; }
  .header-search { display: none; }
  .logo-text { display: none; }
  .mobile-menu-btn { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--brand-brown);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    padding-top: 80px;
  }
  .site-nav.nav--open { transform: none; }
  .nav-inner { flex-direction: column; align-items: flex-start; padding: 0; }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-link { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; font-size: 1rem; }
  .nav-dropdown { position: static; min-width: unset; transform: none; opacity: 1; visibility: visible; box-shadow: none; border-radius: 0; border-top: none; background: rgba(0,0,0,0.2); }
  .nav-item.dropdown--open .nav-dropdown { display: block; }
  .nav-item:not(.dropdown--open) .nav-dropdown { display: none; }
  .dropdown-col a { color: rgba(255,255,255,0.8); }
  .dropdown-heading { color: rgba(255,255,255,0.5); }
  .dropdown-col--special { border-left: none; padding-left: 1.5rem; }

  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0 2rem; }
  .hero-img-wrap { order: -1; }
  .hero-img { max-width: 100%; height: 380px; }
  .hero-heading { font-size: 2rem; }

  .category-cards { grid-template-columns: 1fr; }
  .category-layout { grid-template-columns: 1fr; }
  .mobile-filter-btn { display: flex; }
  #filter-panel { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 500; overflow-y: auto; border-radius: 0; max-height: 100vh; }
  .filter-panel--open { display: block !important; }

  .pd-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pd-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__controls { flex-direction: row; align-items: center; grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-split { grid-template-columns: 1fr; gap: 2rem; }
  .story-split--reverse { direction: ltr; }
  .story-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .story-photo--large { grid-row: span 1; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .discount-cards { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-img { min-height: 280px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 3.5rem 0; }
  .category-card { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .hero-img { height: 280px; }
  .hero-ctas { flex-direction: column; }
  .btn--hero-primary, .btn--hero-secondary { text-align: center; }
  .pd-ctas { flex-direction: column; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .story-photo-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ───────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
.pulse { animation: pulse 2s infinite; }

/* ─── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--brand-cream); }
::-webkit-scrollbar-thumb { background: var(--brand-brown-lt); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-brown); }

/* ─── Selection ────────────────────────────────────────────────────────────── */
::selection { background: rgba(200,150,12,0.25); color: var(--brand-brown); }
