/* ═══════════════════════════════════════════════════════
   KCN Inc. ,  Main Stylesheet
   No frameworks. No CDN. Pure CSS.
═══════════════════════════════════════════════════════ */

/* ── Page loader (splash) ── Loaded with main stylesheet so we do not inject a second <style> from JS during load */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #001b3a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s ease, visibility 0.26s ease;
}

#page-loader.page-loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-loader .page-loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#page-loader .page-loader__logo {
  display: block;
  width: min(200px, 42vw);
  height: auto;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  #page-loader .page-loader__logo {
    animation: kcnLoaderPulse 1s ease-in-out infinite;
  }
}

@keyframes kcnLoaderPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-x: none;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

/* ── VARIABLES ── */
:root {
  --navy: #002957;
  --navy-muted: #153e66;
  --navy-ink: #001a33;
  --navy-soft: rgba(0, 41, 87, 0.14);
  --navy-softer: rgba(0, 41, 87, 0.08);
  --navy-fade: rgba(0, 41, 87, 0.05);
  /* Primary action surfaces ,  flat navy */
  --cta-fill: var(--navy);
  --cta-fill-flat: var(--navy);
  --cta-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 41, 87, 0.22);
  --cta-shadow-hover: 0 2px 6px rgba(0, 0, 0, 0.08), 0 14px 36px rgba(0, 41, 87, 0.28);
  --cta-glow-soft: 0 0 24px rgba(0, 61, 120, 0.35);
  --cta-glow-strong: 0 0 32px rgba(0, 61, 120, 0.48);
  /* KCN gold ,  visible accents (bars, hero, active states) */
  --gold: #ffc729;
  --gold-muted: #c9a31f;
  --gold-soft: rgba(255, 199, 41, 0.38);
  --gold-line: rgba(255, 199, 41, 0.98);
  --offwhite: #f5f5f7;
  --dark: #1d1d1f;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --muted: #6e6e73;
  --border: #e8e8ed;
  /* Inter only ,  one family; hierarchy = size + weight + tracking */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: var(--font-sans);
  --display: var(--font-sans);
  --tracking-display: -0.045em;
  --tracking-hero: -0.045em;
  --tracking-tight: -0.035em;
  --tracking-title: -0.028em;
  --tracking-section: -0.025em;
  --tracking-ui: -0.015em;
  --leading-body: 1.65;
  /* Headlines & brand type ,  KCN navy (body copy stays near-black) */
  --text-heading: var(--navy);
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --surface-page: #ffffff;
  --surface-muted: #f5f5f7;
  --hairline: rgba(0, 0, 0, 0.08);
  --hairline-strong: rgba(0, 0, 0, 0.12);
  /* Links: classic readable blue (headings use --text-heading navy) */
  --link: #0066cc;
  --link-hover: #004499;
  --link-blue: var(--link);
  /* Subtle focus / hover ring (flat, no gold) */
  --btn-gold-ring: 0 0 0 2px rgba(0, 41, 87, 0.12);
  --radius-ui: 20px;
  --radius-pill: 980px;
  /* Editorial max width ,  closer to Apple.com content rhythm */
  --layout-max: 68rem;
  --nav-h: 5.25rem;
  --shadow-apple-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-apple-md: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 28px rgba(0, 0, 0, 0.08);
  /* Motion ,  one vocabulary site-wide (avoids “same .2s everywhere”) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-tap: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --dur-fast: 0.12s;
  --dur-ui: 0.2s;
  --dur-reveal: 0.42s;
  --focus: 2px solid var(--navy);
  --focus-glow: 0 0 0 3px rgba(0, 41, 87, 0.1);
  --focus-offset: 3px;
  /* Cards ,  minimal lift, hairline (catalog / subcat / PDP chrome) */
  --catalog-border: 0.5px solid var(--hairline);
  --catalog-shadow: var(--shadow-apple-sm);
  --catalog-shadow-hover: var(--shadow-apple-md);
  /* Flat scrims / overlays (no gradients) */
  --grad-hero-scrim: rgba(0, 41, 87, 0.78);
  --grad-section-veil: rgba(245, 245, 247, 0.94);
  --grad-card-sheen: none;
  --grad-pdp-well: none;
  --grad-hero-img-foot: rgba(0, 27, 58, 0.52);
  --grad-brands-veil: rgba(254, 254, 254, 0.96);
  --grad-pdp-wa: #fafafa;
  --grad-subcat-fade: rgba(255, 255, 255, 0.92);
}

/* ── FONT FACES ── */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ── BASE ── */
body {
  font-family: var(--sans);
  background: #fbfbfd;
  color: var(--text-primary);
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:visited {
  color: #5a5290;
}

a:hover {
  color: var(--link-hover);
}

a:active {
  color: #003366;
}

a:hover,
a:visited,
a:active,
a:focus,
a:focus-visible {
  text-decoration: none;
}

/* Card-style links stay on-brand when visited (global :visited is purple) */
.cat-card,
.cat-card:visited,
.product-card,
.product-card:visited,
.sub-card,
.sub-card:visited,
.explore-card,
.explore-card:visited {
  color: var(--navy);
}

.sub-card--navy,
.sub-card--navy:visited {
  color: #fff;
}

.wa-btn,
.wa-btn:visited,
.pdp-wa-btn,
.pdp-wa-btn:visited,
.chat-bubble-cta,
.chat-bubble-cta:visited,
.chat-bubble-cta:active,
.chat-bubble-cta:focus,
.chat-bubble-cta:focus-visible {
  color: #fff;
}

.nav-portal-btn,
.nav-portal-btn:visited {
  color: #fff;
}

.nav-portal-btn:hover,
.nav-portal-btn:visited:hover {
  color: #fff;
}

/* ── Focus & touch (keyboard + phone) ── */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: var(--focus);
  outline-offset: var(--focus-offset);
  box-shadow: var(--focus-glow);
}

button,
[role='button'],
.nav-mobile-btn,
.chat-toggle-btn,
.pdp-call-fab,
.chat-bubble-close,
.chat-bubble-cta,
.float-cat,
.wa-btn,
.nav-portal-btn,
.btn-primary,
.btn-ghost-white,
.mob-menu a,
.faq-header,
.cat-card {
  -webkit-tap-highlight-color: rgba(0, 41, 87, 0.07);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:active,
  .btn-ghost-white:active,
  .wa-btn:active,
  .nav-portal-btn:active,
  .nav-mobile-btn:active,
  .chat-toggle-btn:active,
  .pdp-call-fab:active,
  .chat-bubble-cta:active,
  .shop-arrow:active {
    transform: translateY(1px);
    transition-duration: var(--dur-fast);
    transition-timing-function: var(--ease-tap);
  }

  .float-cat:active {
    transform: translateX(2px);
    transition-duration: var(--dur-fast);
  }
}

@media (hover: none) {
  .btn-primary:active,
  .btn-ghost-white:active,
  .wa-btn:active,
  .nav-portal-btn:active,
  .nav-mobile-btn:active,
  .chat-toggle-btn:active,
  .pdp-call-fab:active,
  .chat-bubble-cta:active,
  .mob-menu-portal:active,
  .mob-menu-wa:active {
    transform: scale(0.98);
    opacity: 0.94;
    transition: transform var(--dur-fast) var(--ease-tap),
      opacity var(--dur-fast) var(--ease-tap);
  }

  .float-cat:active {
    transform: scale(0.97);
    opacity: 0.92;
  }

  .faq-item:active .faq-header {
    background: rgba(0, 41, 87, 0.04);
  }

  .cat-card:active {
    transform: translateY(-3px);
    transition-duration: var(--dur-fast);
  }
}

p {
  line-height: var(--leading-body);
}

.body-default {
  padding-top: var(--nav-h);
}

.body-product-page {
  padding-top: var(--nav-h);
  padding-bottom: 6rem;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--surface-muted);
}

::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-muted);
}

/* ── TYPOGRAPHY ,  Inter roles (headings share display token + weight) ── */
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--text-heading);
}

.font-display,
.font-lexend {
  font-family: var(--display);
}

/* ── UTILITY (needed by JS + layout) ── */
.hidden {
  display: none !important;
}

.border-brand-blue {
  border-color: var(--navy) !important;
}

.border-transparent {
  border-color: transparent !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05) !important;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

.mt-auto {
  margin-top: auto;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
}

.pointer-events-none {
  pointer-events: none;
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1)
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, .2, 1)
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(.4, 0, .6, 1) infinite;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--layout-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-narrow {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-prose {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: var(--surface-muted);
}

.section--white {
  background: #fff;
}

.section--light {
  background: #f5f5f5;
}

.section--border {
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  gap: 3rem;
}

.grid-split {
  display: grid;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ── EYEBROW + HEADING ── */
.eyebrow {
  display: block;
  position: relative;
  padding-left: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.eyebrow::before {
  display: none;
}

/* Brand accent eyebrow (optional ,  default is Apple-neutral) */
.eyebrow--brand {
  color: var(--navy-muted);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow--brand::before {
  display: none;
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: var(--tracking-section);
  color: var(--text-heading);
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.25rem);
  line-height: 1.12;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(251, 251, 253, 0.96);
  -webkit-backdrop-filter: saturate(200%) blur(18px);
  backdrop-filter: saturate(200%) blur(18px);
  border-bottom: 1px solid rgba(0, 41, 87, 0.1);
  box-shadow: none;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  transition: box-shadow var(--dur-ui) var(--ease-out),
    border-color var(--dur-ui) ease,
    background 0.25s ease;
}

.nav-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.nav-links a:visited {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--navy-muted);
  padding-bottom: 0;
  border-bottom: none;
  transition: color var(--dur-ui) var(--ease-tap);
}

.nav-links a:hover,
.nav-links a:visited:hover {
  color: var(--link);
}

.nav-links a.nav-active,
.nav-links a.nav-active:visited {
  color: var(--navy);
  font-weight: 700;
  border-bottom: none;
  padding-bottom: 0;
}

.mob-menu a.nav-active,
.mob-menu a.nav-active:visited {
  color: var(--navy);
  font-weight: 700;
  background: rgba(0, 41, 87, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-wa {
  display: none;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.42rem 1rem;
  letter-spacing: -0.015em;
}

.nav-portal-btn {
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  padding: 0.55rem 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  border: 1.5px solid var(--navy);
  transition: background var(--dur-ui) var(--ease-tap),
    color var(--dur-ui) var(--ease-tap),
    transform var(--dur-ui) var(--ease-out),
    box-shadow var(--dur-ui) ease,
    border-color var(--dur-ui) ease;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 26, 51, 0.2);
  letter-spacing: var(--tracking-ui);
}

.nav-portal-btn:hover {
  background: #001a33;
  color: #fff;
  border-color: #001a33;
  box-shadow: var(--btn-gold-ring), 0 8px 22px rgba(0, 41, 87, 0.28);
}

.nav-actions > .nav-portal-btn {
  display: none;
}

.mob-menu .nav-portal-btn.mob-menu-portal {
  display: inline-flex;
  box-sizing: border-box;
  margin-top: .75rem;
  padding: .75rem 1.25rem;
  border: 1.5px solid var(--navy);
  border-radius: 9999px;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
  text-align: center;
  justify-content: center;
  color: #fff;
  background: var(--navy);
  font-weight: 600;
}

.mob-menu .nav-portal-btn.mob-menu-portal:hover {
  color: #fff;
  background: #001a33;
  border-color: #001a33;
  box-shadow: var(--btn-gold-ring), 0 8px 22px rgba(0, 41, 87, 0.22);
}

.nav-mobile-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 0.5px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--dur-ui) var(--ease-tap),
    border-color var(--dur-ui) ease,
    color var(--dur-ui) ease,
    transform var(--dur-fast) var(--ease-tap);
}

.nav-mobile-btn:hover {
  background: rgba(0, 41, 87, 0.04);
  border-color: rgba(0, 41, 87, 0.12);
}

.nav-scrolled {
  box-shadow: 0 1px 0 rgba(0, 41, 87, 0.08), 0 8px 24px rgba(0, 41, 87, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

/* After light scroll: KCN gold tint + navy type (float pills, home hero CTA + category row) */
body.page-scrolled .float-cat {
  background: linear-gradient(145deg, rgba(255, 214, 102, 0.96) 0%, rgba(255, 241, 200, 0.98) 55%, rgba(255, 252, 235, 0.99) 100%);
  color: var(--navy);
  border-left-width: 4px;
  box-shadow:
    0 1px 0 rgba(0, 41, 87, 0.06),
    0 8px 22px rgba(0, 41, 87, 0.1);
}

body.page-scrolled .float-cat i {
  color: var(--navy);
  background: rgba(0, 41, 87, 0.08);
}

body.page-scrolled .float-cat:hover {
  color: #001a33;
  box-shadow:
    0 2px 0 rgba(0, 41, 87, 0.05),
    0 12px 28px rgba(0, 41, 87, 0.14);
}

body.home.page-scrolled .hero-cta-primary,
body.home.page-scrolled .hero-cta-primary:visited {
  background: #ffe8a8;
  color: var(--navy);
  border: 1.5px solid rgba(0, 41, 87, 0.18);
  box-shadow: 0 2px 0 rgba(0, 41, 87, 0.06);
}

body.home.page-scrolled .hero-cta-primary:hover {
  background: #ffd866;
  color: #001a33;
  border-color: rgba(0, 41, 87, 0.28);
  box-shadow: 0 4px 18px rgba(0, 41, 87, 0.12);
}

body.home.page-scrolled .hero-cat-row {
  background: rgba(255, 248, 220, 0.96);
  border-top-color: rgba(0, 41, 87, 0.1);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
}

body.home.page-scrolled .hero-cat,
body.home.page-scrolled .hero-cat:visited {
  color: var(--navy);
}

body.home.page-scrolled .hero-cat:hover,
body.home.page-scrolled .hero-cat:visited:hover {
  color: #001a33;
}

body.home.page-scrolled .hero-cat i {
  color: var(--navy);
}

body.home.page-scrolled .hero-cat:hover i {
  color: #001a33;
}

/* Mobile menu */
.mob-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: saturate(200%) blur(18px);
  backdrop-filter: saturate(200%) blur(18px);
  border-bottom: 1px solid rgba(0, 41, 87, 0.1);
  box-shadow: 0 12px 32px rgba(0, 41, 87, 0.12);
  padding: 1.5rem 1.25rem;
  text-align: left;
}

.mob-menu a,
.mob-menu a:visited {
  display: block;
  padding: .75rem 0;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1.0625rem;
  border-bottom: 0.5px solid var(--hairline);
  text-align: left;
  transition: color var(--dur-ui) var(--ease-tap),
    background var(--dur-ui) ease;
}

.mob-menu a:hover,
.mob-menu a:visited:hover {
  color: var(--link);
}

.mob-menu a:active {
  background: rgba(0, 41, 87, 0.04);
}

.mob-menu a:last-child {
  border-bottom: none;
}

.mob-menu-wa {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

/* ── LOGO ── */
.logo-mark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark .logo-img {
  display: block;
  width: auto;
  height: 2.125rem;
  max-width: 9.5rem;
  object-fit: contain;
}

.nav .logo-mark .logo-img {
  height: 2.875rem;
  max-width: 13.5rem;
}

.logo-mark.logo-mark--footer .logo-img,
.logo-mark.light .logo-img {
  height: 1.875rem;
  max-width: 8.75rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
}

.logo-mark .logo-text {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}

.logo-mark .logo-bar {
  height: 3px;
  background: var(--navy);
  margin: 2px 0;
}

.logo-mark .logo-sub {
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1;
}

.logo-mark.light .logo-text {
  color: #fff;
}

.logo-mark.light .logo-sub {
  color: rgba(255, 255, 255, .7);
}

@keyframes kcn-logo-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .nav .logo-mark .logo-img,
  .footer .logo-mark .logo-img {
    animation: kcn-logo-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .footer .logo-mark .logo-img {
    animation-duration: 0.55s;
    animation-delay: 0.08s;
  }

  .logo-mark .logo-img {
    transition: transform 0.25s ease, filter 0.25s ease;
  }

  .logo-mark:hover .logo-img {
    transform: scale(1.03);
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-scrim);
}

.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.hero-grid > div {
  text-align: center;
  width: 100%;
}

.hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 27, 58, 0.55);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--display);
  font-weight: 600;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.06;
  letter-spacing: var(--tracking-hero);
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 27, 58, 0.45);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.125rem;
  font-weight: 400;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-stats {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.125rem;
}

.hero-stats-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255, 255, 255, .2);
  display: none;
}

