/* ============================================================
   T&B's Everyday Essentials — Brand Palette Stylesheet v3
   Palette: Magenta · Blush · Purple · TEAL · Gold · White
   Fraunces + DM Sans · Lucide icons
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  /* ── T&B Official Brand Palette ──────────────────
     #E004A6  Hot Magenta (primary)
     #FAB9D8  Soft Blush (light pink)
     #6137B9  Vivid Purple
     #49B9C8  Electric Teal  ← accent
     #FBF4F3  Warm Off-White
     #FFFFFF  White
     #FED871  Warm Gold
  ───────────────────────────────────────────────── */

  /* Pinks */
  --pink:         #E004A6;
  --pink-light:   #FAB9D8;
  --pink-dark:    #B0037A;

  /* Purples */
  --purple:       #6137B9;
  --purple-light: #9B78E8;
  --purple-dark:  #4A2A9A;

  /* Teal — electric accent */
  --teal:         #49B9C8;
  --teal-light:   #A8E6ED;
  --teal-dark:    #2E8F9C;

  /* Gold */
  --gold:         #FED871;
  --gold-light:   #FFF3C4;
  --gold-dark:    #D4A017;

  /* Solid UI blocks */
  --solid-pink:   #E004A6;
  --solid-purple: #6137B9;
  --solid-teal:   #49B9C8;
  --solid-dark:   #6137B9;   /* was #1A0530 — vivid purple everywhere */
  --solid-mid:    #9B78E8;   /* was #2C1760 — soft purple */

  /* Neutrals — bright & airy */
  --white:       #FFFFFF;
  --off-white:   #FBF4F3;
  --surface:     #FAF7FF;
  --gray-50:     #F5F0FF;
  --gray-100:    #EDE5FF;
  --gray-200:    #D8CCEE;
  --gray-400:    #9B78E8;
  --gray-600:    #6137B9;
  --gray-800:    #4A30A0;

  --text-dark:   #1E1035;
  --text-mid:    #4A30A0;
  --text-light:  #8B70C8;

  --shadow-sm:   0 1px 4px rgba(97,55,185,0.10);
  --shadow-md:   0 4px 20px rgba(97,55,185,0.14);
  --shadow-lg:   0 12px 48px rgba(97,55,185,0.20);
  --shadow-pink: 0 6px 24px rgba(224,4,166,0.28);
  --shadow-teal: 0 6px 24px rgba(73,185,200,0.30);

  --radius:    14px;
  --radius-sm:  8px;
  --radius-lg: 20px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 40px; }

.badge {
  display: inline-block;
  background: var(--solid-pink);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--solid-pink);
  color: white;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,4,166,0.38); }
.btn-secondary {
  background: white;
  color: var(--solid-purple);
  border: 2px solid var(--solid-purple);
}
.btn-secondary:hover { background: var(--gray-50); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-gold {
  background: #FED871;
  color: var(--solid-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(254,216,113,0.35);
}
.btn-gold:hover { background: #D4A017; transform: translateY(-2px); }

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: var(--solid-dark);
  border-bottom: 2px solid var(--teal);
  padding: 10px 0;
  overflow: hidden;
}
.promo-ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 24s linear infinite;
  white-space: nowrap;
}
.promo-ticker span { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.82rem; }
.promo-ticker span .lucide { vertical-align: middle; margin-right: 4px; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; border-radius: 8px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--solid-pink); }
.nav-logo-text span { font-size: 0.65rem; color: var(--purple); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--gray-100);
  color: var(--solid-teal);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  background: var(--solid-teal);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--teal-dark); }
.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #FED871;
  color: var(--solid-dark);
  font-size: 0.6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════════
   ─── HERO — UPGRADED ───
   Rich gradient + confetti dots + floating
   logo card with sparkle badges + pulse rings
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    #6137B9 0%, #A040C0 28%, #E004A6 58%, #49B9C8 82%, #FED871 100%);
}

