/* ============================================================
   HEXAGON SEAFOODS LIMITED — Design System
   Palette: Option A — Midnight Warmth
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── Tokens ────────────────────────────────── */
:root {
  /* Brand */
  --red:        #CE2027;
  --red-dark:   #A01820;
  --red-pale:   #F9EAE8;

  /* Darks */
  --ink:        #1C1510;
  --ink-mid:    #261E18;
  --ink-light:  #342A22;
  --charcoal:   #4A3F38;

  /* Lights */
  --cream:      #F9F4EE;
  --cream-mid:  #F2EBE2;
  --stone:      #EDE5DA;
  --stone-dark: #DDD1C2;

  /* Text */
  --text:       #1C1510;
  --text-mid:   #4A3F38;
  --muted:      #7A6E67;
  --white:      #FFFFFF;

  /* Warm brown accent */
  --warm:       #A07850;
  --warm-light: #C49A6C;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --section: 5rem;
  --radius:  2px;

  /* Motion */
  --ease:    cubic-bezier(0.25,0.46,0.45,0.94);
  --dur:     0.32s;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────── */
.t-display { font-family: var(--serif); font-size: clamp(3.2rem,7vw,6.5rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.02em; }
.t-h1      { font-family: var(--serif); font-size: clamp(2.2rem,4.5vw,4rem);  font-weight: 300; line-height: 1.1;  letter-spacing: -0.015em; }
.t-h2      { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.8rem);  font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
.t-h3      { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; line-height: 1.2; }
.t-eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.t-body    { font-size: 1.05rem; line-height: 1.75; font-weight: 300; }
.t-small   { font-size: 0.82rem; line-height: 1.6; }
.t-label   { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }

/* ─── Page loader ────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease);
}
#pageLoader.out { opacity: 0; pointer-events: none; }
.loader-hex {
  width: 3rem; height: 3rem;
  background: var(--red);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  animation: hexPulse 1.2s ease-in-out infinite;
}
@keyframes hexPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.15);opacity:0.75} }

/* ─── Navigation ─────────────────────────────── */
.nav-main {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--dur) var(--ease);
}
.nav-main.scrolled {
  background: rgba(28,21,16,0.96);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-brand .hex-icon {
  width: 1.8rem; height: 1.8rem;
  background: var(--red);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-link {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.5rem 1.1rem;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1px; background: var(--red);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cart {
  position: relative;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--dur) var(--ease);
}
.nav-cart:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.cart-badge {
  position: absolute; top: -0.4rem; right: -0.4rem;
  width: 1.1rem; height: 1.1rem;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 0.65rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.7)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── Buttons ────────────────────────────────── */
.btn-red {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--red); color: var(--white);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border: none; cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(206,32,39,0.35); }

.btn-cream {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--white);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border: 1px solid rgba(249,244,238,0.3);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-cream:hover { border-color: rgba(249,244,238,0.7); background: rgba(249,244,238,0.08); color: var(--white); }

.btn-ink {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ink); color: var(--white);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.875rem 1.875rem;
  border: 1px solid var(--ink); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-ink:hover { background: var(--ink-light); color: var(--white); }

.btn-outline-ink {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--text);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.875rem 1.875rem;
  border: 1px solid var(--stone-dark); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-outline-ink:hover { border-color: var(--ink); color: var(--ink); }

.btn-block { width: 100%; justify-content: center; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
  filter: saturate(0.5) brightness(0.5);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,21,16,0.95) 0%, rgba(28,21,16,0.8) 55%, rgba(160,120,80,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 8rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--red); }
.hero-headline { color: var(--cream); margin-bottom: 1.5rem; }
.hero-headline em { font-style: italic; color: var(--warm-light); }
.hero-sub { color: rgba(249,244,238,0.6); max-width: 36rem; margin-bottom: 2.75rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hexagon pattern overlay */
.hero-hex-pattern {
  position: absolute; right: -5%; top: 10%;
  width: 55%; aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(206,32,39,0.07) 1px, transparent 1px);
  background-size: 3rem 3rem;
  opacity: 0.6;
  z-index: 1;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; text-align: center;
}
.scroll-cue span { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; }
.scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom,rgba(206,32,39,0.6),transparent); margin: 0 auto; animation: scrollFade 2s ease-in-out infinite; }
@keyframes scrollFade { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ─── Sections ───────────────────────────────── */
.section    { padding: var(--section) 0; }
.section-sm { padding: 3rem 0; }
.section-bg-cream { background: var(--cream); }
.section-bg-cream-mid { background: var(--cream-mid); }
.section-bg-ink { background: var(--ink); }

.divider-red { width: 2.5rem; height: 2px; background: var(--red); margin: 1.25rem 0; }
.divider-red.centered { margin-left: auto; margin-right: auto; }

/* ─── Stats bar ──────────────────────────────── */
.stats-bar { background: var(--red); padding: 1.25rem 0; }
.stat-item { padding: 0.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.2); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }

/* ─── Product cards ──────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--stone);
  display: flex; flex-direction: column;
  transition: all var(--dur) var(--ease);
  position: relative;
}
.product-card:hover {
  border-color: var(--stone-dark);
  box-shadow: 0 10px 40px rgba(28,21,16,0.1);
  transform: translateY(-3px);
}
.product-card-img {
  aspect-ratio: 4/3;
  background: var(--cream-mid);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 0.875rem; left: 0.875rem;
  background: var(--red); color: var(--white);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}
.product-card-badge.featured { background: var(--warm); }
.product-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card-cat { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.product-card-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.6rem; line-height: 1.2; }
.product-card-price { font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.product-card-price .per { font-size: 0.68rem; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.product-card-compare { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.product-card-stock { font-size: 0.72rem; color: var(--muted); margin: 0.4rem 0 1.1rem; }
.product-card-stock.low { color: #b91c1c; }
.product-card-actions { margin-top: auto; display: flex; gap: 0.6rem; }

/* Qty control */
.qty-ctl { display: flex; align-items: center; border: 1px solid var(--stone); }
.qty-btn { width: 2.1rem; height: 2.1rem; border: none; background: none; font-size: 1rem; cursor: pointer; color: var(--ink); transition: background var(--dur) var(--ease); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--cream); }
.qty-inp { width: 2.5rem; height: 2.1rem; border: none; text-align: center; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink); background: none; outline: none; }
.qty-inp::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ─── Category cards ─────────────────────────── */
.cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(0.65) brightness(0.55); transition: transform 0.7s var(--ease), filter 0.5s var(--ease); }
.cat-card:hover .cat-card-bg { transform: scale(1.06); filter: saturate(0.85) brightness(0.45); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,21,16,0.85) 0%,transparent 60%); }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; color: var(--white); }
.cat-card-name { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; margin-bottom: 0.2rem; }
.cat-card-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cat-card-arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 2.25rem; height: 2.25rem; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transform: translateX(-0.5rem); transition: all var(--dur) var(--ease); }
.cat-card:hover .cat-card-arrow { opacity: 1; transform: translateX(0); }

/* ─── Trust section ──────────────────────────── */
.trust-card { padding: 2.25rem; border: 1px solid rgba(255,255,255,0.07); text-align: center; position: relative; overflow: hidden; transition: all var(--dur) var(--ease); }
.trust-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(206,32,39,0.06),transparent); opacity: 0; transition: opacity var(--dur) var(--ease); }
.trust-card:hover::before { opacity: 1; }
.trust-card:hover { border-color: rgba(206,32,39,0.25); }
.trust-val { font-family: var(--serif); font-size: 3.25rem; font-weight: 300; color: var(--red); line-height: 1; margin-bottom: 0.6rem; }
.trust-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem; }
.trust-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ─── Testimonials ───────────────────────────── */
.testimonial { padding: 2.25rem; background: var(--white); border: 1px solid var(--stone); position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--serif); font-size: 4.5rem; color: var(--cream-mid); position: absolute; top: 0.75rem; left: 1.25rem; line-height: 1; }
.testimonial-text { font-family: var(--serif); font-size: 1.1rem; font-style: italic; font-weight: 400; color: var(--ink); line-height: 1.65; margin-top: 1.5rem; margin-bottom: 1.25rem; }
.testimonial-name { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.testimonial-role { font-size: 0.7rem; color: var(--red); margin-top: 0.2rem; }

/* ─── Forms ──────────────────────────────────── */
.field-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.5rem; }
.field-input {
  width: 100%;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  padding: 0.85rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  border-radius: 0;
  transition: border-color var(--dur) var(--ease);
}
.field-input:focus { border-color: var(--red); }
.field-input.error { border-color: #dc2626; }
textarea.field-input { resize: vertical; min-height: 6rem; }
select.field-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E67' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ─── Cart ───────────────────────────────────── */
.cart-header { background: var(--ink); padding: 7rem 0 2.5rem; }
.cart-table th { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); border: none; border-bottom: 1px solid var(--stone); padding: 0.875rem 1.25rem; }
.cart-table td { padding: 1.4rem 1.25rem; border: none; border-bottom: 1px solid var(--stone); vertical-align: middle; }
.cart-product-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ink); }
.cart-summary { background: var(--cream); border: 1px solid var(--stone); padding: 2.25rem; position: sticky; top: 5.5rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--stone); font-size: 0.875rem; }
.summary-row:last-of-type { border-bottom: none; }
.summary-total { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); }