/* Secondary hero action ,  text link (single primary button pattern) */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: none;
  transition: color 0.2s ease;
}

.hero-text-link:hover {
  color: #fff;
}

.hero-text-link__arr {
  display: inline-block;
  transition: transform 0.22s var(--ease-soft);
}

.hero-text-link:hover .hero-text-link__arr {
  transform: translateX(4px);
}

.hero-stats--compact {
  margin-top: 2.25rem;
  padding-top: 2rem;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.hero-img-col {
  display: none;
  position: relative;
}

.hero-img-badge-verified {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 20;
  animation: bounce 3s infinite;
}

.hero-verified-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}

.hero-verified-label {
  font-size: .75rem;
  font-weight: 800;
  color: var(--navy);
}

.hero-verified-sub {
  font-size: .625rem;
  color: #9ca3af;
  font-weight: 600;
}

.hero-img-badge-markets {
  position: absolute;
  top: -1rem;
  right: -.5rem;
  background: #fff;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-size: .875rem;
  padding: .75rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
  transform: rotate(6deg);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: transform .3s;
}

.hero-img-badge-markets:hover {
  transform: rotate(0deg);
  color: var(--navy);
}

.hero-img-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  transform: rotate(1deg);
  transition: transform .5s;
  position: relative;
}

.hero-img-frame:hover {
  transform: rotate(0deg);
}

.hero-img-frame img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-img-foot);
}

.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #fff;
}

.hero-img-stars {
  color: rgba(255, 255, 255, 0.9);
  font-size: .875rem;
  margin-bottom: .5rem;
}

.hero-img-quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

.hero-img-attr {
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  margin-top: .75rem;
  font-weight: 600;
}

.hero-nav-bar {
  position: relative;
  z-index: 10;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .2);
  backdrop-filter: blur(8px);
}

.hero-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.hero-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}

.hero-nav-link:hover {
  color: #fff;
}

.hero-nav-link i {
  font-size: 1.25rem;
}

/* ── GRAIN ── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* Film grain removed ,  Apple surfaces stay optically clean */
  opacity: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color var(--dur-ui) var(--ease-tap),
    transform var(--dur-fast) var(--ease-tap),
    box-shadow var(--dur-ui) var(--ease-out);
  font-size: 1.0625rem;
  letter-spacing: var(--tracking-ui);
  border: 1px solid rgba(0, 26, 51, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
  background: var(--navy-muted);
  color: #fff;
  box-shadow: var(--btn-gold-ring), 0 4px 14px rgba(0, 41, 87, 0.18);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--dur-ui) var(--ease-tap),
    opacity var(--dur-ui) ease,
    transform var(--dur-fast) var(--ease-tap);
}

.btn-ghost-white:hover {
  color: #fff;
}

.btn-ghost-white .wa-green {
  color: #4ade80;
  font-size: 1.25rem;
}

/* ── CATEGORY CARDS ,  split editorial panel + photo column ── */
.section--cats {
  background: #f5f7fa;
  border-top: 1px solid rgba(0, 41, 87, 0.06);
}

.section--cats .section-header-row {
  margin-bottom: clamp(1.5rem, 2.2vw + 0.75rem, 2.75rem);
}

/* Wins over .section--white when both classes are on the catalog hero */
.section.section--white.catalog-cat-section {
  background: #fbfbfd;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.catalog-cat-section .catalog-cat-grid {
  padding-top: 2.25rem;
  margin-top: 1.5rem;
  border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

.cat-card--food {
  --cat-accent: #ea580c;
  --cat-accent-2: #f97316;
  --cat-accent-soft: rgba(234, 88, 12, 0.22);
  --cat-panel-a: #fffbf5;
  --cat-panel-b: #ffffff;
}

.cat-card--beauty {
  --cat-accent: #db2777;
  --cat-accent-2: #ec4899;
  --cat-accent-soft: rgba(219, 39, 119, 0.2);
  --cat-panel-a: #fdf2f8;
  --cat-panel-b: #ffffff;
}

.cat-card--medical {
  --cat-accent: #2563eb;
  --cat-accent-2: #3b82f6;
  --cat-accent-soft: rgba(37, 99, 235, 0.22);
  --cat-panel-a: #eff6ff;
  --cat-panel-b: #ffffff;
}

.cat-card--auto {
  --cat-accent: #475569;
  --cat-accent-2: #64748b;
  --cat-accent-soft: rgba(71, 85, 105, 0.22);
  --cat-panel-a: #f1f5f9;
  --cat-panel-b: #fafafa;
}

.cat-card {
  position: relative;
  display: block;
  border-radius: var(--radius-ui);
  overflow: hidden;
  border: var(--catalog-border);
  box-shadow: var(--catalog-shadow);
  text-decoration: none;
  color: var(--navy);
  background: var(--surface-page);
  transition:
    transform 0.45s var(--ease-soft),
    box-shadow 0.45s var(--ease-soft),
    border-color 0.35s var(--ease-out);
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--catalog-shadow-hover);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--navy);
}

.cat-card:focus-visible {
  outline: var(--focus);
  outline-offset: var(--focus-offset);
  box-shadow: var(--focus-glow);
}

.catalog-cat-grid {
  padding-bottom: 4rem;
}

.cat-card-inner {
  display: grid;
  min-height: clamp(16.5rem, 48vw, 22rem);
  grid-template-areas:
    'visual'
    'panel';
  grid-template-rows: minmax(10.5rem, 36vw) auto;
}

@media (min-width: 768px) {
  .cat-card-inner {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 41%);
    grid-template-rows: minmax(17.5rem, 1fr);
    grid-template-areas: 'panel visual';
    min-height: clamp(17rem, 20vw, 23rem);
  }
}

@media (min-width: 1100px) {
  .cat-card-inner {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 38%);
    min-height: clamp(18rem, 18vw, 24rem);
  }
}

.cat-card-panel {
  grid-area: panel;
  position: relative;
  padding: clamp(1.125rem, 3vw, 1.875rem) clamp(1.125rem, 2.5vw, 1.75rem)
    clamp(1.25rem, 2.5vw, 1.75rem);
  padding-left: clamp(1.25rem, 3vw, 1.65rem);
  background: var(--cat-panel-a, #ffffff);
  display: flex;
  flex-direction: column;
}

.cat-card-panel::before {
  display: none;
}

@media (min-width: 768px) {
  .cat-card-panel {
    padding-left: clamp(1.35rem, 2.5vw, 1.85rem);
  }
}

.cat-card-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-left: 0.65rem;
}

.cat-card-top {
  flex: 1 1 auto;
}

.cat-card-top .cat-desc {
  margin-bottom: 1rem;
}

.cat-card-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.cat-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.cat-card .cat-chip {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.3125rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-left: 2px solid rgba(0, 41, 87, 0.22);
  line-height: 1.35;
}

.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.cat-card-cta__label {
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.25s var(--ease-soft), color 0.25s ease;
}

.cat-card:hover .cat-card-cta__label {
  border-bottom-color: rgba(0, 41, 87, 0.4);
}

.cat-card-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 41, 87, 0.12);
  background: #fff;
  color: var(--navy);
  transition:
    background 0.3s var(--ease-soft),
    border-color 0.3s var(--ease-soft),
    color 0.3s ease,
    transform 0.35s var(--ease-soft);
}

.cat-card-cta__icon i {
  font-size: 0.65rem;
}

.cat-card:hover .cat-card-cta__icon {
  background: var(--cat-accent);
  border-color: var(--cat-accent);
  color: #fff;
  transform: translateX(2px);
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 0.375rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
  border: 1px solid var(--cat-accent-soft);
  background: rgba(255, 255, 255, 0.78);
  color: var(--cat-accent);
}

.cat-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 1.1rem + 1.5vw, 1.875rem);
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  line-height: 1.18;
}

.cat-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.62;
  max-width: 36rem;
}

.cat-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.cat-brand-tag {
  font-size: 0.5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.45rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.75);
  color: #64748b;
  border: 1px solid rgba(0, 41, 87, 0.1);
}

.cat-card-visual {
  grid-area: visual;
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 768px) {
  .cat-card-visual {
    min-height: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.cat-card-visual::after {
  display: none;
}

.cat-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s var(--ease-soft);
}

.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .cat-card,
  .cat-card:hover,
  .cat-card-img,
  .cat-card:hover .cat-card-img,
  .cat-card-cta__icon,
  .cat-card:hover .cat-card-cta__icon {
    transition: none !important;
  }

  .cat-card:hover {
    transform: none;
  }

  .cat-card:hover .cat-card-img {
    transform: scale(1.02);
  }

  .cat-card:hover .cat-card-cta__icon {
    transform: none;
  }
}

/* ── FEATURES ── */
.features-section {
  background: var(--surface-muted);
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  padding: 4rem 0;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: rgba(0, 41, 87, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.feature-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage ,  feature cards with photography */
body.home .feature--rich {
  text-align: left;
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 41, 87, 0.06);
}

body.home .feature--rich .feature-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eaef;
}

body.home .feature--rich .feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s var(--ease-out);
}

body.home .feature--rich:hover .feature-thumb img {
  transform: scale(1.06);
}

body.home .feature--rich .feature-body {
  padding: 0 1.25rem 1.35rem;
  position: relative;
  margin-top: -0.65rem;
}

body.home .feature--rich .feature-icon {
  margin: 0 0 0.85rem;
  box-shadow: 0 4px 14px rgba(0, 41, 87, 0.08);
}

body.home .feature--rich .feature-title {
  margin-bottom: 0.4rem;
}

body.home .feature--rich .feature-desc {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.875rem;
}

@media (prefers-reduced-motion: reduce) {
  body.home .feature--rich:hover .feature-thumb img {
    transform: scale(1.02);
  }
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  /* box-shadow: 0 10px 30px rgba(0, 41, 87, .08); */
  box-shadow: 0 0 30px rgba(0, 41, 87, 0.08);
  border-top: 4px solid transparent;
}

.testimonial-card--yellow {
  /* border-top-color: var(--gold); */
  box-shadow: 0 0 30px rgba(0, 41, 87, 0.08);
}

.testimonial-card--blue {
  /* border-top-color: var(--navy); */
  transform: translateY(-1rem);
  box-shadow: 0 25px 50px rgba(0, 41, 87, .12);
}

.testimonial-card--gray {
  /* border-top-color: #e5e7eb; */
  box-shadow: 0 0 30px rgba(0, 41, 87, 0.08);
}

.testimonial-stars {
  color: #64748b;
  font-size: .875rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #4b5563;
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: .875rem;
  flex-shrink: 0;
}

.testimonial-avatar--blue {
  background: #2563eb;
  color: #fff;
}

.testimonial-avatar--gold {
  background: var(--navy-muted);
  color: #fff;
}

.testimonial-avatar--gray {
  background: #d1d5db;
  color: var(--navy);
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .875rem;
}

.testimonial-role {
  font-size: .75rem;
  color: #9ca3af;
  font-weight: 600;
}

/* ── UPDATE / BLOG CARDS ── */
.featured-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  text-decoration: none;
  color: var(--navy);
  transition: box-shadow .2s, transform .2s;
}

.featured-post:hover {
  box-shadow: 0 20px 48px rgba(0, 41, 87, .10);
  transform: translateY(-2px);
  color: var(--navy);
}

.featured-post-img {
  background: var(--navy);
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-post-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 87, 0.08);
}

.featured-post-icon {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-post-icon i {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.92);
}

.featured-post-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
}

.featured-post-tag {
  font-size: .625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.featured-post-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--navy);
  line-height: 1.3;
}

.featured-post:hover .featured-post-title {
  color: var(--navy);
}

.featured-post-excerpt {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.update-card {
  display: block;
  background: var(--offwhite);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  text-decoration: none;
  color: var(--navy);
  transition: box-shadow .2s;
}

.update-card:hover {
  box-shadow: 0 20px 40px rgba(0, 41, 87, .12);
  color: var(--navy);
}

.update-card-img {
  height: 12rem;
  overflow: hidden;
}

.update-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.update-card:hover .update-card-img img {
  transform: scale(1.05);
}

.update-card-body {
  padding: 1.5rem;
}

.update-card-meta {
  font-size: .625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  display: block;
}

.update-card-title {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: .5rem;
  line-height: 1.3;
  transition: color .2s;
}

.update-card:hover .update-card-title {
  color: var(--link);
}

.update-card-excerpt {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ── BRANDS / DARK CTA SPLIT ── */
.brands-cta {
  background: #fbfbfd;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.25rem;
}

.brands-cta-inner {
  overflow: hidden;
  border-radius: 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.brands-cta-inner--partner-only {
  display: block;
}

.brands-panel {
  position: relative;
  isolation: isolate;
  background-color: #e8eaef;
  background-image: url('/assets/img/k-hero2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.brands-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brands-veil);
  z-index: 0;
  pointer-events: none;
}

.brands-panel > * {
  position: relative;
  z-index: 1;
}

.brands-panel-title {
  font-family: var(--display);
  font-weight: 600;
  color: var(--text-heading);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.brands-panel-lead {
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.brands-count {
  font-size: .6875rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 41, 87, 0.12);
  display: inline-block;
}

.dark-panel {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.25rem;
  color: #fff;
}

.dark-panel-dots {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: none;
  pointer-events: none;
}

.dark-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}

.dark-panel-overlay {
  position: absolute;
  inset: 0;
}

.dark-panel-content {
  position: relative;
  z-index: 10;
  max-width: 32rem;
}

.dark-panel-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 1rem;
  display: block;
}

.dark-panel-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: var(--tracking-section);
}

.dark-panel-lead {
  color: rgba(255, 255, 255, .7);
  font-size: .875rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ── SUBCATEGORY CARDS ── */
.sub-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-ui);
  background-color: var(--card-surface, var(--surface-page));
  background-image: none;
  border: var(--catalog-border);
  box-shadow: var(--catalog-shadow);
  display: block;
  text-decoration: none;
  color: var(--navy);
  transition: box-shadow 0.32s var(--ease-out),
    transform 0.32s var(--ease-out),
    border-color 0.32s ease;
}

.sub-card:hover {
  box-shadow: var(--catalog-shadow-hover);
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
  color: var(--navy);
}

.sub-card:hover .card-img {
  transform: scale(1.05);
}

.sub-card:hover .shop-arrow {
  gap: 10px;
}

.sub-card:hover .shop-arrow i {
  transform: translateX(3px);
}

.sub-card:hover .sku-badge {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.sub-card--navy {
  background-color: var(--navy);
  background-image: none;
  color: #fff;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12), 0 12px 32px rgba(0, 0, 0, 0.14);
}

.sub-card--navy:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14), 0 20px 40px rgba(0, 0, 0, 0.16);
}

.sub-card--navy .card-title {
  color: #fff;
}

.sub-card--navy .shop-arrow {
  color: rgba(255, 255, 255, .8);
}

.sub-card--navy .shop-arrow:hover {
  color: #fff;
}

.card-img {
  transition: transform .55s cubic-bezier(.25, .46, .45, .94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-label {
  font-size: .625rem;
  font-weight: 700;
  color: #999;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  line-height: 1.15;
}

.shop-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--navy);
  transition: gap .2s ease;
  text-decoration: none;
}

.shop-arrow i {
  font-size: .6875rem;
  transition: transform .2s ease;
}

.shop-arrow--section {
  font-size: 1rem;
  padding: 0.375rem 0;
}

@media (hover: hover) and (pointer: fine) {
  .shop-arrow--section:hover {
    color: var(--link);
  }
}

.sku-badge {
  display: inline-flex;
  align-items: center;
  background: #f7f7f7;
  border: 1.5px solid #eee;
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: .625rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}

.subcat-img-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-ui);
  flex-shrink: 0;
  isolation: isolate;
  width: var(--panel-w, 12rem);
  min-width: var(--panel-w, 12rem);
  background: var(--panel-bg, transparent);
  display: var(--panel-display, block);
  align-items: var(--panel-align, stretch);
  justify-content: var(--panel-justify, flex-start);
  padding: var(--panel-pad, 0);
  box-sizing: border-box;
}

.subcat-img-panel:has(> img)::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 20px 0 48px 0 rgba(255, 255, 255, 0.55),
    inset 48px 0 80px 0 rgba(255, 255, 255, 0.22);
}

.sub-card--navy .subcat-img-panel:has(> img)::after {
  box-shadow:
    inset 0 0 32px rgba(0, 0, 0, 0.28),
    inset 16px 0 40px rgba(0, 0, 0, 0.15);
}

