/* ═══════════════════════════════════════════════════════
   TrendyBazaarPK — LUXE LIGHT THEME 2025
   Dreamy · Animated · Premium · Beautiful
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&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,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --primary:        #FF4560;
  --primary-dark:   #E0304D;
  --primary-light:  #FF8096;
  --primary-glow:   rgba(255,69,96,0.18);
  --primary-soft:   rgba(255,69,96,0.08);
  --gold:           #FFB830;
  --gold-light:     #FFD980;
  --teal:           #00C6AE;
  --bg:             #FFF8F4;
  --bg2:            #FFF3EE;
  --bg-card:        #FFFFFF;
  --bg-glass:       rgba(255,255,255,0.75);
  --border:         rgba(255,69,96,0.1);
  --border-light:   rgba(0,0,0,0.06);
  --text:           #18102A;
  --text2:          #5A4A6A;
  --text3:          #9B8EAB;
  --success:        #00C896;
  --warning:        #FF9500;
  --info:           #4B83F0;
  --sh-xs:  0 1px 4px rgba(0,0,0,0.04);
  --sh-sm:  0 2px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md:  0 6px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --sh-lg:  0 12px 40px rgba(0,0,0,0.1),  0 4px 12px rgba(0,0,0,0.05);
  --sh-xl:  0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --sh-glow: 0 8px 30px rgba(255,69,96,0.25), 0 2px 8px rgba(255,69,96,0.15);
  --sh-gold: 0 8px 30px rgba(255,184,48,0.3);
  --r-xs:  6px; --r-sm: 10px; --r-md: 16px; --r-lg: 24px;
  --r-xl: 32px; --r-2xl: 44px; --r-full: 999px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.68,-0.55,0.27,1.55);
  --font:       'DM Sans', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-disp:  'DM Serif Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; }

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

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 80% 60% at 10% 10%,  rgba(255,184,48,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 15%,  rgba(255,69,96,0.08)   0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 80%,  rgba(0,198,174,0.06)   0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 85%,  rgba(255,128,150,0.06) 0%, transparent 55%);
  animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50%  { transform: scale(1.04) rotate(1deg); opacity: 1; }
  100% { transform: scale(0.97) rotate(-1deg); opacity: 0.9; }
}

body::after {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(circle 120px at 15% 25%, rgba(255,69,96,0.06)  0%, transparent 100%),
    radial-gradient(circle 180px at 85% 65%, rgba(255,184,48,0.07) 0%, transparent 100%),
    radial-gradient(circle  90px at 70% 15%, rgba(0,198,174,0.05)  0%, transparent 100%),
    radial-gradient(circle 150px at 30% 75%, rgba(255,128,96,0.05) 0%, transparent 100%);
  animation: orbsDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orbsDrift {
  0%   { transform: translate(0px, 0px); }
  25%  { transform: translate(15px, -12px); }
  50%  { transform: translate(-8px, 18px); }
  75%  { transform: translate(12px, 10px); }
  100% { transform: translate(-15px, -8px); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--gold)); border-radius: 10px; }
::selection { background: var(--primary); color: #fff; }

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--teal));
  z-index: 10001; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 12px; z-index: 1000;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  margin: 0 14px 14px; padding: 12px 22px;
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.85);
  animation: navSlide 0.6s var(--ease-spring) both;
}

@keyframes navSlide {
  from { opacity: 0; transform: translateY(-40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-logo {
  font-family: var(--font-disp);
  font-size: 22px; font-weight: 400; font-style: italic;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C42 60%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  filter: drop-shadow(0 2px 8px rgba(255,69,96,0.2));
}
.nav-logo:hover { transform: scale(1.04); filter: drop-shadow(0 4px 16px rgba(255,69,96,0.35)); }
.nav-logo span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.mobile-menu-btn {
  display: none;
  background: var(--bg2); border: 1px solid var(--border-light);
  font-size: 22px; cursor: pointer; padding: 7px 10px;
  border-radius: var(--r-sm); transition: all 0.2s;
}
.mobile-menu-btn:hover { background: var(--primary-soft); }

.nav-search { flex: 1; max-width: 480px; display: flex; position: relative; }
.nav-search input {
  flex: 1; padding: 11px 18px;
  background: rgba(255,255,255,0.9); border: 1.5px solid var(--border-light);
  border-right: none; border-radius: var(--r-md) 0 0 var(--r-md);
  color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none; transition: all 0.25s;
}
.nav-search input::placeholder { color: var(--text3); }
.nav-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); background: #fff; }
.nav-search button {
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none; border-radius: 0 var(--r-md) var(--r-md) 0;
  color: #fff; cursor: pointer; font-size: 15px; transition: all 0.25s;
}
.nav-search button:hover { box-shadow: var(--sh-glow); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-btn {
  padding: 8px 16px; border-radius: var(--r-sm);
  font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s var(--ease-spring);
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border-light);
  background: rgba(255,255,255,0.9); color: var(--text2);
  box-shadow: var(--sh-xs);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); color: var(--primary); border-color: var(--primary); }
.nav-btn-ghost { color: var(--text2); }
.nav-btn-ghost:hover { color: var(--primary); border-color: var(--primary); }
.nav-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-color: transparent; box-shadow: var(--sh-glow);
}
.nav-btn-primary:hover { color: #fff; box-shadow: 0 10px 28px rgba(255,69,96,0.35); }

.cart-btn {
  position: relative; padding: 8px 14px;
  background: rgba(255,255,255,0.9); border-radius: var(--r-sm);
  text-decoration: none; color: var(--text);
  transition: all 0.25s var(--ease-spring);
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; gap: 5px; font-size: 18px;
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); color: var(--primary); border-color: var(--primary); }

.cart-badge {
  position: absolute; top: -7px; right: -7px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  animation: badgePop 0.4s var(--ease-spring);
  box-shadow: 0 2px 8px rgba(255,69,96,0.4); padding: 0 4px;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ── BUTTONS ── */
