:root {
  --navy:        #254092;
  --navy-dark:   #1d3278;
  --navy-darker: #192d6b;
  --navy-light:  #3a56b0;
  --navy-50:     #e8ecf7;
  --navy-100:    #c5cfed;
  --red:         #e42332;
  --red-dark:    #c41e2a;
  --red-light:   #fde8ea;

  --gold:        #C9960A;
  --gold-light:  #FDF3DC;
  --cream:       #FEFCF7;
  --cream-dark:  #F5F0E8;
  --warm-50:     #FAF8F4;
  --warm-100:    #F0EBE0;
  --warm-200:    #E0D8CC;

  --gray-50:     #FAFAFA;
  --gray-100:    #F5F5F5;
  --gray-150:    #EFEFEF;
  --gray-200:    #E8E8E8;
  --gray-300:    #D4D4D4;
  --gray-400:    #A8A8A8;
  --gray-500:    #757575;
  --gray-600:    #525252;
  --gray-700:    #3D3D3D;
  --gray-800:    #2A2A2A;
  --gray-900:    #1A1A2E;

  --white:       #FFFFFF;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  --font-sans:    'Plus Jakarta Sans', 'DM Sans', 'Inter', system-ui, sans-serif;
  --sp-1:  .25rem;
  --sp-2:  .5rem;
  --sp-3:  .75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-14: 3.5rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --navbar-h: 88px;
  --container:       1140px;
  --container-wide:  1400px;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 999px;
  --shadow-xs:  0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 12px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-md:  0 8px 24px rgba(0,0,0,.1), 0 4px 8px rgba(0,0,0,.06);
  --shadow-lg:  0 16px 40px rgba(0,0,0,.12), 0 6px 16px rgba(0,0,0,.07);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.15);
  --shadow-navy: 0 8px 28px rgba(37,64,146,.22);
  --shadow-ring: 0 0 0 3px var(--navy-100);
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t-fast:  .15s;
  --t-base:  .25s;
  --t-slow:  .4s;
  --z-base:    1;
  --z-above:   10;
  --z-navbar:  200;
  --z-modal:   2000;
  --z-toast:   3000;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
svg { display: block; flex-shrink: 0; }
.site-navbar {
  position: fixed;
  z-index: var(--z-navbar);
  width: 100%;
  left: 0;
  top: 0;
  height: 68px;
  border-radius: 0;
  max-width: none;
  background: rgba(5, 30, 71, 0);
  border: 1px solid rgba(255,255,255,0);
  box-shadow: 0 8px 32px rgba(0,0,0,0), 0 2px 8px rgba(0,0,0,0);
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
}
.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0 var(--sp-5);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.navbar-brand:hover { opacity: .88; }
.navbar-logo-mark {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-logo-mark img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}
@media (min-width: 1440px) {
  .site-navbar    { height: 116px; }
  .navbar-logo-mark { width: 110px; height: 110px; }
  .navbar-logo-mark img { width: 105px; height: 105px; }
  .navbar-brand-name { font-size: 1.3rem; }
  .navbar-brand-sub  { font-size: 0.7rem; }
  .navbar-link       { font-size: 0.95rem; padding: .5rem 1.1rem; }
  .navbar-cta        { font-size: 0.9rem; padding: .6rem 1.4rem; }
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.navbar-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.navbar-brand-sub {
  font-size: .6rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}
.navbar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.navbar-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.navbar-link.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: var(--sp-3);
  flex-shrink: 0;
}
.navbar-cta {
  padding: .5rem 1.2rem;
  font-size: .82rem;
  font-weight: 700;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  transition: background var(--t-fast);
}
.navbar-hamburger:hover { background: rgba(255,255,255,.16); }
.navbar-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
  transform-origin: center;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  background: rgba(5, 18, 48, 0.98);
  border-top: 1px solid rgba(255,255,255,.06);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.navbar-mobile-menu.open {
  display: flex;
}
.navbar-mobile-link {
  display: block;
  padding: .7rem var(--sp-4);
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.navbar-mobile-link:hover,
.navbar-mobile-link.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.navbar-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: var(--sp-2) 0;
}

/* ── User menu dropdown ──────────────────────────────────────────── */
.user-menu { position: relative; }
.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
  font-family: var(--font-sans);
  white-space: nowrap;
}
.user-menu-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.3); }
.user-menu-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.user-menu-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8ecf7;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  padding: 6px;
  z-index: 9999;
}
.user-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--t-fast), color var(--t-fast);
}
.user-menu-item:hover { background: var(--navy-50); color: var(--navy); }
.user-menu-item--danger { color: var(--red); }
.user-menu-item--danger:hover { background: var(--red-light); color: var(--red-dark); }
.user-menu-sep { height: 1px; background: #f1f5f9; margin: 4px 0; }
.navbar-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-outline-navy {
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
  transition: background var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
}
.btn-outline-navy:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.6); color: #fff; }