.subcat-img-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.subcat-img-bottom {
  position: relative;
  flex: 1;
  min-height: 15rem;
  margin-top: auto;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-ui);
  margin: 0.65rem 0.75rem 0.75rem 0.75rem;
}

.subcat-img-bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 36px 64px rgba(255, 255, 255, 0.45),
    inset 0 72px 100px rgba(255, 255, 255, 0.22),
    inset 0 0 20px rgba(255, 255, 255, 0.12);
}

.subcat-img-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6.5rem;
  z-index: 10;
  pointer-events: none;
  background: var(--grad-subcat-fade) !important;
  box-shadow:
    inset 0 16px 32px rgba(255, 255, 255, 0.35),
    inset 0 40px 72px rgba(255, 255, 255, 0.14);
}

.subcat-img-bottom img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
}

/* ── PRODUCT CARDS ── */
.product-card {
  position: relative;
  background: var(--surface-page);
  border-radius: var(--radius-ui);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--navy);
  border: var(--catalog-border);
  box-shadow: var(--catalog-shadow);
  transition: transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.32s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--catalog-shadow-hover);
  border-color: var(--hairline-strong);
  color: var(--navy);
}

.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-img {
  transition: transform .5s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ── CERT BADGES ── */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 9999px;
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cert-halal {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.cert-haccp {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.cert-ce {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.cert-fda {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.cert-iso {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wa);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  transition: background-color var(--dur-ui) var(--ease-tap),
    transform var(--dur-ui) var(--ease-out),
    box-shadow var(--dur-ui) ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), var(--btn-gold-ring);
}

/* ── STICKY WA BAR ── */
.wa-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(251, 251, 253, 0.82);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  backdrop-filter: saturate(200%) blur(24px);
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 -20px 48px rgba(0, 0, 0, 0.08);
  z-index: 50;
  padding: 0.65rem 1.25rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.32s var(--ease-soft);
}

.wa-sticky.visible {
  transform: translateY(0);
}

.wa-sticky.product-cta {
  z-index: 100;
}

.sticky-left {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sticky-thumb-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.sticky-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sticky-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: #666666;
  letter-spacing: 0.005em;
  line-height: 1.3;
}

.sticky-online {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.sticky-ping {
  position: relative;
  width: .625rem;
  height: .625rem;
  flex-shrink: 0;
}

.sticky-ping span:first-child {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .6;
  animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.sticky-ping span:last-child {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--wa);
}

.sticky-online-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: #34c759;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sticky-product-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-transform: none;
  font-style: normal;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── FAQ ── */
.faq-item {
  background: var(--surface-page);
  border-radius: var(--radius-ui);
  border: 0.5px solid var(--hairline);
  box-shadow: none;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  transition: background var(--dur-ui) var(--ease-tap);
  border-radius: var(--radius-ui);
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-heading);
  padding-right: 1rem;
  line-height: 1.35;
}

.faq-icon {
  transition: transform 0.32s var(--ease-out);
  flex-shrink: 0;
  color: var(--text-secondary);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease-soft);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: .875rem;
  color: #4b5563;
  line-height: 1.7;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer a {
  color: var(--link);
  font-weight: 600;
}

.faq-answer a:hover {
  color: var(--link-hover);
}

/* Product page FAQ */
.food-faq-rig {
  background: var(--offwhite);
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  overflow: hidden;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.marquee-item i {
  color: var(--navy-muted);
}

/* ── SCROLL REVEAL (subtle drift ,  not a big “template lift”) ── */
.fade-up {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-soft);
}

.fade-up.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-soft);
}

.reveal-on-scroll.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .fade-up,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .animate-pulse,
  .animate-ping,
  .animate-pulse-slow {
    animation: none !important;
  }

  .wa-btn {
    animation: none !important;
  }

  .marquee-track {
    animation: none !important;
  }
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  color: #aeaeb2;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.img-placeholder i {
  font-size: 1.75rem;
  opacity: .25;
}

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(251, 251, 253, 0.9) 100%);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 0.5px solid rgba(0, 41, 87, 0.07);
  padding: 0.55rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  row-gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #86868b;
  text-transform: none;
  letter-spacing: -0.01em;
  overflow-x: auto;
  white-space: normal;
}

.breadcrumb a {
  color: #1d1d1f;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  border: 0.5px solid rgba(0, 41, 87, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.breadcrumb a:hover {
  color: var(--link-hover);
  border-color: rgba(0, 41, 87, 0.16);
  background: #ffffff;
}

.breadcrumb a:visited {
  color: #1d1d1f;
}

.breadcrumb a:visited:hover {
  color: var(--link-hover);
}

.breadcrumb .sep {
  position: relative;
  flex-shrink: 0;
  width: 0.55rem;
  font-size: 0;
  color: transparent;
  padding: 0;
  user-select: none;
  line-height: 1;
}

.breadcrumb .sep::before {
  content: "\203a";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-size: 0.72rem;
  font-weight: 600;
  color: #c7c7cc;
}

.breadcrumb .current {
  color: #002957;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  border: 0.5px solid rgba(0, 41, 87, 0.14);
  background: rgba(0, 58, 120, 0.06);
}

body.body-product-page .breadcrumb {
  flex-wrap: nowrap;
  white-space: nowrap;
}

@media (max-width: 767px) {
  /* Breadcrumb: drop heavy divider + hide fat scroll affordance under pills */
  .breadcrumb-bar {
    border-bottom: none;
    box-shadow: none;
  }

  .breadcrumb {
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.15rem;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
  }
}

/* ── PAGE HEADER ── */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.75rem, 3vw, 2.5rem);
  background: #fbfbfd;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.page-header-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  letter-spacing: var(--tracking-title);
  color: var(--text-heading);
  line-height: 1.08;
}

.page-header--split .page-title {
  font-size: clamp(2.35rem, 1.4rem + 3vw, 3.5rem);
  line-height: 1.05;
}

.page-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 400;
  margin-top: 0.35rem;
  line-height: 1.5;
  max-width: 40rem;
}

body.page-category-hub .page-header--split .page-desc {
  margin-top: 1.125rem;
}

.page-eyebrow {
  position: relative;
  padding-left: 0;
  color: var(--navy-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.page-eyebrow::before {
  display: none;
}

.page-header-inner--split {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.page-header-inner--split .page-header-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.page-header-visual {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.06),
    0 8px 28px rgba(0, 41, 87, 0.1);
  background: #e8eaef;
}

.page-header-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .page-header-inner--split {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 38%);
    gap: 2rem 2.5rem;
    align-items: center;
  }
}