/* Subtle editorial grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Large glow blob top-right */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(254,216,113,0.50) 0%, transparent 62%);
  pointer-events: none;
}

/* Secondary glow blob bottom-left */
.hero-blob {
  position: absolute;
  width: 500px; height: 500px;
  bottom: -120px; left: 10%;
  background: radial-gradient(circle, rgba(250,185,216,0.45) 0%, transparent 62%);
  pointer-events: none;
}

/* Confetti dots layer */
.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-confetti::before,
.hero-confetti::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.70) 2px, transparent 2px),
    radial-gradient(circle, rgba(254,216,113,0.80) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(250,185,216,0.65) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,0.45) 1px, transparent 1px);
  background-size: 180px 180px, 140px 140px, 220px 220px, 100px 100px;
  background-position: 0 0, 60px 80px, 120px 30px, 20px 120px;
  animation: confettiFloat 18s linear infinite;
}
.hero-confetti::after {
  background-position: 90px 50px, 30px 140px, 170px 90px, 70px 20px;
  animation-duration: 24s;
  animation-direction: reverse;
  opacity: 0.6;
}
@keyframes confettiFloat {
  0%   { transform: translateY(0)    rotate(0deg); }
  100% { transform: translateY(-40px) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-text .badge {
  background: rgba(224,4,166,0.22);
  border: 1px solid rgba(224,4,166,0.5);
  color: #fbb6d9;
  border-radius: 6px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin: 16px 0;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 32px rgba(253,230,138,0.35);
}
.hero-subtext { color: rgba(255,255,255,0.75); font-size: 1.08rem; margin-bottom: 36px; max-width: 440px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num { display: block; font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold-light); }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.09em; }

/* Hero right column */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

/* Decorative pulse rings */
.hero-logo-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(73,185,200,0.35);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-logo-ring:nth-child(2) {
  width: 300px; height: 300px;
  border-color: rgba(224,4,166,0.22);
  animation-delay: 0.8s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.06); opacity: 1; }
}

.hero-logo-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: floatCard 5s ease-in-out infinite;
  backdrop-filter: blur(8px);
}
.hero-logo-card img {
  width: 210px; height: auto; margin: 0 auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 8px 24px rgba(224,4,166,0.3));
}
.hero-tagline { margin-top: 18px; font-family: 'Fraunces', serif; color: var(--gold-light); font-style: italic; font-size: 1.05rem; letter-spacing: 0.01em; }

/* Floating sparkle badges */
.hero-sparkle {
  position: absolute;
  background: var(--solid-pink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-pink);
  white-space: nowrap;
  letter-spacing: 0.04em;
  z-index: 2;
}
.hero-sparkle:nth-child(3) { top: 12%; right: -10px; animation: floatCard 4s ease-in-out infinite; animation-delay: 0.5s; }
.hero-sparkle:nth-child(4) { bottom: 18%; left: -10px; background: var(--gold); color: var(--solid-dark); animation: floatCard 4.5s ease-in-out infinite; animation-delay: 1.2s; }
.hero-sparkle:nth-child(5) { top: 55%; right: -20px; background: var(--solid-purple); animation: floatCard 5s ease-in-out infinite; animation-delay: 0.3s; }