.site-main {
  padding-top: 0;
  margin-top: 0;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.section    { padding: var(--sp-16) 0; }
.section-sm { padding: var(--sp-10) 0; }
.section-lg { padding: var(--sp-20) 0; }
.section-xl {
  padding: 8rem 0;
}
@media (max-width: 1024px) {
  .section-xl { padding: 6rem 0; }
}
@media (max-width: 768px) {
  .section-xl { padding: 4rem 0; }
}
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 var(--sp-4); }
  .section    { padding: var(--sp-10) 0; }
  .section-lg { padding: var(--sp-12) 0; }
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
}
.font-display { font-family: var(--font-display); }
.font-sans    { font-family: var(--font-sans); }
.display-1  { font-size: clamp(2.5rem, 5.5vw, 4.5rem);   line-height: 1.1;  letter-spacing: -.03em;  font-weight: 800; }
.display-2  { font-size: clamp(2rem, 4vw, 3.5rem);        line-height: 1.1;  letter-spacing: -.025em; font-weight: 800; }
.heading-1  { font-size: clamp(1.6rem, 3vw, 2.5rem);      line-height: 1.2;  letter-spacing: -.02em;  font-weight: 700; }
.heading-2  { font-size: clamp(1.35rem, 2.5vw, 2rem);     line-height: 1.25; letter-spacing: -.015em; }
.heading-3  { font-size: clamp(1.15rem, 1.8vw, 1.65rem);  line-height: 1.3;  letter-spacing: -.01em; }
.heading-4  { font-size: 1.2rem;  line-height: 1.35; font-weight: 600; }
.heading-5  { font-size: 1.05rem; line-height: 1.4;  font-weight: 600; }
.body-xl  { font-size: 1.2rem;    line-height: 1.75; }
.body-lg  { font-size: 1.075rem;  line-height: 1.7; }
.body     { font-size: 1rem;      line-height: 1.65; }
.body-sm  { font-size: .9rem;     line-height: 1.6; }
.caption  { font-size: .8rem;     line-height: 1.5; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-navy    { color: var(--navy); }
.text-red     { color: var(--red); }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--gray-400); }
.text-dark    { color: var(--gray-900); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: var(--sp-3);
}
.section-header { margin-bottom: var(--sp-10); }
.section-header.centered { text-align: center; }
.section-header .eyebrow { display: block; }
.section-header h2 { margin-bottom: var(--sp-3); }
.section-header p {
  max-width: 540px;
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header.centered p { margin: 0 auto; }
.highlight-red   { color: var(--red); }
.highlight-navy  { color: var(--navy); }
.highlight-gold  { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: .8rem 2rem; font-size: .9375rem; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1rem; font-weight: 700; min-height: 52px; }
.btn-xl svg { width: 20px; height: 20px; }
.btn-hero { padding: .9rem 2.25rem; font-size: .975rem; font-weight: 700; min-height: 52px; letter-spacing: .01em; }
.btn-hero svg { width: 18px; height: 18px; }
.btn-sm { padding: .45rem 1.1rem; font-size: .8rem; }
.btn-sm svg { width: 14px; height: 14px; }
.btn-icon { padding: .65rem; border-radius: var(--radius); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(228,35,50,.3);
  transform: translateY(-1px);
}
.btn-primary:active { transform: none; box-shadow: none; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-navy);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .65rem;
  border-radius: var(--radius-full);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}
.badge svg { width: 10px; height: 10px; }
.badge-red   { background: var(--red);   color: var(--white); }
.badge-navy  { background: var(--navy);  color: var(--white); }
.badge-cream { background: var(--cream-dark); color: var(--navy); }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: calc(var(--navbar-h) + 2rem);
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 5rem;
    align-items: flex-start;
  }
  .hero-content {
    padding: var(--sp-6) 0 var(--sp-4);
  }
  .hero-description {
    font-size: .95rem;
    margin-bottom: var(--sp-6);
  }
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(25,45,107,.88) 0%,
    rgba(37,64,146,.5) 50%,
    rgba(25,45,107,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  padding: var(--sp-10) 0 var(--sp-16);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(228,35,50,.15);
  border: 1px solid rgba(228,35,50,.35);
  color: #FF9BA1;
  padding: .3rem .85rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp-5);
}
.hero-eyebrow svg { width: 12px; height: 12px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: var(--sp-6);
  color: #ffffff !important;
}
.hero-title em {
  font-style: italic;
  color: var(--red) !important;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: var(--sp-8);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Hero departments strip ─────────────────────────────────────────── */
.hero-departments {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-departments-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .9rem;
}
.hero-departments-grid {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero-dept-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  cursor: default;
  transition: transform .25s ease;
}
.hero-dept-item img {
  width: clamp(56px, 7vw, 88px);
  height: clamp(56px, 7vw, 88px);
  object-fit: contain;
  opacity: .8;
  filter: brightness(1.15) drop-shadow(0 0 4px rgba(255,255,255,.2));
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.hero-dept-item span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .3s ease;
  white-space: nowrap;
}
.hero-dept-item:hover img {
  opacity: 1;
  filter: brightness(1.2) saturate(1.5)
    drop-shadow(0 0 8px rgba(228,35,50,1))
    drop-shadow(0 0 20px rgba(228,35,50,.85))
    drop-shadow(0 0 40px rgba(228,35,50,.5));
  transform: translateY(-4px) scale(1.1);
}
.hero-dept-item:hover span {
  color: #ff4455;
  text-shadow: 0 0 8px rgba(228,35,50,.7);
}
@media (max-width: 640px) {
  .hero-departments {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }
  .hero-departments-label {
    text-align: center;
    margin-bottom: .75rem;
  }
  .hero-departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem 0;
    justify-items: center;
    width: 100%;
  }
  .hero-dept-item {
    width: 100%;
    gap: .25rem;
  }
  .hero-dept-item img { width: 48px; height: 48px; }
  .hero-dept-item span {
    display: block;
    font-size: .5rem;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
    max-width: 60px;
  }
}
.hero-tagline {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 540px;
  font-style: italic;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-150);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12), 0 8px 20px rgba(37,64,146,.1);
  border-color: var(--navy-100);
}
.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: var(--sp-3);
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
}
.product-card-body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy-light);
  margin-bottom: var(--sp-2);
}
.product-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: var(--sp-2);
}
.product-card-desc {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--gray-100);
}
.product-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: .4rem 1rem;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast), gap var(--t-fast);
}
.product-card-link svg { width: 14px; height: 14px; }
.product-card-link:hover {
  background: var(--navy);
  color: var(--white);
  gap: var(--sp-2);
}
.products-filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  padding: var(--sp-4) var(--sp-5);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-150);
}
.filter-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-right: var(--sp-2);
  flex-shrink: 0;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: .45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  user-select: none;
}
.filter-chip:hover {
  background: var(--navy-50);
  color: var(--navy);
  border-color: var(--navy-100);
  transform: translateY(-1px);
}
.filter-chip.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(37,64,146,.25);
}
.filter-chip svg { width: 13px; height: 13px; }
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(255,255,255,.25);
  border-radius: var(--radius-full);
  font-size: .67rem;
  font-weight: 700;
  line-height: 1;
}
.filter-chip:not(.active) .filter-count {
  background: var(--gray-200);
  color: var(--gray-500);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}