/* ── DARK CTA BAR ── */
.dark-cta-bar {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.dark-cta-bar-dots {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: none;
  pointer-events: none;
}

.dark-cta-bar-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dark-cta-bar-title {
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: .75rem;
}

.dark-cta-bar-lead {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  max-width: 36rem;
}

/* Custom sourcing (category hub roots): blue panel + photo */
.dark-cta-bar--sourcing {
  background: linear-gradient(135deg, #122a4a 0%, #1a4b7c 48%, #2563eb 100%);
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.dark-cta-bar-inner.dark-cta-bar-inner--sourcing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}

.dark-cta-sourcing-visual {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
}

.dark-cta-sourcing-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.dark-cta-sourcing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dark-cta-sourcing-main {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  align-items: flex-start;
}

.dark-cta-bar--sourcing .eyebrow {
  color: rgba(191, 219, 254, 0.95);
}

.dark-cta-bar--sourcing .dark-cta-bar-title {
  color: #fff;
}

.dark-cta-bar--sourcing .dark-cta-bar-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
}

.dark-cta-bar--sourcing .dark-cta-contact-btn {
  background: #fff;
  color: #0f2744;
  border-color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.dark-cta-bar--sourcing .dark-cta-contact-btn:hover {
  background: #eff6ff;
  color: #0f2744;
  border-color: #eff6ff;
}

/* ── SUBCAT PAGE LAYOUT ── */
.subcats-section {
  background: var(--surface-muted);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.subcats-inline-heading {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 1rem;
}

.subcats-inline-heading:not(:first-child) {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.subcatalog-sweet-banner {
  margin: 0 0 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  background: #f5f0e8;
  aspect-ratio: 21 / 9;
  max-height: min(14rem, 40vw);
}

.subcatalog-sweet-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

@media (max-width: 767px) {
  .subcatalog-sweet-banner {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
}

.grid-2-3--solo {
  max-width: min(22rem, 100%);
}

/* ── Minimalist subcatalog grid (Browse Range reference layout) ── */
.subcats-section--minimal {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  -webkit-tap-highlight-color: transparent;
}

.subcats-section--minimal .subcats-heading {
  display: none;
}

.subcats-section--minimal .grid-2-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.5rem) clamp(0.75rem, 1.5vw, 1.5rem);
}

@media (min-width: 768px) {
  .subcats-section--minimal .grid-2-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .subcats-section--minimal .grid-2-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.subcats-section--minimal .product-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.subcats-section--minimal .product-card,
.subcats-section--minimal .product-card * {
  -webkit-tap-highlight-color: transparent;
}

.subcats-section--minimal .product-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.subcats-section--minimal .product-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.subcats-section--minimal .product-card-img,
.subcats-section--minimal .product-card-img--lg,
.subcats-section--minimal .product-card-img--sm {
  background: #f4f9fc;
  border-radius: var(--radius-ui);
  aspect-ratio: 1;
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0.85rem;
  transition: background-color 0.25s ease;
}

.subcats-section--minimal .product-card-img::after {
  content: none;
}

.subcats-section--minimal .product-card-img img,
.subcats-section--minimal .product-card-img .product-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.subcats-section--minimal .product-card:hover .product-card-img img,
.subcats-section--minimal .product-card:hover .product-img {
  transform: translateY(-8px);
}

.subcats-section--minimal .product-card:hover .product-card-img {
  background: #eaf3f9;
}

.subcats-section--minimal .product-card-body {
  padding: 0;
  border-top: none;
  text-align: left;
}

.subcats-section--minimal .product-card-brand,
.subcats-section--minimal .product-card-size,
.subcats-section--minimal .product-card-certs,
.subcats-section--minimal .product-card-wa {
  display: none !important;
}

.subcats-section--minimal .product-card-name {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #111111;
  margin: 0 0 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subcats-section--minimal .product-card-foot {
  padding: 0;
  margin: 0;
  background: transparent;
  border-top: none;
  display: block;
}

.subcats-section--minimal .product-card-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #555555;
  letter-spacing: 0.005em;
  transition: color 0.2s ease;
}

.subcats-section--minimal .product-card-link:hover {
  color: #111111;
}

/* EXMO lubricants: white image well, tighter tile, hover brings card forward (cursor can enter from padded hit area) */
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card {
  position: relative;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: var(--radius-ui);
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out);
  z-index: 0;
}

.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:hover,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:focus-within {
  z-index: 4;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.subcats-section--exmo-lubricants.subcats-section--minimal .product-card-img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card-img--lg,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card-img--sm {
  background: #fff;
  margin: 0 0 0.45rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:hover .product-card-img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:focus-within .product-card-img {
  background: #fff;
}

.subcats-section--exmo-lubricants.subcats-section--minimal .product-card-img img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card-img .product-img {
  transform: translateY(0) scale(1.05);
}

.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:hover .product-card-img img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:hover .product-img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:focus-within .product-card-img img,
.subcats-section--exmo-lubricants.subcats-section--minimal .product-card:focus-within .product-img {
  transform: translateY(-8px) scale(1.05);
}

/* DAEHO retread catalog: zoom/crop tire thumbnails (minimal grid still hides extra lines) */
.subcats-section--daeho-retread.subcats-section--minimal .product-card-img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card-img--lg,
.subcats-section--daeho-retread.subcats-section--minimal .product-card-img--sm {
  margin: 0 0 0.5rem;
}

.subcats-section--daeho-retread.subcats-section--minimal .product-card-img img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card-img .product-img {
  object-fit: cover;
  object-position: center center;
  transform: translateY(0) scale(1.14);
}

.subcats-section--daeho-retread.subcats-section--minimal .product-card:hover .product-card-img img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card:hover .product-img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card:focus-within .product-card-img img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card:focus-within .product-img {
  transform: translateY(-8px) scale(1.14);
}

.subcats-section--daeho-retread.subcats-section--minimal .product-card:hover .product-card-img,
.subcats-section--daeho-retread.subcats-section--minimal .product-card:focus-within .product-card-img {
  background: #eaf3f9;
}

.subcat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.grid-lg-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-2-3 {
  display: grid;
  gap: 1.5rem;
}

/* Sub-card size variants */
.sub-card--short {
  min-height: 220px;
  display: flex;
}

.sub-card--medium {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.sub-card--tall {
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.sub-card--compact {
  min-height: 180px;
  display: flex;
}

.subcat-card-body {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.subcat-card-desc {
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ── PRODUCT CARD (generated by build.js) ── */
.product-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(72% 72% at 50% 44%, rgba(178, 214, 255, 0.24) 0%, rgba(178, 214, 255, 0.05) 44%, rgba(178, 214, 255, 0) 72%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  position: relative;
  isolation: isolate;
  margin: 0.55rem 0.65rem 0.65rem;
  padding: 0;
  border-radius: var(--radius-ui);
  overflow: hidden;
}

.product-card-img::after {
  content: "";
  position: absolute;
  inset: auto 14% 0.55rem;
  height: 0.9rem;
  border-radius: 999px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(7, 36, 61, 0.2) 0%, rgba(7, 36, 61, 0) 100%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.product-card-img .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.product-card-img--lg {
  height: 15rem;
  padding: 0;
}

.product-card-img--sm {
  height: 10rem;
  padding: 0;
}

.product-card-body {
  padding: 1.25rem;
  border-top: 0.5px solid var(--hairline);
}

.product-card-brand {
  font-size: .625rem;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
  margin-bottom: .25rem;
}

.product-card-name {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: .5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-name--sm {
  font-size: .875rem;
}

.product-card-size {
  font-size: .75rem;
  color: #9ca3af;
  margin-bottom: .75rem;
}

.product-card-certs {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-bottom: 1rem;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 1.25rem;
  margin-top: -.5rem;
}

.product-card-link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  transition: color .2s;
}

.product-card-link:hover {
  color: var(--link);
}

.product-card-wa {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  border: 1px solid rgba(0, 26, 51, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.product-card-wa:hover {
  background: var(--navy-muted);
  color: #fff;
  box-shadow: var(--btn-gold-ring), 0 4px 14px rgba(0, 41, 87, 0.18);
}

/* ── STORY LEAD ── */
.product-story-plain {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-story-kicker {
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -.025em;
}

.product-story-body {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.625;
}

.product-story-simple {
  color: #374151;
  font-size: 1rem;
  line-height: 1.625;
}

/* ── SHIPPING SPECS ── */
.spec-box {
  background: #fff;
  border-radius: var(--radius-ui);
  border: 0.5px solid var(--hairline);
  padding: 1.25rem 1.35rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-apple-sm);
}

.spec-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 .5rem;
}

.spec-box-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}

.spec-box-title i {
  color: var(--navy);
  margin-right: 0.5rem;
  opacity: 0.85;
}

.spec-box-hs {
  background: #fff;
  color: var(--navy);
  border: 1px solid #e5e7eb;
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-size: .625rem;
  font-weight: 900;
  letter-spacing: .1em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  text-align: center;
}

.spec-cell {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  transition: box-shadow .2s;
}

.spec-cell:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.spec-cell-label {
  display: block;
  font-size: .625rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .25rem;
}

.spec-cell-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--navy);
  word-break: break-word;
}

.spec-shelf {
  padding: .5rem .5rem 0;
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 700;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.spec-shelf span {
  color: var(--navy);
  font-weight: 900;
  text-transform: none;
  letter-spacing: normal;
}

/* ── EXPORT DETAILS ── */
.export-panel {
  font-size: .875rem;
  color: #4b5563;
  line-height: 1.6;
  margin-top: .25rem;
}

.export-panel p {
  margin-bottom: .75rem;
}

.export-toggle {
  font-size: .625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .25rem;
  padding: 0;
  transition: color .2s;
  outline: none;
}

.export-toggle:hover {
  color: var(--link);
}

.export-toggle i {
  transition: transform .2s;
}

/* ── MARKET STATS ── */
.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}

.why-card:hover {
  box-shadow: 0 6px 20px rgba(0, 41, 87, .08);
  transform: translateY(-2px);
}

.why-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .875rem;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon i {
  font-size: 1.125rem;
  color: #fff;
}

.why-label {
  font-size: .625rem;
  font-weight: 900;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.why-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.why-desc {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PARTNER BLOCK ── */
.partner-block {
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 41, 87, .05);
  border: 1px solid #f3f4f6;
}

.partner-inner {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-dots {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: none;
  pointer-events: none;
}

.partner-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--display);
  position: relative;
  z-index: 10;
  line-height: 1.3;
}

.partner-lead {
  font-size: .875rem;
  color: rgba(254, 254, 254, .6);
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 42rem;
  position: relative;
  z-index: 10;
}

.partner-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, .1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s, transform .3s;
}

.partner-item:hover .partner-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(6deg);
}

.partner-icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color .3s;
}

.partner-item:hover .partner-icon i {
  color: var(--navy);
}

.partner-name {
  font-weight: 900;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  color: #fff;
}

.partner-desc {
  font-size: .75rem;
  color: rgba(254, 254, 254, .5);
  line-height: 1.6;
}

.partner-desc strong {
  color: rgba(255, 255, 255, .9);
}

/* ── FOOD FAQ RIG ── */
.food-faq-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.food-faq-trigger:focus {
  outline: none;
}

.food-faq-q {
  font-weight: 900;
  color: var(--navy);
  font-size: .875rem;
  text-transform: uppercase;
  padding-right: .5rem;
  transition: color .2s;
  flex: 1;
}

.food-faq-trigger:hover .food-faq-q {
  color: var(--link);
}

.food-faq-btn-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.food-faq-btn-icon i {
  color: var(--navy);
  font-size: .875rem;
}

.food-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease-out, padding .3s ease;
  padding: 0 2rem;
}

.food-faq-rig.is-open .food-faq-panel {
  max-height: 560px;
  padding-bottom: 1.5rem;
}

.food-faq-panel-body {
  font-size: .875rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.625;
}

.food-faq-panel-body a {
  color: var(--link);
  font-weight: 600;
}

.food-faq-panel-body a:hover {
  color: var(--link-hover);
}

/* ── COMPLIANCE GRID ── */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 60rem;
  margin: 2rem auto 0;
}

.compliance-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .2s;
}

.compliance-card i {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.compliance-card-label {
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 1.375;
}

.i-cert-green {
  color: #4ade80;
}

.i-cert-blue {
  color: #60a5fa;
}

.i-cert-gold {
  color: #cbd5e1;
}

.i-cert-white {
  color: rgba(255, 255, 255, .8);
}

/* ── PRODUCT DETAIL ── */
.pdp-wrap {
  padding: 0 1rem 2rem;
  background: #fbfbfd;
}

.pdp-breadcrumb {
  padding: 1.5rem 0 .5rem;
}

.pdp-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pdp-gallery {
  width: 100%;
}

.pdp-content {
  width: 100%;
}

.pdp-main-frame {
  background: var(--surface-page);
  border-radius: var(--radius-ui);
  padding: clamp(0.35rem, 1.2vw, 0.5rem);
  box-shadow: var(--catalog-shadow);
  border: var(--catalog-border);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.pdp-main-inner {
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pdp-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16rem;
  height: 16rem;
  background: #eceef1;
  border-radius: 50%;
  z-index: 0;
  transition: transform .7s ease;
}

.pdp-main-frame:hover .pdp-bg-circle {
  transform: translate(-50%, -50%) scale(1.1);
}

.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-ui);
  position: relative;
  z-index: 10;
  max-height: min(60vh, 520px);
  transition: transform .5s ease;
}

.pdp-main-frame:hover .pdp-main-img {
  transform: translateY(-.5rem);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pdp-thumb {
  background: var(--surface-page);
  border-radius: var(--radius-ui);
  padding: 0;
  border: 0.5px solid var(--hairline);
  box-shadow: none;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pdp-thumb:hover {
  box-shadow: var(--shadow-apple-sm);
  border-color: var(--hairline-strong);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  pointer-events: none;
}

.pdp-header-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pdp-brand-pill {
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-family: var(--display);
  border-bottom: 2px solid;
  background-color: var(--pill-bg, var(--navy));
  border-bottom-color: var(--pill-edge, rgba(0, 0, 0, 0.22));
}

.pdp-origin {
  background: var(--surface-muted);
  border: 0.5px solid var(--hairline);
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-origin img {
  display: none !important;
}

.pdp-h1 {
  font-size: clamp(2rem, 1.15rem + 2.8vw, 3rem);
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  font-family: var(--display);
  margin-bottom: 1.25rem;
}

.pdp-body {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.float-actions {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.float-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(200%) blur(16px);
  backdrop-filter: saturate(200%) blur(16px);
  padding: 0.5rem 0.95rem 0.5rem 0.65rem;
  border-radius: 0 14px 14px 0;
  border-left: 4px solid var(--navy);
  box-shadow:
    0 1px 0 rgba(0, 41, 87, 0.05),
    0 6px 20px rgba(0, 41, 87, 0.08);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(0, 41, 87, 0.88);
  transition:
    transform 0.24s var(--ease-out),
    box-shadow 0.24s var(--ease-out),
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.float-cat:hover {
  transform: translateX(4px);
  box-shadow:
    0 2px 0 rgba(0, 41, 87, 0.04),
    0 10px 28px rgba(0, 41, 87, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 1);
}

.float-cat i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--navy);
  background: rgba(0, 41, 87, 0.06);
  flex-shrink: 0;
}

.float-kfood {
  border-left-color: #c8102e;
}

.float-kfood i {
  color: #a30d24;
  background: rgba(200, 16, 46, 0.1);
}

.float-kbeauty {
  border-left-color: #b0106b;
}

.float-kbeauty i {
  color: #8e0d56;
  background: rgba(176, 16, 107, 0.1);
}

.float-medical {
  border-left-color: #0d6e5c;
}

.float-medical i {
  color: #0a5648;
  background: rgba(13, 110, 92, 0.1);
}

.float-autom {
  border-left-color: #1e5aa8;
}

.float-autom i {
  color: #174a8c;
  background: rgba(30, 90, 168, 0.1);
}

/* ── CHAT WIDGET ,  bubble stacked above launcher (toggle stays put) ── */
.chat-widget {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: max-content;
  max-width: 100%;
}

.chat-toggle-btn {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  /* Closed state: WhatsApp green launcher */
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(18, 140, 80, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background-color 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.chat-toggle-btn:hover {
  transform: scale(1.06);
  background: #20bd5a;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 6px 18px rgba(32, 189, 90, 0.35);
}

.chat-widget.is-open .chat-toggle-btn {
  background: var(--navy);
  border-color: rgba(0, 41, 87, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.chat-widget.is-open .chat-toggle-btn:hover {
  background: #001f4d;
  box-shadow: 0 0 0 2px rgba(0, 41, 87, 0.18), 0 6px 18px rgba(0, 27, 58, 0.22);
}

.chat-icon-open,
.chat-icon-close {
  font-size: 1.5rem;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-icon-open.chat-icon-open--favicon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  display: block;
  font-size: 0;
}

.chat-icon-open.chat-icon-open--wa {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
  color: #fff;
}

.chat-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

.chat-widget.is-open .chat-icon-open {
  opacity: 0;
  transform: rotate(90deg);
}

.chat-widget.is-open .chat-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

.chat-bubble {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(20rem, calc(100vw - 2.5rem));
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(200%) blur(20px);
  backdrop-filter: saturate(200%) blur(20px);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 24px 48px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  transform-origin: bottom center;
  transform: scale(0.9) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.chat-widget.is-open .chat-bubble {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.chat-bubble-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.chat-bubble-avatar {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.625rem;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.chat-bubble-avatar:has(.chat-bubble-avatar-img) {
  background: #fff;
  border: 1px solid rgba(0, 41, 87, 0.12);
  font-size: 0;
}

.chat-bubble-avatar-img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  display: block;
}

.chat-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.chat-bubble-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  min-width: 0;
}

.chat-bubble-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.chat-bubble-close {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 0.375rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
  align-self: flex-start;
}

.chat-bubble-close:hover {
  color: var(--navy);
  background: #f3f4f6;
}

.chat-bubble-status {
  display: none;
}

.chat-bubble-msg {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.chat-lead-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1rem;
}

.chat-lead-cats--warn {
  outline: 1px solid rgba(180, 83, 9, 0.45);
  outline-offset: 2px;
  border-radius: 0.5rem;
  transition: outline-color 0.2s ease;
}

.chat-cat-chip {
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 41, 87, 0.18);
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.chat-cat-chip:hover {
  border-color: rgba(0, 41, 87, 0.35);
  background: #fff;
}

.chat-cat-chip.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.chat-bubble-cta.chat-cta--needs-cat {
  opacity: 0.55;
  cursor: not-allowed;
}

.chat-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--wa);
  color: #fff;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.chat-bubble-cta:hover,
.chat-bubble-cta:visited:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), var(--btn-gold-ring);
}

.chat-bubble-cta i {
  font-size: 1.1rem;
}

/* Product pages ,  fixed call (replaces chat widget; clears sticky WhatsApp bar) */
.pdp-call-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.125rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  border: 1px solid rgba(0, 26, 51, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background-color 0.22s var(--ease-out);
}

.pdp-call-fab:hover {
  color: #fff;
  background: var(--navy-muted);
  box-shadow: var(--btn-gold-ring), 0 6px 18px rgba(0, 41, 87, 0.2);
  transform: translateY(-1px);
}

.pdp-call-fab i {
  font-size: 1.05rem;
}

.body-product-page .pdp-call-fab {
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0));
}

@media (max-width: 639px) {
  .body-product-page .pdp-call-fab {
    bottom: calc(5.25rem + env(safe-area-inset-bottom, 0));
  }
}

.pdp-wa-box {
  background: var(--surface-page);
  border-radius: var(--radius-ui);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--catalog-shadow);
  border: 0.5px solid var(--hairline);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.pdp-wa-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  background: rgba(0, 61, 120, 0.14);
  border-radius: 50%;
  filter: blur(2.5rem);
  transform: translate(45%, -45%);
  pointer-events: none;
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  .pdp-wa-glow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
}

.pdp-wa-btn {
  width: 100%;
  background: var(--wa);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.pdp-wa-btn:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), var(--btn-gold-ring);
}

.pdp-wa-btn i,
.pdp-wa-btn span {
  position: relative;
  z-index: 10;
}

.pdp-wa-btn i {
  font-size: 1.5rem;
}

.food-shine {
  display: none !important;
}

.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}

.pdp-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--surface-muted);
  padding: 0.65rem 0.5rem;
  border-radius: 0.5rem;
  box-shadow: none;
  border: 0.5px solid var(--hairline);
  gap: 0.45rem;
}

.pdp-trust-item .i-wa {
  color: var(--navy);
  font-size: 1rem;
}

.pdp-trust-item .i-navy {
  color: var(--navy);
  font-size: 1rem;
}

.pdp-section-title {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  font-family: var(--display);
  margin-bottom: 2.5rem;
}

.img-rig-shadow {
  box-shadow: 0 30px 60px -12px rgba(0, 41, 87, .15), 0 18px 36px -18px rgba(0, 41, 87, .1);
}

.wa-rig-glow {
  box-shadow: var(--cta-glow-soft);
  transition: box-shadow .3s ease, transform .3s ease;
}

.wa-rig-glow:hover {
  box-shadow: var(--cta-glow-strong);
  transform: translateY(-2px);
}

.bg-rig-dots {
  background-color: rgba(0, 41, 87, 0.04);
  background-image: none;
}

.compliance-card--muted {
  opacity: .5;
}

.body-food-rig {
  scroll-behavior: smooth;
}

/* ── ABOUT / PROSE ── */
.prose-page {
  padding: 4rem 0;
}

.sitemap-grid {
  display: grid;
  gap: 3rem;
}

.sitemap-col {}

.sitemap-section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sitemap-section-title i {
  color: var(--navy-muted);
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-list li a {
  font-size: .9375rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.sitemap-list li a:hover {
  color: var(--link);
}

.prose h1,
.prose h2,
.prose h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 2rem;
  line-height: 1.3;
}

.prose h1 {
  font-size: 2rem;
}

.prose h2 {
  font-size: 1.5rem;
}

.prose h3 {
  font-size: 1.125rem;
}

.prose p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  color: #374151;
  line-height: 1.75;
  margin-bottom: .25rem;
}

.prose a {
  color: var(--link);
  font-weight: 600;
}

.prose a:hover {
  color: var(--link-hover);
}

.prose strong {
  font-weight: 700;
  color: var(--navy);
}

.prose hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.prose blockquote {
  border-left: 4px solid var(--navy);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
  margin: 1.5rem 0;
}

/* ── CONTACT ── */
.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid #f3f4f6;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: rgba(0, 41, 87, .05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  height: 20rem;
}

/* ── FOOTER ── */
.footer {
  background: #f0f2f7;
  color: #1d1d1f;
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem 1.75rem;
  border-top: 1px solid rgba(0, 41, 87, 0.12);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-address {
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.65;
  font-weight: 400;
}

.footer-meta {
  font-size: 0.8125rem;
  color: #6e6e73;
  font-weight: 400;
}

.footer-email a {
  color: var(--navy);
  font-weight: 500;
}

.footer-email a:hover {
  color: var(--link);
}

.footer-col-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #424245;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--link);
}

.footer-phone {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.footer-avail {
  font-size: 0.8125rem;
  color: #6e6e73;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 41, 87, 0.12);
  padding-top: 1.35rem;
  text-align: center;
  font-size: 0.75rem;
  color: #6e6e73;
  max-width: var(--layout-max);
  margin: 0 auto;
  font-weight: 400;
}

.footer .logo-mark.light .logo-img,
.footer .logo-mark.logo-mark--footer .logo-img {
  filter: none;
}

/* ── EXPLORE MORE SECTION ── */
.explore-section { background: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) 0; border-top: 1px solid rgba(0, 41, 87, 0.06); }
.explore-eyebrow { display: block; font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; color: var(--navy-muted); margin-bottom: .5rem; }
.explore-heading { font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); color: var(--navy); margin-bottom: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: var(--tracking-ui); }
.explore-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.explore-card { display: flex; align-items: center; gap: 1rem; background: var(--offwhite); border: 1.5px solid rgba(0, 41, 87, 0.08); border-radius: 1.25rem; padding: 1.125rem 1.35rem; text-decoration: none; color: var(--navy); transition: border-color .2s ease, background .2s ease; box-shadow: none; }
.explore-card:hover { box-shadow: none; transform: none; border-color: rgba(0, 41, 87, 0.16); color: var(--navy); }
.explore-card-icon { width: 2.75rem; height: 2.75rem; border-radius: .875rem; display: flex; align-items: center; justify-content: center; font-size: 1.0625rem; flex-shrink: 0; }
.explore-card-text { display: flex; flex-direction: column; gap: .2rem; flex: 1; min-width: 0; }
.explore-card-name { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.3; }
.explore-card-sub { font-size: .8125rem; color: var(--muted); line-height: 1.35; }
.explore-card-arrow { color: var(--navy-muted); font-size: .8125rem; flex-shrink: 0; transition: transform .2s; }
.explore-card:hover .explore-card-arrow { transform: translateX(4px); }

/* Explore cards: flat tint matches category icon hue */
.explore-card--kfood {
  background: #ffedd5;
  border-color: rgba(194, 65, 12, 0.14);
}
.explore-card--kfood:hover {
  border-color: rgba(194, 65, 12, 0.22);
  background: #ffe4c4;
}
.explore-card--kbeauty {
  background: #fce7f3;
  border-color: rgba(190, 24, 93, 0.12);
}
.explore-card--kbeauty:hover {
  border-color: rgba(190, 24, 93, 0.2);
  background: #fbcfe8;
}
.explore-card--medical {
  background: #dbeafe;
  border-color: rgba(29, 78, 216, 0.12);
}
.explore-card--medical:hover {
  border-color: rgba(29, 78, 216, 0.2);
  background: #bfdbfe;
}
.explore-card--auto {
  background: #e5e7eb;
  border-color: rgba(55, 65, 81, 0.14);
}
.explore-card--auto:hover {
  border-color: rgba(55, 65, 81, 0.22);
  background: #d1d5db;
}

/* Listing hubs: horizontal explore strip ,  flat K-Food tint */
.explore-grid--scroll .explore-card {
  background: #ffedd5;
  border-color: rgba(194, 65, 12, 0.12);
}
.explore-grid--scroll .explore-card:hover {
  border-color: rgba(194, 65, 12, 0.2);
  background: #ffe4c4;
}