.btn {
  padding: 11px 26px; border-radius: var(--r-md);
  font-family: var(--font); font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.3s var(--ease-spring);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; box-shadow: var(--sh-glow);
}
.btn-primary:hover { box-shadow: 0 14px 35px rgba(255,69,96,0.4); }

.btn-outline {
  background: rgba(255,255,255,0.7); border: 2px solid var(--primary);
  color: var(--primary); backdrop-filter: blur(8px);
}
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: var(--sh-glow); }

.btn-ghost {
  background: rgba(255,255,255,0.7); border: 1.5px solid var(--border-light);
  color: var(--text2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: var(--primary); border-color: var(--primary); background: #fff; }

.btn-sm  { padding: 7px 16px;  font-size: 12px; }
.btn-lg  { padding: 15px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── CARDS ── */
.card {
  background: var(--bg-card); border-radius: var(--r-lg);
  overflow: hidden; transition: all 0.35s var(--ease-out);
  box-shadow: var(--sh-sm); border: 1px solid rgba(255,255,255,0.9);
  animation: cardIn 0.5s var(--ease-out) both;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── PRODUCT CARD ── */
.product-card {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; transition: all 0.38s var(--ease-spring);
  cursor: pointer; box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light); position: relative;
  animation: cardIn 0.45s var(--ease-out) both;
  animation-delay: calc(var(--index,0) * 0.05s);
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.55s var(--ease-out);
  z-index: 2; pointer-events: none;
}
.product-card:hover::before { left: 150%; }
.product-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--sh-xl), 0 0 40px rgba(255,69,96,0.08); }

.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, #FFF0EC, #FFE4E8);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.product-card:hover .product-img-wrap img { transform: scale(1.12); }

.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-full);
  animation: badgePulse 2.5s infinite; z-index: 3;
  box-shadow: 0 4px 12px rgba(255,69,96,0.4);
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,69,96,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,69,96,0); }
}