@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ─── CATEGORIES ─── */
.categories-section { padding: 80px 0; background: var(--surface); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 14px;
}
.category-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.category-card:hover, .category-card.active {
  border-color: var(--solid-teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-teal);
}
.category-card.active { background: var(--gray-50); }
.cat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
  border-radius: 10px;
  color: var(--solid-teal);
}
.cat-icon .lucide { width: 22px; height: 22px; }
.cat-name { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
.cat-count { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }

/* ─── PRODUCTS ─── */
.products-section { padding: 80px 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--pink-light); }
.product-img { position: relative; height: 220px; background: var(--gray-50); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-50);
  color: var(--gray-400);
}
.product-img-placeholder .lucide { width: 52px; height: 52px; opacity: 0.45; }
.product-labels { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.label-sale, .label-new, .label-hot {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.07em;
  padding: 3px 9px; border-radius: 4px; text-transform: uppercase;
}
.label-sale { background: var(--solid-pink); color: white; }
.label-new  { background: var(--solid-purple); color: white; }
.label-hot  { background: var(--gold); color: var(--solid-dark); }

.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  background: white; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer;
  color: var(--text-light);
}
.product-wishlist:hover { background: var(--solid-pink); color: white; }
.product-wishlist .lucide { width: 15px; height: 15px; }

.product-info { padding: 16px; }
.product-cat { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 5px; }
.product-name { font-weight: 600; font-size: 0.94rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 700; color: var(--solid-pink); }
.product-price-old { font-size: 0.82rem; color: var(--text-light); text-decoration: line-through; }

/* "View details" hint that appears on hover */
.product-hint {
  font-size: 0.7rem; color: var(--text-light); margin-top: 6px;
  display: flex; align-items: center; gap: 4px;
  opacity: 0; transform: translateY(4px); transition: var(--transition);
}
.product-card:hover .product-hint { opacity: 1; transform: translateY(0); }
.product-hint .lucide { width: 12px; height: 12px; }

.product-add {
  width: 34px; height: 34px;
  background: var(--solid-pink);
  color: white; border: none; border-radius: 8px;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.product-add:hover { background: var(--pink-dark); transform: scale(1.08); }
.product-add .lucide { width: 16px; height: 16px; }

/* ─── PRODUCT DESCRIPTION DRAWER ─── */
.product-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(20,5,40,0.55);
  z-index: 2500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-drawer-overlay.open { opacity: 1; pointer-events: all; }

.product-drawer {
  position: fixed;
  bottom: -100%;
  left: 0; right: 0;
  z-index: 2501;
  background: white;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 88vh;
  overflow-y: auto;
  transition: bottom 0.38s cubic-bezier(0.32,0.72,0,1);
  box-shadow: 0 -12px 60px rgba(20,5,40,0.3);
}
.product-drawer.open { bottom: 0; }

.drawer-handle {
  width: 40px; height: 4px; background: var(--gray-200);
  border-radius: 2px; margin: 14px auto 0;
}
.drawer-inner { padding: 24px 28px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.drawer-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
}
.drawer-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-img .lucide { width: 72px; height: 72px; color: var(--gray-400); opacity: 0.4; }
.drawer-info { padding-top: 8px; }
.drawer-cat { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.drawer-name { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.25; }
.drawer-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.drawer-price { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--solid-pink); }
.drawer-price-old { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.drawer-desc { font-size: 0.96rem; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.drawer-actions { display: flex; gap: 12px; }
.drawer-close-btn { position: absolute; top: 18px; right: 22px; background: var(--gray-100); border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-dark); transition: var(--transition); }
.drawer-close-btn:hover { background: var(--gray-200); }
.drawer-close-btn .lucide { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .drawer-inner { grid-template-columns: 1fr; gap: 20px; }
  .drawer-img { height: 220px; }
}

/* ─── PARTY RENTALS ─── */
.rentals-section { padding: 80px 0; background: var(--surface); }
.rentals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.rental-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.rental-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rental-img {
  height: 200px;
  background: var(--solid-mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.rental-img img { width: 100%; height: 100%; object-fit: cover; }
.rental-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--solid-teal), var(--solid-pink));
}
.rental-img-placeholder .lucide { width: 56px; height: 56px; color: rgba(255,255,255,0.35); }
.rental-info { padding: 22px; }
.rental-name { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.rental-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.7; }
.rental-price { font-size: 1.12rem; font-weight: 700; color: var(--solid-teal); margin-bottom: 16px; }
.rental-price span { font-size: 0.78rem; font-weight: 400; color: var(--text-light); }

/* ─── ABOUT ─── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  background: var(--solid-dark);
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-img-main .lucide { width: 80px; height: 80px; color: rgba(255,255,255,0.18); }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--solid-pink);
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-pink);
  text-align: center;
}
.about-badge-card strong { display: block; font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; }
.about-badge-card span { font-size: 0.8rem; opacity: 0.85; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--solid-teal);
}
.value-icon .lucide { width: 18px; height: 18px; }
.value-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.value-text span { font-size: 0.8rem; color: var(--text-light); }

/* ─── PROMO STRIP ─── */
.promo-strip {
  background: var(--solid-dark);
  padding: 60px 0; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(254,216,113,0.25) 0%, transparent 65%);
}
.promo-strip .container { position: relative; z-index: 1; }
.promo-strip h2 { font-family: 'Fraunces', serif; font-size: 2.2rem; margin-bottom: 12px; }
.promo-strip p { opacity: 0.78; margin-bottom: 28px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 80px 0; background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--solid-teal);
}
.testimonial-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-text { font-style: italic; color: var(--text-mid); margin-bottom: 18px; line-height: 1.75; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--solid-pink);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.88rem; }
.testimonial-location { font-size: 0.76rem; color: var(--text-light); }