.dark-cta-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.85rem 1.65rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: var(--tracking-ui);
  text-decoration: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.dark-cta-contact-btn:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.dark-cta-contact-btn:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}
@media (min-width: 640px) { .explore-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .explore-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 639px) {
 .explore-grid--scroll { display:flex; overflow-x:auto; padding-bottom:.5rem; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
 .explore-grid--scroll::-webkit-scrollbar { display:none; }
 .explore-grid--scroll .explore-card { min-width:13rem; flex-shrink:0; }
}

/* ── 404 ── */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* ── CATALOG ── */
.catalog-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  text-align: center;
}

.catalog-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem);
  letter-spacing: var(--tracking-title);
  color: var(--text-heading);
  margin-bottom: 0.65rem;
  line-height: 1.08;
}

.catalog-lead {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  font-weight: 400;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.catalog-hero--split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.catalog-hero--split .catalog-hero-copy {
  width: 100%;
}

.catalog-hero--split .catalog-lead {
  margin-left: auto;
  margin-right: auto;
}

.catalog-hero-visual {
  margin: 0;
  width: 100%;
  max-width: min(36rem, 100%);
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.06),
    0 12px 40px rgba(0, 41, 87, 0.12);
  background: #e8eaef;
}

.catalog-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .catalog-hero--split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem 3rem;
    text-align: left;
  }

  .catalog-hero--split .catalog-hero-copy {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .catalog-hero--split .catalog-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .catalog-hero-visual {
    flex: 0 0 min(42%, 26rem);
    max-width: none;
  }
}

/* ── UPDATES / BLOG LISTING ── */
.updates-hero {
  padding: 4rem 0 2rem;
}

.article-meta {
  font-size: .75rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.article-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.article-lead {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
}

.article-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.article-card-img {
  height: 11rem;
  background: #f3f4f6;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card-tag {
  font-size: .625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-bottom: .5rem;
}

.article-card h2 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.article-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* blog card (listing grid) */
.blog-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.blog-card:hover {
  box-shadow: 0 6px 20px rgba(0, 41, 87, .1);
  transform: translateY(-2px);
}

.blog-card-img {
  height: 10rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-icon {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-img-icon i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, .9);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: .625rem;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: block;
  margin-bottom: .5rem;
}

.blog-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: .75rem;
  flex: 1;
}

.blog-card-meta {
  font-size: .75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.blog-card-meta .sep-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
}

/* ── BLOG ARTICLE PAGE ── */
.article-page {
  padding: 3rem 0 5rem;
}

.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.article-header .eyebrow {
  margin-bottom: .75rem;
}

.article-header .article-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.article-header .article-meta {
  font-size: .8125rem;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.article-header .article-meta .sep-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
}

.article-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 2.5rem;
}

.article-section {
  margin-bottom: 2.5rem;
}

.article-section h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-section p {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.article-section ul,
.article-section ol {
  padding-left: 1.5rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.article-section li {
  margin-bottom: .4rem;
}

.article-section strong {
  color: var(--navy);
}

.article-cta-box {
  margin-top: 3.5rem;
  background: var(--navy);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.article-cta-box .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: .5rem;
}

.article-cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.25;
}

.article-cta-box .article-cta-body {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-size: .9375rem;
}

/* ── BUTTONS ── */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: filter .2s;
}

.btn-navy:hover {
  filter: brightness(1.1);
  color: #fff;
}

/* ── SUBCAT CARD BODY VARIANTS ── */
.subcat-card-body--top {
  justify-content: flex-start;
}

.sub-card--navy .subcat-card-desc {
  color: rgba(255, 255, 255, .6);
}

/* ── SUBCAT MEDIUM BOTTOM IMAGE ── */
.subcat-img-btm {
  height: 10rem;
  overflow: hidden;
  border-radius: var(--radius-ui);
  position: relative;
  margin-top: auto;
  background: var(--btm-bg, var(--surface-muted));
}

.subcat-img-btm img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── GOCHUJANG CARD ── */
.gochujang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}

.gochujang-chip {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: #fff;
  font-size: .625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}

.gochujang-chip:hover {
  transform: rotate(0deg) !important;
}

.gochujang-chip--hot {
  background: #dc2626;
  transform: rotate(-3deg);
}

.gochujang-chip--mild {
  background: #ea580c;
  transform: rotate(3deg);
}

.gochujang-chip--honey {
  background: #ca8a04;
  transform: rotate(-2deg);
}

.gochujang-chip--jam {
  background: #059669;
  transform: rotate(2deg);
}

.subcat-img-panel--gochujang {
  --panel-w: 10rem;
  --panel-bg: rgba(255, 255, 255, 0.06);
  --panel-display: flex;
  --panel-align: center;
  --panel-justify: center;
  --panel-pad: 1.5rem;
}

.card-title--on-navy {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.shop-arrow--on-navy {
  color: rgba(255, 255, 255, 0.85);
}

/* ══ Layout utilities (inline-style removal; Apple rhythm) ══ */
.sep--sm {
  font-size: 0.5rem;
  opacity: 0.55;
}

.pdp-head-wrap {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

/* ── Catalog PDP (reference layout: hero band, quote row, red CTA, tabs + sidebar) ── */
body.body-product-page .pdp-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdp-lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #666666;
  font-weight: 400;
  margin: 0 0 1.25rem;
  max-width: 40rem;
}

.pdp-icp-callout {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  padding: 0.85rem 1rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 41, 87, 0.12);
  background: linear-gradient(135deg, rgba(255, 248, 230, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 1px 0 rgba(0, 41, 87, 0.04);
}

.pdp-icp-callout__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #3d3d3d;
}

.pdp-icp-callout__text strong {
  color: var(--navy);
  font-weight: 600;
}


.pdp-lower-band {
  margin-top: 0;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 0;
}

.pdp-lower-band::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: #ffffff;
  z-index: -1;
}

.pdp-lower-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pdp-lower-main {
  min-width: 0;
}

.pdp-lower-aside {
  min-width: 0;
}

@media (min-width: 1024px) {
  .pdp-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.pdp-feature-strip {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin: 0;
}

.pdp-feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
}

.pdp-feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1.25rem;
  border: none;
}

.pdp-feature-text {
  min-width: 0;
}

.pdp-feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
}

.pdp-feature-desc {
  font-size: 0.8125rem;
  color: #666666;
  line-height: 1.45;
  margin: 0;
}

.pdp-tabs {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.pdp-tablist {
  display: flex;
  gap: 0.55rem;
  border: 1px solid #e4e8ee;
  border-radius: 999px;
  background: #f4f7fb;
  padding: 0.35rem;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pdp-tablist::-webkit-scrollbar {
  display: none;
}

@media (max-width: 600px) {
  .pdp-tablist {
    gap: 0.4rem;
    padding: 0.3rem;
  }
  .pdp-tab {
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  .pdp-tab-panel {
    border-radius: 16px;
    padding: 1rem;
  }
}

.pdp-tab {
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  padding: 0.56rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #5f6978;
  cursor: pointer;
  transition:
    color var(--dur-ui) ease,
    border-color var(--dur-ui) ease,
    background-color var(--dur-ui) ease,
    box-shadow var(--dur-ui) ease;
}

.pdp-tab:hover {
  color: #111111;
  background: #f8f9fc;
  border-color: #dce3ec;
}

.pdp-tab.is-active {
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, var(--navy-ink) 0%, var(--navy) 55%, #1f5290 100%);
  border-color: transparent;
  box-shadow: none;
}

/* Keep the active gradient stable on hover (don't fall back to the
   light-grey :hover style above). */
.pdp-tab.is-active:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-ink) 0%, var(--navy) 55%, #1f5290 100%);
  border-color: transparent;
}

.pdp-tabpanels {
  padding: 0.95rem 0 0;
}

.pdp-tab-panel {
  outline: none;
  background: #f8fbff;
  border: 1px solid #e2e9f3;
  border-radius: 20px;
  box-shadow: none;
  padding: 1.2rem 1.25rem;
}

.pdp-tab-panel[hidden] {
  display: none !important;
}

.pdp-shipping-blurb {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444444;
  margin: 0;
  max-width: 44rem;
}

.pdp-tab-heading {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.pdp-tab-panel > .pdp-tab-heading + * {
  margin-top: 0;
}

.pdp-tab-panel > * + .pdp-tab-heading {
  margin-top: 1.5rem;
}

.pdp-export-content {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.pdp-export-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444444;
  margin: 0;
  max-width: 44rem;
}

body.body-product-page #pdp-tab-faq .pdp-faq-stack {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.body-product-page #pdp-tab-faq .food-faq-rig {
  background: #fdfefe;
  border: 1px solid #e5ebf4;
  border-radius: 14px;
  box-shadow: none;
  margin-bottom: 0.7rem;
  overflow: hidden;
}

body.body-product-page #pdp-tab-faq .food-faq-trigger {
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: flex-start;
}

body.body-product-page #pdp-tab-faq .food-faq-q {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #111111;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.4;
  flex: 1;
  order: 2;
  padding-right: 0;
}

body.body-product-page #pdp-tab-faq .food-faq-trigger:hover .food-faq-q {
  color: #111111;
}

body.body-product-page #pdp-tab-faq .food-faq-btn-icon {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

body.body-product-page #pdp-tab-faq .pdp-faq-arrow-icon::before {
  content: '→';
  font-size: 1.125rem;
  font-weight: 400;
  color: #111111;
  line-height: 1;
}

body.body-product-page #pdp-tab-faq .food-faq-rig.is-open .pdp-faq-arrow-icon::before {
  content: '↓';
}

body.body-product-page #pdp-tab-faq .food-faq-panel {
  padding: 0 1rem 0 1rem;
}

body.body-product-page #pdp-tab-faq .food-faq-rig.is-open .food-faq-panel {
  padding-bottom: 1rem;
  max-height: 720px;
}

body.body-product-page #pdp-tab-faq .food-faq-panel-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #444444;
  font-weight: 400;
  margin: 0;
}

body.body-product-page .pdp-body {
  margin-bottom: 0;
}

.section--pdp-band {
  padding: 4rem 0;
  border-top: 0.5px solid var(--hairline);
  background: var(--surface-page);
}

.section--hairline-top {
  border-top: 0.5px solid var(--hairline);
}

/* Softer top rule (e.g. FAQ band on white) ,  Apple-like separation */
.section--faq-hairline {
  border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

.pdp-faq-stack {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdp-wa-btn--sticky {
  width: auto;
  padding: 0.85rem 1.75rem;
}

.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-link {
  display: inline-flex;
}

.footer-company-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.wa-btn--footer {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  width: fit-content;
}

.wa-btn--partner-lg {
  font-size: 1rem;
  padding: 1.1rem 2.25rem;
  gap: 0.75rem;
}

.wa-btn--partner-lg .fa-whatsapp {
  font-size: 1.5rem;
}

.marquee-wrap--mb {
  margin-bottom: 1.5rem;
}

.footer-attribution {
  margin-top: 0.5rem;
  color: #86868b;
}

.footer-attribution a {
  color: inherit;
  text-decoration: none;
}

.footer-attribution a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.export-panel strong,
.pdp-body .product-story-plain strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── RESPONSIVE ── */

/* mobile ,  max 639px */
@media (max-width: 639px) {

  /* ── WHATSAPP BUTTON ── */
  .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--wa);
    color: #fff;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    padding: .625rem 1rem;
    font-size: .6rem;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    width: fit-content;
  }

  .section {
    padding: 3.5rem 0;
  }

  .features-section {
    padding: 3rem 0;
  }

  .dark-cta-bar {
    padding: 2.5rem 0;
  }

  .prose-page {
    padding: 2.5rem 0;
  }

  .footer {
    padding: 3rem 1rem 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .catalog-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 1.875rem;
  }

  .article-title {
    font-size: 1.625rem;
  }

  .pdp-section-title {
    font-size: 1.375rem;
  }

  .dark-cta-bar-title {
    font-size: 1.375rem;
  }

  .partner-title {
    font-size: 1.375rem;
  }

  .hero-nav-inner {
    padding: 1rem;
    gap: .25rem;
  }

  .hero-nav-link {
    font-size: .7rem;
    gap: .3rem;
  }

  .hero-nav-link i {
    font-size: .9rem;
  }

  /* Floating category shortcuts (left rail), not used on phones */
  .float-actions,
  #catalog-quick-nav {
    display: none !important;
  }

  /* Spec grid ,  2 cols so values aren't cramped */
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonial offset looks odd on single column */
  .testimonial-card--blue {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 41, 87, .08);
  }

  /* PDP */
  .pdp-h1 {
    font-size: 1.875rem;
  }

  .pdp-wa-box {
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .pdp-main-frame {
    border-radius: 2rem;
  }

  .pdp-wrap {
    padding: 0 .75rem 2rem;
  }

  /* Cat cards ,  tighter photo band on small phones */
  .cat-card {
    border-radius: 1.15rem;
  }

  .cat-card-inner {
    grid-template-rows: minmax(9.25rem, 34vw) auto;
    min-height: 0;
  }

  .cat-card-content {
    max-width: 100%;
    padding-left: 0.5rem;
  }

  /* Partner */
  .partner-inner {
    padding: 2.5rem 1.25rem;
  }

  .partner-block {
    border-radius: 2rem;
  }

  /* Footer */
  .footer-phone {
    font-size: 1rem;
  }

  /* Article CTA box */
  .article-cta-box {
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
  }

  .article-cta-title {
    font-size: 1.25rem;
  }

  /* Update/blog */
  .updates-hero {
    padding: 2.5rem 0 1.5rem;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.6875rem;
    gap: 0.28rem;
  }

  .breadcrumb a,
  .breadcrumb .current {
    padding: 0.26rem 0.55rem;
  }

  /* Compliance grid */
  .compliance-grid {
    margin-top: 1.5rem;
  }
}

/* sm: 640px+ */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-stats-divider {
    display: block;
  }

  .nav-wa {
    display: inline-flex;
  }

  .nav-actions > .nav-portal-btn {
    display: inline-flex;
  }

  .grid-2-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product listing ,  2 cols at 640px before going to 4 at 1024px */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Blog grid ,  2 cols at 640px */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* md: 768px+ */
