/* ═══════════════════════════════════════════════════════════════════════
   GARMENT STORE — Luxury Indian Boutique
   Fonts: Playfair Display (display) + DM Sans (body)
   Palette: Deep Plum · Warm Gold · Blush · Ivory Cream
   Aesthetic: Refined editorial luxury — elegant, tactile, memorable
═══════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  /* Core palette */
  --plum:         #3d1a4a;
  --plum-dark:    #250f2e;
  --plum-mid:     #5a2870;
  --plum-light:   #7b3d94;
  --gold:         #c4922a;
  --gold-light:   #e8c97a;
  --gold-pale:    #f9f0dc;
  --gold-shine:   #f5d98a;
  --blush:        #f2d8e0;
  --blush-deep:   #e8b8c8;
  --rose:         #c4607a;
  --cream:        #fdf9f4;
  --ivory:        #faf5ee;
  --warm-white:   #fff8f2;
  --off-white:    #fef9f5;

  /* Text */
  --text:         #1a0a22;
  --text-mid:     #5a3870;
  --text-soft:    #9a7aaa;
  --text-muted:   #c4a8d4;

  /* UI */
  --border:       #e8d8f0;
  --border-light: #f0e8f8;
  --shadow:       rgba(61,26,74,0.08);
  --shadow-md:    rgba(61,26,74,0.14);
  --shadow-lg:    rgba(61,26,74,0.22);
  --shadow-gold:  rgba(196,146,42,0.28);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════════ */
.navbar {
  background: var(--plum-dark);
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(196,146,42,0.18);
}

/* Gold shimmer line under navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  opacity: 0.4;
}

.navbar .logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-gem {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 3px 12px var(--shadow-gold);
}
.logo em { font-style: normal; color: rgba(255,255,255,0.35); font-weight: 300; font-size: 20px; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: var(--gold-light); background: rgba(196,146,42,0.1); }

.navbar-nav a.nav-cart {
  background: linear-gradient(135deg, var(--gold), #b8821e);
  color: white !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 3px 14px var(--shadow-gold);
  margin-left: 6px;
}
.navbar-nav a.nav-cart:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: none;
  background: transparent;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--gold-light);
  border-radius: 1px;
  transition: all 0.3s;
  display: block;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 94vh;
  position: relative;
  overflow: hidden;
  background: var(--plum-dark);
  display: flex;
  align-items: stretch;
}

/* Woven texture */
.hero-bg-pattern {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 0, transparent 8px),
    repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 0, transparent 8px);
  background-size: 8px 8px;
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(196,146,42,0.12) 0%, transparent 60%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,40,112,0.45) 0%, transparent 65%);
  bottom: -100px; left: 0;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 0 52px;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 40px;
}