/* ─── CONTACT ─── */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: white; padding: 20px 22px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--solid-teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.contact-card-icon .lucide { width: 20px; height: 20px; }
.contact-card-text strong { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 4px; }
.contact-card-text span, .contact-card-text a { font-size: 0.88rem; color: var(--text-light); display: block; }
.contact-card-text a:hover { color: var(--solid-pink); }
.contact-form { background: white; padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 7px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.93rem;
  transition: var(--transition);
  background: var(--gray-50); color: var(--text-dark);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--solid-teal); background: white;
  box-shadow: 0 0 0 3px rgba(73,185,200,0.18);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── CART SIDEBAR ─── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px;
  width: 420px; max-width: 100vw; height: 100vh;
  background: white; z-index: 2001;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 3px solid var(--teal);
  background: linear-gradient(120deg, var(--solid-purple) 60%, var(--solid-teal) 100%);
  color: white;
}
.cart-sidebar-header h3-SKIP{ 
  background: linear-gradient(135deg, var(--solid-purple), var(--solid-teal));
  border-bottom: 3px solid var(--teal);
  color: white;
}
.cart-sidebar-header h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; display: flex; align-items: center; gap: 8px; }
.cart-sidebar-header h3 .lucide { width: 18px; height: 18px; }
.cart-close { background: rgba(255,255,255,0.12); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cart-close .lucide { width: 15px; height: 15px; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px; }
.cart-item { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-img {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: var(--gray-50); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-img .lucide { width: 24px; height: 24px; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.86rem; margin-bottom: 3px; }
.cart-item-price { color: var(--solid-pink); font-weight: 700; font-size: 0.88rem; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--gray-200);
  background: white; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--text-dark);
}
.qty-btn:hover { background: var(--solid-teal); color: white; border-color: var(--solid-teal); }
.qty-display { min-width: 22px; text-align: center; font-weight: 600; font-size: 0.88rem; }
.cart-item-remove { color: var(--text-light); background: none; border: none; cursor: pointer; padding: 4px; border-radius: 4px; transition: var(--transition); display: flex; align-items: center; }
.cart-item-remove:hover { color: var(--solid-teal); background: var(--gray-50); }
.cart-item-remove .lucide { width: 15px; height: 15px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }
.cart-empty .lucide { width: 48px; height: 48px; margin: 0 auto 14px; opacity: 0.4; }
.cart-footer { padding: 18px 22px; border-top: 1px solid var(--gray-100); background: var(--gray-50); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cart-subtotal span { font-weight: 600; font-size: 0.9rem; }
.cart-subtotal strong { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--solid-pink); }

/* ─── CHECKOUT ─── */
.checkout-section { padding: 60px 0; background: var(--surface); min-height: 100vh; }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.checkout-form-wrapper { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.checkout-summary { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 90px; }
.checkout-steps { display: flex; gap: 0; margin-bottom: 32px; }
.step { display: flex; align-items: center; flex: 1; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); color: var(--text-light);
  font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.step.active .step-dot { background: var(--solid-teal); color: white; }
.step.done .step-dot { background: #16a34a; color: white; }
.step-line { height: 2px; flex: 1; background: var(--gray-100); transition: var(--transition); }
.step.done .step-line { background: #16a34a; }
.section-sub-title {
  font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 600;
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100);
}
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.delivery-opt {
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 16px; cursor: pointer; transition: var(--transition); text-align: center;
}
.delivery-opt:hover { border-color: var(--purple-light); }
.delivery-opt.selected { border-color: var(--solid-teal); background: var(--gray-50); }
.delivery-opt .icon-wrap { width: 36px; height: 36px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; background: var(--gray-100); border-radius: 8px; color: var(--solid-teal); }
.delivery-opt .icon-wrap .lucide { width: 18px; height: 18px; }
.delivery-opt strong { display: block; font-size: 0.88rem; }
.delivery-opt em { font-style: normal; font-size: 0.76rem; color: var(--text-light); }
.payment-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.payment-opt { display: flex; align-items: center; gap: 12px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); padding: 14px 16px; cursor: pointer; transition: var(--transition); }
.payment-opt:hover { border-color: var(--purple-light); }
.payment-opt.selected { border-color: var(--solid-teal); background: var(--gray-50); }
.payment-opt input[type=radio] { accent-color: var(--solid-teal); }
.payment-opt-info strong { display: block; font-size: 0.88rem; }
.payment-opt-info span { font-size: 0.76rem; color: var(--text-light); }
.bank-details { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 16px; margin-top: 12px; font-size: 0.88rem; }
.bank-details p { margin-bottom: 6px; }
.order-summary-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.order-summary-item:last-child { border-bottom: none; }
.order-summary-img { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--gray-50); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--gray-400); }
.order-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-img .lucide { width: 22px; height: 22px; }
.order-summary-name { flex: 1; font-size: 0.87rem; font-weight: 500; }
.order-summary-price { font-weight: 700; color: var(--solid-pink); font-size: 0.9rem; }
.order-totals { margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--gray-100); }
.total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; }
.total-row.grand { font-weight: 700; font-size: 1.05rem; color: var(--solid-pink); border-top: 1px solid var(--gray-100); padding-top: 8px; margin-top: 4px; }

