/* ===== CRITICAL LAYOUT FIX — header top band ===== */
.header-top-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: nowrap !important;
  width: 100%;
}
/* ===================================================== */
/* ============================================
   FIGNOC ONLINE — AMAZON-INSPIRED REDESIGN
   2026 Production-Grade E-Commerce Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Brand — Fignoc Navy + Red (from logo) */
  --primary: #0A2472;        /* Fignoc deep navy */
  --primary-light: #163190;  /* Fignoc mid navy */
  --accent: #E63946;         /* Fignoc red */
  --accent-dark: #c72535;
  --accent-light: #F87171;
  --red: #E63946;
  --red-dark: #c72535;
  --blue: #0A2472;
  --blue-dark: #071A5E;
  --blue-light: #2952CC;
  --green: #007600;
  --green-bg: #F0FFF0;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F8F8F8;
  --gray-100: #F3F3F3;
  --gray-200: #DDDDDD;
  --gray-300: #C6C6C6;
  --gray-400: #AAAAAA;
  --gray-500: #888888;
  --gray-600: #555555;
  --gray-700: #333333;
  --gray-800: #1A1A1A;
  --gray-900: #0D0D0D;

  /* Layout */
  --max-width: 1500px;
  --header-height: 60px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 5px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.15);
  --shadow-product: 0 2px 8px rgba(0,0,0,.1);
  --shadow-lift: 0 14px 44px rgba(10,36,114,0.18);
  --shadow-soft: 0 10px 30px rgba(10,36,114,0.10);

  /* Borders */
  --border: 1px solid var(--gray-200);
  --border-focus: 2px solid var(--accent);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --radius-btn: 14px;

  /* Typography */
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  /* Transitions */
  --transition: all 0.18s ease;
  --transition-slow: all 0.35s ease;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  * , *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--font-body);
  background: var(--gray-100);
  color: var(--gray-700);
  line-height: 1.6;
  font-weight: 400;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:var(--blue); transition:var(--transition); }
a:hover { color:var(--blue-dark); }
ul { list-style:none; }
button { font-family:var(--font-body); cursor:pointer; border:none; }

/* ---- ACCESSIBILITY ---- */
.skip-link {
  position:absolute; top:-100px; left:1rem;
  background:var(--accent); color:var(--white);
  padding:.5rem 1rem; border-radius:var(--radius-md);
  font-weight:700; z-index:9999;
}
.skip-link:focus { top:1rem; }

/* Skip-link target */
#site-content:focus { outline: none; }

/* Consistent, high-contrast focus rings (keyboard only) */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(230,57,70,0.38);
  outline-offset: 3px;
}
:where(button, input, select, textarea):focus-visible {
  box-shadow: 0 0 0 3px rgba(10,36,114,0.14);
}

/* ===================================
   HEADER — Amazon-style triple band
   =================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top band — dark */