.product-info { padding: 16px; }
.product-name {
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; color: var(--text); transition: color 0.2s; line-height: 1.4;
}
.product-card:hover .product-name { color: var(--primary); }
.product-prices { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.product-price  { font-size: 16px; font-weight: 700; color: var(--primary); }
.product-old-price { font-size: 12px; color: var(--text3); text-decoration: line-through; }

/* ── BANNER STRIP ── */
.banner-strip {
  background: linear-gradient(90deg, var(--primary) 0%, #FF6B35 50%, var(--primary) 100%);
  background-size: 200% auto;
  animation: bannerGrad 4s linear infinite;
  padding: 11px 0; overflow: hidden;
  margin: 0 14px 14px; border-radius: var(--r-md);
  box-shadow: 0 6px 20px rgba(255,69,96,0.3); position: relative;
}
@keyframes bannerGrad {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.banner-strip-inner {
  display: flex; gap: 50px;
  animation: marquee 28s linear infinite; white-space: nowrap;
}
.banner-strip:hover .banner-strip-inner { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  font-size: 13px; font-weight: 600; color: #fff;
  display: inline-flex; align-items: center; gap: 10px; padding: 0 16px;
}

/* ── HERO ── */
.hero {
  margin: 0 14px 14px; border-radius: var(--r-2xl);
  padding: 72px 0 56px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,248,244,0.97) 0%, rgba(255,240,235,0.93) 40%, rgba(255,245,250,0.97) 100%);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.9);
}

.hero-blob-1 {
  position: absolute; top: -80px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(255,69,96,0.12) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph1 12s ease-in-out infinite; pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,184,48,0.1) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMorph2 15s ease-in-out infinite; pointer-events: none;
}
.hero-blob-3 {
  position: absolute; top: 20%; right: 20%;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,198,174,0.08) 0%, transparent 70%);
  border-radius: 70% 30% 50% 50% / 30% 70% 40% 60%;
  animation: blobMorph1 18s ease-in-out infinite reverse; pointer-events: none;
}

@keyframes blobMorph1 {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0) scale(1); }
  33%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(15px,-20px) scale(1.05); }
  66%       { border-radius: 50% 60% 30% 60% / 40% 30% 70% 50%; transform: translate(-10px,15px) scale(0.97); }
}
@keyframes blobMorph2 {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0,0) scale(1); }
  33%       { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-20px,12px) scale(1.04); }
  66%       { border-radius: 70% 30% 60% 40% / 50% 70% 30% 60%; transform: translate(10px,-15px) scale(0.96); }
}