@media (min-width: 768px) {
  .sitemap-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-post {
    flex-direction: row;
  }

  .featured-post-img {
    width: 22rem;
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-header-inner:not(.page-header-inner--split) {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .pdp-h1 {
    font-size: clamp(2.35rem, 1.5rem + 2.2vw, 3.15rem);
  }

  .dark-cta-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .dark-cta-bar-inner.dark-cta-bar-inner--sourcing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 2.25rem 3rem;
    align-items: center;
  }

  .dark-cta-bar--sourcing .dark-cta-sourcing-visual {
    margin-inline: 0;
    max-width: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-inner {
    padding: 4rem;
  }

  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  /* Float category tabs ,  show labels on tablet+ */
  .float-cat span { display: inline; }
  .float-cat { padding: .5rem .875rem .5rem .625rem; }
}


/* lg: 1024px+ */
@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-links a:visited {
    font-size: 1.0625rem;
  }

  .nav-mobile-btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-body {
    padding: 6rem 0;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-split {
    grid-template-columns: 1fr 1fr;
    min-height: 30rem;
  }

  .grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 30rem;
  }

  .brands-cta-inner.brands-cta-inner--partner-only {
    display: block;
    min-height: auto;
  }

  .brands-cta-inner--partner-only .dark-panel {
    padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
  }

  .brands-panel {
    padding: 4rem 2rem;
  }

  .dark-panel {
    padding: 4rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .pdp-layout {
    flex-direction: row;
    gap: 4rem;
  }

  .pdp-gallery {
    width: 41.666%;
    position: sticky;
    top: calc(var(--nav-h) + 1.25rem);
    align-self: flex-start;
  }

  .pdp-content {
    flex: 1;
  }

  .pdp-h1 {
    font-size: clamp(2.125rem, 1.2rem + 2.6vw, 3rem);
    letter-spacing: -0.035em;
    line-height: 1.06;
  }

  body.body-product-page .pdp-content {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  body.body-product-page .pdp-gallery {
    width: 46%;
    max-width: 32rem;
  }

  .mob-menu {
    display: none !important;
  }

  .dark-cta-bar-title {
    font-size: 1.875rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partner-title {
    font-size: 1.875rem;
  }

  .partner-lead {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .wa-sticky.product-cta .sticky-meta {
    display: none;
  }
  .wa-sticky.product-cta .sticky-product-title {
    -webkit-line-clamp: 1;
    font-size: 0.875rem;
  }
  .wa-sticky.product-cta .sticky-thumb-wrap {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {

  .sub-card,
  .product-card {
    border-radius: 1rem;
  }

  .product-card-img {
    margin: 0.45rem 0.5rem 0.55rem;
    padding: 0;
    border-radius: calc(1rem - 3px);
  }

  body.body-default .subcats-section--hub .subcat-img-panel,
  body.body-default .subcats-section--hub .subcat-img-bottom,
  body.body-default .subcats-section--hub .subcat-img-btm {
    border-radius: calc(1rem - 3px);
  }

  .wa-sticky {
    padding: 10px 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .pdp-h1 {
    font-size: 1.625rem;
  }

  .spec-cell-value {
    font-size: .9375rem;
  }

  .pdp-trust {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .pdp-trust-item {
    font-size: .5625rem;
    padding: .625rem .5rem;
  }
}

/* ══ Homepage ,  Apple-inspired bento catalog + lighter chrome ══ */
.section--bento-home {
  --bento-gap: 10px;
  --bento-radius: 22px;
  background: #fbfbfd;
  border-top: 0.5px solid rgba(0, 0, 0, 0.06);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
}

.bento-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.bento-section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.1rem + 1.25vw, 2.125rem);
  letter-spacing: var(--tracking-tight);
  color: var(--text-heading);
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.bento-section-lead {
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.25rem);
  font-weight: 400;
  color: #6e6e73;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.bento-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--link);
  text-decoration: none;
}

.bento-section-link:hover {
  color: var(--link-hover);
}

.bento-section-link__arr {
  display: inline-block;
  transition: transform 0.2s var(--ease-soft);
}

.bento-section-link:hover .bento-section-link__arr {
  transform: translateX(4px);
}

.home-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bento-gap);
}

@media (min-width: 734px) {
  .home-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-bento-tile {
  position: relative;
  border-radius: var(--bento-radius);
  overflow: hidden;
  background: #fff;
  border: 0.5px solid rgba(0, 41, 87, 0.1);
  box-shadow: 0 1px 0 rgba(0, 41, 87, 0.06);
  transition:
    box-shadow 0.4s var(--ease-soft),
    transform 0.4s var(--ease-soft);
}

.home-bento-tile:hover {
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.04);
}

.home-bento-tile--food,
.home-bento-tile--beauty,
.home-bento-tile--medical,
.home-bento-tile--auto {
  background: #fff;
}

.home-bento-tile__link {
  display: block;
  text-decoration: none;
  color: #1d1d1f;
}

.home-bento-tile__link:hover {
  color: #1d1d1f;
}

.home-bento-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e8e8ed;
  overflow: hidden;
}

.home-bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s var(--ease-soft);
}

.home-bento-tile:hover .home-bento-media img {
  transform: scale(1.06);
}

.home-bento-copy {
  padding: 1.65rem 1.35rem 0.35rem;
  text-align: center;
}

.home-bento-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.15rem + 1.6vw, 2.125rem);
  letter-spacing: var(--tracking-title);
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 0.45rem;
}

.home-bento-tagline {
  font-size: clamp(0.9375rem, 0.86rem + 0.35vw, 1.0625rem);
  line-height: 1.5;
  color: #6e6e73;
  max-width: 28rem;
  margin: 0 auto;
}

.home-bento-meta {
  margin-top: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #86868b;
}

.home-bento-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.15rem 1.75rem;
}

.home-bento-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 1.35rem;
  border-radius: 980px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    filter 0.2s ease;
}

.home-bento-pill--primary {
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(0, 26, 51, 0.35);
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.home-bento-pill--primary:hover {
  background: var(--navy-muted);
  color: #fff;
  box-shadow: var(--btn-gold-ring), 0 4px 14px rgba(0, 41, 87, 0.16);
}

.home-bento-pill--secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-weight: 600;
}

.home-bento-pill--secondary:hover {
  background: #f0f4f8;
  border-color: var(--navy);
  color: var(--navy);
}

.home-bento-pill:focus-visible,
.home-bento-tile__link:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
  box-shadow: var(--focus-glow);
}

@media (prefers-reduced-motion: reduce) {
  .home-bento-tile,
  .home-bento-tile:hover,
  .home-bento-media img,
  .home-bento-tile:hover .home-bento-media img,
  .bento-section-link__arr,
  .bento-section-link:hover .bento-section-link__arr {
    transition: none !important;
  }

  .home-bento-tile:hover .home-bento-media img {
    transform: scale(1.02);
  }

  .bento-section-link:hover .bento-section-link__arr {
    transform: none;
  }
}

/* ══ Homepage only (body.home) ,  vertical rhythm + tablet / laptop comfort ══ */
body.home .hero .hero-bg img {
  opacity: 0.4;
}

body.home .hero-bg-overlay {
  background: rgba(0, 41, 87, 0.82);
}

body.home .hero .btn-primary {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(0, 26, 51, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

body.home .hero .btn-primary:hover {
  background: #f0f4f8;
  color: var(--navy);
  box-shadow: var(--btn-gold-ring), 0 4px 16px rgba(0, 41, 87, 0.12);
}

body.home .hero .hero-text-link {
  border-bottom: none;
}

body.home .hero .hero-text-link:hover {
  color: #fff;
}

body.home .section:not(.section--bento-home) {
  padding-top: clamp(2.75rem, 5vw + 1.5rem, 5.5rem);
  padding-bottom: clamp(2.75rem, 5vw + 1.5rem, 5.5rem);
}

body.home .features-section {
  padding-top: clamp(2.75rem, 5vw + 1.5rem, 5.5rem);
  padding-bottom: clamp(2.75rem, 5vw + 1.5rem, 5.5rem);
  background: #fbfbfd;
  border-top: none;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

body.home .features-section .grid-4 {
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

body.home .feature-icon {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

body.home .section-header-row,
body.home .section-header {
  margin-bottom: clamp(1.75rem, 3vw + 0.5rem, 3rem);
}

body.home .brands-cta {
  padding-top: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  padding-bottom: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
}

body.home .section--bento-home {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

body.home .section--bento-home > .container {
  max-width: min(100%, 58rem);
}

body.home .bento-section-head {
  max-width: 36rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

/* Default home hero (non–editorial layouts only; editorial has its own padding) */
body.home .hero:not(.hero--editorial) .hero-body {
  padding-top: clamp(3.25rem, 6vh + 2rem, 6.5rem);
  padding-bottom: clamp(2.75rem, 4vh + 1.5rem, 5rem);
}

body.home .hero-grid {
  gap: clamp(1.75rem, 2.5vw + 1rem, 3rem);
  max-width: min(100%, 42rem);
}

@media (min-width: 768px) {
  body.home .hero-grid {
    max-width: min(100%, 48rem);
  }
}

@media (min-width: 1280px) {
  body.home .hero-grid {
    max-width: min(100%, 52rem);
  }
}

body.home .hero-title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.75rem);
  margin-bottom: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
}

body.home .hero-lead {
  font-size: clamp(1rem, 0.88rem + 0.45vw, 1.1875rem);
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  line-height: 1.65;
}

body.home .hero-stats {
  margin-top: clamp(2rem, 3vw + 1rem, 3rem);
  padding-top: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem);
  gap: clamp(1rem, 1.5vw + 0.5rem, 2rem);
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.125rem);
}

body.home .hero-stats--compact {
  margin-top: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  padding-top: clamp(1.35rem, 2vw + 0.5rem, 2rem);
  font-size: clamp(0.9375rem, 0.88rem + 0.2vw, 1.0625rem);
  gap: clamp(0.85rem, 1.2vw + 0.35rem, 1.5rem);
}

body.home .home-bento-grid {
  gap: clamp(0.625rem, 1.2vw + 0.25rem, 0.75rem);
}

body.home .home-faq-grid {
  gap: clamp(0.875rem, 1.5vw + 0.35rem, 1.5rem);
}

body.home .home-faq-intro {
  color: var(--muted);
  font-size: .875rem;
  margin-top: 1rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body.home .home-bento-title {
    font-size: 1.75rem;
  }

  body.home .home-bento-grid {
    gap: 0.75rem;
  }

  body.home .home-faq-grid {
    gap: 1.25rem;
  }

  body.home .features-section .feature-desc {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  body.home .brands-panel,
  body.home .dark-panel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 767px) {
  .cat-card-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body.home .hero-title {
    font-size: clamp(1.75rem, 1.1rem + 4vw, 2.25rem);
  }
}

/* ══ Product pages ,  Apple-style PDP rhythm (body-product-page) ══ */

body.body-product-page .breadcrumb-bar {
  background: rgba(255, 255, 255, 0.92);
}

body.body-product-page .pdp-wrap {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background-image: none;
}

body.body-product-page .pdp-head-wrap {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}

body.body-product-page .pdp-layout {
  position: relative;
  z-index: 0;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
  align-items: flex-start;
}

body.body-product-page .pdp-layout::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: #f4f9fc;
  z-index: -1;
}

body.body-product-page .pdp-gallery {
  position: static;
}

body.body-product-page .pdp-h1 {
  font-size: clamp(1.75rem, 1.35rem + 1.4vw, 2rem);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.65rem;
  font-family: var(--font-sans, system-ui, sans-serif);
}

body.body-product-page .pdp-main-frame {
  border-radius: var(--radius-ui);
  border: 1px solid #e0e0e0;
  box-shadow: none;
  padding: 0;
  background:
    radial-gradient(78% 82% at 50% 42%, rgba(178, 214, 255, 0.24) 0%, rgba(178, 214, 255, 0.06) 42%, rgba(178, 214, 255, 0) 74%),
    linear-gradient(180deg, #f9fcff 0%, #eef4fb 100%);
  margin-bottom: 0;
}

body.body-product-page .pdp-main-inner {
  aspect-ratio: 1;
  max-height: min(72vw, 28rem);
}

body.body-product-page .pdp-bg-circle {
  display: block;
  width: clamp(12rem, 38vw, 20rem);
  height: clamp(12rem, 38vw, 20rem);
  background: radial-gradient(circle, rgba(204, 227, 255, 0.92) 0%, rgba(204, 227, 255, 0.28) 52%, rgba(204, 227, 255, 0) 100%);
  filter: blur(2px);
}

body.body-product-page .pdp-main-frame::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0.75rem;
  height: 1.2rem;
  border-radius: 999px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(7, 36, 61, 0.2) 0%, rgba(7, 36, 61, 0) 100%);
  filter: blur(8px);
  pointer-events: none;
}

body.body-product-page .pdp-main-img {
  border-radius: var(--radius-ui);
  max-height: none;
}

body.body-product-page,
body.body-product-page * {
  -webkit-tap-highlight-color: transparent;
}

body.body-product-page .pdp-thumb {
  border-radius: 14px;
}

body.body-product-page .pdp-brand-logo {
  margin: 0 0 0.85rem;
  max-width: 12rem;
}

body.body-pdp-brand--wide .pdp-brand-logo {
  max-width: 15.5rem;
}

body.body-product-page .pdp-brand-logo__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3.35rem;
  object-fit: contain;
  object-position: left center;
}

body.body-pdp-brand--wide .pdp-brand-logo__img {
  max-height: 4.25rem;
}

body.body-product-page .pdp-brand-pill {
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

body.body-product-page .spec-cell-value img {
  vertical-align: middle;
  margin-right: 0.4rem;
  border: 0.5px solid #e0e0e0;
  border-radius: 2px;
}

body.body-product-page .product-story-plain .product-story-kicker {
  font-size: clamp(1.0625rem, 0.98rem + 0.35vw, 1.1875rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 42rem;
}

body.body-product-page .export-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--link);
}

body.body-product-page .export-toggle:hover {
  color: var(--link-hover);
}

body.body-product-page .pdp-section-title {
  letter-spacing: -0.035em;
}

body.body-product-page .section--pdp-band {
  background: #fff;
  border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

body.body-product-page .why-card {
  border-radius: var(--radius-ui);
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

body.body-product-page .why-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

body.body-product-page .why-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-muted);
}

body.body-product-page .why-title {
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

body.body-product-page .partner-block {
  border-radius: 24px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 41, 87, 0.08);
}

body.body-product-page .food-faq-rig {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-ui);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

body.body-product-page .food-faq-q {
  font-weight: 500;
  letter-spacing: -0.015em;
}

body.body-product-page .wa-sticky.product-cta {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid #e0e0e0;
  box-shadow: none;
  padding-top: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
}

body.body-product-page .wa-sticky.product-cta .pdp-wa-btn--sticky {
  width: auto;
  max-width: none;
  padding: 0.7rem 1.4rem;
  font-size: 0.9375rem;
}

body.body-product-page .pdp-main-frame:hover .pdp-main-img {
  transform: none;
}

body.body-product-page .pdp-main-frame:hover .pdp-bg-circle {
  transform: none;
}

body.body-product-page .pdp-wa-glow {
  display: none;
}

body.body-product-page .product-story-plain .product-story-simple {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 40rem;
}

body.body-product-page .pdp-tab-panel .product-story-kicker,
body.body-product-page .pdp-tab-panel .product-story-simple,
body.body-product-page .pdp-tab-panel .product-story-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444444;
  font-weight: 400;
  letter-spacing: 0;
}

body.body-product-page section.section--pdp-band,
body.body-product-page section.section--hairline-top {
  display: none !important;
}

body.body-product-page .pdp-wa-box {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

body.body-product-page .pdp-trust {
  display: none !important;
}

body.body-product-page .pdp-wa-btn,
body.body-product-page .pdp-wa-btn:visited {
  width: 100%;
  max-width: 22rem;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
  justify-content: center;
  gap: 0.75rem;
}

body.body-product-page .pdp-wa-btn span {
  order: 1;
}

body.body-product-page .pdp-wa-btn i {
  order: 2;
  font-size: 1.2rem;
}

body.body-product-page .pdp-wa-btn:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: none;
  box-shadow: none;
}