.header-top {
  background: var(--primary);
  padding: .6rem 1rem;
  min-height: 56px;
}
.header-top-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
  padding: .4rem .5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
}
.logo:hover { border-color: var(--white); }
.logo-mark {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
  letter-spacing: -.3px;
}
.logo-text span { color: #FFD6D9; font-weight: 800; }

/* Delivery badge */
.header-deliver {
  display: flex;
  flex-direction: column;
  color: var(--gray-300);
  font-size: .72rem;
  line-height: 1.2;
  padding: .3rem .5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: default;
  flex-shrink: 0;
}
.header-deliver strong { color: var(--white); font-size: .82rem; }

/* Search bar */
.header-search {
  flex: 1;
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 600px;
  min-width: 200px;
}
.search-category-select {
  background: var(--gray-200);
  border: none;
  padding: 0 .6rem;
  font-size: .78rem;
  color: var(--gray-700);
  cursor: pointer;
  border-right: 1px solid var(--gray-300);
  min-width: 90px;
  font-family: var(--font-body);
}
.search-category-select:focus { outline: none; }
.header-search-input {
  flex: 1;
  border: none;
  padding: .65rem .8rem;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  outline: none;
}
.header-search-btn {
  background: var(--accent);
  border: none;
  padding: 0 1.1rem;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}
.header-search-btn:hover { background: var(--accent-dark); }

/* Right nav items */
.header-nav-right {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-shrink: 0;
}
.header-nav-item {
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  line-height: 1.2;
  padding: .3rem .6rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.header-nav-item:hover { border-color: var(--white); color: var(--white); }
.header-nav-item strong { color: #FFFFFF; font-size: .85rem; }
.header-nav-item a {
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
}

/* Cart icon in header */
.header-cart {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .7rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.header-cart:hover { border-color: var(--white); color: var(--white); }
.header-cart i { font-size: 1.6rem; }
.cart-count-badge {
  position: absolute;
  top: 2px;
  left: 28px;
  background: var(--accent);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  padding: 0 5px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
  line-height: 1.5;
}
/* Legacy .cart-count support */
.cart-count {
  position: absolute;
  top: 2px;
  left: 28px;
  background: var(--accent);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  padding: 0 5px;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
  line-height: 1.5;
}

/* Bottom band — secondary nav */
.header-bottom {
  background: #163190;
  padding: .3rem 1rem;
}
.header-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-bottom-inner::-webkit-scrollbar { display: none; }
.header-bottom-link {
  color: var(--white);
  font-size: .83rem;
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 2px solid transparent;
  transition: var(--transition);
}
.header-bottom-link:hover { border-color: var(--white); color: var(--white); }
.header-bottom-link.bold-link { font-weight: 700; }
.mobile-menu-toggle {
  display: none;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1.4rem;
  padding: .38rem .55rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
  transform: translateY(-1px);
}
.mobile-menu-toggle:active {
  transform: translateY(0);
}

/* (categories toggle removed; mobile uses one unified menu) */

/* ===================================
   PROMO BANNER
   =================================== */
.promo-banner {
  background: var(--accent);
  padding: .45rem 1rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.promo-banner a { color: #FFFFFF; text-decoration: underline; font-weight: 700; opacity: .9; }
.promo-banner a:hover { opacity: 1; }

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.content-section { padding: 1.5rem 0; }
.section-title { margin-bottom: 1rem; }
.section-title h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: .25rem; font-weight: 700; }
.section-title-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding-bottom: .65rem;
  border-bottom: 1px solid var(--gray-200);
  background: linear-gradient(90deg, transparent, transparent) padding-box;
  position: relative;
}
.section-title-bar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(230, 57, 70, 0.35));
}
.section-title-bar h2 { font-size: 1.4rem; margin: 0; font-weight: 700; color: var(--gray-800); }
.see-all-link {
  color: var(--blue);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
}
.see-all-link:hover { color: var(--accent); text-decoration: underline; }

/* ===================================
   HOMEPAGE HERO — Amazon-style banner
   =================================== */
.hero-banner {
  position: relative;
  background: #0b1220; /* fallback if image fails */
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

/* =========================================================
   HOMEPAGE POLISH — stronger shadows + smooth hovers
   (kept generic to benefit other pages too)
   ========================================================= */
.section-panel {
  border: 1px solid rgba(10,36,114,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.section-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(10,36,114,0.14);
}

.product-card,
.category-card,
.hero-card,
.trust-item {
  box-shadow: 0 10px 26px rgba(10,36,114,0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover,
.category-card:hover,
.hero-card:hover,
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(10,36,114,0.16);
}

.product-card:active,
.category-card:active,
.hero-card:active {
  transform: translateY(-1px);
}

/* Nicer focus states for keyboard users */
.product-card:focus-within,
.category-card:focus-within,
.hero-card:focus-within,
.mobile-link:focus-visible,
.header-bottom-link:focus-visible,
.header-nav-item:focus-visible {
  outline: 3px solid rgba(230,57,70,0.35);
  outline-offset: 3px;
}

/* Tighten mobile tap targets without clutter */
@media (max-width: 700px) {
  .hero-card { border-radius: 14px; }
  .product-card { border-radius: 14px; }
}
.hero-banner-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-banner-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Make the hero image look crisp and premium */
  opacity: 1;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
}
.hero-banner-bg-img img {
  /* Avoid blurry scaling on some GPUs */
  transform: translateZ(0);
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* No color overlay — image only */
  background: none;
  opacity: 0;
}
.hero-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.hero-text-block {
  color: var(--white);
  /* Glass panel improves readability without tinting entire hero */
  background: linear-gradient(180deg, rgba(11,18,32,0.58) 0%, rgba(11,18,32,0.36) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.25rem;
  box-shadow: 0 22px 70px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
  margin-bottom: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-text-block h1 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 10px 34px rgba(0,0,0,0.55);
}
.hero-text-block h1 em {
  font-style: normal;
  color: #FFD6D9;
}
.hero-text-block p {
  font-size: 1rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 1.5rem;
  max-width: 480px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.42);
}
.hero-cta-group { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFD6D9;
  line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.7); }

/* Hero cards — right side */
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(238,242,255,0.08) 100%);
  border-radius: 18px;
  padding: .85rem .85rem .8rem;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.35);
  box-shadow: 0 24px 70px rgba(0,0,0,0.30);
}
/* Image-backed promo tiles (CSS variable set in template) */
.hero-card--visual {
  background: var(--hero-card-bg) center/cover no-repeat;
  border-color: rgba(255,255,255,0.14);
}
.hero-card--visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(19,25,33,0.68) 0%, rgba(10,36,114,0.42) 55%, rgba(230,57,70,0.26) 100%);
  border-radius: inherit;
  z-index: 0;
  opacity: 0.72;
  transition: opacity 0.35s ease;
}
.hero-card--visual:hover::before { opacity: 0.86; }
.hero-card--visual > .hero-card-inner { position: relative; z-index: 1; }
.hero-card-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  margin-bottom: .25rem;
}
.hero-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  margin: .15rem 0 .45rem;
  transition: transform .18s var(--ease-out), background .18s var(--ease-out), color .18s var(--ease-out);
}
.hero-card:hover .hero-card-ico {
  transform: translateY(-1px) scale(1.03);
  background: rgba(230,57,70,0.12);
  color: #fff;
}
.hero-card h3 {
  font-size: .88rem;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.hero-card-price { color: var(--primary); font-weight: 700; font-size: .95rem; }
.hero-card-cta {
  display: inline-block;
  margin-top: .35rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
}

/* Visual cards should stay readable on photos */
.hero-card--visual .hero-card-label { color: rgba(255,255,255,0.78); }
.hero-card--visual h3 { color: rgba(255,255,255,0.96); }
.hero-card--visual .hero-card-ico {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}
.hero-card--visual .hero-card-cta { color: #FFD6D9; }

/* ===================================
   DEAL TICKER / FLASH DEALS
   =================================== */
.deal-strip {
  background: var(--white);
  border-top: 3px solid var(--red);
  border-bottom: var(--border);
  padding: .6rem 0;
}
.deal-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.deal-strip-inner::-webkit-scrollbar { display: none; }
.deal-badge {
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: .78rem;
  padding: .3rem .8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.deal-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--gray-700);
  font-size: .85rem;
}
.deal-item-name { font-weight: 600; color: var(--blue); }
.deal-item-price { color: var(--accent); font-weight: 700; }
.deal-item-original {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: .78rem;
}
.deal-item-pct {
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: var(--radius-sm);
}
.deal-divider {
  color: var(--gray-300);
  flex-shrink: 0;
}

/* ===================================
   CATEGORY CARDS ROW
   =================================== */
.categories-row {
  background: linear-gradient(135deg, #0A2472 0%, #163190 55%, #071A5E 100%);
  padding: 2.2rem 0 2.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 70px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}
.categories-row::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(900px 340px at 10% 0%, rgba(230,57,70,0.22) 0%, transparent 60%),
              radial-gradient(900px 340px at 90% 10%, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .85rem;
  position: relative;
  z-index: 1;
}
.category-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 1.1rem .55rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  box-shadow: 0 18px 54px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 220px at 20% 0%, rgba(230,57,70,0.10) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .18s var(--ease-out);
  pointer-events: none;
}
.category-card:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 26px 80px rgba(0,0,0,0.26);
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  color: rgba(255,255,255,0.98);
}
.category-card:hover::before { opacity: 1; }
.category-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4d5a 0%, #E63946 45%, #c72535 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 16px 44px rgba(230,57,70,0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover .category-card-icon {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 10px 22px rgba(10, 36, 114, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.category-card span {
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
}

/* ===================================
   SECTION PANELS (Amazon-style white boxes)
   =================================== */
.section-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ===================================
   PRODUCT CARDS — Amazon style
   =================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  background: transparent;
}

/* Homepage: cap columns so cards never feel cramped */
.product-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1200px) {
  .product-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .product-grid--home { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--white);
  padding: 0;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 36, 114, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(10,36,114,0.20), rgba(230,57,70,0.22), rgba(10,36,114,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .18s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(10, 36, 114, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 57, 70, 0.2);
}
.product-card:hover::before { opacity: 1; }
.product-card-badge {
  position: absolute;
  top: .6rem;
  left: .6rem;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
}
.product-card-badge.badge-new { background: var(--green); }
.product-card-badge.badge-bulk { background: var(--accent); color: var(--primary); }
.out-of-stock {
  position: absolute;
  top: .6rem;
  right: .6rem;
  background: var(--gray-500);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.product-image {
  aspect-ratio: 1;
  height: auto;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0;
  cursor: pointer;
  position: relative;
}
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,0.22) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.image-fallback {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, #F0F3FF, #E8EDFF);
  border-radius: var(--radius-sm);
  color: #8899CC;
  font-size: .75rem;
  text-align: center;
  padding: 1rem;
}
.image-fallback i { font-size: 2rem; color: #B8C4E8; display: block; margin-bottom: .3rem; }
.image-fallback strong { color: #5566AA; font-size: .8rem; display: block; font-weight: 600; }
.image-fallback-large { min-height: 220px; }
.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 1.15rem;
  gap: 0.15rem;
}
.product-title {
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--gray-800);
  line-height: 1.35;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Homepage / shop — product card actions */
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.btn-add-to-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #0A2472 0%, #163190 45%, #071A5E 100%);
  color: #fff;
  border: none;
  padding: 0.55rem 0.75rem;
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 32px rgba(10, 36, 114, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-add-to-cart:disabled,
.btn-add-to-cart[aria-busy="true"] {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 10px 24px rgba(10, 36, 114, 0.12);
  filter: grayscale(0.08);
}
.btn-add-to-cart:hover:not(:disabled) {
  background: linear-gradient(180deg, #E63946 0%, #c72535 100%);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
  transform: translateY(-1px);
}
.btn-add-to-cart:active:not(:disabled) {
  transform: translateY(0);
}
.btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  color: var(--primary);
  border: 1px solid rgba(10, 36, 114, 0.15);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, color 0.2s ease;
  box-shadow: 0 12px 28px rgba(10,36,114,0.10);
  white-space: nowrap;
}
.btn-view:hover {
  border-color: rgba(230, 57, 70, 0.45);
  color: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(10, 36, 114, 0.12);
  transform: translateY(-1px);
}

.product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
}
.product-card .product-badge.bundle {
  background: linear-gradient(135deg, #E63946 0%, #9f1020 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(230, 57, 70, 0.45);
}
.product-card .product-badge.out-of-stock {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: #fff;
  left: auto;
  right: 10px;
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.4);
}

.product-image .image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #94a3b8;
}
.product-image .image-placeholder i {
  font-size: 2.35rem;
  opacity: 0.85;
}
.product-category {
  font-size: .72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 600;
  margin-bottom: .2rem;
}
.product-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: .35rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--blue); }