@media (max-width: 500px) {
  .products-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.product-grid-item {
  transition: opacity var(--t-base), transform var(--t-base);
}
.product-grid-item.hidden {
  display: none;
}
.category-section {
  margin-bottom: var(--sp-12);
}
.category-section-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--navy-50);
}
.category-accent-bar {
  width: 4px;
  height: 36px;
  background: var(--red);
  border-radius: 3px;
  flex-shrink: 0;
}
.category-section-title {
  color: var(--navy-darker);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
}
.category-count {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-left: var(--sp-1);
}
.recipe-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.recipe-card-image {
  position: absolute;
  inset: 0;
}
.recipe-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.recipe-card:hover .recipe-card-image img { transform: scale(1.08); }
.recipe-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,20,55,.9) 0%,
    rgba(5,20,55,.4) 40%,
    transparent 70%
  );
}
.recipe-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
  color: var(--white);
}
.recipe-card-category {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .6rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-3);
}
.recipe-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--sp-3);
}
.recipe-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: .76rem;
  color: rgba(255,255,255,.7);
}
.recipe-card-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.recipe-card-meta-item svg { width: 12px; height: 12px; }
.article-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-150);
  box-shadow: var(--shadow-xs);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-200);
}
.article-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--warm-100);
}
.article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.article-card-category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: var(--sp-2);
}
.article-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
  flex: 1;
}
.article-card-excerpt {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .77rem;
  color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  padding-top: var(--sp-3);
  margin-top: auto;
}
.article-card-meta svg { width: 12px; height: 12px; color: var(--gray-300); }
.article-card-author { font-weight: 500; color: var(--gray-600); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.featured-strip {
  padding: var(--sp-5) 0;
  background: var(--navy);
  overflow: hidden;
}
.featured-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  animation: stripScroll 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.featured-strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-weight: 500;
  flex-shrink: 0;
}
.featured-strip-item svg {
  width: 14px; height: 14px;
  color: var(--red);
  flex-shrink: 0;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.story-section { background: #eef2fb; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media-accent {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--sp-5);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.story-media-accent .num {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.story-media-accent .label {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
  margin-top: var(--sp-2);
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.story-stat {
  padding: var(--sp-4);
  background: var(--warm-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--navy);
}
.story-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.story-stat-label { font-size: .78rem; color: var(--gray-500); margin-top: var(--sp-1); line-height: 1.4; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { display: none; }
  .story-stats { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
}
@media (max-width: 480px) {
  .story-stats { grid-template-columns: 1fr; }
}
.nutrition-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-150);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.nutrition-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nutrition-icon {
  width: 48px; height: 48px;
  background: var(--navy-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--navy);
}
.nutrition-icon svg { width: 24px; height: 24px; }
.nutrition-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: var(--sp-2); }
.nutrition-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }
.cta-banner {
  background: var(--navy);
  padding: var(--sp-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(228,35,50,.12) 0%, transparent 65%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: var(--sp-8); }
.cta-banner .actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
@keyframes ph-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ph-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-header {
  background: linear-gradient(
    135deg,
    var(--navy-darker) 0%,
    var(--navy-dark)   40%,
    var(--navy)        70%,
    var(--navy-darker) 100%
  );
  background-size: 300% 300%;
  animation: ph-gradient-shift 10s ease infinite;
  padding-top: calc(var(--navbar-h) + var(--sp-12));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.page-header + .section,
.page-header + section {
  padding-top: var(--sp-10);
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(228,35,50,.10) 0%, transparent 55%),
    linear-gradient(135deg, transparent 30%, rgba(26,107,192,.08) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,192,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.page-header .eyebrow {
  color: rgba(255,155,161,.9);
  animation: ph-fade-up .6s var(--ease-out) .05s both;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: var(--sp-4);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  animation: ph-fade-up .7s var(--ease-out) .18s both;
}
.page-header p {
  color: rgba(255,255,255,.65);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 520px;
  line-height: 1.7;
  animation: ph-fade-up .6s var(--ease-out) .32s both;
}
@media (max-width: 768px) {
  .page-header { padding-top: var(--sp-14); padding-bottom: var(--sp-10); }
}
.product-detail-hero {
  padding: var(--sp-10) 0;
  background: var(--cream);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
.product-image-frame {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  padding: var(--sp-8);
  border: 1px solid var(--gray-150);
}
.product-image-frame img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}
.product-info-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--navy-darker);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
  letter-spacing: -.02em;
}
.product-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-1);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-6);
}
.product-benefits { display: flex; flex-direction: column; gap: var(--sp-3); margin: var(--sp-6) 0; }
.product-benefit { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: .9rem; color: var(--gray-700); }
.product-benefit-icon {
  width: 20px; height: 20px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.product-benefit-icon svg { width: 11px; height: 11px; }
.product-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-6); }
.product-tag {
  padding: .28rem .85rem;
  background: var(--navy-50);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
/* ── Nutrition Label ──────────────────────────────────────────────────── */
.nutrition-label {
  border: 2px solid var(--navy-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-body);
  max-width: 420px;
}
.nutrition-label-header {
  background: var(--navy-dark);
  padding: 1rem 1.25rem .85rem;
  color: var(--white);
}
.nutrition-label-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  font-family: var(--font-display);
}
.nutrition-label-serving {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  line-height: 1.4;
}
.nutrition-label-calories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  color: var(--white);
  padding: .65rem 1.25rem;
}
.nutrition-label-calories-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nutrition-label-calories-value {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-display);
}
.nutrition-label-calories-value small {
  font-size: .8rem;
  font-weight: 600;
  opacity: .85;
}
.nutrition-label-divider {
  height: 6px;
  background: var(--navy-dark);
}
.nutrition-label-dv-note {
  text-align: right;
  font-size: .67rem;
  font-weight: 700;
  color: var(--gray-500);
  padding: .35rem 1.25rem .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--warm-50);
}
.nutrition-table {
  font-size: .875rem;
  width: 100%;
  border-collapse: collapse;
}
.nutrition-table td {
  padding: .45rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  vertical-align: middle;
}
.nutrition-table tr:last-child td { border-bottom: none; }
.nutrition-table tr:hover td { background: var(--warm-50); }
.nutrition-nutrient {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}
.nutrition-nutrient strong { color: var(--navy-dark); }
.nutrition-amount {
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
}
.nutrition-amount-cell {
  font-size: .82rem;
  color: var(--gray-500);
  white-space: nowrap;
}
.nutrition-dv {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
  font-size: .85rem;
  white-space: nowrap;
}
.nutrition-table .sub-item td { background: var(--warm-50); }
.nutrition-table .sub-item .nutrition-nutrient {
  padding-left: 1rem;
  font-size: .82rem;
  color: var(--gray-500);
}
.nutrition-label-footnote {
  font-size: .7rem;
  color: var(--gray-400);
  padding: .6rem 1.25rem .75rem;
  line-height: 1.5;
  border-top: 2px solid var(--navy-dark);
  background: var(--warm-50);
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--gray-700); font-weight: 500; }
.input, .textarea, .select {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-sans);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: var(--shadow-ring);
}
.footer {
  background: var(--navy-darker);
  color: rgba(255,255,255,.7);
  padding: var(--sp-14) 0 0;
  margin: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer-logo-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(228,35,50,.35);
}
.footer-logo-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.footer-tagline {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  max-width: 280px;
  color: rgba(255,255,255,.5);
}
.footer-socials { display: flex; gap: var(--sp-3); }
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-link { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--t-base); }
.footer-link:hover { color: var(--red); }
.footer-bottom {
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: var(--sp-4); }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
.btn:active,
.filter-chip:active,
.navbar-cta:active {
  transform: scale(.96);
  transition-duration: .08s;
}
.product-card,
.recipe-card,
.article-card,
.benefit-card,
.testimonial-card {
  will-change: transform;
}
.newsletter-input:focus,
.products-search-input:focus,
.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.footer-link,
.navbar-link {
  text-underline-offset: 3px;
  text-decoration-thickness: 0px;
  transition: color var(--t-fast), text-decoration-thickness .2s;
}
.footer-link:hover,
.navbar-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@keyframes navActivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(228,35,50,.45); }
  70%  { box-shadow: 0 0 0 6px rgba(228,35,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(228,35,50,0); }
}
.navbar-link.active::after {
  animation: navActivePulse 2s ease infinite;
}
.back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: var(--z-above);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-base), transform var(--t-base), background var(--t-fast);
  cursor: pointer;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red); transform: translateY(-2px); }
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1),
              transform .7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"]  { transform: translateX(-16px) translateY(0); }