.hero-left { padding: 80px 40px 80px 0; color: white; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-kicker::before { content: ''; width: 32px; height: 1px; background: var(--gold); display: block; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 600;
  line-height: 1.07;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-h1 span { color: var(--gold-light); font-style: italic; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 42px;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.cta-primary {
  background: linear-gradient(135deg, var(--gold), #b8821e);
  color: white;
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 28px var(--shadow-gold);
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px var(--shadow-gold); }

.cta-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.cta-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.hstat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hstat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero collage */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.hero-collage { position: relative; width: 380px; height: 500px; }
.hcard {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
}
.hcard-main {
  width: 240px; height: 320px;
  background: linear-gradient(160deg, var(--blush), #e8b8c8);
  top: 60px; left: 70px; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  animation: hfloat 6s ease-in-out infinite;
}
.hcard-a {
  width: 155px; height: 195px;
  background: linear-gradient(160deg, var(--gold-pale), #f0dca8);
  top: 12px; left: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 58px;
  animation: hfloat-a 8s ease-in-out infinite;
}
.hcard-b {
  width: 145px; height: 178px;
  background: linear-gradient(160deg, #c8dde8, #a8c4d8);
  bottom: 12px; right: 8px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  animation: hfloat-b 7s 1s ease-in-out infinite;
}
@keyframes hfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes hfloat-a { 0%,100%{transform:rotate(-6deg) translateY(0)} 50%{transform:rotate(-6deg) translateY(-10px)} }
@keyframes hfloat-b { 0%,100%{transform:rotate(5deg) translateY(0)} 50%{transform:rotate(5deg) translateY(-9px)} }

.htag {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  color: var(--plum);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.htag-1 { top: 18px; right: 8px; }
.htag-2 { bottom: 32px; left: 10px; }

/* ══════════════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════════════ */
.ticker {
  background: linear-gradient(90deg, var(--gold), #b8821e, var(--gold));
  color: var(--plum-dark);
  padding: 11px 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tick 32s linear infinite;
}
.ticker-inner span { padding: 0 30px; }
.ticker-inner span::before { content: '◆'; margin-right: 30px; opacity: 0.35; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid var(--border-light);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--off-white); }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-pale), #f0dca8);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.trust-title { font-size: 13px; font-weight: 600; color: var(--text); }
.trust-sub { font-size: 11px; color: var(--text-soft); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════════════════════════════ */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 84px 52px; }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-kicker::before, .sec-kicker::after { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.3px;
}
.sec-title em { font-style: italic; color: var(--plum); }
.sec-sub {
  color: var(--text-soft);
  font-size: 15px;
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════
   CATEGORIES RAIL
══════════════════════════════════════════════════════════════════════ */
.cats-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cats-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.cats-rail::-webkit-scrollbar { display: none; }

.cat-card {
  flex-shrink: 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 14px 16px;
  cursor: pointer;
  transition: all 0.28s;
  text-decoration: none;
  color: var(--text);
}
.cat-card:hover, .cat-card.active {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
  transform: translateY(-5px);
  box-shadow: 0 14px 32px var(--shadow-lg);
}
.cat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.28s;
}
.cat-card:hover .cat-icon-wrap, .cat-card.active .cat-icon-wrap { background: rgba(255,255,255,0.16); }
.cat-name { font-size: 12px; font-weight: 600; text-align: center; line-height: 1.3; }
.cat-count { font-size: 10px; opacity: 0.5; }

/* ══════════════════════════════════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════════════════════════════════ */
.products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 28px;
}

.prod-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid var(--border-light);
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px var(--shadow-lg);
  border-color: var(--border);
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
  height: 264px;
  background: var(--blush);
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.08); }

.prod-no-img {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--blush), var(--gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

.prod-cat-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  color: var(--plum);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.prod-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.prod-wish:hover { transform: scale(1.2); }

.prod-info { padding: 18px 20px 20px; }
.prod-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
  letter-spacing: -0.1px;
}
.prod-desc-sm {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
}
.prod-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.prod-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  flex-shrink: 0;
}

.btn-add {
  background: var(--plum);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.22s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.btn-add:hover { background: var(--plum-light); transform: scale(1.04); }

.btn-login-buy {
  background: var(--gold-pale);
  color: var(--plum);
  border: 1px solid var(--gold);
  padding: 9px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.22s;
  display: inline-block;
  white-space: nowrap;
}
.btn-login-buy:hover { background: var(--gold); color: white; }

/* ══════════════════════════════════════════════════════════════════════
   PROMO BANNERS
══════════════════════════════════════════════════════════════════════ */
.promo-section { background: var(--plum-dark); }
.promo-wrap { max-width: 1280px; margin: 0 auto; padding: 72px 52px; }
.promo-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; }
.promo-card {
  border-radius: var(--r-lg);
  padding: 46px 40px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.p1 { background: linear-gradient(140deg, var(--plum-mid), var(--rose)); }
.p2 { background: linear-gradient(140deg, #7a5a10, var(--gold)); }
.promo-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.promo-emoji {
  position: absolute; top: 28px; right: 36px;
  font-size: 62px; opacity: 0.2;
}
.promo-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.52); margin-bottom: 8px;
}
.promo-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: white; line-height: 1.15; margin-bottom: 10px;
}
.promo-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; font-weight: 300; }
.btn-promo {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  width: fit-content;
  transition: all 0.2s;
}
.btn-promo:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════════════ */
.testi-section { background: var(--ivory); border-top: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 2px 14px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px var(--shadow-md); }
.testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--gold-pale);
  position: absolute;
  top: 6px; right: 18px;
  line-height: 1; pointer-events: none;
}
.testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-text {
  font-size: 14px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 22px; font-weight: 300; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blush), var(--gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-loc { font-size: 11px; color: var(--text-soft); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════════════ */
.nl-section {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  position: relative; overflow: hidden;
}
.nl-section::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 0, transparent 10px),
    repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 0, transparent 10px);
  background-size: 10px 10px;
}
.nl-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
  padding: 84px 52px;
}
.nl-inner .sec-title { color: white; }
.nl-inner .sec-sub { color: rgba(255,255,255,0.45); }
.nl-form { display: flex; gap: 10px; margin-top: 30px; }
.nl-form input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
  color: white; border-radius: 4px;
  font-size: 14px; font-family: var(--font-body);
  backdrop-filter: blur(8px); outline: none;
  transition: border 0.2s;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.nl-form input:focus { border-color: var(--gold-light); }