/* Star rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .35rem;
}
.stars { color: var(--accent); font-size: .78rem; }
.rating-count { font-size: .72rem; color: var(--blue); }

/* Price */
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .2rem;
}
.product-price .currency { font-size: .75rem; vertical-align: super; font-weight: 400; }
.bulk-price {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .3rem;
  display: block;
}
.price-tag-free { color: var(--green); font-weight: 700; font-size: .82rem; }

/* Stock indicator */
.stock-info {
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .5rem;
}
.stock-info.low { color: var(--red); }

.product-card-actions { margin-top: auto; padding-top: .5rem; }

/* ===================================
   BUTTONS — Amazon style
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-weight: 750;
  font-size: .92rem;
  padding: .62rem 1.05rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(10,36,114,0.12);
  cursor: pointer;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out), border-color .18s var(--ease-out), color .18s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(10,36,114,0.10);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 42px rgba(10,36,114,0.16); }
.btn:active { transform: translateY(0); box-shadow: 0 10px 24px rgba(10,36,114,0.10); }
.btn:focus-visible { outline: 3px solid rgba(230,57,70,0.35); outline-offset: 3px; }


/* CTA links — must have .btn base behaviour */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
}
.cta-primary {
  background: linear-gradient(to bottom, #E63946, #c72535);
  border-color: #a01f2b;
  color: #FFFFFF !important;
  box-shadow: 0 2px 4px rgba(199,37,53,.3);
}
.cta-primary:hover {
  background: linear-gradient(to bottom, #c72535, #a01f2b);
  color: #FFFFFF !important;
}
.cta-secondary {
  background: linear-gradient(to bottom, #F7F8FA, #E7E9EC);
  border-color: #ADB1B8;
  color: var(--gray-800) !important;
}
.cta-secondary:hover {
  background: linear-gradient(to bottom, #E3E6E8, #D6D9DC);
  color: var(--gray-900) !important;
}

/* Primary — Fignoc Red */
.btn-primary, .cta-secondary {
  background: linear-gradient(135deg, #ff4d5a 0%, #E63946 35%, #c72535 100%);
  border-color: rgba(255,255,255,0.20);
  color: #FFFFFF;
  text-shadow: 0 1px 1px rgba(0,0,0,.2);
  box-shadow: 0 14px 36px rgba(230,57,70,0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6270 0%, #E63946 40%, #a01f2b 100%);
  color: #FFFFFF;
  box-shadow: 0 18px 54px rgba(230,57,70,0.34);
}

/* Secondary — Amazon gray */
.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #eef2ff 100%);
  border-color: rgba(10,36,114,0.14);
  color: var(--gray-800);
  box-shadow: 0 14px 36px rgba(10,36,114,0.12);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #e8ecff 100%);
  color: var(--gray-900);
}

/* Danger red */
.btn-danger {
  background: linear-gradient(to bottom, #FF5252, #E63946);
  color: var(--white);
  border-color: #c0392b;
}
.btn-danger:hover { background: linear-gradient(to bottom, #E63946, #c0392b); }

/* Outline */
.btn-outline {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover { background: var(--gray-50); border-color: var(--gray-500); color: var(--gray-800); }

/* Full width */
.btn-block { width: 100%; }

/* Sizes */
.btn-sm { font-size: .82rem; padding: .5rem .8rem; border-radius: 12px; }
.btn-lg { font-size: 1.02rem; padding: .82rem 1.45rem; border-radius: 16px; }

/* Glossy shine effect for premium CTAs */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.20) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease-out);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(120%); }

/* ===================================
   BREADCRUMB
   =================================== */
.site-breadcrumb {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.site-breadcrumb a { color: var(--blue); }
.site-breadcrumb a:hover { color: var(--red); text-decoration: underline; }
.site-breadcrumb .current { color: var(--gray-700); font-weight: 500; }
.breadcrumb-separator { color: var(--gray-400); font-size: .7rem; }

/* ===================================
   HOMEPAGE LAYOUT
   =================================== */
.homepage-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Bundle cards */
.bundle-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
/* Homepage product grid: bundle tiles match elevated product cards */
.product-card.bundle-card {
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 36, 114, 0.08);
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--red));
  z-index: 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card.bundle-card:hover {
  transform: translateY(-5px);
}
.bundle-card:hover:not(.product-card) {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bundle-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--gray-800);
}
.bundle-card p { font-size: .83rem; color: var(--gray-500); margin-bottom: .75rem; line-height: 1.4; }
.bundle-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: .5rem;
}
.bundle-price .was {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: .85rem;
  font-weight: 400;
}
.bundle-save {
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: var(--radius-sm);
  margin-left: .4rem;
}
.bundle-items {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.bundle-items li {
  font-size: .78rem;
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
}
.bundle-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ===================================
   SHOP PAGE
   =================================== */
.shop-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  position: sticky;
  top: calc(var(--header-height) + 60px);
}
.sidebar h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-800);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: var(--border);
}
.sidebar-section { margin-bottom: 1.25rem; }
.sidebar-section-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--gray-500);
  margin-bottom: .5rem;
  padding-top: .75rem;
  border-top: var(--border);
}
#category-list li {
  padding: .45rem .6rem;
  font-size: .85rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: .5rem;
}
#category-list li:hover { background: var(--gray-50); color: var(--gray-900); }
#category-list li.active {
  background: #FFF3E0;
  color: var(--accent-dark);
  font-weight: 700;
}
#category-list li i { font-size: .8rem; width: 14px; color: var(--gray-400); }
#category-list li.active i { color: var(--accent-dark); }

.sidebar-help-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: .85rem;
  margin-top: 1rem;
}
.sidebar-help-card h4 { font-size: .85rem; margin-bottom: .35rem; color: var(--gray-800); }
.sidebar-help-card p { font-size: .78rem; color: var(--gray-600); margin-bottom: .6rem; line-height: 1.4; }

/* Shop toolbar */
.shop-toolbar {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.shop-search-wrap { position: relative; flex: 1; min-width: 200px; }
.shop-search-wrap .search-bar {
  width: 100%;
  padding: .55rem .8rem .55rem 2.2rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-family: var(--font-body);
  background: var(--gray-50);
  transition: var(--transition);
}
.shop-search-wrap .search-bar:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,153,0,.15);
}
.shop-search-icon {
  position: absolute;
  left: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.filter-tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.filter-tab {
  padding: .4rem .9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--red); color: var(--red-dark); }
.filter-tab.active {
  background: var(--red);
  border-color: var(--red-dark);
  color: var(--white);
}
.sort-wrap { display: flex; align-items: center; gap: .4rem; }
.sort-label { font-size: .8rem; color: var(--gray-500); white-space: nowrap; }
.sort-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .4rem .6rem;
  font-size: .83rem;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--primary); }