/* ─── INVOICE ─── */
.invoice-section { padding: 60px 0; background: var(--surface); min-height: 100vh; }
.invoice-wrapper { max-width: 800px; margin: 0 auto; }
.invoice-success-banner {
  background: #16a34a; color: white;
  padding: 20px 28px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(22,163,74,0.3);
}
.invoice-success-banner .lucide { width: 28px; height: 28px; flex-shrink: 0; }
.invoice-success-banner h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; }
.invoice-success-banner p { font-size: 0.86rem; opacity: 0.9; }
.invoice-doc { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.invoice-header {
  background: linear-gradient(135deg, var(--solid-purple) 0%, var(--solid-pink) 100%); color: white;
  border-bottom: 4px solid var(--teal);
  padding: 36px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.invoice-header-logo img { height: 50px; }
.invoice-header-title { text-align: right; }
.invoice-header-title h2 { font-family: 'Fraunces', serif; font-size: 2rem; margin-bottom: 6px; }
.invoice-header-title p { opacity: 0.7; font-size: 0.88rem; }
.invoice-body { padding: 40px; }
.invoice-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 32px; }
.invoice-meta-block strong { display: block; font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.invoice-meta-block p { font-size: 0.9rem; color: var(--text-dark); line-height: 1.7; }
.invoice-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.invoice-table th { background: var(--gray-50); padding: 12px 16px; text-align: left; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); border-bottom: 2px solid var(--gray-200); }
.invoice-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem; }
.invoice-table tr:last-child td { border-bottom: none; }
.invoice-totals { max-width: 280px; margin-left: auto; }
.invoice-total-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--gray-100); }
.invoice-total-row.final { font-weight: 700; font-size: 1.1rem; color: var(--solid-pink); border-top: 2px solid var(--gray-200); border-bottom: none; padding-top: 12px; }
.invoice-footer-note { background: var(--gray-50); padding: 24px 40px; border-top: 1px solid var(--gray-100); text-align: center; font-size: 0.84rem; color: var(--text-light); }
.invoice-actions { display: flex; gap: 12px; justify-content: center; margin-top: 28px; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--solid-dark);
  color: white; padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(254,216,113,0.30) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .badge { background: rgba(224,4,166,0.28); border: 1px solid rgba(224,4,166,0.5); color: #fbb6d9; }
.page-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { opacity: 0.78; font-size: 1.02rem; }

/* ─── SHOP CONTROLS ─── */
.shop-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.search-input-wrapper { position: relative; flex: 1; min-width: 200px; }
.search-input-wrapper input { width: 100%; padding: 11px 16px 11px 42px; border: 2px solid var(--gray-200); border-radius: 8px; font-family: inherit; transition: var(--transition); background: white; }
.search-input-wrapper input:focus { outline: none; border-color: var(--solid-teal); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); display: flex; }
.search-icon .lucide { width: 16px; height: 16px; }
.filter-select { padding: 11px 16px; border: 2px solid var(--gray-200); border-radius: 8px; font-family: inherit; background: white; color: var(--text-dark); cursor: pointer; transition: var(--transition); }
.filter-select:focus { outline: none; border-color: var(--solid-teal); }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 16px 0; font-size: 0.83rem; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--solid-teal); }
.breadcrumb span { color: var(--text-dark); font-weight: 500; }
.breadcrumb-sep { margin: 0 8px; color: var(--text-light); }