body.body-product-page .spec-box {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

body.body-product-page .pdp-tab-panel .pdp-body + .spec-box {
  margin-top: 1rem;
}

body.body-product-page .spec-box-header {
  padding: 0;
  margin-bottom: 0.75rem;
}

body.body-product-page .spec-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

body.body-product-page .spec-cell {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none;
  background: transparent;
}

body.body-product-page .spec-cell:last-of-type {
  border-bottom: none;
}

body.body-product-page .spec-cell:hover {
  box-shadow: none;
}

body.body-product-page .spec-cell-label {
  text-align: left;
  font-weight: 700;
  color: #111111;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
}

body.body-product-page .spec-cell-value {
  font-weight: 400;
  color: #444444;
  text-align: right;
  font-size: 0.875rem;
}

body.body-product-page .spec-shelf {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  margin: 0;
  border-top: none;
  border-bottom: 1px solid #e0e0e0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
}

body.body-product-page .spec-shelf:last-child {
  border-bottom: none;
}

body.body-product-page .spec-shelf span {
  font-weight: 400;
  color: #444444;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  text-align: right;
}

body.body-product-page .wa-sticky.product-cta .pdp-wa-btn,
body.body-product-page .wa-sticky.product-cta .pdp-wa-btn:visited {
  background: var(--wa);
  border: none;
  box-shadow: none;
}

body.body-product-page .wa-sticky.product-cta .pdp-wa-btn:hover {
  background: var(--wa-dark);
  box-shadow: none;
}

/* ══ Catalog index ,  calmer Apple-like rhythm ══ */
body.page-catalog {
  background: #fbfbfd;
}

body.page-catalog .breadcrumb-bar {
  background: rgba(251, 251, 253, 0.92);
}

body.page-catalog .section.section--white.catalog-cat-section {
  background: #fbfbfd;
}

body.page-catalog .catalog-cat-section .catalog-cat-grid {
  border-top-color: rgba(0, 0, 0, 0.05);
}

body.page-catalog .cat-card {
  border-radius: 22px;
}

body.page-catalog .cat-card:hover {
  transform: translateY(-1px);
}

body.page-catalog .catalog-title {
  letter-spacing: var(--tracking-tight);
}

/* ══ Subcatalog hubs & listings ,  spacing + softer cards ══ */
body.body-default .subcats-section {
  background: #f5f6f8;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

body.body-default .subcats-section .grid-lg-2,
body.body-default .subcats-section .grid-2,
body.body-default .subcats-section .grid-2-3 {
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.body-default .sub-card:not(.sub-card--navy) {
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
}

body.body-default .sub-card:not(.sub-card--navy):hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 18px 44px rgba(0, 0, 0, 0.07);
}

body.body-default .sub-card--navy {
  border-radius: 22px;
}

/* Category hub roots: flat tiles, no shadows/gradients (name + Shop Now only) */
body.body-default .subcats-section--hub {
  background: #f5f5f7;
}

body.body-default .subcats-section--hub .sub-card,
body.body-default .subcats-section--hub .sub-card--navy {
  box-shadow: none;
  border: none;
}

body.body-default .subcats-section--hub .sub-card:hover,
body.body-default .subcats-section--hub .sub-card--navy:hover {
  box-shadow: none;
  transform: none;
}

body.body-default .subcats-section--hub .sub-card:hover .card-img {
  transform: none;
}

body.body-default .subcats-section--hub .subcat-img-panel:has(> img)::after,
body.body-default .subcats-section--hub .subcat-img-bottom::after {
  display: none;
}

/* Hub images: rounded on all four sides (inset from card edge) */
body.body-default .subcats-section--hub .subcat-img-panel {
  border-radius: var(--radius-ui);
  overflow: hidden;
  align-self: center;
}

body.body-default .subcats-section--hub .subcat-img-panel img {
  border-radius: 0;
}

body.body-default .subcats-section--hub .subcat-img-bottom {
  border-radius: var(--radius-ui);
  overflow: hidden;
  margin: 0.45rem 0.75rem 0.75rem 0.75rem;
}

body.body-default .subcats-section--hub .subcat-img-bottom img {
  border-radius: 0;
}

/* Compact hub tiles: panel must stretch so absolutely positioned .card-img has height */
body.body-default .subcats-section--hub .sub-card--compact .subcat-img-panel {
  align-self: stretch;
  min-height: 9.5rem;
}

body.body-default .subcats-section--hub .sub-card--short .subcat-img-panel {
  margin: 0.65rem 0.75rem 0.65rem 0.5rem;
  align-self: stretch;
  flex: 1 1 44%;
  width: auto;
  min-width: min(52%, 11rem);
  max-width: none;
}

body.body-default .subcats-section--hub .sub-card--short .subcat-img-panel img {
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

/* Automotive hub: wide retread hero, bias crop toward cab / trailer in narrow panel */
body.body-default .subcats-section--hub .sub-card--short .subcat-img-panel--retread-banner img {
  object-position: 78% center;
}

body.body-default .subcats-section--hub .sub-card--short .subcat-card-body {
  padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.1rem, 2vw, 1.45rem);
}

body.body-default .subcats-section--hub .sub-card--tall .subcat-img-bottom {
  margin: 0.35rem 0.75rem 0.75rem 0.75rem;
  flex: 1 1 auto;
  min-height: 13rem;
  background: var(--card-surface, transparent);
}

body.body-default .subcats-section--hub .sub-card--tall .subcat-img-bottom img {
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

body.body-default .subcats-section--hub .subcat-img-btm {
  margin: 0.65rem 0.75rem 0.75rem 0.75rem;
  border-radius: var(--radius-ui);
  overflow: hidden;
}

body.body-default .subcats-section--hub .subcat-img-btm img {
  border-radius: 0;
}

body.body-default .subcats-section--hub .subcat-card-body {
  justify-content: space-between;
  gap: 1rem;
}

body.body-default .subcats-section--hub .subcat-card-body.subcat-card-body--top {
  justify-content: space-between;
}

body.body-default .subcats-section--hub .subcat-card-body .card-title {
  margin-bottom: 0;
}

body.body-default .subcats-section--hub .shop-arrow {
  margin-top: auto;
  color: #86868b;
  font-weight: 600;
}

body.body-default .subcats-section--hub .shop-arrow i {
  color: #86868b;
}

@media (hover: hover) and (pointer: fine) {
  body.body-default .subcats-section--hub .sub-card:hover .shop-arrow,
  body.body-default .subcats-section--hub .sub-card:hover .shop-arrow i {
    color: var(--navy);
  }
}

body.page-category-hub .explore-section {
  background: #fff;
}

body.page-category-hub:not(.home) .page-header--split .page-title {
  font-size: clamp(2.5rem, 1.5rem + 3.5vw, 3.85rem);
}

body.body-default:not(.home) .page-header {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}

body.body-default:not(.home) .page-header-visual {
  border-radius: 20px;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.08);
}

body.page-category-hub:not(.home) .page-header-visual {
  box-shadow: none;
  border: none;
}

body.body-default .subcat-card-body {
  padding: clamp(1.75rem, 3.5vw, 2.25rem);
}

body.body-default .subcat-card-desc {
  font-size: 0.9375rem;
  color: #6e6e73;
  line-height: 1.62;
}

body.body-default .subcats-section .card-title {
  letter-spacing: -0.03em;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE v2 ,  editorial layout (body.home)
   Sections: hero / bento asymmetric / feature band / brands band /
             FAQ minimalist / partner CTA enhanced / footer light
   ══════════════════════════════════════════════════════════════════════ */

/* ── HERO v2 ,  full-bleed editorial ── */
body.home .float-actions {
  display: none !important;
}

body.home .hero--editorial {
  /* Same horizontal band as nav (logo → Customer Portal); white gutters on wide viewports */
  width: min(100% - 2.5rem, var(--layout-max));
  margin-left: auto;
  margin-right: auto;
  /* Compact fold: editorial crop, catalog enters view sooner */
  min-height: min(34vh, 18.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
  border-radius: clamp(14px, 2.5vw, 22px);
}

/* Korea hero: one full-bleed photo at a time; JS cycles slides + crossfade */
body.home .hero--editorial .hero-bg--korea-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

body.home .hero--editorial .hero-bg-korea-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.home .hero--editorial .hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.95s ease-in-out;
  pointer-events: none;
}

body.home .hero--editorial .hero-bg-slide.is-active {
  opacity: 1;
  z-index: 1;
}

body.home .hero--editorial .hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.home .hero--editorial .hero-bg-overlay--korea {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Flat scrim only - no gradients */
  background: rgba(0, 26, 51, 0.8);
}

body.home .hero--editorial .hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  /* Below fixed nav; tight bottom so strip sits higher */
  padding: clamp(3.75rem, 4.5vh + 2.75rem, 4.75rem) 0 clamp(0.45rem, 0.9vh + 0.25rem, 0.85rem);
}

body.home .hero--editorial .container {
  width: 100%;
}

body.home .hero--editorial .hero-edit {
  max-width: 36rem;
  text-align: left;
  margin: 0;
}

body.home .hero--editorial .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  max-width: 32rem;
}

body.home .hero--editorial .hero-stars {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  margin: 0 0 0.65rem 0;
  font-size: clamp(0.9rem, 0.82rem + 0.35vw, 1.05rem);
  color: var(--gold);
  line-height: 1;
}

body.home .hero--editorial .hero-stars i {
  color: var(--gold);
}

body.home .hero--editorial .hero-title {
  text-align: left;
  font-size: clamp(1.85rem, 1.1rem + 2.6vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 0.85rem;
  margin-top: 0;
  color: #fff;
}

body.home .hero--editorial .hero-title .accent {
  color: #fff;
  font-weight: 600;
}

body.home .hero--editorial .hero-lead {
  text-align: left;
  margin: 0;
  font-size: clamp(0.9375rem, 0.86rem + 0.32vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
  font-weight: 400;
}

body.home .hero--editorial .hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  align-items: center;
}

body.home .hero--editorial .hero-cta-primary,
body.home .hero--editorial .hero-cta-primary:visited {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  letter-spacing: -0.02em;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

body.home .hero--editorial .hero-cta-primary:hover {
  background: #f0f4f8;
  color: #001a33;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

/* Browse Catalog: larger hit area */
body.home .hero--editorial .hero-cta-magnet {
  display: inline-flex;
  padding: 0.5rem;
  margin: -0.5rem 0 -0.5rem -0.5rem;
  border-radius: 9999px;
}

body.home .hero--editorial .hero-cta-magnet:hover .hero-cta-primary,
body.home .hero--editorial .hero-cta-magnet:focus-within .hero-cta-primary {
  background: #f0f4f8;
  color: #001a33;
}

body.home .hero--editorial .hero-cta-magnet:hover .hero-cta-primary:visited,
body.home .hero--editorial .hero-cta-magnet:focus-within .hero-cta-primary:visited {
  color: #001a33;
}

body.home .hero--editorial .hero-text-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.1rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.home .hero--editorial .hero-text-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

/* Scroll tint must override editorial white primary */
body.home.page-scrolled .hero--editorial .hero-cta-primary,
body.home.page-scrolled .hero--editorial .hero-cta-primary:visited {
  background: #ffe8a8;
  color: var(--navy);
  border: 1.5px solid rgba(0, 41, 87, 0.18);
  box-shadow: 0 2px 0 rgba(0, 41, 87, 0.06);
}

body.home.page-scrolled .hero--editorial .hero-cta-primary:hover {
  background: #ffd866;
  color: #001a33;
  border-color: rgba(0, 41, 87, 0.28);
}

body.home.page-scrolled .hero--editorial .hero-cta-magnet:hover .hero-cta-primary,
body.home.page-scrolled .hero--editorial .hero-cta-magnet:focus-within .hero-cta-primary {
  background: #ffd866;
  color: #001a33;
}

/* Bottom hero category row (replaces floating quick-nav) */
.hero-cat-row {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-cat-row-inner {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 3vw, 3rem);
  justify-content: center;
  padding: 0.35rem 0.85rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-cat-row-inner::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .hero-cat-row-inner {
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
  }
}

.hero-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.hero-cat:hover,
.hero-cat:visited:hover {
  color: #fff;
}

.hero-cat:visited {
  color: rgba(255, 255, 255, 0.82);
}

.hero-cat i {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-cat:hover i {
  color: #fff;
  transform: translateY(-2px);
}

/* ── BENTO v2 ,  asymmetric (3 small + 1 big) ── */
.home-bento-grid--asymm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Phone: K-Food first, then the three smalls in DOM order */
@media (max-width: 899px) {
  .home-bento-grid--asymm .home-bento-tile--food {
    order: -1;
  }
}

@media (min-width: 900px) {
  .home-bento-grid--asymm {
    /* Wide column left = K-Food big tile; narrow column right = three smalls */
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: repeat(3, minmax(180px, 1fr));
    gap: 0.85rem;
  }
  .home-bento-grid--asymm .home-bento-tile--small:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .home-bento-grid--asymm .home-bento-tile--small:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .home-bento-grid--asymm .home-bento-tile--small:nth-of-type(3) {
    grid-column: 2;
    grid-row: 3;
  }
  .home-bento-grid--asymm .home-bento-tile--big {
    grid-column: 1;
    grid-row: 1 / span 3;
  }
}

.home-bento-grid--asymm .home-bento-tile {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #f4f5f7;
  border: none;
  box-shadow: none;
  min-height: 200px;
  display: block;
  transition: transform 0.32s var(--ease-soft);
}

.home-bento-grid--asymm .home-bento-tile:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.home-bento-grid--asymm .home-bento-tile--beauty {
  background: #fff5ec;
}
.home-bento-grid--asymm .home-bento-tile--medical {
  background: #ecf6f1;
}
.home-bento-grid--asymm .home-bento-tile--auto {
  background: #f3f4f8;
}
.home-bento-grid--asymm .home-bento-tile--food {
  background: #f1f3f6;
}

/* small tile = horizontal split: copy left, image right */
.home-bento-grid--asymm .home-bento-tile--small .home-bento-tile__link {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  height: 100%;
  padding: 1.5rem;
  gap: 1rem;
  text-decoration: none;
  color: #1d1d1f;
}

.home-bento-grid--asymm .home-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.home-bento-title-min {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}

.home-bento-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #86868b;
  margin-top: auto;
}

.home-bento-shop__arr {
  transition: transform 0.22s var(--ease-soft);
  display: inline-block;
}

.home-bento-grid--asymm .home-bento-tile:hover .home-bento-shop__arr {
  transform: translateX(4px);
}

.home-bento-grid--asymm .home-bento-media-min {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 0;
}

.home-bento-grid--asymm .home-bento-media-min img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.42s var(--ease-soft);
}

.home-bento-grid--asymm .home-bento-media-min--retread-banner img {
  object-position: 78% center;
}

.home-bento-grid--asymm .home-bento-tile:hover .home-bento-media-min img {
  transform: scale(1.03);
}

/* big tile = vertical layout, copy top, image bleeds bottom-right */
.home-bento-grid--asymm .home-bento-tile--big .home-bento-tile__link {
  display: block;
  height: 100%;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  text-decoration: none;
  color: #1d1d1f;
  position: relative;
  overflow: hidden;
}

.home-bento-card--big {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 22rem;
  z-index: 2;
  position: relative;
}

.home-bento-title-big {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}

.home-bento-grid--asymm .home-bento-card--big .home-bento-shop {
  margin-top: auto;
}

.home-bento-grid--asymm .home-bento-media-big {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 65%;
  max-width: 26rem;
  pointer-events: none;
  z-index: 1;
}

.home-bento-grid--asymm .home-bento-media-big img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s var(--ease-soft);
}

.home-bento-grid--asymm .home-bento-tile--big:hover .home-bento-media-big img {
  transform: scale(1.04) translate(-4px, -4px);
}

@media (max-width: 899px) {
  .home-bento-grid--asymm .home-bento-tile--big .home-bento-tile__link {
    padding: 1.75rem 1.5rem;
  }
  .home-bento-grid--asymm .home-bento-media-big {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 1.5rem;
  }
  .home-bento-grid--asymm .home-bento-media-big img {
    max-height: 240px;
    object-fit: cover;
  }
  .home-bento-card--big {
    max-width: none;
  }
}

/* ── FEATURE BAND v2 ,  flat 4-up ── */
body.home .features-section--flat {
  background: #f4f9fc;
  border-top: none;
  border-bottom: none;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.features-flat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}

@media (min-width: 768px) {
  .features-flat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.feature-flat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.feature-flat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-flat-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: #1d1d1f;
  margin: 0;
}

.feature-flat-desc {
  font-size: 0.8125rem;
  color: #6e6e73;
  line-height: 1.5;
  margin: 0;
  max-width: 16rem;
}

/* ── PORTAL (coming soon dialog) ── */
.portal-soon {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.portal-soon[hidden] {
  display: none !important;
}

body.portal-soon-open {
  overflow: hidden;
}

.portal-soon__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.portal-soon__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(0, 41, 87, 0.08);
  text-align: center;
}

.portal-soon__msg {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.portal-soon__close {
  min-width: 6.5rem;
}

/* ── TRUSTED MANUFACTURERS BAND ── */
.trust-brands {
  background: #ffffff;
  padding: clamp(3.5rem, 5.5vw, 5.5rem) 0 0;
  border-top: 0.5px solid rgba(0, 0, 0, 0.04);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
}

.trust-brands-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Homepage: full-width marquee under “Trusted by” (same container as headline) */
.container.trust-brands-inner--has-marquee {
  max-width: var(--layout-max);
}

.trust-brands-inner--has-marquee .trust-brands-copy {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-brands-inner--has-marquee .trust-brands-lead {
  margin-top: 0.35rem;
}

.trust-brands-inner--has-marquee .trust-marquee {
  width: 100%;
}

.trust-brands-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.trust-brands-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e73;
  margin: 0 0 0.85rem 0;
  text-align: center;
  width: 100%;
}

.trust-brands-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #111111;
  margin: 0 0 0.85rem 0;
  text-align: center;
  width: 100%;
}

.trust-brands-lead {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6e6e73;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  text-wrap: balance;
}

body.home .trust-brands-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: var(--tracking-section);
  color: var(--text-heading);
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.25rem);
  line-height: 1.12;
  margin: 0 0 0.35rem 0;
}

body.home .trust-brands-lead {
  color: var(--muted);
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.125rem);
  line-height: 1.6;
  margin: 0.35rem auto 0;
  max-width: 38rem;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