/* Results bar */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem 0;
  margin-bottom: .75rem;
  flex-wrap: wrap;
  gap: .5rem;
}
#results-count { font-size: .83rem; color: var(--gray-600); }
.quick-links-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.quick-pill {
  padding: .25rem .7rem;
  border: var(--border);
  border-radius: var(--radius-full);
  font-size: .75rem;
  color: var(--gray-600);
  background: var(--white);
  transition: var(--transition);
}
.quick-pill:hover { background: var(--red); color: var(--white); border-color: var(--red-dark); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px dashed var(--gray-200);
}
.empty-state h3 { font-size: 1.2rem; color: var(--gray-700); margin-bottom: .5rem; }
.empty-state p { color: var(--gray-500); font-size: .9rem; margin-bottom: 1rem; }

/* ===================================
   PRODUCT PAGE
   =================================== */
.product-page-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 420px 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}
.product-image-panel {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: sticky;
  top: 130px;
}
.product-main-image {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.product-detail-panel {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.product-detail-panel h1 {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: .5rem;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: var(--border);
  font-size: .82rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.product-meta-row strong { color: var(--gray-800); }

.product-pricing-large {
  padding: .75rem 0;
  border-bottom: var(--border);
  margin-bottom: .75rem;
}
.price-main {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: .25rem;
}
.price-main sup { font-size: 1rem; vertical-align: super; }
.price-bulk-note {
  font-size: .83rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .25rem;
}
.price-free-delivery {
  font-size: .82rem;
  color: var(--gray-600);
}
.price-free-delivery b { color: var(--gray-800); }

.product-features {
  margin-bottom: 1rem;
}
.product-features h4 { font-size: .88rem; font-weight: 700; margin-bottom: .5rem; color: var(--gray-700); }
.product-features ul { display: flex; flex-direction: column; gap: .3rem; }
.product-features li {
  font-size: .83rem;
  color: var(--gray-600);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}
.product-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gray-500);
  font-weight: 700;
}

.product-meta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  margin-bottom: .75rem;
}
.product-meta-table tr:nth-child(even) td { background: var(--gray-50); }
.product-meta-table td {
  padding: .4rem .6rem;
  border: var(--border);
  color: var(--gray-700);
}
.product-meta-table td:first-child {
  font-weight: 600;
  color: var(--gray-800);
  width: 35%;
  background: var(--gray-50);
}

/* Buy box — right column */
.product-buy-box {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: sticky;
  top: 130px;
}
.buy-box-price {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gray-800);
  margin-bottom: .5rem;
}
.buy-box-price sup { font-size: .9rem; vertical-align: super; }
.buy-box-stock {
  font-size: .9rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .75rem;
}
.buy-box-stock.oos { color: var(--red); }
.buy-box-delivery {
  font-size: .82rem;
  color: var(--gray-600);
  padding: .6rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  line-height: 1.5;
}
.buy-box-delivery strong { color: var(--gray-800); }
.quantity-selector {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.quantity-label { font-size: .83rem; color: var(--gray-600); }
.quantity-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .35rem .6rem;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--gray-800);
}
.quantity-select:focus { outline: none; border-color: var(--accent); }
.quantity-btn {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-btn:hover { background: var(--gray-200); }
.quantity-input {
  width: 55px;
  text-align: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .35rem;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
}
.quantity-input:focus { outline: none; border-color: var(--accent); }

.buy-box-actions { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .75rem; }
.buy-box-trust {
  border-top: var(--border);
  padding-top: .75rem;
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.buy-box-trust-item { display: flex; align-items: center; gap: .4rem; margin-bottom: .3rem; }
.buy-box-trust-item i { color: var(--green); width: 14px; }

/* ===================================
   CART PAGE
   =================================== */
.cart-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  align-items: start;
}
.cart-main { background: var(--white); border: var(--border); border-radius: var(--radius-md); }
.cart-header {
  padding: 1rem 1.25rem;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h1 { font-size: 1.4rem; margin: 0; color: var(--gray-800); font-weight: 400; }
.cart-free-delivery {
  background: var(--green-bg);
  border: 1px solid #8BC34A;
  border-radius: var(--radius-sm);
  padding: .6rem 1.25rem;
  font-size: .83rem;
  color: var(--green);
  font-weight: 600;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: var(--border);
  align-items: start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 100px;
  height: 100px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; padding: .4rem; }
.cart-item-details { flex: 1; }
.cart-item-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: .25rem;
}
.cart-item-sku { font-size: .75rem; color: var(--gray-500); margin-bottom: .3rem; }
.cart-item-stock { font-size: .78rem; color: var(--green); font-weight: 600; margin-bottom: .5rem; }
.cart-bulk-note {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  background: var(--green-bg);
  padding: .2rem .5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: .4rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .3rem;
}
.cart-action-link {
  font-size: .78rem;
  color: var(--blue);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}
.cart-action-link:hover { text-decoration: underline; color: var(--red); }
.cart-action-divider { color: var(--gray-300); font-size: .78rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.cart-item-qty .quantity-input { width: 50px; }
.cart-item-price {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-800);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.remove-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.3rem;
  cursor: pointer;
  padding: .2rem;
  line-height: 1;
  display: block;
  transition: var(--transition);
}
.remove-btn:hover { color: var(--red); }

/* Cart table (legacy support) */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  padding: .6rem .75rem;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--gray-500);
  border-bottom: var(--border);
  font-weight: 600;
}
.cart-table td { padding: .75rem; border-bottom: var(--border); font-size: .88rem; vertical-align: middle; }
.cart-table tbody tr:last-child td { border-bottom: none; }

/* Order summary sidebar */
.order-summary {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  position: sticky;
  top: 130px;
}
.order-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-500);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  font-size: .88rem;
  color: var(--gray-700);
}
.summary-row.total {
  border-top: 2px solid var(--gray-200);
  margin-top: .5rem;
  padding-top: .75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
}
.summary-divider { border-top: var(--border); }
.summary-sticky { position: sticky; top: 130px; }

/* ===================================
   CHECKOUT PAGE
   =================================== */
.checkout-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
.checkout-form-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checkout-step {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.checkout-step-header {
  padding: .85rem 1.25rem;
  background: var(--gray-50);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.step-number {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}
.checkout-step-header h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  color: var(--gray-800);
}
.checkout-step-body { padding: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .85rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input, .form-group select, .form-group textarea {
  padding: .6rem .85rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,153,0,.15);
}
.form-group input.error { border-color: var(--red); }
.error-message {
  font-size: .75rem;
  color: var(--red);
  font-weight: 500;
  display: none;
}

/* Trust strip */
.checkout-trust-strip {
  display: flex;
  gap: 1rem;
  padding: .75rem;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: var(--border);
  margin: .75rem 0;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--gray-600);
}
.trust-strip-item i { color: var(--green); }

/* Order review */
.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .45rem 0;
  font-size: .85rem;
  color: var(--gray-700);
  border-bottom: var(--border);
}
.review-item:last-child { border-bottom: none; }
.review-item-qty { color: var(--gray-500); margin-right: .25rem; }

/* ===================================
   CONFIRMATION PAGE
   =================================== */