[data-reveal="right"] { transform: translateX(16px)  translateY(0); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0) translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }
.swiper-pagination-bullet { background: rgba(37,64,146,.3); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--red); }
.swiper-button-next,
.swiper-button-prev { color: var(--navy); }
[x-cloak] { display: none !important; }
.tippy-box[data-theme~='lamejor'] {
  background: var(--navy-darker);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: .3rem .65rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  letter-spacing: .01em;
}
.tippy-box[data-theme~='lamejor'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: var(--navy-darker);
}
.tippy-box[data-theme~='lamejor'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: var(--navy-darker);
}
.tippy-box[data-theme~='lamejor'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color: var(--navy-darker);
}
.tippy-box[data-theme~='lamejor'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: var(--navy-darker);
}
.fab-cta {
  position: fixed;
  bottom: 4.5rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: var(--z-above);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base);
  text-decoration: none;
}
.fab-cta:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.fab-cta svg { width: 26px; height: 26px; }
.fab-cta-tooltip {
  position: absolute;
  right: 60px;
  background: var(--gray-900);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.fab-cta:hover .fab-cta-tooltip { opacity: 1; }
.count-up[data-counted] { display: inline; }
.testimonials-section {
  background: var(--navy-darker);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(228,35,50,.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 60%, rgba(37,64,146,.15) 0%, transparent 55%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
  backdrop-filter: blur(8px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: .75rem;
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #FBBF24;
  fill: #FBBF24;
}
.newsletter-section {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(37,64,146,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(228,35,50,.04) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red-light);
  border: 1px solid rgba(228,35,50,.18);
  color: var(--red-dark);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.newsletter-badge svg { width: 12px; height: 12px; }
.newsletter-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--navy-darker);
  margin-bottom: 1rem;
}
.newsletter-subtext {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
}
.newsletter-perks {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.newsletter-perk {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-600);
  font-weight: 500;
}
.newsletter-perk svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.newsletter-form-side {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-150);
}
@media (max-width: 480px) {
  .newsletter-form-side { padding: 2rem 1.5rem; }
}
.newsletter-form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-darker);
  margin-bottom: .5rem;
}
.newsletter-form-subtitle {
  font-size: .88rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}
