/* ==========================================================================
   TTS Group — E-commerce Stylesheet
   Brand: Orange + Blue + Green vibrant identity
   ========================================================================== */

/* ---------- 1. CSS RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Brand colors from logo */
  --brand-orange: #FF7A1A;
  --brand-orange-light: #FF9447;
  --brand-orange-dark: #E85D00;

  --brand-blue: #1976D2;
  --brand-blue-light: #42A5F5;
  --brand-blue-dark: #0D47A1;

  --brand-green: #43A047;
  --brand-green-light: #66BB6A;

  --brand-red: #E53935;
  --brand-yellow: #FFC107;

  /* Neutrals */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;
  --white:   #FFFFFF;

  /* Semantic */
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-tint: #FFF7F0;       /* very light orange tint */
  --border: #E5EAF1;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm: 0 2px 6px rgba(15,23,42,0.06);
  --shadow-md: 0 6px 18px rgba(15,23,42,0.08);
  --shadow-lg: 0 14px 40px rgba(15,23,42,0.12);
  --shadow-orange: 0 10px 30px rgba(255,122,26,0.35);
  --shadow-blue: 0 10px 30px rgba(25,118,210,0.30);

  /* Brand gradients */
  --grad-brand: linear-gradient(135deg, #1976D2 0%, #FF7A1A 100%);
  --grad-orange: linear-gradient(135deg, #FF9447 0%, #E85D00 100%);
  --grad-blue: linear-gradient(135deg, #42A5F5 0%, #0D47A1 100%);
  --grad-sunset: linear-gradient(135deg, #FFC107 0%, #FF7A1A 50%, #E53935 100%);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Layout */
  --container: 1280px;
  --header-h: 76px;
  --bottom-nav-h: 68px;
}

/* ---------- 3. UTILITY ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-orange { color: var(--brand-orange); }
.text-blue { color: var(--brand-blue); }
.text-muted { color: var(--ink-500); }
.fw-bold { font-weight: 700; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.hide-mobile { display: block; }
.show-mobile { display: none; }

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 { font-family: 'Sora', 'Plus Jakarta Sans', sans-serif; line-height: 1.2; color: var(--ink-900); font-weight: 700; }
h1 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.02em; }
h2 { font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -0.015em; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--grad-orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,122,26,0.45); }
.btn-secondary { background: var(--brand-blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-secondary:hover { transform: translateY(-2px); background: var(--brand-blue-dark); }
.btn-outline { background: transparent; color: var(--ink-900); border-color: var(--ink-300); }
.btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.btn-light { background: var(--white); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--ink-50); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- 6. TOP ANNOUNCEMENT BAR ---------- */
.announce {
  background: linear-gradient(90deg, #0D47A1 0%, #1976D2 50%, #FF7A1A 100%);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
}
.announce strong { font-weight: 700; }

/* ---------- 7. HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; padding: 4px 0; }
.logo-link img { display: block; height: 52px; width: auto; }

.nav-main { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-main a {
  position: relative;
  padding: 10px 16px; border-radius: var(--r-md);
  font-weight: 600; font-size: 14px; color: var(--ink-700);
  transition: all .2s;
}
.nav-main a:hover { color: var(--brand-orange); background: var(--bg-tint); }
.nav-main a.active { color: var(--brand-orange); }
.nav-main a.active::after {
  content: ''; position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 3px; background: var(--brand-orange); border-radius: 3px;
}

/* Search */
.search-box {
  flex: 1; max-width: 480px;
  position: relative;
  display: flex; align-items: center;
  background: var(--ink-50); border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  padding: 0 8px 0 20px;
  transition: all .2s;
}
.search-box:focus-within { border-color: var(--brand-orange); background: var(--white); box-shadow: var(--shadow-sm); }
.search-box svg { width: 18px; height: 18px; color: var(--ink-500); flex-shrink: 0; }
.search-box input {
  flex: 1; border: none; background: transparent; outline: none;
  padding: 12px 14px; font-size: 14px;
}
.search-btn {
  padding: 8px 18px; background: var(--brand-orange); color: var(--white);
  border-radius: var(--r-pill); font-weight: 600; font-size: 13px;
}
.search-btn:hover { background: var(--brand-orange-dark); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.icon-btn {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: var(--r-md);
  color: var(--ink-700); font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.icon-btn:hover { background: var(--bg-tint); color: var(--brand-orange); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn .badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--brand-red); color: var(--white);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}

/* Login CTA — prominent pill button next to logo */
.login-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px;
  background: linear-gradient(135deg, #FFF1E6 0%, #FFE3D1 100%);
  border: 1.5px solid rgba(255,122,26,0.25);
  border-radius: 999px;
  font-weight: 700; font-size: 13px;
  color: var(--ink-900);
  transition: all .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.login-cta:hover {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}
.login-cta:hover .login-cta-avatar {
  background: var(--white);
  color: var(--brand-orange);
}
.login-cta:hover .login-cta-sub { color: rgba(255,255,255,0.85); }
.login-cta-avatar {
  width: 30px; height: 30px;
  background: var(--grad-orange);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all .25s;
}
.login-cta-avatar svg { width: 16px; height: 16px; stroke-width: 2.2; }
.login-cta-text { display: flex; flex-direction: column; line-height: 1.15; }
.login-cta-main { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px; }
.login-cta-sub { font-size: 10px; font-weight: 500; color: var(--ink-500); transition: color .2s; }

/* Mobile menu trigger */
.menu-trigger { display: none; padding: 8px; }
.menu-trigger svg { width: 26px; height: 26px; }

/* ---------- 8. HERO BANNER SLIDER ---------- */
.hero {
  padding: 16px 0 8px;
  position: relative;
}
.hero-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: 300px;
  padding: 40px 8% 48px 8%;
  display: none;
  align-items: center;
  background: var(--grad-brand);
  color: var(--white);
}
.hero-slide.active { display: flex; }
.hero-slide.bg-orange { background: linear-gradient(135deg, #FF9447 0%, #E53935 100%); }
.hero-slide.bg-green { background: linear-gradient(135deg, #43A047 0%, #1976D2 100%); }
.hero-slide.bg-night { background: linear-gradient(135deg, #0D47A1 0%, #1A237E 100%); }

.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 540px; }
.hero-content .eyebrow {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  padding: 5px 12px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  font-size: 11px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 12px;
}
.hero-content h1 span { color: var(--brand-yellow); display: inline-block; }
.hero-content p {
  font-size: 15px; opacity: 0.95;
  margin-bottom: 20px; max-width: 440px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
}
.hero-visual .blob {
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-visual .badge-circle {
  position: absolute; top: 20px; right: 40px;
  width: 84px; height: 84px;
  background: var(--brand-yellow); color: var(--ink-900);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; text-align: center; line-height: 1.1;
  box-shadow: var(--shadow-lg);
  transform: rotate(-12deg);
  animation: pulse 2s ease-in-out infinite;
}
.hero-visual .badge-circle .big { font-size: 20px; }

@keyframes pulse {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-12deg) scale(1.05); }
}

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 6px;
}
.hero-dots button {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%; transition: all .25s;
}
.hero-dots button.active {
  width: 26px;
  background: var(--white);
  border-radius: var(--r-pill);
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.9); color: var(--ink-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-arrow svg { width: 18px; height: 18px; }

/* ---------- 9. TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 4px;
}
.trust-item .ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.trust-item .ico svg { width: 22px; height: 22px; color: var(--brand-orange); }
.trust-item:nth-child(2) .ico svg { color: var(--brand-blue); }
.trust-item:nth-child(3) .ico svg { color: var(--brand-green); }
.trust-item:nth-child(4) .ico svg { color: var(--brand-red); }
.trust-item h4 { font-size: 14px; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--ink-500); }

/* ---------- 10. SECTION ---------- */
.section { padding: 56px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.section-head h2 { font-size: 28px; }
.section-head p { color: var(--ink-500); font-size: 14px; margin-top: 4px; }
.section-head .view-all {
  font-size: 14px; font-weight: 600; color: var(--brand-orange);
  display: inline-flex; align-items: center; gap: 6px;
}
.section-head .view-all:hover { gap: 10px; }
.section-head .view-all svg { width: 16px; height: 16px; }

/* ---------- 11. CATEGORY GRID ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 14px 20px;
  background: var(--card-tint, var(--bg-tint));
  border-radius: 22px;
  text-align: center;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: var(--card-grad, var(--grad-brand));
  opacity: 0;
  transition: opacity .35s;
  z-index: 0;
}
.cat-card::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--card-grad, var(--grad-brand));
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(2px);
  z-index: 0;
  transition: all .35s;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover::after { opacity: 0; }
.cat-card:hover .cat-icon, .cat-card:hover .cat-name { color: var(--white); }
.cat-card:hover .cat-count { background: rgba(255,255,255,0.25); color: var(--white); border-color: transparent; }
.cat-card:hover .cat-icon-wrap {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  transform: scale(1.08);
}

.cat-icon-wrap {
  position: relative; z-index: 1;
  width: 76px; height: 76px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.cat-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--card-tint, var(--bg-tint));
  opacity: 0.5;
  z-index: 0;
}
.cat-icon { font-size: 36px; line-height: 1; transition: all .3s; position: relative; z-index: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.cat-name { position: relative; z-index: 1; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-900); transition: color .3s; letter-spacing: -.01em; }
.cat-count {
  position: relative; z-index: 1;
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-600);
  transition: all .3s;
}

/* Category color variants — soft tinted backgrounds with rich gradients on hover */
.cat-card.c1 { --card-tint: #FFE8D6; --card-grad: linear-gradient(135deg,#FF9447,#E85D00); }
.cat-card.c2 { --card-tint: #DCEEFF; --card-grad: linear-gradient(135deg,#42A5F5,#0D47A1); }
.cat-card.c3 { --card-tint: #DCF1DD; --card-grad: linear-gradient(135deg,#66BB6A,#2E7D32); }
.cat-card.c4 { --card-tint: #FCD9E5; --card-grad: linear-gradient(135deg,#EC407A,#AD1457); }
.cat-card.c5 { --card-tint: #FFF1C2; --card-grad: linear-gradient(135deg,#FFC107,#F57F17); }
.cat-card.c6 { --card-tint: #E2D8F5; --card-grad: linear-gradient(135deg,#7E57C2,#4527A0); }

/* View All Categories button — centered below grid */
.view-all-cats {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 28px auto 0;
  padding: 12px 28px;
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: 999px;
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--ink-900);
  transition: all .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.view-all-cats:hover {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.view-all-cats svg { width: 16px; height: 16px; transition: transform .25s; }
.view-all-cats:hover svg { transform: translateX(4px); }
.view-all-wrap { text-align: center; margin-top: 8px; }

/* ---------- 12. PROMO DOUBLE BANNER ---------- */
.promo-double {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; padding: 24px 0;
}
.promo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 36px 32px;
  min-height: 220px;
  display: flex; align-items: center;
  color: var(--white);
}
.promo-card.bg-blue { background: var(--grad-blue); }
.promo-card.bg-orange { background: var(--grad-orange); }
.promo-card::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.promo-card::before {
  content: ''; position: absolute; right: 30px; bottom: -50px;
  width: 140px; height: 140px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.promo-card .content { position: relative; z-index: 2; max-width: 60%; }
.promo-card .small-tag {
  display: inline-block; padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.22); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.promo-card h3 {
  color: var(--white); font-size: 28px; font-weight: 800; line-height: 1.1;
  margin: 12px 0 6px;
}
.promo-card p { opacity: 0.92; font-size: 14px; margin-bottom: 18px; }
.promo-card .btn { background: var(--white); color: var(--ink-900); padding: 10px 20px; }
.promo-card .btn:hover { transform: translateY(-2px); }

/* ---------- 13. PRODUCT GRID ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .25s;
}
.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-50);
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.07); }

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge-tag {
  padding: 5px 10px;
  border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 4px;
}
.badge-tag.discount { background: var(--brand-red); color: var(--white); }
.badge-tag.new { background: var(--brand-green); color: var(--white); }
.badge-tag.bestseller { background: var(--brand-yellow); color: var(--ink-900); }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  z-index: 2;
}
.wishlist-btn svg { width: 18px; height: 18px; color: var(--ink-500); transition: all .2s; }
.wishlist-btn:hover svg, .wishlist-btn.active svg { color: var(--brand-red); fill: var(--brand-red); }

.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  padding: 10px 14px;
  background: var(--ink-900); color: var(--white);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: all .25s;
  z-index: 2;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--brand-orange); }
.quick-add svg { width: 16px; height: 16px; }

.product-info { padding: 14px 14px 16px; }
.product-cat {
  font-size: 11px; font-weight: 600; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px; font-weight: 600; color: var(--ink-900);
  margin-bottom: 8px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-now { font-size: 16px; font-weight: 800; color: var(--ink-900); font-family: 'Sora', sans-serif; }
.price-mrp { font-size: 13px; color: var(--ink-400); text-decoration: line-through; }
.price-off { font-size: 12px; font-weight: 700; color: var(--brand-green); }

.product-rating {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px;
  background: var(--brand-green); color: var(--white);
  padding: 2px 7px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
}
.product-rating svg { width: 11px; height: 11px; fill: var(--white); }

/* ---------- 14. DEAL OF THE DAY (with countdown) ---------- */
.deal-section {
  background: linear-gradient(135deg, #FFF7F0 0%, #FFE0D6 100%);
  position: relative;
  overflow: hidden;
}
.deal-section::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,122,26,0.18), transparent 70%);
  border-radius: 50%;
}
.deal-head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
  position: relative; z-index: 2;
}
.deal-head h2 {
  display: flex; align-items: center; gap: 12px;
  font-size: 28px;
}
.deal-head h2 .fire { font-size: 32px; }

.countdown {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  padding: 10px 14px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.countdown .label { font-size: 12px; color: var(--ink-500); font-weight: 600; }
.countdown .timer { display: flex; align-items: center; gap: 4px; }
.countdown .unit {
  background: var(--ink-900); color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700; font-size: 14px;
  padding: 5px 9px; border-radius: var(--r-sm);
  min-width: 32px; text-align: center;
}
.countdown .sep { font-weight: 800; color: var(--ink-700); }

/* ---------- 15. FEATURED BANNER ---------- */
.featured-banner {
  margin: 36px 0;
  background: var(--grad-brand);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  display: flex; align-items: center;
  min-height: 240px;
  padding: 40px;
  color: var(--white);
}
.featured-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,193,7,0.4), transparent 50%);
}
.featured-banner .content { position: relative; z-index: 2; max-width: 500px; }
.featured-banner h2 {
  color: var(--white); font-size: 36px; font-weight: 800;
  line-height: 1.05; margin-bottom: 12px;
}
.featured-banner h2 .yellow { color: var(--brand-yellow); }
.featured-banner p { opacity: 0.95; margin-bottom: 22px; font-size: 16px; }
.featured-banner .btn { background: var(--white); color: var(--ink-900); }
.featured-banner .deco {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  font-size: 180px; opacity: 0.18;
  z-index: 1;
}

/* ---------- 16. NEWSLETTER ---------- */
.newsletter {
  background: var(--ink-900);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,122,26,0.15), transparent 60%);
}
.news-inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto; text-align: center;
}
.newsletter h2 { color: var(--white); font-size: 28px; margin-bottom: 8px; }
.newsletter p { opacity: 0.75; margin-bottom: 24px; }
.news-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.news-form input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--white);
  padding: 12px 18px; font-size: 14px;
}
.news-form input::placeholder { color: rgba(255,255,255,0.55); }

/* ---------- 17. FOOTER ---------- */
.footer {
  background: #0A0F1C;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 56px; background: var(--white); padding: 10px; border-radius: var(--r-md); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-row a:hover { background: var(--brand-orange); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }

.footer h4 {
  color: var(--white); font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--brand-orange); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--brand-orange); margin-top: 4px; flex-shrink: 0; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; gap: 16px; flex-wrap: wrap;
}
.payment-icons { display: flex; gap: 10px; align-items: center; opacity: 0.85; }
.payment-icons span {
  background: var(--white); color: var(--ink-900);
  padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700;
}

/* ---------- 18. MOBILE BOTTOM NAV (App-style) ---------- */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 8px 4px max(8px, env(safe-area-inset-bottom)) 4px;
}
.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.bnav-item {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-500);
  border-radius: var(--r-md);
  transition: all .25s;
}
.bnav-item .ico-wrap {
  position: relative;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.bnav-item svg {
  width: 22px; height: 22px;
  stroke-width: 2;
  transition: all .2s;
}
.bnav-item .badge {
  position: absolute; top: -4px; right: -8px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--brand-red); color: var(--white);
  border-radius: var(--r-pill);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.bnav-item.active {
  color: var(--brand-orange);
}
.bnav-item.active .ico-wrap::before {
  content: '';
  position: absolute; inset: -4px -10px;
  background: var(--bg-tint);
  border-radius: var(--r-pill);
  z-index: -1;
}
/* Special "Category" pill — colorful even when not active */
.bnav-item.cat-tab .ico-wrap {
  background: linear-gradient(135deg, #FFF1E6 0%, #FFE3D1 100%);
  border-radius: 12px;
  width: 36px; height: 36px;
  box-shadow: 0 2px 6px rgba(255,122,26,0.18);
}
.bnav-item.cat-tab svg { width: 20px; height: 20px; color: var(--brand-orange); stroke-width: 2.2; }
.bnav-item.cat-tab.active .ico-wrap {
  background: var(--grad-orange);
  box-shadow: 0 4px 12px rgba(255,122,26,0.35);
}
.bnav-item.cat-tab.active .ico-wrap::before { display: none; }
.bnav-item.cat-tab.active svg { color: var(--white); }
.bnav-item.cat-tab .cat-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.bnav-item.center {
  margin-top: -22px;
}
.bnav-item.center .ico-wrap {
  width: 52px; height: 52px;
  background: var(--grad-orange);
  border-radius: 50%;
  box-shadow: var(--shadow-orange);
  border: 4px solid var(--white);
}
.bnav-item.center svg { width: 24px; height: 24px; color: var(--white); }
.bnav-item.center { color: var(--ink-900); }

/* ---------- 19. PRODUCT DETAIL PAGE ---------- */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px; color: var(--ink-500);
}
.breadcrumb a:hover { color: var(--brand-orange); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

.pd-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 24px 0 60px;
}
.pd-gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.pd-main-img {
  aspect-ratio: 4/5;
  background: var(--ink-50);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.pd-thumb {
  aspect-ratio: 1;
  background: var(--ink-50);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color .2s;
}
.pd-thumb.active { border-color: var(--brand-orange); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-info h1 { font-size: 28px; margin-bottom: 10px; }
.pd-info .meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--ink-500); margin-bottom: 18px; }
.pd-info .price-row { display: flex; align-items: baseline; gap: 12px; margin: 14px 0; flex-wrap: wrap; }
.pd-info .price-row .price-now { font-size: 30px; }
.pd-info .price-row .price-mrp { font-size: 17px; }
.pd-info .price-row .price-off { font-size: 14px; }
.pd-info .desc { color: var(--ink-700); line-height: 1.7; margin: 16px 0; font-size: 14px; }

.opt-block { margin: 22px 0; }
.opt-block h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.opt-block h4 .selected { color: var(--ink-500); font-weight: 500; text-transform: none; letter-spacing: 0; }

.size-row, .color-row { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pill {
  padding: 10px 18px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  background: var(--white);
}
.size-pill:hover { border-color: var(--brand-orange); }
.size-pill.active { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.size-pill.disabled { color: var(--ink-300); text-decoration: line-through; pointer-events: none; }

.color-swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  outline: 2px solid var(--ink-200);
  cursor: pointer; transition: outline-color .2s;
}
.color-swatch.active { outline-color: var(--brand-orange); outline-width: 3px; }

.qty-pd { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--ink-200); border-radius: var(--r-md); width: fit-content; overflow: hidden; }
.qty-pd button { width: 38px; height: 38px; font-size: 18px; font-weight: 700; color: var(--ink-700); }
.qty-pd button:hover { background: var(--ink-100); }
.qty-pd input { width: 48px; height: 38px; text-align: center; border: none; outline: none; font-weight: 700; }

.pd-actions { display: flex; gap: 12px; margin-top: 24px; }
.pd-actions .btn { flex: 1; padding: 16px 24px; }

.pd-features {
  background: var(--bg-soft);
  border-radius: var(--r-lg);
  padding: 18px;
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.pd-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.pd-feat svg { width: 18px; height: 18px; color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }

/* ---------- 20. CART ---------- */
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; padding: 24px 0 48px; }
.cart-list { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 16px;
  padding: 18px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 100px; aspect-ratio: 1; background: var(--ink-50); border-radius: var(--r-md); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 { font-size: 15px; margin-bottom: 4px; }
.cart-item-info .meta { font-size: 12px; color: var(--ink-500); margin-bottom: 8px; }
.cart-item-info .price { font-size: 15px; font-weight: 800; font-family: 'Sora', sans-serif; }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-remove { color: var(--ink-500); font-size: 13px; padding: 4px; }
.cart-remove:hover { color: var(--brand-red); }

.qty-mini { display: flex; align-items: center; border: 1px solid var(--ink-200); border-radius: var(--r-pill); }
.qty-mini button { width: 30px; height: 30px; font-weight: 700; color: var(--ink-700); }
.qty-mini span { padding: 0 12px; font-weight: 700; }

.cart-summary {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px; height: fit-content; position: sticky; top: calc(var(--header-h) + 20px);
}
.cart-summary h3 { font-size: 18px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.total {
  border-top: 1px dashed var(--border);
  padding-top: 14px; margin-top: 8px;
  font-size: 18px; font-weight: 800; font-family: 'Sora', sans-serif;
}
.summary-row .green { color: var(--brand-green); font-weight: 700; }

.coupon-box {
  display: flex; gap: 6px; margin: 16px 0;
  background: var(--bg-soft);
  padding: 6px;
  border-radius: var(--r-md);
}
.coupon-box input { flex: 1; border: none; background: transparent; outline: none; padding: 8px 12px; font-size: 13px; }
.coupon-box button { padding: 8px 14px; background: var(--ink-900); color: var(--white); border-radius: var(--r-sm); font-size: 13px; font-weight: 600; }

/* ---------- 21. EMPTY STATE ---------- */
.empty-state { padding: 80px 24px; text-align: center; }
.empty-state .ico { font-size: 80px; margin-bottom: 12px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--ink-500); margin-bottom: 24px; }

/* ---------- 22. SHOP/LISTING PAGE ---------- */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 24px 0 48px; }
.filter-panel { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.filter-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; margin-bottom: 16px; }
.filter-block h4 { font-size: 14px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-list label { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.filter-list input[type=checkbox] { accent-color: var(--brand-orange); }
.shop-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.shop-bar select { padding: 8px 14px; border: 1.5px solid var(--ink-200); border-radius: var(--r-md); font-weight: 600; outline: none; }

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .shop-layout { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .hide-mobile { display: none !important; }
  .show-mobile { display: inline-flex !important; }
  .menu-trigger { display: inline-flex; }

  /* New mobile header layout: logo (left) — actions + hamburger (right) */
  .header-inner { gap: 8px; padding: 0 14px; }
  .logo-link { margin-right: auto; }
  .logo-link img { height: 48px; width: auto; display: block; }
  .nav-main { display: none; }
  .header-actions { gap: 2px; }
  .header-actions .icon-btn { padding: 8px; }
  .header-actions .icon-btn span:not(.badge) { display: none; }
  .header-actions .icon-btn svg { width: 22px; height: 22px; }
  .menu-trigger { padding: 8px; margin-left: 2px; }
  .menu-trigger svg { width: 24px; height: 24px; }

  body { padding-bottom: var(--bottom-nav-h); }
  .bottom-nav { display: block; }

  .section { padding: 36px 0; }
  .section-head h2 { font-size: 22px; }

  .hero { padding: 10px 0 4px; }
  .hero-slide { padding: 26px 22px 36px; min-height: 230px; border-radius: 18px; }
  .hero-content h1 { font-size: 24px; margin: 8px 0 8px; }
  .hero-content p { font-size: 13px; margin-bottom: 14px; }
  .hero-cta .btn { padding: 10px 18px; font-size: 13px; }
  .hero-visual { display: none; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 12px; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-item .ico { width: 38px; height: 38px; }
  .trust-item h4 { font-size: 13px; }
  .trust-item p { font-size: 11px; }

  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cat-card { padding: 18px 8px 14px; border-radius: 18px; }
  .cat-icon-wrap { width: 60px; height: 60px; margin-bottom: 10px; }
  .cat-icon { font-size: 28px; }
  .cat-name { font-size: 12px; }
  .cat-count { font-size: 10px; padding: 2px 8px; margin-top: 6px; }
  .view-all-cats { padding: 10px 22px; font-size: 13px; }

  /* Login CTA on mobile — hide entirely (Account is in bottom nav) */
  .login-cta { display: none; }

  .promo-double { grid-template-columns: 1fr; gap: 12px; }
  .promo-card { padding: 28px 22px; min-height: 180px; }
  .promo-card h3 { font-size: 22px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .price-now { font-size: 15px; }
  .quick-add { opacity: 1; transform: none; padding: 8px 12px; font-size: 12px; }

  .deal-head { flex-direction: column; align-items: flex-start; }

  .featured-banner { padding: 28px 22px; min-height: auto; }
  .featured-banner h2 { font-size: 24px; }

  .footer { padding: 40px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Product detail */
  .pd-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-gallery { position: static; }
  .pd-features { grid-template-columns: 1fr; }

  /* Cart */
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-img { width: 80px; }
  .cart-item-side { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: none; }
  .filter-panel.open { display: block; }

  .news-form { flex-direction: column; padding: 8px; border-radius: var(--r-lg); }
  .news-form input { text-align: center; padding: 14px; }
  .news-form button { width: 100%; }
}

@media (max-width: 480px) {
  .product-info { padding: 10px; }
  .price-now { font-size: 14px; }
  .price-mrp { font-size: 11px; }
  .price-off { font-size: 11px; }
  .badge-tag { font-size: 10px; padding: 3px 7px; }
  .pd-info h1 { font-size: 22px; }
  .pd-actions { flex-direction: column; }
}

/* ---------- 24. ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp .6s ease forwards; }
.fade-up.d1 { animation-delay: .1s; opacity: 0; }
.fade-up.d2 { animation-delay: .2s; opacity: 0; }
.fade-up.d3 { animation-delay: .3s; opacity: 0; }

/* ---------- 25. MOBILE DRAWER MENU ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; left: -300px; bottom: 0;
  width: 280px;
  background: var(--white);
  z-index: 201;
  transition: left .3s ease;
  display: flex; flex-direction: column;
}
.drawer.open { left: 0; }
.drawer-head {
  padding: 18px;
  background: var(--grad-brand);
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-head img { height: 38px; }
.drawer-head .close { color: var(--white); font-size: 24px; }
.drawer-body { padding: 16px; overflow-y: auto; flex: 1; }
.drawer-body a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--r-md);
  font-weight: 600; color: var(--ink-700);
  margin-bottom: 4px;
}
.drawer-body a:hover, .drawer-body a.active { background: var(--bg-tint); color: var(--brand-orange); }
.drawer-body a svg { width: 18px; height: 18px; }
.drawer-divider { height: 1px; background: var(--border); margin: 12px 0; }