.confirmation-wrapper {
  max-width: 680px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.confirmation-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.confirmation-header {
  background: var(--green);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.confirmation-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.confirmation-header h1 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: .35rem;
}
.confirmation-header p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }
.confirmation-body { padding: 1.5rem; }
.order-number-display {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  color: var(--gray-600);
  text-align: center;
}
.order-number-display strong { font-size: 1.1rem; color: var(--gray-800); display: block; margin-top: .2rem; }
.confirmation-section { margin-bottom: 1.25rem; }
.confirmation-section h3 {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--gray-500);
  margin-bottom: .6rem;
  padding-bottom: .4rem;
  border-bottom: var(--border);
}
.confirmation-address {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--gray-700);
}
.confirmation-actions { display: flex; gap: .75rem; padding: 1.25rem; border-top: var(--border); }

/* ===================================
   PAYMENT FAILED
   =================================== */
.payment-failed-wrapper {
  max-width: 580px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.payment-failed-card {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}
.payment-failed-header {
  background: var(--red);
  padding: 2rem;
}
.payment-failed-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto;
}
.payment-failed-body { padding: 1.5rem; }
.payment-failed-body h2 { font-size: 1.3rem; color: var(--gray-800); margin-bottom: .5rem; }
.payment-failed-body p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1rem; }
.error-reason-box {
  background: #FFF3F3;
  border: 1px solid #FFCDD2;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--red-dark);
  margin-bottom: 1.25rem;
  text-align: left;
}
.payment-failed-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; padding-bottom: 1.5rem; }

/* ===================================
   POLICY PAGES
   =================================== */
.policy-layout {
  max-width: 880px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
.policy-toc {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.policy-toc h3 { font-size: .9rem; font-weight: 700; margin-bottom: .6rem; color: var(--gray-700); }
.policy-toc-links { display: flex; gap: .5rem; flex-wrap: wrap; }
.policy-toc-link {
  padding: .3rem .75rem;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-full);
  font-size: .8rem;
  color: var(--blue);
  transition: var(--transition);
}
.policy-toc-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.policy-article {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.policy-article h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.policy-article h2 i { color: var(--accent); }
.policy-article p { font-size: .88rem; color: var(--gray-700); line-height: 1.7; margin-bottom: .6rem; }
.policy-article ul { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .6rem; }
.policy-article li {
  font-size: .85rem;
  color: var(--gray-600);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.policy-article li::before { content: '•'; position: absolute; left: .3rem; color: var(--accent); font-weight: 700; }
.policy-faq { margin-top: 1.5rem; }
.faq-accordion-item {
  border: var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .5rem;
  overflow: hidden;
}
.faq-accordion-item summary {
  padding: .85rem 1rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-accordion-item summary::-webkit-details-marker { display: none; }
.faq-accordion-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gray-400); }
.faq-accordion-item[open] summary::after { content: '−'; }
.faq-accordion-item summary:hover { background: var(--gray-50); }
.faq-answer { padding: .75rem 1rem; font-size: .85rem; color: var(--gray-600); line-height: 1.7; background: var(--gray-50); }

/* ===================================
   PAGE HERO (for utility pages)
   =================================== */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--red);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: .35rem;
  line-height: 1.2;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

/* ===================================
   ABOUT PAGE
   =================================== */
.about-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.about-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--gray-800); margin-bottom: .75rem; }
.about-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .75rem; }
.about-card p:last-child { margin-bottom: 0; }
.about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.about-metric {
  text-align: center;
  padding: 1rem;
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-md);
}
.about-metric-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
}
.about-metric-label { font-size: .8rem; color: var(--gray-600); font-weight: 500; }

/* ===================================
   TRUST BAR / FEATURES
   =================================== */