.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.newsletter-input {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-ring);
}
.newsletter-submit {
  width: 100%;
  padding: .9rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.newsletter-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-navy);
}
.newsletter-submit svg { width: 18px; height: 18px; }
.newsletter-disclaimer {
  font-size: .72rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
.newsletter-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
}
.newsletter-success-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--red);
}
.newsletter-success-icon svg { width: 28px; height: 28px; }
.products-search-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.products-search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  width: 16px;
  height: 16px;
}
.products-search-input {
  width: 100%;
  padding: .75rem 1.2rem .75rem 2.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.products-search-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: var(--shadow-ring);
}
.products-search-input::placeholder { color: var(--gray-400); }
.product-grid-item {
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.product-grid-item.filter-hiding {
  opacity: 0;
  transform: scale(.95);
}
.product-card-ribbon {
  position: absolute;
  top: 12px;
  right: -1px;
  background: var(--gold);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .75rem .28rem .6rem;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.product-card-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -5px;
  border-left: 5px solid var(--gold);
  border-bottom: 5px solid transparent;
}
.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-particles { position: relative; overflow: hidden; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(4,14,42,.92) 0%, rgba(8,36,90,.65) 45%, rgba(5,18,60,.15) 100%);
}
.hero-content { z-index: 2; }
.btn-hero {
  padding: .85rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.btn-hero svg { width: 20px; height: 20px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.38);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 3;
  animation: scrollHintFloat 2.4s ease-in-out infinite;
}
.hero-scroll-icon {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
@keyframes scrollHintFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.trust-strip {
  background: var(--navy-darker);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: stripScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.trust-strip-item svg {
  width: 15px; height: 15px;
  color: #e42332;
  flex-shrink: 0;
}
.trust-strip-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Certifications strip ── */
.cert-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}
.cert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cert-strip-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
}
.cert-iso-badge {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
  transition: transform .2s ease;
}
.cert-iso-badge:hover { transform: scale(1.05); }
.cert-strip-code {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
}

/* ── Footer cert badge ── */
.footer-cert-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
.footer-cert-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}
.footer-cert-badge {
  display: block;
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}
.footer-cert-badge:hover {
  transform: scale(1.04);
}

.section-header-marketing {
  margin-bottom: 4rem;
}
.section-header-marketing.centered { text-align: center; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 1rem;
}
.kicker-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.marketing-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--navy-darker);
  margin-bottom: 1.25rem;
}
.accent-red  { color: var(--red); }
.accent-navy { color: var(--navy); }
.marketing-subtext {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 520px;
}
.section-header-marketing.centered .marketing-subtext {
  margin: 0 auto;
}
.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.products-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1200px) {
  .products-showcase { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products-showcase { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 500px) {
  .products-showcase { grid-template-columns: 1fr; }
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-card {
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(37,64,146,.08);
  box-shadow: 0 2px 16px rgba(37,64,146,.06);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--navy) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.benefit-card {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(37,64,146,.14); }
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 56px; height: 56px;
  background: var(--navy-50);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 1.5rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.benefit-card:hover .benefit-icon {
  background: var(--navy);
  color: var(--white);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-darker);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.benefit-text {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.why-section {
  background: #f9f7f4;
}
.story-text-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.story-body-text {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  margin-top: .75rem;
}
.story-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.story-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.story-trust-item svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.empty-state-center {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
  font-size: .95rem;
}
.cta-banner-v2 {
  position: relative;
  background: var(--navy-darker);
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(228,35,50,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,64,146,.2) 0%, transparent 60%);
}
.cta-banner-v2-content {
  position: relative;
  z-index: 2;
}
.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,155,161,.85);
  margin-bottom: 1.25rem;
}
.cta-kicker svg { width: 13px; height: 13px; }
.cta-v2-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-v2-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: 0 auto 3rem;
}
.cta-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}
.btn-xl svg { width: 20px; height: 20px; }