/* ─── Newsletter ─────────────────────────────── */
.newsletter-section { background: var(--ink-mid); padding: 4rem 0; }
.newsletter-inner { max-width: 34rem; margin: 0 auto; text-align: center; }

/* ─── Footer ─────────────────────────────────── */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.footer-heading { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--dur) var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 2.1rem; height: 2.1rem; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: all var(--dur) var(--ease); }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 3.1rem; height: 3.1rem; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.35rem; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all var(--dur) var(--ease); }
.wa-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ─── Toast ──────────────────────────────────── */
.toast-wrap { position: fixed; top: 5.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.6rem; }
.toast { background: var(--ink); color: var(--white); padding: 0.875rem 1.4rem; font-size: 0.82rem; border-left: 3px solid var(--red); max-width: 20rem; animation: toastIn 0.3s var(--ease) forwards; }
.toast.success { border-left-color: #16a34a; }
.toast.error   { border-left-color: #dc2626; }
.toast.info    { border-left-color: var(--warm); }
@keyframes toastIn { from{opacity:0;transform:translateX(1rem)} to{opacity:1;transform:translateX(0)} }

/* ─── Fade up animations ─────────────────────── */
.fade-up { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ─── Status badges ──────────────────────────── */
.badge-status { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 0; }
.badge-pending    { background:#fef9c3;color:#854d0e; }
.badge-paid       { background:#dcfce7;color:#166534; }
.badge-processing { background:#dbeafe;color:#1e40af; }
.badge-dispatched { background:#e0e7ff;color:#3730a3; }
.badge-delivered  { background:#d1fae5;color:#065f46; }
.badge-cancelled  { background:#fee2e2;color:#991b1b; }
.badge-refunded   { background:#f3e8ff;color:#6b21a8; }

/* ─── Admin sidebar ──────────────────────────── */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--ink); position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 900; display: flex; flex-direction: column; }
.admin-content { margin-left: 240px; flex: 1; background: var(--cream); min-height: 100vh; }
.admin-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.4rem; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: all 0.22s; border-left: 2px solid transparent; }
.admin-nav-link:hover, .admin-nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); border-left-color: var(--red); }
.admin-nav-link i { font-size: 0.95rem; width: 1rem; }
.admin-stat { background: var(--white); border: 1px solid var(--stone); padding: 1.5rem; border-left: 2px solid var(--red); }

/* ─── Progress bar (group buy) ───────────────── */
.progress-track { background: rgba(28,21,16,0.1); height: 5px; border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--warm)); border-radius: 3px; transition: width 0.8s var(--ease); }

/* ─── Group buy ──────────────────────────────── */
.gb-hero { background: var(--ink); padding: 8rem 0 4rem; }
.contributor-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--stone); font-size: 0.85rem; }
.contributor-row:last-child { border-bottom: none; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 991.98px) {
  :root { --section: 3.5rem; }
  .admin-sidebar { position: static; width: 100%; }
  .admin-content { margin-left: 0; }
}
@media (max-width: 767.98px) {
  :root { --section: 3rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 575.98px) {
  .cart-table thead { display: none; }
  .cart-table td { display: block; padding: 0.65rem 1rem; }
  .cart-table td::before { content: attr(data-label); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.2rem; }
}