.trust-bar {
  background: linear-gradient(135deg, #071A5E 0%, #0A2472 45%, #163190 100%);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(900px 280px at 15% 0%, rgba(230,57,70,0.22) 0%, transparent 60%),
              radial-gradient(1000px 340px at 85% 20%, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  position: relative;
  z-index: 1;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: .8rem .85rem;
  box-shadow: 0 18px 54px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}
.trust-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #ff4d5a 0%, #E63946 45%, #c72535 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 16px 44px rgba(230,57,70,0.28);
}
.trust-item-text strong { display: block; font-size: .92rem; color: rgba(255,255,255,0.96); font-weight: 900; line-height: 1.15; }
.trust-item-text span { font-size: .78rem; color: rgba(255,255,255,0.78); margin-top: 2px; display: block; line-height: 1.25; }

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.22);
}
.trust-item:hover .trust-item-icon {
  transform: translateY(-1px) scale(1.03);
  background: linear-gradient(135deg, #ff6270 0%, #E63946 50%, #a01f2b 100%);
}

@media (max-width: 700px) {
  .trust-bar-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { padding: .75rem .75rem; }
}

/* ===================================
   FOOTER — Amazon-style dark
   =================================== */
.footer-back-to-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  background: rgba(7, 26, 94, 0.92);
  color: var(--white);
  text-align: center;
  padding: .52rem .65rem;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.footer-back-to-top:hover {
  background: rgba(22, 49, 144, 0.95);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .footer-back-to-top {
    right: 12px;
    bottom: 12px;
    padding: .5rem .6rem;
    font-size: .76rem;
  }
}

footer {
  background: #0A2472;
  color: #DDD;
  margin-top: 2rem;
}
.footer-grid {
  background: #0A2472;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-column h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .85rem;
  font-family: var(--font-body);
}
.footer-column ul { display: flex; flex-direction: column; gap: .35rem; }
.footer-column ul li a {
  color: #C8C8C8;
  font-size: .82rem;
  transition: var(--transition);
}
.footer-column ul li a:hover { color: var(--white); text-decoration: underline; }
.footer-column p { font-size: .82rem; color: #C8C8C8; line-height: 1.6; margin-bottom: .5rem; }
.footer-note { font-size: .75rem; color: #AAAAAA; margin-top: .25rem; }
.footer-logo { margin-bottom: .75rem; }
.footer-logo img { height: 36px; border-radius: var(--radius-sm); }
.social-links { display: flex; gap: .6rem; margin-top: .6rem; }
.social-links a {
  width: 34px;
  height: 34px;
  background: #071A5E;
  color: #CCC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--red); color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid #1E3A8A;
}
.footer-bottom-links {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #C8C8C8;
  font-size: .75rem;
  border-right: 1px solid #1E3A8A;
  padding-right: 1rem;
}
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-bottom {
  background: #071A5E;
  text-align: center;
  padding: .85rem;
}
.footer-bottom p { font-size: .75rem; color: #9D9D9D; margin: 0; }

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
  position: fixed;
  bottom: 4.25rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1DA955;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* ===================================
   NOTIFICATION TOAST
   =================================== */
.fignoc-toast {
  position: fixed;
  top: 80px;
  right: 1.25rem;
  background: var(--primary);
  color: var(--white);
  padding: .85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  font-size: .88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 320px;
  border-left: 4px solid var(--accent);
  animation: toastIn .25s ease;
}
.fignoc-toast i { color: var(--accent); font-size: 1.1rem; }
@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===================================
   UPSELL / CROSS-SELL BAND
   =================================== */
.upsell-band {
  background: #EEF1FF;
  border: 1px solid #C0CCFF;
  border-radius: var(--radius-md);
  padding: .85rem 1.25rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
}
.upsell-band i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.upsell-band strong { color: var(--primary); }
.upsell-band a { color: var(--blue); font-weight: 600; }

/* ===================================
   UTILITY HELPERS (keep legacy compat)
   =================================== */
.brand-blue { color: var(--blue-dark); }
.brand-red { color: var(--red); }
.utility-muted { color: var(--gray-500); font-size: .83rem; }
.utility-top-gap { margin-top: .75rem; }
.utility-section-center { text-align: center; }
.utility-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.utility-help-box {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.utility-help-box h4 { font-size: .85rem; font-weight: 700; color: var(--gray-700); margin-bottom: .35rem; }
.utility-help-inline { margin-top: .75rem; }
.utility-action-row { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.utility-bullet-list { display: flex; flex-direction: column; gap: .3rem; padding-left: .5rem; }
.utility-bullet-list li { font-size: .83rem; color: var(--gray-600); position: relative; padding-left: 1rem; }
.utility-bullet-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.success-box { background: var(--green-bg); border-color: #8BC34A; }
.success-box strong { color: var(--green); }
.warning-box { background: #FFF8E1; border-color: var(--accent); }
.hero-breadcrumb { color: rgba(255,255,255,.7); }
.hero-breadcrumb a { color: rgba(255,255,255,.85); }
.hero-breadcrumb .current { color: var(--white); }

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================
   MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 1100px) {
  .product-page-layout { grid-template-columns: 1fr 1fr; }
  .product-buy-box { grid-column: span 2; position: static; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-banner-inner { grid-template-columns: 1fr; }
  .hero-cards-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .product-page-layout { grid-template-columns: 1fr; }
  .product-image-panel { position: static; }
  .product-buy-box { grid-column: span 1; }
}
@media (max-width: 700px) {
  .dual-panel { grid-template-columns: 1fr !important; }
  .dual-panel > div { min-height: 200px !important; }

  .header-deliver { display: none; }
  .header-search {
  flex: 1;
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 600px;
  min-width: 200px;
}
  .mobile-menu-toggle { display: block; }
  /* Categories live inside the unified mobile drawer now */
  .header-bottom { display: none; }
  .hero-banner-inner { padding: 2rem 1rem; }
  .hero-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-qty { display: none; }
  .cart-item-price { font-size: .85rem; }
  .form-row { grid-template-columns: 1fr; }
  /* Mobile: 1 column to avoid cramped cards */
  .product-grid { grid-template-columns: 1fr; }
  .category-cards { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .confirmation-actions { flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; gap: 0.65rem; }
}

/* ===================================
   LEGACY OVERRIDES for existing HTML
   =================================== */
/* Keep old class names working */
.utility-page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--red);
}
.utility-page-hero-success { background: var(--green); }
.utility-page-hero-danger { background: var(--red-dark); }
.utility-page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
.utility-page-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .3rem;
}
.utility-page-hero p { color: rgba(255,255,255,.8); margin: 0; font-size: .88rem; }
.utility-page-hero .hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.utility-hero-note {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 200px;
}
.utility-hero-note strong { color: var(--white); font-size: .88rem; }
.success-note { background: rgba(255,255,255,.15); }
.danger-note { background: rgba(0,0,0,.15); }
.utility-page-section { background: var(--gray-100); }
.checkout-page-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.5rem;
  align-items: start;
}
.utility-main-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.utility-section-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .85rem; }
.checkout-form {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.order-review { height: fit-content; }
.cart-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  align-items: start;
}
.cart-table-wrap { overflow-x: auto; }
.confirmation-page-grid {
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem;
}
.confirmation-container {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.confirmation-container .confirmation-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.confirmation-container .confirmation-icon-danger { background: var(--red); }
.order-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  margin: 1rem 0;
}
.confirmation-details { text-align: left; margin-top: 1rem; }
.confirmation-details h3 { font-size: .9rem; font-weight: 700; margin-bottom: .5rem; color: var(--gray-700); }
.shop-hero-card-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: .5rem;
  align-items: start;
  padding: .55rem 0;
  font-size: .83rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.shop-hero-card-row span { color: rgba(255,255,255,.68); }
.shop-hero-card-row:last-child { border-bottom: none; }
.shop-hero-card-row strong { color: #FFFFFF; font-weight: 700; }
.product-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.product-media-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: sticky;
  top: 130px;
}
.product-buy-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.product-detail-image {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--gray-50); border-radius: var(--radius-sm);
}
.product-detail-image img { width:100%; height:100%; object-fit:contain; padding:1rem; }
.product-detail-image img {
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(10,36,114,0.10);
  background: #fff;
}
.product-page-label-row { display: flex; gap: .4rem; margin-bottom: .5rem; flex-wrap: wrap; }
.product-page-pill {
  padding: .2rem .65rem;
  background: var(--gray-100);
  border: var(--border);
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-600);
}
.product-page-pill-light { background: var(--accent); color: var(--primary); border-color: var(--accent-dark); }
.pricing-block { padding: .75rem 0; border-top: var(--border); border-bottom: var(--border); margin: .75rem 0; }
.retail-price { font-size: 1.8rem; font-weight: 400; color: var(--gray-800); }
.bulk-price-info { font-size: .83rem; color: var(--green); font-weight: 600; margin-top: .25rem; }
.bulk-price-info small { display: block; color: var(--gray-500); font-weight: 400; font-size: .78rem; }
.bulk-price-info a { color: var(--blue); font-weight: 700; }
.bulk-price-info a:hover { color: var(--accent-dark); text-decoration: underline; }
.product-buy-actions { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.product-quantity-selector { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.card-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.product-main-cta, .product-secondary-cta { flex: 1; }
.support-note { font-size: .78rem; color: var(--gray-500); margin-top: .75rem; }
.inline-link { color: var(--blue); }
.product-hook { font-size: .88rem; color: var(--gray-500); font-style: italic; margin-bottom: .75rem; }
.product-description { font-size: .88rem; color: var(--gray-600); line-height: 1.7; margin-bottom: .75rem; }
.product-meta-stacked { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; margin-bottom: .75rem; }
.product-meta-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .5rem .6rem;
  font-size: .78rem;
}
.product-meta-card strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .3px; color: var(--gray-500); font-weight: 700; margin-bottom: .15rem; }
.product-meta-card span { color: var(--gray-700); font-weight: 500; }
.mini-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin: .75rem 0; }
.mini-trust-card {
  background: var(--gray-50);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem;
  font-size: .75rem;
}
.mini-trust-card strong { display: block; font-weight: 700; color: var(--gray-700); margin-bottom: .15rem; font-size: .78rem; }
.mini-trust-card span { color: var(--gray-500); line-height: 1.4; }
.product-card-link { text-decoration: none; color: inherit; }
.product-card-link:hover .product-name { color: var(--blue); }
.product-card-link:focus-visible { border-radius: var(--radius-md); }

/* Related-products grid: keep cards readable */
.related-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .related-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .related-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .related-section .product-grid { grid-template-columns: 1fr; }
}
.related-section { margin-top: 2rem; }
.product-bulk-note { font-size: .72rem; color: var(--green); font-weight: 600; margin-top: .2rem; }

/* Shop/homepage hero */
.shop-page-hero, .home-hero-real {
  background: var(--primary);
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--red);
}
.shop-page-hero-inner, .hero-split-real {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  align-items: center;
}
.shop-page-hero-content h1, .hero-content h1 {
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: .4rem;
  line-height: 1.2;
}
.shop-page-hero-content p, .hero-content p { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: .85rem; }
.hero-cta-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.shop-page-hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  min-width: 240px;
  color: white;
}