.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-cta-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}
.recipes-section .recipe-card {
  aspect-ratio: 2/3;
}
.product-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(37,64,146,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.product-card:hover {
  border-color: rgba(37,64,146,.15);
  box-shadow: 0 16px 48px rgba(37,64,146,.12);
}
.product-card-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-darker);
  line-height: 1.3;
}
.product-card-desc {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.7;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.hero-title em {
  font-style: italic;
  color: #FF3D4A;
  text-shadow: 0 0 40px rgba(228,35,50,.35);
}
@media (max-width: 900px) {
  .section-header-marketing { margin-bottom: 2.5rem; }
  .marketing-heading { font-size: clamp(1.75rem, 6vw, 2.75rem); }
  .story-trust-row { gap: 1rem; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 2rem 1.5rem; }
  .cta-banner-v2 { padding: 5rem 0; }
  .cta-v2-actions { flex-direction: column; }
  .btn-xl { width: 100%; justify-content: center; }
}
.mobile-logo-fixed {
  display: none;
}
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .site-navbar {
    display: none !important;
  }
  .mobile-logo-fixed {
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    text-decoration: none;
  }
  .mobile-logo-mark {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .mobile-logo-mark img {
    width: 85px;
    height: 85px;
    object-fit: contain;
  }
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(5, 30, 71, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 0.5rem 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  }
  .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    color: rgba(255,255,255,.6);
    font-size: 0.7rem;
    font-weight: 600;
    transition: color var(--t-fast);
  }
  .mobile-nav-item svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: transform var(--t-fast);
  }
  .mobile-nav-item span {
    line-height: 1;
  }
  .mobile-nav-item.active {
    color: var(--white);
  }
  .mobile-nav-item.active svg {
    transform: scale(1.1);
  }
  .site-main {
    padding-bottom: 5rem;
  }
}

/* AUTH PAGES */
.auth-body-bg {
  background: var(--navy-darker) !important;
  margin: 0;
  padding: 0;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy-dark) 50%, var(--navy) 100%);
}
.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}
.auth-container-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(228,35,50,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 60%, rgba(37,64,146,.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.auth-page .particles-canvas {
  z-index: 0;
}

.auth-container {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.auth-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 8px 16px -8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.auth-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auth-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(228,35,50,.15) 0%, transparent 60%);
  pointer-events: none;
}

.auth-logo-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.auth-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform var(--t-base) var(--ease-spring);
}

.auth-logo-wrapper:hover .auth-logo {
  transform: scale(1.05);
}

.auth-title {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}

.auth-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.auth-body {
  padding: 2.5rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.form-label svg {
  color: var(--navy);
  flex-shrink: 0;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  transition: all var(--t-base) var(--ease);
  font-family: inherit;
  background: var(--gray-50);
  color: var(--gray-900);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 76, 146, 0.1);
}

.form-input.input-error {
  border-color: var(--red);
  background: var(--red-light);
}

.form-input.input-error:focus {
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-input.input-valid {
  border-color: #22c55e;
  background: #f0fdf4;
}

.field-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.25rem;
  font-weight: 500;
}

.field-error.hidden {
  display: none;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .form-input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: var(--navy);
}

.password-strength {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.strength-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s var(--ease), background-color 0.3s var(--ease);
  border-radius: var(--radius-full);
}

.strength-text {
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--gray-600);
  font-weight: 500;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
}

.forgot-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}

.forgot-link:hover {
  color: var(--navy-dark);
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  justify-content: center;
}

.btn-loading {
  position: relative;
  pointer-events: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}

.alert.hidden {
  display: none;
}

.alert.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 1.75rem 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--gray-200);
}

.auth-divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background: var(--white);
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-footer {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.auth-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--t-fast);
}

.auth-link:hover {
  color: var(--navy-dark);
  text-decoration: underline;
}

.demo-box {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--warm-50);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.demo-header svg {
  color: var(--navy);
  flex-shrink: 0;
}

.demo-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

.demo-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-role {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.8rem;
}

.demo-creds {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.demo-item code {
  background: var(--white);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  border: 1px solid var(--gray-200);
  font-family: 'Courier New', monospace;
  color: var(--navy);
  font-weight: 600;
}

.demo-separator {
  color: var(--gray-400);
  font-weight: 500;
}

.terms-text {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.terms-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-fast);
}

.terms-link:hover {
  color: var(--navy-dark);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-page {
    padding: 1rem 0.75rem;
  }
  
  .auth-body {
    padding: 2rem 1.5rem;
  }
  
  .auth-header {
    padding: 2.5rem 2rem 2rem;
  }

  .auth-logo {
    width: 140px;
    height: 140px;
  }
  
  .demo-box {
    font-size: 0.8rem;
  }
  
  .demo-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   OFFER POPUP MODAL
   ========================================================= */
.offer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 40, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.offer-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.offer-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.2);
  transform: scale(.93) translateY(20px);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.offer-overlay.is-open .offer-modal {
  transform: scale(1) translateY(0);
}
.offer-close-btn {
  position: absolute;
  top: .85rem; right: .85rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.offer-close-btn:hover { background: rgba(0,0,0,.65); }
.offer-modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 60%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.offer-modal-img img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.offer-modal-body {
  padding: 1.75rem 2rem 2rem;
  text-align: center;
}
.offer-modal-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--navy-darker);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.offer-modal-headline em {
  font-style: normal;
  color: var(--red);
}
.offer-modal-subtext {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 48px;
  padding: 0 1.75rem;
  background: var(--red);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.offer-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.offer-cta-btn:active { transform: translateY(0); }
@media (max-width: 560px) {
  .offer-overlay { align-items: flex-end; padding: 0; }
  .offer-modal { border-radius: 20px 20px 0 0; max-width: 100%; }
  .offer-modal-body { padding: 1.5rem 1.5rem 2rem; }
}


/* =========================================================
   STATS STRIP SECTION
   ========================================================= */
.stats-strip {
  background: var(--navy-darker);
  overflow: hidden;
  position: relative;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(228,35,50,.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(37,64,146,.3) 0%, transparent 55%);
  pointer-events: none;
}
.stats-strip-inner {
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15em;
  margin-bottom: .6rem;
  line-height: 1;
}
.stat-display-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--red);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  color: var(--red);
  opacity: .75;
  line-height: 1;
}
.stat-label {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.stat-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
  max-width: 160px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 2rem 1rem; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* =========================================================
   CAMPO / CAMPESINOS SECTION
   ========================================================= */
.campo-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,15,35,.72) 0%, rgba(25,45,107,.65) 100%),
    url('https://images.unsplash.com/photo-1464207687429-7505649dae38?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}
@media (max-width: 640px) { .campo-section { min-height: 420px; } }
.campo-section .container { position: relative; z-index: 2; }
.campo-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
  color: var(--white);
}
@media (max-width: 640px) {
  .campo-content { padding: 3.5rem 0; }
}
.campo-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.campo-kicker svg { width: 12px; height: 12px; }
.campo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.campo-title em {
  font-style: italic;
  color: #ffd06e;
}
.campo-text {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.whatsapp-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.2);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.0); }
}
.whatsapp-tooltip {
  background: #fff;
  border-radius: 10px;
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: #1a3353;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .floating-whatsapp { bottom: 5rem; right: 1rem; }
  .whatsapp-btn { width: 50px; height: 50px; }
}