.hero-content { position: relative; z-index: 2; animation: heroReveal 0.8s var(--ease-out) both; }
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(255,69,96,0.1), rgba(255,184,48,0.08));
  border: 1px solid rgba(255,69,96,0.2);
  padding: 8px 20px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; color: var(--primary);
  margin-bottom: 24px; backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(255,69,96,0.1);
  animation: heroReveal 0.7s var(--ease-out) 0.1s both;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px; background: var(--primary);
  border-radius: 50%; animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,69,96,0.4); transform: scale(1); }
  50%       { box-shadow: 0 0 0 5px rgba(255,69,96,0); transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(30px, 5.5vw, 62px);
  line-height: 1.15; margin-bottom: 20px; color: var(--text);
  animation: heroReveal 0.7s var(--ease-out) 0.2s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8C42 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: textShine 4s linear infinite;
}
@keyframes textShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero p {
  font-size: 18px; color: var(--text2); margin-bottom: 36px;
  line-height: 1.7; max-width: 540px;
  animation: heroReveal 0.7s var(--ease-out) 0.3s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: heroReveal 0.7s var(--ease-out) 0.4s both;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--border);
  animation: heroReveal 0.7s var(--ease-out) 0.5s both;
}
.hero-stat-num {
  font-family: var(--font-disp); font-size: 30px; font-weight: 400;
  color: var(--primary); line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl { font-size: 12px; color: var(--text3); font-weight: 500; }

/* ── CATEGORY CARDS ── */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 18px; }
.cat-card {
  background: #fff; border-radius: var(--r-lg); padding: 24px 14px;
  text-align: center; cursor: pointer; transition: all 0.38s var(--ease-spring);
  text-decoration: none; display: block; box-shadow: var(--sh-sm);
  border: 1.5px solid var(--border-light); position: relative; overflow: hidden;
  animation: cardIn 0.45s var(--ease-out) calc(var(--index,0) * 0.04s) both;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,69,96,0.07), rgba(255,184,48,0.05));
  opacity: 0; transition: opacity 0.3s; border-radius: inherit;
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--sh-lg), 0 0 0 2px rgba(255,69,96,0.15); border-color: rgba(255,69,96,0.25); }
.cat-icon  { font-size: 44px; margin-bottom: 12px; display: block; transition: transform 0.4s var(--ease-spring); }
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(8deg); }
.cat-name  { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cat-count { font-size: 11px; color: var(--text3); font-weight: 500; }

/* ── PROMO BANNERS ── */
.promo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 48px; }
.promo-card {
  border-radius: var(--r-xl); padding: 38px; position: relative;
  overflow: hidden; min-height: 250px; display: flex;
  flex-direction: column; justify-content: flex-end;
  transition: all 0.35s var(--ease-out); cursor: pointer; box-shadow: var(--sh-md);
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); }
.promo-card-1 { background: linear-gradient(135deg, #FFF5F5 0%, #FFE8EA 60%, #FFDDE0 100%); border: 1.5px solid rgba(255,69,96,0.15); }
.promo-card-2 { background: linear-gradient(135deg, #F5F8FF 0%, #E8F0FF 60%, #E0EAFF 100%); border: 1.5px solid rgba(75,131,240,0.15); }
.promo-emoji { font-size: 72px; position: absolute; top: 20px; right: 28px; opacity: 0.7; transition: all 0.4s var(--ease-spring); filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)); }
.promo-card:hover .promo-emoji { transform: scale(1.15) rotate(8deg) translateY(-5px); opacity: 1; }
.promo-label { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; }
.promo-title { font-family: var(--font-disp); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.promo-desc  { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.55; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; margin: 48px auto; }
.feature-card {
  background: #fff; border-radius: var(--r-lg); padding: 36px 28px;
  text-align: center; transition: all 0.35s var(--ease-spring);
  box-shadow: var(--sh-sm); border: 1.5px solid var(--border-light);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out); border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(255,69,96,0.15); }
.feature-icon { font-size: 52px; margin-bottom: 18px; display: block; transition: transform 0.4s var(--ease-spring); }
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(-5deg); }
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-desc  { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── STATS SECTION ── */
.stats-section {
  background: linear-gradient(135deg, #fff 0%, var(--bg2) 100%);
  border-radius: var(--r-xl); padding: 52px 48px; margin: 48px auto;
  text-align: center; box-shadow: var(--sh-lg); border: 1.5px solid var(--border-light);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--teal));
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 36px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-disp); font-size: 42px; font-weight: 400;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px; line-height: 1;
}
.stat-label { font-size: 14px; color: var(--text2); font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 60px 0; }
.section-title {
  font-family: var(--font-disp); font-size: 30px; font-weight: 400;
  margin-bottom: 10px; display: flex; align-items: center; gap: 12px;
  color: var(--text); animation: slideInLeft 0.5s var(--ease-out) both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.section-title::after {
  content: ''; height: 3px; flex: 1; max-width: 60px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px; animation: growLine 0.6s var(--ease-out) 0.2s both;
}
@keyframes growLine {
  from { max-width: 0; opacity: 0; }
  to   { max-width: 60px; opacity: 1; }
}
.section-subtitle { color: var(--text2); font-size: 15px; margin-bottom: 32px; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--text2); }
.form-input {
  width: 100%; padding: 13px 18px;
  background: rgba(255,255,255,0.9); border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm); color: var(--text); font-family: var(--font); font-size: 14px;
  outline: none; transition: all 0.25s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); background: #fff; }
.form-input::placeholder { color: var(--text3); }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  padding: 13px 20px; border-radius: var(--r-md); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  animation: toastSlide 0.4s var(--ease-spring);
  max-width: 320px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px); box-shadow: var(--sh-lg);
  border: 1px solid var(--border-light); border-left: 4px solid;
}
@keyframes toastSlide {
  from { transform: translateX(120%) scale(0.8); opacity: 0; }
  to   { transform: translateX(0) scale(1); opacity: 1; }
}
.toast-success { border-left-color: var(--success); }
.toast-error   { border-left-color: var(--primary); }
.toast-info    { border-left-color: var(--info); }
.toast-warning { border-left-color: var(--warning); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(18,10,30,0.5);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--r-xl); padding: 32px;
  max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto;
  position: relative; animation: modalPop 0.4s var(--ease-spring); box-shadow: var(--sh-xl);
}
@keyframes modalPop {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-close {
  position: absolute; top: 18px; right: 18px; background: var(--bg2); border: none;
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s var(--ease-spring);
}
.modal-close:hover { transform: rotate(90deg); background: var(--primary); color: #fff; }

/* ── LOADING ── */
.spinner {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,69,96,0.15);
  border-top-color: var(--primary); border-right-color: var(--gold);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-center { display: flex; align-items: center; justify-content: center; min-height: 280px; }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #fff 0%, #FFF8F4 100%);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 56px 0 28px; margin-top: 64px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06); border-top: 1px solid var(--border-light);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--teal), var(--primary));
  background-size: 200%; animation: bannerGrad 6s linear infinite;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text2); font-size: 14px; line-height: 1.65; margin-top: 12px; }