/* Policy pages legacy */
.policy-hero { background: var(--primary); color: var(--white); padding: 1.5rem 0; border-bottom: 3px solid var(--red); }
.policy-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: center;
}
.policy-hero h1 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: .4rem;
}
.policy-hero p { color: rgba(255,255,255,.75); font-size: .88rem; }
.policy-hero-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.policy-hero-card h2 { color: var(--white); font-size: 1rem; margin-bottom: .6rem; }
.policy-summary-list { display: flex; flex-direction: column; gap: .3rem; }
.policy-summary-list li {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  padding-left: 1.2rem;
  position: relative;
}
.policy-summary-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.policy-anchor-nav-section { background: var(--white); border-bottom: var(--border); }
.policy-anchor-nav { display: flex; gap: .5rem; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; padding: .6rem 1rem; }
.policy-grid-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.policy-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.policy-card h2 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin-bottom: .6rem; }
.policy-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .5rem; }
.policy-card ul { display: flex; flex-direction: column; gap: .3rem; }
.policy-card li { font-size: .82rem; color: var(--gray-600); padding-left: 1rem; position: relative; }
.policy-card li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }
.policy-help-band { background: var(--primary); padding: 1.25rem 0; }
.policy-help-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--white);
}
.policy-help-inner h2 { color: var(--white); font-size: 1.2rem; margin-bottom: .3rem; }
.policy-help-inner p { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }
.faq-section { background: var(--gray-50); padding: 2rem 0; }
.faq-section .container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.faq-section .section-title { text-align: center; margin-bottom: 1.25rem; }
.faq-section .section-title h2 { font-size: 1.3rem; color: var(--gray-800); }
.faq-accordion-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .5rem; }

/* About page legacy */
.about-story-card { background: var(--white); border: var(--border); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1rem; }
.team-card { background: var(--white); border: var(--border); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; }
.proof-metric-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}
.testimonial-card { background: var(--white); border: var(--border); border-radius: var(--radius-md); padding: 1.25rem; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.audience-card { background: var(--white); border: var(--border); border-radius: var(--radius-md); overflow: hidden; padding: 1.25rem; }
.content-card-photo img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: .75rem; }
.audience-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-bottom: .5rem;
}
.audience-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: .4rem; }
.audience-card p { font-size: .85rem; color: var(--gray-600); margin-bottom: .6rem; line-height: 1.5; }
.card-check-list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .75rem; }
.card-check-list li { font-size: .8rem; color: var(--gray-600); padding-left: 1.2rem; position: relative; }
.card-check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-card { background: var(--white); border: var(--border); border-radius: var(--radius-md); padding: 1.25rem; }
.feature-icon { width: 44px; height: 44px; background: var(--gray-50); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--accent-dark); font-size: 1.2rem; margin-bottom: .75rem; }
.feature-card h3 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: .35rem; }
.feature-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.5; margin: 0; }
.hero-highlights { display: flex; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }
.hero-highlight { display: flex; flex-direction: column; }
.hero-highlight strong { font-size: .83rem; color: rgba(255,255,255,.9); }
.hero-highlight span { font-size: .75rem; color: rgba(255,255,255,.6); }
.hero-photo-stack { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-photo img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.hero-photo-large img { max-height: 260px; width: 100%; object-fit: cover; }
.hero-photo-small { display: none; }
.section-title-center { text-align: center; }
.actual-features-section { background: var(--gray-50); padding: 2rem 0; }
.free-delivery-banner {
  background: var(--green-bg);
  border: 1px solid #8BC34A;
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .83rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: .75rem;
}

@media (max-width: 700px) {
  .checkout-page-grid { grid-template-columns: 1fr; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .policy-grid-two { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .mini-trust-grid { grid-template-columns: 1fr 1fr; }
  .product-meta-stacked { grid-template-columns: 1fr 1fr; }
  .policy-hero-grid { grid-template-columns: 1fr; }
  .shop-page-hero-inner { grid-template-columns: 1fr; }
  .utility-page-hero-inner { grid-template-columns: 1fr; }
  .utility-hero-note { display: none; }
  .product-page-grid { grid-template-columns: 1fr; }
  .product-media-card { position: static; }
}
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .mini-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .header-top-inner {
    flex-wrap: wrap !important;
    gap: .5rem !important;
    padding: .5rem !important;
  }
  .header-search {
    order: 3;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .header-deliver { display: none !important; }
  .header-nav-right { margin-left: auto; }
  .mobile-menu-toggle { display: flex !important; order: 4; }
  .header-bottom { display: none; }
}

/* Dual image panel — compact responsive */
.dual-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 36, 114, 0.12);
}
.dual-panel > div {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  max-height: 280px;
}
.dual-panel > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.dual-panel > div:hover img {
  transform: scale(1.05);
}
.dual-panel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,36,114,.88));
  padding: 1rem 1.1rem .9rem;
}
.dual-panel-overlay .btn-primary {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .dual-panel { grid-template-columns: 1fr; }
  .dual-panel > div { max-height: 200px; min-height: 160px; }
}

/* Happy clients / social proof section */
.social-proof-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.social-proof-text {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #0A2472, #163190);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-proof-image {
  overflow: hidden;
  max-height: 300px;
}
.social-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 700px) {
  .social-proof-panel { grid-template-columns: 1fr; }
  .social-proof-image { max-height: 220px; }
  .social-proof-text { padding: 1.25rem; }
}

/* Policy help band — force button visibility */
.policy-help-band .cta-primary,
.policy-help-band .cta-secondary,
.policy-hero .cta-primary,
.policy-hero .cta-secondary {
  display: inline-flex !important;
  align-items: center;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
}
.policy-help-band .cta-primary,
.policy-hero .cta-primary {
  background: #E63946;
  color: #fff !important;
  border: 1px solid #a01f2b;
}
.policy-help-band .cta-secondary,
.policy-hero .cta-secondary {
  background: #fff;
  color: #1A1A1A !important;
  border: 1px solid #ccc;
}

/* Hero CTA row spacing */
.hero-cta-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: .75rem;
}

/* ===== MOBILE-FIRST GLOBAL FIXES ===== */

/* Tighter section padding on mobile */
@media (max-width: 768px) {
  .homepage-grid { padding: .75rem; gap: .75rem; }
  .section-panel { padding: 1rem; }
  .hero-banner { min-height: auto; }
  .hero-banner-inner { padding: 1.5rem 1rem; gap: 1rem; }
  .hero-text-block { padding: 1.05rem 1.05rem 1rem; border-radius: 18px; }
  .hero-text-block h1 { font-size: 1.5rem; }
  .hero-text-block p { font-size: .85rem; margin-bottom: 1rem; }
  .hero-stats { gap: 1rem; margin-top: 1rem; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
  .hero-card { padding: .75rem; min-height: 100px; }
  .hero-card h3 { font-size: .82rem; margin-bottom: .2rem; }
  .hero-card-price { font-size: .82rem; }
  .hero-card-cta { font-size: .72rem; }

  .deal-strip-inner { gap: 1rem; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: .75rem; }

  .categories-row { padding: 1rem 0; }
  .category-cards { grid-template-columns: repeat(4, 1fr); gap: .5rem; }
  .category-card { padding: .75rem .35rem; }
  .category-card-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .category-card span { font-size: .7rem; }

  .bundle-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .bundle-card:not(.product-card) { padding: 1rem; }
  .bundle-price { font-size: 1.1rem; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-image { min-height: 130px; aspect-ratio: 1; }
  .product-name { font-size: .82rem; }
  .product-price { font-size: .95rem; }
  .product-info { padding: .9rem .9rem 1rem; }
  .btn-add-to-cart, .btn-view { padding: .62rem .75rem; }

  .shop-layout { padding: .75rem; gap: .75rem; }
  .shop-toolbar { padding: .6rem .75rem; gap: .6rem; }
  .cart-layout { grid-template-columns: 1fr; padding: .75rem; }
  .checkout-layout { grid-template-columns: 1fr; padding: .75rem; }

  .footer-grid { padding: 1.5rem .75rem; gap: 1rem; }
}

@media (max-width: 480px) {
  .category-cards { grid-template-columns: repeat(4, 1fr); }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: .5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
}

/* Product card actions: stack on small screens for better tap targets */
@media (max-width: 700px) {
  .product-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .btn-add-to-cart,
  .btn-view {
    width: 100%;
  }
  .btn-view {
    justify-content: center;
  }
}

/* Reduce WhatsApp float overlap on mobile */
@media (max-width: 700px) {
  #site-content { padding-bottom: 5.5rem; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
    right: 1rem;
    bottom: 4.1rem;
  }
}

/* ===================================
   CART PAGE (v2) — scoped overrides
   Applies only to pages using `.cart-page`
   =================================== */
.cart-page .cart-layout {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.cart-page .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eef2ff;
}
.cart-page .cart-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a2b5e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.cart-page .cart-header h1 i {
  color: #d42b2b;
  font-size: 1.5rem;
}

.cart-page .cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid #eef2ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.2s ease;
  position: relative;
  box-shadow: 0 10px 26px rgba(10, 36, 114, 0.06);
}
.cart-page .cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 36, 114, 0.12);
  border-color: rgba(212, 43, 43, 0.18);
}