/* ── Recipe Submit Wizard ── */
.submit-recipe-section {
  padding: 2.5rem 0 6rem;
  background: var(--gray-50, #f8fafc);
  min-height: 70vh;
}
.submit-recipe-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.submit-recipe-header h1 { margin-bottom: .5rem; }
.submit-recipe-header p { color: var(--gray-500); line-height: 1.7; }
.submit-flash {
  max-width: 840px;
  margin: 0 auto 1.25rem;
  padding: .85rem 1.2rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
}
.submit-flash--error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.submit-flash--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }

/* Wizard container */
.submit-wizard {
  max-width: 840px;
  margin: 0 auto;
}

/* Step progress */
.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: .5rem;
}
.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
}
.wizard-step-bubble {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem;
  transition: all .2s;
  position: relative;
  z-index: 1;
}
.wizard-step.active .wizard-step-bubble {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(37,64,146,.15);
}
.wizard-step.done .wizard-step-bubble {
  background: #10b981;
  color: #fff;
}
.wizard-step-label {
  font-size: .72rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wizard-step.active .wizard-step-label { color: var(--navy); }
.wizard-step.done .wizard-step-label { color: #10b981; }
.wizard-step-line {
  flex: 1;
  min-width: 24px;
  height: 2px;
  background: #e2e8f0;
  transition: background .2s;
  align-self: center;
  margin-bottom: 1.4rem;
}
.wizard-step-line.done { background: #10b981; }

/* Panel */
.wizard-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  padding: 2.5rem;
  margin-bottom: 1.25rem;
}
.wizard-panel-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-darker, var(--navy));
  margin-bottom: .25rem;
}
.wizard-panel-sub {
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  font-size: .95rem;
}

/* Fields */
.wizard-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1.25rem;
}
.wizard-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700, #374151);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.wizard-field input,
.wizard-field select,
.wizard-field textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .95rem;
  color: var(--gray-900, #111827);
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.wizard-field input:focus,
.wizard-field select:focus,
.wizard-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(37,64,146,.1);
}
.wizard-field textarea { resize: vertical; min-height: 90px; }
.wizard-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.req { color: var(--red); }