.nl-form button {
  background: linear-gradient(135deg, var(--gold), #b8821e);
  color: white; border: none;
  padding: 14px 26px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.2s; white-space: nowrap;
  font-family: var(--font-body);
}
.nl-form button:hover { opacity: 0.9; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
.site-footer { background: #0e0614; color: rgba(255,255,255,0.4); }
.footer-body {
  max-width: 1280px; margin: 0 auto;
  padding: 68px 52px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.f-brand-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.f-brand-p {
  font-size: 13px; line-height: 1.8;
  max-width: 270px;
  color: rgba(255,255,255,0.32);
  font-weight: 300;
}
.f-col h4 {
  color: rgba(255,255,255,0.7);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 20px;
  text-transform: uppercase;
}
.f-col a {
  display: block;
  color: rgba(255,255,255,0.32);
  font-size: 13px; margin-bottom: 11px;
  transition: color 0.2s; font-weight: 300;
}
.f-col a:hover { color: var(--gold-light); }
.f-contact {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; margin-bottom: 11px;
  color: rgba(255,255,255,0.32); font-weight: 300;
}
.footer-foot {
  max-width: 1280px; margin: 0 auto;
  padding: 22px 52px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-foot p { font-size: 12px; }

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL BUTTONS
══════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px;
  border-radius: var(--r-sm); border: none;
  font-size: 13px; font-weight: 600;
  transition: all 0.22s;
  font-family: var(--font-body);
  gap: 6px; white-space: nowrap;
}
.btn-primary { background: var(--plum); color: white; }
.btn-primary:hover { background: var(--plum-light); transform: translateY(-1px); box-shadow: 0 6px 20px var(--shadow-md); }
.btn-danger { background: #c0392b; color: white; }
.btn-danger:hover { background: #a93226; }
.btn-success { background: #1e8449; color: white; }
.btn-warning { background: var(--gold); color: white; }
.btn-warning:hover { opacity: 0.9; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-outline {
  background: transparent; color: var(--plum);
  border: 1.5px solid var(--border); font-size: 13px;
}
.btn-outline:hover { border-color: var(--plum); background: var(--off-white); }

/* ══════════════════════════════════════════════════════════════════════
   PAGE HERO BANNER
══════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum-mid) 100%);
  color: white; padding: 56px 52px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 14px);
  background-size: 14px 14px;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,146,42,0.5), transparent);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.page-hero p { font-size: 14px; opacity: 0.5; font-weight: 300; }
.breadcrumb {
  font-size: 10px; opacity: 0.42;
  margin-bottom: 12px; letter-spacing: 1.5px; text-transform: uppercase;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════════════════
   FILTER BAR (products.php)
══════════════════════════════════════════════════════════════════════ */
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 70px; z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.filter-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 52px;
  display: flex; gap: 10px;
  overflow-x: auto; scrollbar-width: none;
  align-items: center;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-soft); white-space: nowrap;
  margin-right: 6px; flex-shrink: 0;
}
.filter-pill {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: white; color: var(--text-mid);
  font-size: 12px; font-weight: 500;
  transition: all 0.22s;
  text-decoration: none; white-space: nowrap;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--plum);
  color: white; border-color: var(--plum);
  box-shadow: 0 4px 14px var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════════════════════ */
.page-body {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 52px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.cart-box {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  border: 1px solid var(--border);
}
.cart-box table { width: 100%; border-collapse: collapse; }
.cart-box th {
  background: var(--plum);
  color: white; padding: 14px 20px;
  font-size: 10px; font-weight: 700;
  text-align: left; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cart-box td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle; font-size: 14px;
}
.cart-box tr:last-child td { border-bottom: none; }
.cart-box tr:hover td { background: var(--off-white); }
.cart-pname { font-weight: 600; color: var(--text); }
.cart-img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.cart-img-placeholder {
  width: 52px; height: 52px;
  background: var(--blush);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.cart-summary {
  background: white;
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: 0 2px 16px var(--shadow);
  border: 1px solid var(--border);
  position: sticky; top: 94px;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--text); margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sum-row {
  display: flex; justify-content: space-between;
  font-size: 14px; margin-bottom: 11px;
  color: var(--text-mid);
}
.sum-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--plum);
  padding-top: 16px;
  border-top: 2px solid var(--border); margin-top: 10px;
}
.btn-checkout {
  width: 100%; margin-top: 22px; padding: 16px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: white; border: none; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.22s;
  box-shadow: 0 4px 18px var(--shadow-md);
}
.btn-checkout:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 28px var(--shadow-lg); }

.cart-empty {
  text-align: center; padding: 80px 20px;
}
.empty-icon { font-size: 68px; margin-bottom: 18px; }
.cart-empty h3 {
  font-family: var(--font-display);
  font-size: 26px; color: var(--text); margin-bottom: 10px;
}
.cart-empty p {
  color: var(--text-soft); font-size: 15px;
  margin-bottom: 30px; font-weight: 300;
}

/* Cart delivery free bar */
.free-delivery-bar {
  background: linear-gradient(90deg, var(--gold-pale), #f0dca8);
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.delivery-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.delivery-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.5s;
}

/* ══════════════════════════════════════════════════════════════════════
   ORDERS PAGE
══════════════════════════════════════════════════════════════════════ */
.order-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  transition: box-shadow 0.3s;
}
.order-card:hover { box-shadow: 0 8px 30px var(--shadow-md); }

.oc-head {
  background: linear-gradient(90deg, var(--plum-dark), var(--plum));
  padding: 20px 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.oc-id {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: white;
}
.oc-date { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; margin-top: 3px; }

.oc-table table { width: 100%; border-collapse: collapse; }
.oc-table th {
  background: var(--off-white);
  color: var(--text-soft);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 28px;
  border-bottom: 1px solid var(--border); text-align: left;
}
.oc-table td {
  padding: 13px 28px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.oc-table tr:last-child td { border-bottom: none; }
.oc-table tr:hover td { background: var(--off-white); }

.oc-foot {
  padding: 18px 28px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.oc-total {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--plum);
}

/* Timeline */
.oc-timeline {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; overflow-x: auto; gap: 0;
}
.tl-item { display: flex; align-items: center; flex-shrink: 0; }
.tl-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.tl-dot.done { background: var(--plum); color: white; box-shadow: 0 3px 10px var(--shadow-md); }
.tl-dot.pend { background: var(--border); color: var(--text-soft); }
.tl-lbl { font-size: 11px; font-weight: 600; margin-left: 8px; white-space: nowrap; }
.tl-lbl.done { color: var(--plum); }
.tl-lbl.pend { color: var(--text-soft); }
.tl-line { width: 40px; height: 2px; margin: 0 6px; flex-shrink: 0; }
.tl-line.done { background: var(--plum); }
.tl-line.pend { background: var(--border); }

/* ══════════════════════════════════════════════════════════════════════
   AUTH FORMS
══════════════════════════════════════════════════════════════════════ */
.form-box {
  background: white;
  padding: 48px;
  border-radius: var(--r-xl);
  box-shadow: 0 12px 56px var(--shadow-lg);
  max-width: 460px;
  margin: 64px auto;
  border: 1px solid var(--border);
}
.form-box h2 {
  font-family: var(--font-display);
  text-align: center; color: var(--plum);
  margin-bottom: 6px; font-size: 32px; font-weight: 600;
}
.form-subtitle {
  text-align: center; color: var(--text-soft);
  font-size: 14px; margin-bottom: 32px; font-weight: 300;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; margin-bottom: 7px;
  font-weight: 600; color: var(--text); font-size: 13px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 14px;
  transition: border 0.2s, box-shadow 0.2s;
  background: white; font-family: var(--font-body);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(61,26,74,0.07);
}
.form-group input[type="submit"] {
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: white; border: none; cursor: pointer;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 4px 18px var(--shadow-md);
  transition: all 0.22s;
}
.form-group input[type="submit"]:hover { opacity: 0.92; transform: translateY(-1px); }
.form-box .link {
  text-align: center; margin-top: 20px;
  color: var(--text-soft); font-size: 13px;
}
.form-box .link a { color: var(--plum); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════
   ALERTS
══════════════════════════════════════════════════════════════════════ */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.alert-success { background: #d4f0de; color: #1a5c33; border: 1px solid #b4e0c2; }
.alert-error   { background: #fde8ea; color: #721c24; border: 1px solid #f5c6c8; }
.alert-warning { background: var(--gold-pale); color: #7a5010; border: 1px solid var(--gold); }

/* ══════════════════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.badge-pending    { background: #fff3cd; color: #856404; }
.badge-accepted   { background: #cce5ff; color: #004085; }
.badge-dispatched { background: #d4edda; color: #155724; }
.badge-delivered  { background: #d1f0f5; color: #0c5460; }
.badge-low        { background: #fff3cd; color: #856404; }
.badge-out        { background: #fde8ea; color: #721c24; }

/* ══════════════════════════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════════════════════════ */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: #0e0614; color: white; padding: 20px 0; flex-shrink: 0; }
.admin-sidebar .brand {
  font-family: var(--font-display);
  font-size: 18px; padding: 15px 20px 28px;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-sidebar a {
  display: block; padding: 12px 20px;
  color: rgba(255,255,255,0.45); font-size: 14px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background: rgba(255,255,255,0.05); color: white;
  border-left-color: var(--gold);
}
.admin-main { flex: 1; padding: 32px; background: #f8f3f0; }
.admin-main h1 {
  font-family: var(--font-display);
  color: var(--plum); margin-bottom: 26px; font-size: 28px;
}
.table-box {
  background: white; border-radius: var(--r-lg);
  padding: 22px; box-shadow: 0 2px 12px var(--shadow);
  overflow-x: auto; margin-bottom: 26px;
}
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--plum); color: white;
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
tr:hover td { background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; margin-bottom: 26px; }
.stat-card {
  background: white; border-radius: var(--r-lg);
  padding: 22px; text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
  border-top: 3px solid var(--gold);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600; color: var(--plum);
}
.stat-card .label { color: var(--text-soft); margin-top: 6px; font-size: 13px; }
.autocomplete-list {
  position: absolute; background: white;
  border: 1px solid var(--border); border-radius: 0 0 var(--r-sm) var(--r-sm);
  max-height: 200px; overflow-y: auto; z-index: 999; width: 100%;
  box-shadow: 0 8px 24px var(--shadow);
}
.autocomplete-list div { padding: 10px 14px; cursor: pointer; font-size: 14px; }
.autocomplete-list div:hover { background: var(--gold-pale); }
.autocomplete-wrapper { position: relative; }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤1024px)
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar, .page-hero, .trust-inner, .footer-foot { padding-left: 32px; padding-right: 32px; }
  .section-wrap, .promo-wrap, .footer-body, .page-body, .filter-inner, .nl-inner { padding-left: 32px; padding-right: 32px; }
  .hero-inner { padding: 0 32px; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr 320px; }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: 0 18px; height: 62px; }
  .navbar-nav {
    display: none;
    flex-direction: column;
    position: fixed; top: 62px; left: 0; right: 0;
    background: var(--plum-dark);
    padding: 14px 16px; gap: 4px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.2s ease;
  }
  @keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { padding: 13px 16px; border-radius: var(--r-sm); font-size: 14px; }
  .navbar-nav a.nav-cart { border-radius: var(--r-sm); text-align: center; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; padding: 0 22px; }
  .hero-left { padding: 56px 0 36px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-right { display: none; }
  .hero { min-height: auto; }
  .hero-kicker { justify-content: center; }

  /* Ticker */
  .ticker { display: block; }

  /* Trust */
  .trust-inner { grid-template-columns: repeat(2, 1fr); padding: 0 18px; }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border-light); }

  /* Sections */
  .section-wrap { padding: 52px 20px; }
  .promo-wrap { padding: 52px 20px; }
  .promo-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Footer */
  .footer-body { grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 22px; }
  .footer-foot { padding: 18px 22px; flex-direction: column; text-align: center; gap: 6px; }
  .nl-inner { padding: 64px 24px; }
  .nl-form { flex-direction: column; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-img-wrap { height: 185px; }
  .prod-info { padding: 12px 12px 14px; }
  .prod-price { font-size: 17px; }
  .prod-name { font-size: 13px; }
  .prod-desc-sm { font-size: 11px; margin-bottom: 10px; }
  .btn-add { padding: 7px 12px; font-size: 10px; }
  .btn-login-buy { padding: 7px 10px; font-size: 10px; }

  /* Filter */
  .filter-inner { padding: 12px 18px; gap: 8px; }
  .filter-bar { top: 62px; }

  /* Page hero */
  .page-hero { padding: 36px 20px; }
  .page-hero h1 { font-size: 26px; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .page-body { padding: 24px 18px; }
  .cart-box th, .cart-box td { padding: 12px 14px; font-size: 13px; }

  /* Orders */
  .oc-head { padding: 16px 20px; }
  .oc-table th, .oc-table td { padding: 11px 20px; }
  .oc-foot { padding: 14px 20px; }
  .oc-timeline { padding: 16px 20px; }
  .tl-line { width: 24px; }

  /* Admin */
  .admin-wrapper { flex-direction: column; }
  .admin-sidebar { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Always 2 columns on small phones */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .prod-img-wrap { height: 160px; }
  .prod-info { padding: 10px 10px 12px; }
  .prod-price { font-size: 15px; }
  .prod-name { font-size: 12px; }
  .prod-desc-sm { display: none; } /* hide desc on tiny screens to save space */
  .btn-add { padding: 7px 10px; font-size: 10px; }
  .btn-login-buy { padding: 7px 8px; font-size: 9px; }

  /* Trust items stack */
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border-light); }
  .trust-item:last-child { border-bottom: none; }

  /* Footer stack */
  .footer-body { grid-template-columns: 1fr; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 18px; justify-content: center; }
  .hero-h1 { font-size: 34px; }

  /* Section kickers */
  .sec-kicker::before, .sec-kicker::after { display: none; }

  /* Auth forms */
  .form-box { padding: 28px 20px; margin: 28px 16px; }

  /* Cart table - hide less important cols on tiny screens */
  .cart-col-hide { display: none; }

  /* Promo cards */
  .promo-card { padding: 34px 24px; }
  .promo-title { font-size: 22px; }
}

/* Print */
@media print { .no-print { display: none !important } body { background: white } }


/* ═══════════════════════════════════════════════════════════════
   HOME ENHANCED — Additive styles for index.php only
   Extends style.css without overriding any existing classes
═══════════════════════════════════════════════════════════════ */

/* ── Hero Enhancements ────────────────────────────────────────── */
.hero-enhanced {
  min-height: 100vh;
}

/* Floating decorative petals */
.petal {
  position: absolute;
  color: var(--gold-light);
  font-size: 18px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  animation: petalFloat 12s ease-in-out infinite;
}
.petal-1 { top: 12%; left: 8%; animation-delay: 0s; font-size: 22px; opacity: 0.12; }
.petal-2 { top: 25%; right: 6%; animation-delay: 2s; font-size: 16px; }
.petal-3 { bottom: 30%; left: 5%; animation-delay: 4s; font-size: 20px; }
.petal-4 { bottom: 15%; right: 9%; animation-delay: 1s; font-size: 14px; opacity: 0.08; }
.petal-5 { top: 60%; left: 50%; animation-delay: 3s; font-size: 12px; opacity: 0.07; }
@keyframes petalFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(12deg); }
  66% { transform: translateY(8px) rotate(-8deg); }
}

/* Eyebrow text replacing hero-kicker style */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow-dot:last-child { animation-delay: 0.5s; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Feature pills */
.hero-feature-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.feature-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}

/* Stat dividers */
.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* Third htag */
.htag-3 {
  bottom: 120px;
  right: 0px;
  background: rgba(61,26,74,0.9);
  color: var(--gold-light);
  font-size: 11px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.25);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-arrow {
  animation: bounceDown 1.8s ease-in-out infinite;
  font-size: 14px;
}
@keyframes bounceDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Showcase Strip ───────────────────────────────────────────── */
.showcase-strip {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  padding: 36px 52px;
  overflow: hidden;
}
.showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.showcase-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.showcase-items {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.25s;
  min-width: 110px;
  text-align: center;
}
.showcase-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.showcase-emoji { font-size: 32px; }
.showcase-item span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ── Marquee Band ─────────────────────────────────────────────── */
.marquee-band {
  background: var(--plum-dark);
  border-top: 1px solid rgba(196,146,42,0.2);
  border-bottom: 1px solid rgba(196,146,42,0.2);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 22px;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 8px !important;
  letter-spacing: 0 !important;
  padding: 0 8px !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── "New" badge on product cards ────────────────────────────── */
.prod-new-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold), #b8821e);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px var(--shadow-gold);
}

/* ── Why Section ──────────────────────────────────────────────── */
.why-section {
  background: linear-gradient(160deg, var(--plum-dark) 0%, #1a0830 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 18px);
  background-size: 18px 18px;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 52px;
  position: relative; z-index: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  border-color: rgba(196,146,42,0.3);
}
.why-card:hover::after { opacity: 1; }
.why-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Style Inspiration Section ───────────────────────────────── */
.inspo-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.inspo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.inspo-cards {
  display: flex;
  gap: 16px;
  height: 380px;
}
.inspo-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.inspo-card {
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.inspo-card:hover { transform: scale(1.02); box-shadow: 0 20px 50px var(--shadow-lg); }
.ic-1 {
  flex: 1.4;
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
}
.ic-2 {
  flex: 1;
  background: linear-gradient(180deg, var(--gold-pale) 0%, #f0dca8 100%);
}
.ic-3 {
  flex: 1;
  background: linear-gradient(180deg, #c8d8f0 0%, #a8b8e8 100%);
}
.ic-emoji {
  font-size: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.ic-label {
  position: relative; z-index: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--plum);
  background: rgba(255,255,255,0.7);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Newsletter Enhancements ─────────────────────────────────── */
.nl-enhanced { position: relative; overflow: hidden; }
.nl-deco-1, .nl-deco-2 {
  position: absolute;
  font-size: 120px;
  opacity: 0.04;
  pointer-events: none;
}
.nl-deco-1 { top: 10px; left: 40px; transform: rotate(-20deg); }
.nl-deco-2 { bottom: 10px; right: 40px; transform: rotate(15deg); }
.nl-badge {
  display: inline-block;
  background: rgba(196,146,42,0.15);
  border: 1px solid rgba(196,146,42,0.3);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.nl-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.nl-perks span {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

/* ── Testimonial Enhancements ────────────────────────────────── */
.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 14px var(--shadow);
  flex-wrap: wrap;
}
.ts-rating { text-align: center; }
.ts-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.ts-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin: 4px 0;
}
.ts-label { font-size: 11px; color: var(--text-soft); letter-spacing: 0.5px; }
.ts-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}
.ts-stat { text-align: center; }
.ts-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--plum);
}
.ts-stat-lbl {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
}

/* ── Footer Enhancements ─────────────────────────────────────── */
.f-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.f-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  text-decoration: none;
}
.f-social:hover {
  background: rgba(196,146,42,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.f-payment-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.f-pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL SLIDER — mobile touch slider base styles
   (active only on mobile via JS class toggle)
══════════════════════════════════════════════════════════════ */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testi-grid {
  /* default desktop: CSS grid — unchanged */
}
/* Dot indicators (hidden on desktop) */
.testi-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.testi-dot.active {
  background: var(--plum);
  transform: scale(1.25);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .showcase-strip { padding: 28px 32px; }
  .why-inner { padding: 64px 32px; }
  .inspo-inner { padding: 64px 32px; gap: 36px; }
}

@media (max-width: 768px) {
  .hero-enhanced { min-height: auto; }
  .hero-scroll-hint { display: none; }
  .hero-feature-pills { justify-content: center; }
  .feature-pill { font-size: 10px; padding: 5px 11px; }
  .hero-eyebrow { justify-content: center; }
  .hstat-divider { display: none; }

  /* ── FIX 1: Trust bar → 2×2 grid ── */
  /* Override the 4-col → 2-col from style.css (which already does 2-col)
     We just need to ensure borders reset correctly for 2×2 */
  .trust-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-item {
    border-right: 1px solid var(--border-light) !important;
    border-bottom: 1px solid var(--border-light) !important;
  }
  /* Row 1: items 1 & 2 — right borders: item1 yes, item2 no */
  .trust-item:nth-child(2n) {
    border-right: none !important;
  }
  /* Row 2: items 3 & 4 — no bottom border */
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none !important;
  }

  /* ── FIX 2: Showcase → equal 3×2 grid ── */
  .showcase-strip { padding: 24px 18px; }
  .showcase-items {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .showcase-item {
    min-width: unset;
    width: 100%;
    padding: 14px 10px;
  }
  .showcase-emoji { font-size: 26px; }
  .showcase-item span { font-size: 10px; }

  /* ── Other section fixes ── */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-inner { padding: 56px 20px; }
  .why-card { padding: 22px 16px; }
  .why-icon { font-size: 32px; margin-bottom: 12px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 12px; }

  .inspo-inner { grid-template-columns: 1fr; gap: 32px; padding: 52px 20px; }
  .inspo-cards { height: 240px; }
  .ic-emoji { font-size: 38px; }

  .testi-summary { gap: 20px; padding: 20px 24px; }
  .ts-divider { display: none; }
  .ts-num { font-size: 30px; }

  .nl-deco-1, .nl-deco-2 { display: none; }
  .nl-perks { gap: 14px; }

  .marquee-band { padding: 10px 0; }

  /* ── FIX 3: Testimonials → touch slider ── */
  .testi-dots { display: flex; }

  .testi-grid.is-slider {
    display: flex !important;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 0;
  }
  .testi-grid.is-slider .testi-card {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    border-radius: var(--r-lg);
    box-shadow: 0 4px 20px var(--shadow);
  }
}

@media (max-width: 480px) {
  /* ── Trust stays 2×2 ── */
  .trust-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── Showcase stays 3×2 ── */
  .showcase-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .showcase-item { padding: 12px 8px; }
  .showcase-emoji { font-size: 22px; }
  .showcase-item span { font-size: 9px; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 18px 12px; }

  .inspo-cards { height: 180px; }
  .ic-1 { flex: 1.2; }
  .ic-emoji { font-size: 28px; }
  .ic-label { font-size: 10px; padding: 4px 12px; }

  .testi-summary { flex-direction: column; gap: 16px; padding: 20px; }

  .f-socials { gap: 8px; }
  .f-social { width: 32px; height: 32px; font-size: 14px; }

  .hero-feature-pills { gap: 6px; }
  .feature-pill { font-size: 9px; padding: 4px 10px; }
}