.cart-page .cart-item-image {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.cart-page .cart-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.cart-page .cart-item-image:hover img { transform: scale(1.05); }
.cart-page .cart-item-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  background: #f8fafc;
}

.cart-page .cart-item-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1a2b5e;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cart-page .cart-item-name-link { color: inherit; text-decoration: none; }
.cart-page .cart-item-name-link:hover { text-decoration: underline; }
.cart-page .cart-item-sku { font-size: 0.7rem; color: #64748b; margin-bottom: 0.5rem; }
.cart-page .cart-item-stock {
  font-size: 0.7rem;
  color: #10b981;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #d1fae5;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}
.cart-page .cart-bulk-note {
  font-size: 0.7rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #fef3c7;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
}

.cart-page .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.cart-page .cart-action-divider { color: #cbd5e1; }

.cart-page .quantity-btn {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(10, 36, 114, 0.10);
}
.cart-page .quantity-btn:hover {
  background: #1a2b5e;
  color: #fff;
  border-color: #1a2b5e;
  transform: translateY(-1px);
}
.cart-page .quantity-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(10, 36, 114, 0.10);
}
.cart-page .quantity-btn:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.28);
  outline-offset: 3px;
}
.cart-page .quantity-input {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.cart-page .quantity-input:focus {
  outline: none;
  border-color: rgba(212, 43, 43, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.14);
}

.cart-page .cart-action-link {
  background: none;
  border: none;
  color: #64748b;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
  padding: 0.25rem 0.35rem;
  border-radius: 10px;
}
.cart-page .cart-action-link:hover {
  color: #d42b2b;
  transform: translateX(2px);
  background: rgba(212, 43, 43, 0.08);
}
.cart-page .cart-action-link:active { transform: translateX(0); }
.cart-page .cart-action-link:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.28);
  outline-offset: 3px;
}
.cart-page .cart-danger-link { color: #d42b2b; font-weight: 800; }

.cart-page .cart-item-price {
  text-align: right;
  min-width: 130px;
}
.cart-page .cart-item-price .price-amount {
  font-size: 1.35rem;
  font-weight: 900;
  color: #d42b2b;
}
.cart-page .cart-item-price .price-unit {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.cart-page .cart-free-delivery {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #065f46;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-page .upsell-band {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 0.875rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 550;
}

/* Desktop: allow cart items list to scroll while summary stays visible */
@media (min-width: 900px) {
  .cart-page #cart-items-container {
    max-height: calc(100vh - 260px);
    overflow: auto;
    padding-right: 6px;
    scrollbar-gutter: stable;
  }
  .cart-page #cart-items-container::-webkit-scrollbar { width: 10px; }
  .cart-page #cart-items-container::-webkit-scrollbar-thumb {
    background: rgba(10,36,114,0.16);
    border-radius: 9999px;
  }
  .cart-page #cart-items-container::-webkit-scrollbar-thumb:hover {
    background: rgba(10,36,114,0.24);
  }
}

.cart-page .order-summary {
  background: #f8fafc;
  border-radius: 24px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  border: 1px solid #eef2ff;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 16px 44px rgba(10, 36, 114, 0.08);
}
.cart-page .order-summary:hover { box-shadow: 0 26px 70px rgba(10, 36, 114, 0.12); }
.cart-page .order-summary h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #1a2b5e;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-page .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
.cart-page .summary-row.total {
  border-top: 2px solid #e2e8f0;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-weight: 900;
  font-size: 1.15rem;
  color: #1a2b5e;
}

.cart-page .btn-block {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.cart-page .btn-inline { display: inline-block; width: auto; padding: 0.75rem 2rem; }
.cart-page .btn-primary-custom {
  background: linear-gradient(135deg, #1a2b5e, #111d45);
  color: #fff;
  border: none;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(10, 36, 114, 0.22), inset 0 1px 0 rgba(255,255,255,0.12);
}
.cart-page .btn-primary-custom:hover {
  background: linear-gradient(135deg, #d42b2b, #b02020);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212, 43, 43, 0.32);
}
.cart-page .btn-primary-custom:active { transform: translateY(0); }
.cart-page .btn-primary-custom:focus-visible {
  outline: 3px solid rgba(212, 43, 43, 0.30);
  outline-offset: 3px;
}
.cart-page .btn-secondary-custom {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 36, 114, 0.10);
}
.cart-page .btn-secondary-custom:hover {
  background: #f8fafc;
  border-color: #1a2b5e;
  color: #1a2b5e;
  transform: translateY(-1px);
}
.cart-page .btn-secondary-custom:active { transform: translateY(0); }
.cart-page .btn-secondary-custom:focus-visible {
  outline: 3px solid rgba(26, 43, 94, 0.25);
  outline-offset: 3px;
}

.cart-page .summary-badge {
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
}
.cart-page .summary-badge--success { background: #d1fae5; color: #065f46; }
.cart-page .summary-badge--warn {
  background: #fef3c7;
  color: #92400e;
  margin: 0.5rem 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
}
.cart-page .summary-secure-note {
  margin: 1rem 0;
  padding: 0.75rem;
  background: #fff8e1;
  border-radius: 12px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #5b4b19;
}
.cart-page .summary-secure-sub {
  display: block;
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.cart-page .empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8fafc;
  border-radius: 24px;
}
.cart-page .empty-cart i {
  font-size: 5rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}
.cart-page .empty-cart h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a2b5e;
}
.cart-page .empty-cart p {
  color: #64748b;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .cart-page .cart-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1rem; margin: 1.25rem auto; }
  .cart-page .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; padding: 1rem; }
  .cart-page .cart-item-price { grid-column: span 2; text-align: left; margin-top: 0.75rem; padding-left: 90px; }
  .cart-page .cart-header h1 { font-size: 1.5rem; }
  .cart-page .order-summary { position: static; }
}
@media (max-width: 480px) {
  .cart-page .cart-item-actions { flex-wrap: wrap; }
  .cart-page .cart-action-divider { display: none; }
  .cart-page .cart-item-price { padding-left: 0; }
  .cart-page .quantity-input { width: 72px; }
}