/* Number stepper */
.wizard-number-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.wizard-number-wrap input[type="number"] {
  border: none;
  border-radius: 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  width: 72px;
  flex: 1;
  -moz-appearance: textfield;
  box-shadow: none;
}
.wizard-number-wrap input[type="number"]::-webkit-inner-spin-button { display: none; }
.wizard-num-btn {
  background: #f8fafc;
  border: none;
  width: 38px; height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
  transition: background .15s;
  flex-shrink: 0;
}
.wizard-num-btn:hover { background: #e2e8f0; }

/* Total time banner */
.wizard-time-total {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 99px;
  padding: .35rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Ingredient / step list */
.wizard-ingredient-list,
.wizard-steps-list {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: .75rem;
}
.wizard-list-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wizard-list-num {
  width: 22px; height: 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wizard-list-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .55rem .8rem;
  font-size: .93rem;
  font-family: inherit;
  transition: border-color .15s;
  background: #fff;
}
.wizard-list-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(37,64,146,.1);
}
.wizard-list-del {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: .3rem;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.wizard-list-del:hover:not(:disabled) { color: var(--red); background: #fef2f2; }
.wizard-list-del:disabled { opacity: .3; cursor: not-allowed; }

/* Step items (preparation) */
.wizard-step-item {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}
.wizard-step-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .8rem;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}
.wizard-step-item-num {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
}
.wizard-step-item-actions {
  display: flex; gap: .3rem;
}
.wizard-step-move {
  background: none;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  width: 24px; height: 24px;
  font-size: .75rem;
  cursor: pointer;
  color: #64748b;
  transition: background .15s;
}
.wizard-step-move:hover:not(:disabled) { background: #e2e8f0; }
.wizard-step-move:disabled { opacity: .3; cursor: not-allowed; }
.wizard-step-textarea {
  width: 100%;
  border: none;
  padding: .65rem .9rem;
  font-size: .93rem;
  font-family: inherit;
  background: transparent;
  resize: vertical;
  min-height: 64px;
  box-sizing: border-box;
}
.wizard-step-textarea:focus { outline: none; }

/* Add button */
.wizard-add-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: 1.5px dashed #cbd5e1;
  border-radius: 8px;
  padding: .45rem 1rem;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.wizard-add-btn:hover { border-color: var(--navy); background: #eff6ff; }

/* Image dropzone */
.wizard-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  min-height: 180px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}
.wizard-dropzone:hover { border-color: var(--navy); background: #eff6ff; }
.wizard-dropzone-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: #94a3b8; font-size: .9rem;
  padding: 2rem;
  text-align: center;
}
.wizard-dropzone-sub { font-size: .8rem; }
.wizard-dropzone-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.wizard-clear-img {
  display: inline-flex; align-items: center; gap: .35rem;
  background: none;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #dc2626;
  font-size: .82rem;
  padding: .3rem .7rem;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .15s;
}
.wizard-clear-img:hover { background: #fef2f2; }

/* Summary */
.wizard-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.wizard-summary-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.wizard-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .85rem;
}
.wizard-summary-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: .15rem;
}
.wizard-summary-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900, #111827);
}

/* Nav row */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .25rem;
}
.wizard-nav-spacer { flex: 1; }
.wizard-nav .btn {
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

@media (max-width: 640px) {
  .wizard-panel { padding: 1.5rem 1rem; }
  .wizard-field-row { grid-template-columns: 1fr; }
  .wizard-steps { justify-content: flex-start; }
  .wizard-step-label { display: none; }
  .wizard-step-line { min-width: 14px; }
  .wizard-nav .btn { min-width: 0; flex: 1; }
}

/* ── Auth Section (login / register page inside main layout) ── */
.auth-section {
  min-height: calc(100vh - var(--navbar-h, 68px) - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  background: linear-gradient(135deg, var(--navy-darker, #0b1c4b) 0%, var(--navy-dark, #1a2f6e) 45%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}
.auth-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 30%, rgba(228,35,50,.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 70%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.auth-section .auth-container {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.auth-brand {
  text-align: center;
  margin-bottom: 1.75rem;
}
.auth-brand .auth-logo {
  display: block;
  margin-inline: auto;
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.35));
}
.auth-brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin: .6rem 0 .2rem;
  line-height: 1.1;
}
.auth-brand-sub {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
}
/* Card */
.auth-section .auth-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 4px 12px rgba(0,0,0,.15);
  overflow: hidden;
  padding: 2.25rem 2.5rem 2.5rem;
}
/* Flash messages */
.auth-flash {
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.auth-flash--error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.auth-flash--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
/* Tabs */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid #f1f5f9;
  margin-bottom: 1.75rem;
}
.auth-tab {
  flex: 1;
  padding: .6rem .75rem;
  font-size: .875rem;
  font-weight: 700;
  color: #94a3b8;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.auth-tab.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
/* Field */
.auth-section .auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.1rem;
}
.auth-field label {
  font-size: .74rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-input-wrap > svg:first-child {
  position: absolute;
  left: .9rem;
  color: #94a3b8;
  pointer-events: none;
  z-index: 1;
}
.auth-input-wrap input {
  width: 100%;
  padding: .75rem .75rem .75rem 2.5rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: .95rem;
  color: #111827;
  background: #f8fafc;
  transition: border-color .15s, box-shadow .15s, background .15s;
  font-family: var(--font-sans);
  box-sizing: border-box;
}
.auth-input-wrap input:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,64,146,.1);
}
.auth-input-wrap input[type="password"],
.auth-input-wrap input[type="text"][autocomplete="current-password"],
.auth-input-wrap input[type="text"][autocomplete="new-password"] {
  padding-right: 2.75rem;
}
.auth-eye {
  position: absolute;
  right: .65rem;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: .3rem;
  display: flex;
  align-items: center;
  border-radius: 5px;
  transition: color .15s;
  line-height: 0;
}
.auth-eye:hover { color: var(--navy); }
/* Submit button */
.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: .4rem;
  padding: .85rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  gap: .4rem;
}
/* TOS note */
.auth-tos {
  font-size: .75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 1.25rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .auth-section .auth-card { padding: 1.75rem 1.25rem 2rem; border-radius: 16px; }
  .auth-brand .auth-logo { width: 64px; height: 64px; }
  .auth-brand-title { font-size: 1.5rem; }
}

/* ── My Recipes page ── */
.my-recipes-section {
  padding: 2.5rem 0 5rem;
  background: var(--gray-50, #f8fafc);
  min-height: 60vh;
}
.my-recipes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.my-recipes-header h1 { margin-bottom: .25rem; }
.my-recipe-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  align-items: center;
  transition: box-shadow .15s;
}
.my-recipe-card:hover { box-shadow: 0 4px 28px rgba(0,0,0,.1); }
.my-recipe-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
}
.my-recipe-thumb-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}
.my-recipe-body { flex: 1; min-width: 0; }
.my-recipe-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-darker, var(--navy));
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.my-recipe-meta {
  font-size: .82rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.my-recipe-status {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  border-radius: 999px;
  padding: .2rem .7rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.my-recipe-status--approved { background: #dcfce7; color: #15803d; }
.my-recipe-status--pending  { background: #fef9c3; color: #854d0e; }
.my-recipe-status--rejected { background: #fee2e2; color: #b91c1c; }
.my-recipes-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.my-recipes-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #94a3b8;
}
.my-recipes-empty svg { margin: 0 auto 1rem; display: block; }
.my-recipes-empty p { font-size: 1rem; font-weight: 500; margin-bottom: 1.25rem; }