/* ─── FOOTER ─── */
.footer { background: var(--solid-dark); color: rgba(255,255,255,0.78); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 48px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.7);
}
.social-link .lucide { width: 16px; height: 16px; }
.social-link:hover { background: var(--solid-pink); color: white; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Fraunces', serif; font-size: 0.98rem; margin-bottom: 16px; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; opacity: 0.68; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { opacity: 1; color: var(--pink-light); }
.footer-col ul li a .lucide { width: 13px; height: 13px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; opacity: 0.55;
}

/* ─── TOAST ─── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: white; border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); border-left: 4px solid var(--solid-pink);
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500;
  min-width: 270px; transform: translateX(120%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateX(0); }
.toast.success { border-color: #16a34a; }
.toast.error { border-color: #dc2626; }
.toast-icon { display: flex; color: var(--solid-pink); flex-shrink: 0; }
.toast.success .toast-icon { color: #16a34a; }
.toast.error .toast-icon { color: #dc2626; }
.toast-icon .lucide { width: 18px; height: 18px; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg);
  width: 100%; max-width: 540px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.92); transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { padding: 22px 26px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; }
.modal-close { background: var(--gray-100); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-dark); transition: var(--transition); }
.modal-close:hover { background: var(--gray-200); }
.modal-close .lucide { width: 14px; height: 14px; }
.modal-body { padding: 26px; }

/* ─── ADMIN ─── */
.admin-login-section {
  min-height: 100vh;
  background: var(--solid-dark);
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
  position: relative; overflow: hidden;
}
.admin-login-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(224,4,166,0.25) 0%, transparent 55%);
}
.admin-login-card {
  background: white; border-radius: var(--radius-lg);
  padding: 48px 40px; width: 100%; max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45); text-align: center;
  position: relative; z-index: 1;
}
.admin-login-card img { height: 56px; margin: 0 auto 24px; }
.admin-login-card h2 { font-family: 'Fraunces', serif; font-size: 1.6rem; margin-bottom: 8px; }
.admin-login-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 32px; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 252px; background: var(--solid-dark); border-right: 3px solid var(--teal);
  color: white; padding: 0; flex-shrink: 0; display: flex; flex-direction: column;
}
.admin-sidebar-logo {
  padding: 26px 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 10px;
}
.admin-sidebar-logo img { height: 34px; border-radius: 6px; }
.admin-sidebar-logo span { font-family: 'Fraunces', serif; font-size: 0.88rem; opacity: 0.88; }
.admin-nav { flex: 1; padding: 14px 10px; display: flex; flex-direction: column; }
.admin-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.62); font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); margin-bottom: 3px;
}
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.1); color: white; }
.admin-nav-item .nav-icon { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; }
.admin-nav-item .nav-icon .lucide { width: 16px; height: 16px; }
.admin-content { flex: 1; background: var(--surface); display: flex; flex-direction: column; }
.admin-topbar {
  background: white; padding: 14px 26px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.admin-page-title { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; color: var(--solid-teal); }
.admin-user { display: flex; align-items: center; gap: 10px; }
.admin-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--solid-pink);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.82rem;
}
.admin-body { flex: 1; padding: 26px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); border-left: 4px solid transparent;
}
.stat-card:nth-child(1) { border-color: var(--solid-pink); }
.stat-card:nth-child(2) { border-color: var(--solid-purple); }
.stat-card:nth-child(3) { border-color: var(--gold); }
.stat-card:nth-child(4) { border-color: var(--teal); }
.stat-card-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin-bottom: 8px; }
.stat-card-value { font-family: 'Fraunces', serif; font-size: 1.75rem; font-weight: 700; color: var(--text-dark); }
.stat-card-trend { font-size: 0.75rem; color: #16a34a; margin-top: 4px; }
.admin-panel { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 22px; }
.admin-panel-header { padding: 18px 22px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: space-between; }
.admin-panel-header h3 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 11px 18px; text-align: left; font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.admin-table td { padding: 13px 18px; border-bottom: 1px solid var(--gray-50); font-size: 0.88rem; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.status-badge { display: inline-block; padding: 3px 10px; border-radius: 5px; font-size: 0.7rem; font-weight: 700; }
.status-pending    { background: #fef3c7; color: #b45309; }
.status-processing { background: #dbeafe; color: #1d4ed8; }
.status-completed  { background: #dcfce7; color: #15803d; }
.status-cancelled  { background: #fee2e2; color: #b91c1c; }
.action-btns { display: flex; gap: 6px; }
.action-btn { padding: 5px 12px; border-radius: 6px; font-size: 0.76rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; }
.action-btn-edit { background: var(--gray-100); color: var(--text-dark); }
.action-btn-edit:hover { background: var(--solid-teal); color: white; }
.action-btn-delete { background: #fee2e2; color: #b91c1c; }
.action-btn-delete:hover { background: #ef4444; color: white; }
.action-btn-view { background: var(--gray-100); color: var(--text-dark); }
.action-btn-view:hover { background: var(--solid-pink); color: white; }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.45s ease forwards; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-card { position: static; margin-top: 24px; display: inline-block; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 14px; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .invoice-meta-grid { grid-template-columns: 1fr; }
  .invoice-header { flex-direction: column; gap: 16px; text-align: center; }
  .invoice-header-title { text-align: center; }
  .admin-sidebar { display: none; }
  .admin-layout { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery-options { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-img { height: 160px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .cart-sidebar { width: 100%; right: -100%; }
}

@media print {
  .no-print { display: none !important; }
  .invoice-doc { box-shadow: none; }
  body { background: white; }
}