/* Catalog / Trusted by / FAQ: compact uppercase label, body copy reads larger below */
body.home h2.home-section-eyebrow {
  font-size: clamp(0.6875rem, 0.6rem + 0.3vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

body.home .bento-section-head .bento-section-title.home-section-eyebrow {
  margin-bottom: 0.65rem;
}

body.home .bento-section-head .bento-section-lead {
  font-size: clamp(1.0625rem, 0.97rem + 0.5vw, 1.3125rem);
  font-weight: 400;
  color: #3c3c43;
}

body.home .trust-brands-copy .trust-brands-title.home-section-eyebrow {
  margin: 0 0 0.65rem 0;
}

body.home .section-header .section-title.home-section-eyebrow {
  margin-bottom: 0.5rem;
}

body.home .section--border .home-faq-intro {
  font-size: clamp(1rem, 0.94rem + 0.28vw, 1.125rem);
  margin-top: 0.35rem;
}

.trust-brands-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.trust-brands-link__arr {
  display: inline-block;
  transition: transform 0.22s var(--ease-soft);
}

.trust-brands-link:hover .trust-brands-link__arr {
  transform: translateX(4px);
}

/* Infinite marquee ,  duplicate list in HTML for seamless loop; swap <li> for <img> when logos arrive */
.trust-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0.85rem 0 clamp(1.85rem, 3.2vw, 2.5rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee-x 55s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes trust-marquee-x {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Keep marquee moving (slow) so mobile “Trusted by” still scrolls; avoid static wrap */
  .trust-marquee-track {
    animation: trust-marquee-x 100s linear infinite;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    max-width: none;
    margin: 0;
  }

  .trust-marquee-list--dup {
    display: flex !important;
  }
}

.trust-marquee-list {
  list-style: none;
  margin: 0;
  padding: 0 0.75rem 0 0;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

.trust-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.42rem;
  min-height: 2.85rem;
  min-width: 4.5rem;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.trust-marquee-item img {
  display: block;
  height: clamp(2.2rem, 3.9vw, 2.75rem);
  width: auto;
  max-width: min(10.25rem, 32vw);
  object-fit: contain;
  object-position: center;
  transform: scale(1.04);
  transform-origin: center center;
}

/* Wide wordmarks read over-zoomed at global scale, ease them down */
.trust-marquee-item img[src*="orion_ci"],
.trust-marquee-item img[src*="dunkin"],
.trust-marquee-item img[src*="osstem-d"],
.trust-marquee-item img[src*="htb.svg"] {
  transform: scale(0.92);
  max-width: min(8.5rem, 28vw);
}

.trust-marquee-item img[src*="dongsuh"],
.trust-marquee-item img[src*="exmo"] {
  transform: scale(1.14);
}

.trust-marquee-item--dnautomotive img {
  transform: scale(0.9);
  max-width: min(9.5rem, 30vw);
  object-position: center center;
}

.trust-marquee-item--daeho-industry {
  min-width: 6rem;
}

.trust-marquee-item--daeho-industry img {
  transform: scale(1.05);
  transform-origin: center center;
  object-position: center center;
}

.trust-marquee-item:hover {
  border-color: rgba(0, 41, 87, 0.18);
  background: #fafafa;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* ── HOME FAQ MINIMALIST (mirrors PDP FAQ tab) ── */
body.home .home-faq-grid {
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
  gap: 0;
}

body.home .home-faq-grid .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
}

body.home .home-faq-grid .faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

body.home .home-faq-grid .faq-header {
  padding: 1.25rem 0;
  align-items: center;
  position: relative;
  background: transparent;
  border-radius: 0;
}

body.home .home-faq-grid .faq-question {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #111111;
  letter-spacing: -0.01em;
  padding-right: 2.5rem;
  line-height: 1.4;
}

body.home .home-faq-grid .faq-icon {
  display: none;
}

body.home .home-faq-grid .faq-header::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.125rem;
  font-weight: 400;
  color: #111111;
  line-height: 1;
}

body.home .home-faq-grid .faq-item.open .faq-header::after {
  content: '↓';
}

body.home .home-faq-grid .faq-answer p {
  padding: 0 0 1.35rem 0;
  font-size: 0.9375rem;
  color: #444444;
  line-height: 1.65;
  font-weight: 400;
}

body.home .home-faq-grid .faq-answer ul.home-faq-markets {
  margin: 0 0 1.25rem 1.1rem;
  padding: 0;
  font-size: 0.9375rem;
  color: #444444;
  line-height: 1.55;
}

body.home .home-faq-grid .faq-answer ul.home-faq-markets li {
  margin-bottom: 0.35rem;
}

body.home .home-faq-grid .faq-answer a {
  color: #111111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
}

body.home .home-faq-grid .faq-answer a:hover {
  color: var(--navy);
  text-decoration-color: rgba(0, 41, 87, 0.45);
}

/* ── PARTNER CTA v2 ── */
body.home .brands-cta--enhanced {
  background: #fbfbfd;
  padding: clamp(3rem, 5vw, 5rem) 1.25rem;
}

.partner-block-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #001a33;
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  isolation: isolate;
}

.partner-block-v2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: -2;
}

.partner-block-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 26, 51, 0.96) 0%, rgba(0, 26, 51, 0.78) 100%);
  z-index: -1;
}

.partner-block-v2-content {
  max-width: 36rem;
}

.partner-block-v2-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1rem 0;
}

.partner-block-v2-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1rem 0;
  max-width: 30rem;
}

.partner-block-v2-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 30rem;
}

.partner-block-v2-stats {
  list-style: none;
  margin: 0 0 2.25rem 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 36rem;
}

.partner-block-v2-stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.partner-block-v2-stats strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.partner-block-v2-stats span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.partner-block-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.partner-block-v2-link,
.partner-block-v2-link:visited {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.partner-block-v2-link:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .partner-block-v2-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: none;
  }
}

/* ── FOOTER v2 ,  light editorial ── */
.footer--light {
  background: #fafafa;
  color: #1d1d1f;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

.footer--light .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 700px) {
  .footer--light .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.footer--light .footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer--light .footer-company-name {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0.5rem 0 0 0;
  line-height: 1.4;
}

.footer--light .footer-address,
.footer--light .footer-meta,
.footer--light .footer-phone {
  color: #6e6e73;
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

.footer--light .footer-email {
  margin: 0;
}

.footer--light .footer-email a,
.footer--light .footer-email a:visited {
  color: #1d1d1f;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer--light .footer-email a:hover {
  color: var(--navy);
}

.footer--light .footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e73;
  margin: 0 0 1rem 0;
}

.footer--light .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer--light .footer-col li {
  font-size: 0.875rem;
  color: #6e6e73;
  line-height: 1.5;
}

.footer--light .footer-col a,
.footer--light .footer-col a:visited {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer--light .footer-col a:hover {
  color: var(--navy);
}

.footer--light .footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.footer-social,
.footer-social:visited {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social:hover {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}

.footer--light .footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  display: block;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1rem;
}

@media (min-width: 700px) {
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
  }
}

.footer-bottom-copy {
  font-size: 0.75rem;
  color: #86868b;
  margin: 0;
  letter-spacing: -0.005em;
}

.footer--light .footer-attribution {
  text-align: center;
  font-size: 0.6875rem;
  color: #86868b;
  margin: 0;
  padding: 0.85rem 1.25rem 1.25rem;
  letter-spacing: -0.005em;
}

/* ───────────────────────────────────────────────────────────────────────────
   CINEMATIC SCROLL REVEALS ("movie credits" feel)
   Opt-in per page via `body.cinematic`. Currently enabled on the homepage
   and the 4 category hubs (k-food, k-beauty, medical, automotive).
   Hero-specific opening sequence is scoped tighter under `body.home` since
   those elements (.hero-title, .hero-stars, .hero-cat-row) only exist there.
   All animation respects prefers-reduced-motion.
   ─────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  /* Override the global subtle reveal with a slower, theatrical version */
  body.cinematic .fade-up,
  body.cinematic .reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 56px, 0) scale(0.965);
    filter: blur(6px);
    transition:
      opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
      transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  }
  body.cinematic .fade-up.in,
  body.cinematic .reveal-on-scroll.is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  /* Bento tiles (homepage) and subcategory cards (hubs): bigger lift, organic rise */
  body.cinematic .home-bento-tile.reveal-on-scroll,
  body.cinematic .sub-card.reveal-on-scroll {
    transform: translate3d(0, 88px, 0) scale(0.94);
  }
  body.cinematic .home-bento-tile.reveal-on-scroll.is-inview,
  body.cinematic .sub-card.reveal-on-scroll.is-inview {
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* "More from KCN" explore cards on hub pages */
  body.cinematic .explore-card.reveal-on-scroll {
    transform: translate3d(0, 36px, 0) scale(1);
    filter: blur(3px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.cinematic .explore-card.reveal-on-scroll.is-inview {
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  /* Section titles & big headers: theatrical entrance */
  body.cinematic .home-section-eyebrow.reveal-on-scroll,
  body.cinematic .trust-brands-title.reveal-on-scroll,
  body.cinematic .section-title.reveal-on-scroll,
  body.cinematic .section-header.reveal-on-scroll,
  body.cinematic .section-header-row.reveal-on-scroll,
  body.cinematic .bento-section-head.reveal-on-scroll {
    transform: translate3d(0, 80px, 0) scale(0.97);
    transition-duration: 1.4s, 1.5s, 1.0s;
  }
  /* Critical: explicit .is-inview override - without this the section-header
     gets stuck 80px below its real position (CSS source-order conflict with
     the generic .reveal-on-scroll.is-inview rule above), causing the intro
     paragraph to visually overlap the first FAQ item below it. */
  body.cinematic .home-section-eyebrow.reveal-on-scroll.is-inview,
  body.cinematic .trust-brands-title.reveal-on-scroll.is-inview,
  body.cinematic .section-title.reveal-on-scroll.is-inview,
  body.cinematic .section-header.reveal-on-scroll.is-inview,
  body.cinematic .section-header-row.reveal-on-scroll.is-inview,
  body.cinematic .bento-section-head.reveal-on-scroll.is-inview {
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* ─── Per-word cinematic reveal for marquee headlines ───
     Applied to titles processed by splitWordsAndReveal() in main.js.
     Each word fades up + de-blurs in sequence, controlled by a
     CSS custom property --kcn-word-i set on each <span> by JS. */
  body.cinematic .kcn-words.reveal-on-scroll {
    /* Don't animate the parent - let the words cascade individually. */
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }
  body.cinematic .kcn-words .kcn-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(6px);
    transition:
      opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--kcn-word-i, 0) * 75ms);
    will-change: opacity, transform, filter;
  }
  body.cinematic .kcn-words.is-inview .kcn-word,
  body.cinematic .kcn-words.in .kcn-word {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  /* FAQ: cinematic-but-readable fade-up.
     FAQs are interactive (click to expand) so we keep blur light and
     duration snappy enough that users don't have to wait to click. */
  body.cinematic .faq-item.reveal-on-scroll {
    transform: translate3d(0, 36px, 0) scale(1);
    filter: blur(3px);
    transition:
      opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.cinematic .faq-item.reveal-on-scroll.is-inview {
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }

  /* ─── HERO - opening title sequence ─── */
  body.home .hero-title {
    animation: kcn-cinema-title 1.7s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
  }
  @keyframes kcn-cinema-title {
    0% {
      opacity: 0;
      letter-spacing: 0.32em;
      transform: translateY(28px);
      filter: blur(12px);
    }
    55% {
      filter: blur(0);
    }
    100% {
      opacity: 1;
      letter-spacing: normal;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  body.home .hero-lead {
    animation: kcn-cinema-line 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  }
  body.home .hero-actions {
    animation: kcn-cinema-line 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
  }
  @keyframes kcn-cinema-line {
    from {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  /* Hero stars - pop in left-to-right with overshoot */
  body.home .hero-stars i {
    opacity: 0;
    animation: kcn-cinema-star 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  body.home .hero-stars i:nth-child(1) { animation-delay: 0.18s; }
  body.home .hero-stars i:nth-child(2) { animation-delay: 0.28s; }
  body.home .hero-stars i:nth-child(3) { animation-delay: 0.38s; }
  body.home .hero-stars i:nth-child(4) { animation-delay: 0.48s; }
  body.home .hero-stars i:nth-child(5) { animation-delay: 0.58s; }
  @keyframes kcn-cinema-star {
    0% {
      opacity: 0;
      transform: translateY(8px) scale(0.5) rotate(-15deg);
    }
    60% {
      opacity: 1;
      transform: translateY(0) scale(1.2) rotate(0deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(0);
    }
  }

  /* Hero category icon row - slide up with stagger */
  body.home .hero-cat-row .hero-cat {
    opacity: 0;
    animation: kcn-cinema-line 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  body.home .hero-cat-row .hero-cat:nth-child(1) { animation-delay: 1.05s; }
  body.home .hero-cat-row .hero-cat:nth-child(2) { animation-delay: 1.15s; }
  body.home .hero-cat-row .hero-cat:nth-child(3) { animation-delay: 1.25s; }
  body.home .hero-cat-row .hero-cat:nth-child(4) { animation-delay: 1.35s; }

  /* Hero background - slow Ken Burns-style drift */
  body.home .hero .hero-bg-slide.is-active img {
    animation: kcn-cinema-kenburns 18s ease-out both;
  }
  @keyframes kcn-cinema-kenburns {
    from { transform: scale(1.05) translate3d(0, 0, 0); }
    to   { transform: scale(1.14) translate3d(-1%, -1.5%, 0); }
  }

  /* ─── SCROLL PROGRESS BAR (top of viewport) ─── */
  .kcn-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
  }
  .kcn-scroll-progress::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--kcn-p, 0%);
    background: linear-gradient(90deg, #c0143c 0%, #d4af37 50%, #2563eb 100%);
    box-shadow: 0 0 10px rgba(192, 20, 60, 0.5);
    transition: width 0.08s linear;
  }
}

/* Reduced-motion fallback for hero opening sequence + cinematic reveals */
@media (prefers-reduced-motion: reduce) {
  body.home .hero-title,
  body.home .hero-lead,
  body.home .hero-actions,
  body.home .hero-stars i,
  body.home .hero-cat-row .hero-cat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    letter-spacing: normal !important;
  }
  body.cinematic .fade-up,
  body.cinematic .reveal-on-scroll,
  body.cinematic .kcn-words .kcn-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .kcn-scroll-progress { display: none; }
}

/* ─────────────────────────────────────────────────────────────────
   Pack Options - "Available Pack Sizes" section on merged PDPs
   Used on canonical product pages that have multiple pack-size
   variants (formerly separate URLs).
   ───────────────────────────────────────────────────────────────── */

.pack-options {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.pack-options .section-header {
  margin-bottom: clamp(2.75rem, 4vw, 4rem);
  text-align: center;
}
.pack-options .pdp-section-title {
  font-size: clamp(1.65rem, 1.2rem + 1.2vw, 2.1rem);
  letter-spacing: -0.028em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
.pack-options .page-desc {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #4a5a6e;
}

.pack-options-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 1.85rem;
  padding: 0.55rem 1.05rem;
  background: rgba(13, 59, 102, 0.055);
  color: #0D3B66;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1px solid rgba(13, 59, 102, 0.14);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.pack-options-hint:hover {
  background: rgba(13, 59, 102, 0.1);
  border-color: rgba(13, 59, 102, 0.28);
  transform: translateY(-1px);
}
.pack-options-hint i {
  font-size: 0.85rem;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-card {
  background: #ffffff;
  border: 1px solid rgba(13, 59, 102, 0.1);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  position: relative;
}
.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(13, 59, 102, 0.13);
  border-color: rgba(13, 59, 102, 0.25);
}

.pack-thumb {
  background: linear-gradient(160deg, #f5f8fc 0%, #e8eef6 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1rem;
  border-bottom: 1px solid rgba(13, 59, 102, 0.06);
}
.pack-thumb img {
  max-width: 78%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(13, 59, 102, 0.16));
}

.pack-body {
  padding: 1.85rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  flex: 1 1 auto;
}

.pack-size-tag {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(90deg, #002957 0%, #0D3B66 100%);
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.pack-title {
  font-size: clamp(1.55rem, 1.2rem + 0.6vw, 1.75rem);
  margin: 0;
  color: #07243d;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  font-family: var(--display, "Inter", system-ui, sans-serif);
}
.pack-subtitle {
  margin: -0.45rem 0 0;
  color: #5a6a7e;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pack-specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.55rem 1.1rem;
  font-size: 0.9rem;
  margin: 0.4rem 0 0.25rem;
  padding: 1rem 0 0;
  border-top: 1px dashed rgba(13, 59, 102, 0.14);
}
.pack-specs dt {
  font-weight: 600;
  color: #6b7a8e;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  align-self: center;
  margin: 0;
}
.pack-specs dd {
  margin: 0;
  color: #07243d;
  font-weight: 500;
  font-feature-settings: "tnum" 1;
}

.pack-cta {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  letter-spacing: 0.005em;
}

@media (max-width: 600px) {
  .pack-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pack-thumb { padding: 1.5rem; }
  .pack-body { padding: 1.4rem 1.4rem 1.6rem; }
  .pack-title { font-size: 1.4rem; }
}