.footer-links h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; position: relative; display: inline-block; color: var(--text); }
.footer-links h4::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 28px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 2px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--text2); text-decoration: none; font-size: 13px; transition: all 0.2s; display: inline-block; }
.footer-links ul li a:hover { color: var(--primary); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 22px; text-align: center; color: var(--text3); font-size: 12px; }

/* ── STATUS BADGES ── */
.status-badge { padding: 4px 12px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.status-pending   { background: rgba(255,149,0,0.1);  color: var(--warning); }
.status-confirmed { background: rgba(75,131,240,0.1); color: var(--info); }
.status-shipped   { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.status-delivered { background: rgba(0,200,150,0.12); color: var(--success); }
.status-cancelled { background: rgba(255,69,96,0.1);  color: var(--primary); }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 22px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.65s var(--ease-out); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── UTILITY DELAYS ── */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 22px; right: 22px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  opacity: 0; visibility: hidden; transition: all 0.35s var(--ease-spring);
  box-shadow: var(--sh-glow); z-index: 998;
}
.back-to-top.show  { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 12px 30px rgba(255,69,96,0.4); }

/* ── HOVER UTILS ── */
.hover-lift:hover  { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.hover-scale:hover { transform: scale(1.05); }
.hover-glow:hover  { box-shadow: 0 0 22px var(--primary-glow); }

/* ── ADMIN ── */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #fff; padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; box-shadow: var(--sh-md); z-index: 10; border-right: 1px solid var(--border-light); }
.admin-main { padding: 24px; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: #fff; border-radius: var(--r-lg); padding: 22px; transition: all 0.3s var(--ease-spring); box-shadow: var(--sh-sm); border: 1.5px solid var(--border-light); animation: cardIn 0.4s var(--ease-out) both; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.stat-val { font-family: var(--font-disp); font-size: 34px; font-weight: 400; background: linear-gradient(135deg, var(--primary), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text2); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .promo-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .cats-grid  { grid-template-columns: repeat(4,1fr); gap: 12px; }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
  .navbar { margin: 8px; padding: 10px 16px; flex-wrap: wrap; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav-search { display: none; width: 100%; max-width: none; order: 3; }
  .nav-search.active { display: flex; margin-top: 10px; }
  .nav-actions { margin-left: auto; }
  .nav-logo { font-size: 18px; }
  .nav-btn { padding: 6px 12px; font-size: 12px; }
  .cart-btn { padding: 6px 12px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .hero { padding: 44px 0 36px; margin: 8px; border-radius: var(--r-xl); }
  .hero h1 { font-size: 26px; }
  .hero p  { font-size: 15px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .banner-strip { margin: 0 8px 10px; }
  .cats-grid    { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .cat-card     { padding: 14px 10px; }
  .cat-icon     { font-size: 30px; }
  .promo-card   { padding: 24px; min-height: 200px; }
  .promo-title  { font-size: 21px; }
  .stats-section { padding: 36px 20px; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .stat-number   { font-size: 30px; }
  .features-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .feature-card  { padding: 24px 16px; }
  .feature-icon  { font-size: 38px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .toast-container { bottom: 10px; right: 10px; left: 10px; }
  .toast { max-width: none; }
  .admin-layout  { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; position: fixed; left: 0; top: 0; width: 80%; max-width: 280px; z-index: 1000; transform: translateX(-100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); display: block; }
  .admin-main { padding: 14px; }
  .stat-val { font-size: 26px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .btn    { padding: 9px 18px; font-size: 12px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links h4::after { left: 50%; transform: translateX(-50%); }
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .cat-name { font-size: 11px; }
  .modal { padding: 20px; margin: 16px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1280px; }
  .products-grid { gap: 28px; }
}
