/* Bong Crunch — unified stylesheet. Single source of truth.
   Body-class variants (shelled / home / not-shelled) removed.
   ============================================================ */
/* Bong Crunch — combined stylesheet. Header/footer from final design (shared). */

/* ===== SHARED HEADER / FOOTER (final design) ===== */
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--yellow); color: var(--black);
  padding: 10px 18px; border-radius: var(--r-sm);
  font-family: var(--ui); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }
.marquee { position: relative; z-index: 101; background: var(--yellow); overflow: hidden; padding-block: 11px; }
.marquee__track {
  display: flex; gap: 44px; width: max-content; flex-wrap: nowrap;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--display); font-size: 15px;
  color: var(--black); white-space: nowrap; text-transform: uppercase;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  
  transition: background-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav.is-stuck {
  background: rgb(12 12 12 / .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 6px 24px rgb(0 0 0 / .28);
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  padding-block: 14px;
  transition: padding-block .3s ease;
}
.nav.is-stuck .nav__inner { padding-block: 8px; }
.nav.is-stuck .nav__brand img { height: 70px; }
.nav__brand img { height: 76px; width: auto; transition: height .3s ease; }
.nav__toggle {
  margin-left: auto; display: grid; gap: 5px;
  width: 44px; height: 44px; place-content: center;
}
.nav__bar { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.nav__panel {
  position: fixed; top: 0; right: 0;
  width: min(80vw, 380px);
  height: 100vh; height: 100dvh;
  z-index: 120;
  background: var(--black);
  padding: 22px 26px calc(26px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .38s cubic-bezier(.3,.8,.25,1), visibility .38s;
  box-shadow: -20px 0 50px rgb(0 0 0 / .45);
}
.nav__panel.is-open { transform: translateX(0); visibility: visible; }
.nav__panelhead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 14px;
}
.nav__panelhead img { width: 128px; height: auto; }
.nav__close {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgb(249 249 249 / .1); color: var(--white);
  transition: background-color .2s ease, transform .2s ease;
}
.nav__close:hover { background: var(--yellow); color: var(--black); transform: rotate(90deg); }
.nav__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.nav__menu { display: flex; flex-direction: column; gap: 2px; }
.nav__menu a {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 2px;
  font-family: var(--ui); font-weight: 600; font-size: 17px;
  color: rgb(249 249 249 / .82);
  border-bottom: 1px solid rgb(249 249 249 / .1);
  transition: color .2s ease, padding-left .2s ease;
}
.nav__menu a:hover { color: var(--yellow); padding-left: 8px; }
.nav__panelcta { margin-top: 20px; justify-content: center; }
.nav__caret {
  width: 11px; height: 8px; margin-left: auto; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}
.nav__has-sub { position: relative; }
.nav__sub { display: flex; flex-direction: column; padding-left: 14px; }
.nav__sub a { font-size: 15px; font-weight: 500; color: rgb(249 249 249 / .55); border-bottom: 0; padding: 10px 2px; }
.nav__backdrop {
  position: fixed; inset: 0; z-index: 83;
  background: rgb(6 5 4 / .55);
  opacity: 0; transition: opacity .3s ease;
}
.nav__backdrop.is-open { opacity: 1; }
.nav__menu a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 4px;
  font-family: var(--ui); font-weight: 600; font-size: 14px;
  letter-spacing: 0; text-transform: none;
  color: rgb(249 249 249 / .72);
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--white); }
.nav__menu a[aria-current="page"] { color: var(--white); }
.nav__caret {
  width: 11px; height: 8px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s ease;
}
.nav__utils { display: flex; align-items: center; gap: 10px; }
.footer { background: var(--black); color: var(--white); padding-block: var(--section) 40px; }
.footer__cols { display: grid; gap: 32px; }
.footer__brand img { width: 230px; height: auto; margin-bottom: 0; }
.footer__title {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgb(249 249 249 / .45); margin-bottom: 12px;
}
.footer__col li { font-size: 14px; line-height: 2; color: rgb(249 249 249 / .82); }
.footer__col a:hover { color: var(--yellow); }
.footer__social { margin-top: 32px; }
.footer__social .footer__title { text-align: center; margin-bottom: 14px; }
.footer__legal a { color: inherit; border-bottom: 1px solid rgb(249 249 249 / .25); }
.footer__legal a:hover { color: var(--yellow); border-color: var(--yellow); }

/* ---------- Footer newsletter panel ----------
   Scoped under .footer so it renders correctly regardless of any
   stale stylesheet still in play. */
.footer .footer__news {
  border-top: 0 !important; margin-top: 0 !important;
  align-self: start; position: relative; overflow: hidden; display: block;
  background: rgb(249 249 249 / .05);
  border: 1px solid rgb(249 249 249 / .12);
  border-radius: 16px; padding: 26px 22px;
}
.footer .footer__news::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 4px; background: var(--yellow);
}
.footer .footer__news .footer__title { color: var(--yellow); margin-bottom: 4px; }
.footer .footer__news-head {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px); line-height: 1.08;
  color: var(--white); margin: 2px 0 10px; max-width: none;
}
.footer .footer__news-sub {
  font-size: 13.5px; line-height: 1.55;
  color: rgb(249 249 249 / .72); margin: 0 0 16px; max-width: none;
}
.footer .footer__newsform { display: grid; gap: 10px; }
.footer .footer__newsform input {
  font-family: var(--body); font-size: 14px; color: var(--black);
  padding: 13px 15px; border-radius: 10px;
  background: var(--white); border: 0; width: 100%;
}
.footer .footer__newsform input::placeholder { color: rgb(12 12 12 / .5); }
.footer .footer__newsform input:focus {
  outline: none; box-shadow: 0 0 0 3px rgb(250 203 18 / .5);
}
.footer .footer__newsform .btn { width: 100%; justify-content: center; }
.footer .footer__news-note {
  font-size: 11.5px; line-height: 1.5;
  color: rgb(249 249 249 / .5); margin-top: 12px;
}
.footer .footer__news-note a {
  color: rgb(249 249 249 / .75);
  border-bottom: 1px solid rgb(249 249 249 / .3);
}
.footer .footer__news-note a:hover { color: var(--yellow); border-color: var(--yellow); }

/* Widen the newsletter column. Four tracks: brand + 2 link columns + newsletter. */
@media (min-width: 1000px) {
  .footer .footer__cols { grid-template-columns: 300px 1fr 1fr 2fr !important; }
}
@media (min-width: 720px) and (max-width: 999px) {
  .footer .footer__news { grid-column: 1 / -1 !important; }
}

.footer__signoff {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 6vw, 52px); line-height: 1.05;
  color: var(--yellow); margin: 32px 0;
  text-align: center;
}
.footer__legal {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px;
  border-top: 1px solid rgb(249 249 249 / .16); padding-top: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase; color: rgb(249 249 249 / .5);
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}
@media (min-width: 720px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .nav__toggle { display: none; }
  .nav__brand img { height: 84px; }
  .nav__panel {
    position: static; width: auto; height: auto;
    background: none; box-shadow: none; padding: 0;
    transform: none; overflow: visible;
    flex-direction: row; align-items: center; gap: 26px;
    margin-left: auto;
  }
  .nav__panelhead, .nav__panelcta, .nav__close { display: none !important; }
  .nav__panel { visibility: visible !important; box-shadow: none !important; }
  .nav__menu { flex-direction: row; gap: 26px; }
  .nav__menu a { padding: 6px 0; font-size: 14px; border-bottom: 0; }
  .nav__menu a:hover { padding-left: 0; color: var(--yellow); }
  .nav__caret { margin-left: 0; }
  .nav__has-sub:hover .nav__caret { transform: rotate(180deg); }
  .nav__sub {
    position: absolute; left: -14px; top: 100%;
    min-width: 220px; padding: 8px;
    background: var(--paper); border-radius: 14px;
    box-shadow: 0 16px 34px rgb(15 13 10 / .22);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 20; max-height: 74vh; overflow-y: auto;
  }
  .nav__has-sub::after { content: ""; position: absolute; left: 0; right: 0; top: 100%;
    height: 14px; }
  .nav__has-sub:hover .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__sub a { padding: 10px 12px; border-radius: 8px; font-size: 14px; color: rgb(12 12 12 / .78); }
  .nav__sub a:hover { background: var(--cream); color: var(--black); padding-left: 12px; }
  .nav__backdrop { display: none !important; }
  .footer__cols { grid-template-columns: 300px 1fr 1fr 2fr; gap: 40px; }
  .footer__brand { grid-column: auto; }
}
@media (max-width: 999px) {
  .nav__panelhead, .nav__panelcta, .nav__close { display: flex; }
  .nav__panelcta { justify-content: center; }
  .nav__close { display: grid; }
  .nav__inner { gap: 12px; }
  .nav__toggle { order: 1; margin-left: 0; }
  .nav__brand { order: 2; margin-left: auto; }
  .nav__utils { order: 3; }
  .nav__panel { order: 4; }
  .nav__brand img { height: 62px; }
  .nav.is-stuck .nav__brand img { height: 50px; }
}
@media (max-width: 768px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand img { width: 170px; }
  .footer__signoff { font-size: clamp(22px, 8vw, 34px); margin: 24px 0; }
  .footer__legal { gap: 8px 18px; font-size: 9.5px; }
}
@media (max-width: 400px) {
  .footer__cols { grid-template-columns: 1fr; }
}
/* ===== PAGE CONTENT ===== */
:root {
  --black:        #0C0C0C;
  --off:          #161412;
  --yellow:       #FACB12;
  --white:        #F9F9F9;
  --cream:        #FDF3DC;
  --paper:        #FFFFFF;
  --orange:       #E05D23;
  
  
  --pack-bhujiya: #E03A21;
  --pack-jhal:    #B8141B;
  --pack-tok:     #6B3FA0;
  --pack-matar:   #1E8A4C;
  --pack-moong:   #0E6F7A;
  --pack-peanut:  #E5A21C;
  --pack-chana:   #8A5A2B;
  --pack-gathiya: #C98B2E;
  
  
  --display: "Luckiest Guy", system-ui, sans-serif;
  --body:    "Archivo", system-ui, sans-serif;
  --mono:    "DM Mono", ui-monospace, monospace;
  --ui:      "Inter", system-ui, sans-serif;
  
  
  --page:      1440px;
  --gutter:    20px;
  --section:   56px;
  --band:      32px;
  --r-sm:      8px;
  --r-md:      12px;
  --r-lg:      16px;
  --r-pill:    999px;
  
  
  --tint-alpha: 0.16;
}
@media (min-width: 720px) {
  :root { --gutter: 40px; --section: 76px; --band: 40px; }
}
@media (min-width: 1100px) {
  :root { --gutter: 64px; --section: 70px; --band: 44px; }
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure, blockquote, p, h1, h2, h3 { margin: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.container {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.sechead {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.sechead--center { align-items: center; }
.sechead__note { max-width: 34ch; color: rgb(12 12 12 / .6); font-size: 15px; }
.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 5.2vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}
.display--sm { font-size: clamp(24px, 4vw, 34px); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgb(12 12 12 / .5);
  margin-bottom: 8px;
}
.eyebrow--light { color: rgb(249 249 249 / .6); }
.textlink {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgb(12 12 12 / .6);
}
.textlink:hover { color: var(--black); }
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ui); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill);
  min-height: 44px;
  will-change: transform;
  transition:
  transform .22s cubic-bezier(.2,.8,.2,1),
  box-shadow .28s cubic-bezier(.2,.8,.2,1),
  background-color .2s ease,
  filter .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.985); transition-duration: .06s; }
.btn--sm { padding: 11px 22px; font-size: 13.5px; }
.btn__icon {
  width: 15px; height: 16px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn__icon { transform: translateY(-1px) scale(1.05); }
.btn--yellow { background: var(--yellow); color: var(--black); box-shadow: 0 1px 2px rgb(15 13 10 / .16); }
.btn--yellow:hover, .btn--yellow:focus-visible {
  background: #ffd83a;
  box-shadow: 0 10px 20px -6px rgb(250 203 18 / .75), 0 3px 8px rgb(15 13 10 / .18);
}
.btn--dark { background: var(--black); color: var(--yellow); box-shadow: 0 1px 2px rgb(15 13 10 / .2); }
.btn--dark:hover, .btn--dark:focus-visible {
  background: #241f19;
  box-shadow: 0 12px 22px -8px rgb(12 12 12 / .6), 0 3px 8px rgb(15 13 10 / .2);
}
.btn--outline { border: 2px solid var(--black); color: var(--black); }
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--black); color: var(--yellow);
  box-shadow: 0 10px 20px -8px rgb(12 12 12 / .5);
}
.btn--ghost { border: 1.5px solid rgb(249 249 249 / .45); color: var(--white); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgb(249 249 249 / .12); border-color: rgb(249 249 249 / .8);
  box-shadow: 0 10px 22px -8px rgb(0 0 0 / .55);
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn__icon { transition: background-color .2s ease, box-shadow .2s ease; }
  .btn:hover, .btn:active, .btn:focus-visible { transform: none; }
}
.btnrow { display: flex; flex-wrap: wrap; gap: 12px; }
@keyframes marquee { from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.hero {
  position: relative; background: var(--black); isolation: isolate;
  min-height: 600px;
  max-height: 600px;
  overflow: hidden;
}
.hero__slides { position: relative; display: grid; min-height: inherit; }
.hero__slide {
  grid-area: 1 / 1;
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: 600px;
  opacity: 0; visibility: hidden;
  transition: opacity .7s cubic-bezier(.3,.7,.3,1), visibility .7s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%; z-index: -2;
  transform: scale(1.04);
  transition: transform 7s linear;
}
.hero__slide.is-active .hero__img { transform: scale(1); }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / .94) 0%, rgb(0 0 0 / .86) 26%,
  rgb(0 0 0 / .52) 46%, rgb(0 0 0 / .12) 66%, transparent 82%);
}
.hero__topscrim {
  position: absolute; inset: 0 0 auto 0; height: 168px; z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(0 0 0 / .88) 0%, rgb(0 0 0 / .38) 55%, transparent 100%);
}
.hero__dots {
  position: absolute; left: 0; right: 0; bottom: 40px; z-index: 4;
  display: flex; justify-content: center; gap: 10px;
}
.hero__arrow {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  color: var(--white);
  background: rgb(12 12 12 / .35);
  border: 1px solid rgb(249 249 249 / .28);
  backdrop-filter: blur(4px);
  transition: background-color .25s ease, color .25s ease,
  border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.hero__arrow svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hero__arrow:hover, .hero__arrow:focus-visible { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }
.hero__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero__arrow--next:hover { transform: translateY(-50%) translateX(3px); }
.hero__dot {
  width: 34px; height: 4px; border-radius: 2px; padding: 0;
  background: rgb(249 249 249 / .35);
  transition: background-color .3s ease, width .3s ease;
}
.hero__dot:hover { background: rgb(249 249 249 / .6); }
.hero__dot.is-active { background: var(--yellow); width: 52px; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  .hero__img { transition: none; transform: none; }
}
body.nav-locked { overflow: hidden; }
.iconbtn {
  display: none;
  width: 40px; height: 40px; place-content: center;
}
.iconbtn svg { width: 20px; height: 20px; fill: none; stroke: rgb(249 249 249 / .85); stroke-width: 1.6; stroke-linecap: round; }
.bag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  padding: 9px 16px; border-radius: var(--r-pill); min-height: 40px;
}
.bag svg { width: 17px; height: 18px; fill: none; stroke: var(--black); stroke-width: 1.8; stroke-linejoin: round; }
.bag__count { font-family: var(--ui); font-weight: 600; font-size: 15px; }
.hero__body { padding-block: 118px 56px; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 9vw, 72px);
  line-height: .88; color: var(--white);
  margin-bottom: 14px;
}
.hero__lede {
  color: rgb(249 249 249 / .7); max-width: 62ch; margin-bottom: 26px;
  font-size: 17px; line-height: 1.55;
}
.heat__row {
  display: flex;
  gap: 30px;
  margin-top: 32px;
  padding-block: 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  will-change: transform;
}
.heat__row.is-dragging { cursor: grabbing; }
.heat__track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}
.heat__stop { flex: 0 0 168px; text-align: center; padding-top: 18px; padding-bottom: 28px; }
.heat__tile {
  position: relative;
  display: grid; place-items: end center;
  padding: 0;
  isolation: isolate;
}
.heat__tile::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -10px;
  height: 65%;
  border-radius: 16px;
  background: color-mix(in srgb, var(--tint) 16%, transparent);
  z-index: -1;
  transition: height .25s ease, background-color .25s ease;
}
.heat__tile img {
  position: relative;
  width: 92%; max-height: none;
  transform: translateY(0);
  transition: transform .25s ease, filter .25s ease;
  filter: drop-shadow(0 8px 14px rgb(15 13 10 / .16));
}
.heat__tile:hover::before, .heat__tile:focus-visible::before {
  height: 66%;
  background: color-mix(in srgb, var(--tint) 26%, transparent);
}
.heat__tile:hover img, .heat__tile:focus-visible img {
  transform: translateY(-10px);
  filter: drop-shadow(0 18px 24px rgb(15 13 10 / .28));
}
.heat__label {
  display: block; margin-top: 20px;
  font-family: var(--ui); font-weight: 600; font-size: 13px;
  line-height: 1.3; color: rgb(12 12 12 / .85);
}
.promos { padding-top: 0; }
.promos__grid { display: grid; gap: 20px; }
.promo {
  position: relative; overflow: hidden;
  border-radius: 18px; min-height: 220px;
  display: flex; align-items: center;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.promo__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.promo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgb(250 203 18 / 68%) 0%, rgb(250 203 18 / 32%) 48%, transparent 78%);
  transition: background .45s ease;
}
.promo::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgb(250 203 18 / 68%) 0%, rgb(250 203 18 / 32%) 48%, transparent 78%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.promo:hover, .promo:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgb(15 13 10 / .28);
}
.promo:hover .promo__bg, .promo:focus-within .promo__bg {
  transform: scale(1.06);
  filter: saturate(1.12) brightness(1.04);
}
.promo:hover::after, .promo:focus-within::after { background: linear-gradient(90deg, rgb(250 203 18 / 80%) 0%, rgb(250 203 18 / 44%) 52%, transparent 82%); }
.promo:hover::before, .promo:focus-within::before { transform: translateX(120%); }
.promo__body { padding: 28px; max-width: 16rem; position: relative; z-index: 1; }
.promo__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 4.4vw, 30px); line-height: 1.05;
  margin-bottom: 8px;
}
.promo__sub {
  font-size: 14px; margin-bottom: 18px;
  transition: color .35s ease;
}
.promo .btn { transition: transform .35s ease, background-color .2s ease, gap .25s ease; }
.promo:hover .btn { transform: translateX(4px); }
.promo .btn::after {
  content: "→"; display: inline-block;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .3s ease, opacity .3s ease, margin-left .3s ease;
}
.promo:hover .btn::after { max-width: 1.4em; opacity: 1; margin-left: 6px; }
.cards { display: grid; gap: 20px; margin-top: 32px; }
.cards--4 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 3px 12px rgb(15 13 10 / .10);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgb(15 13 10 / .16); }
.card:hover .card__name a { text-decoration: underline; }
.card__media {
  position: relative;
  display: grid; place-items: center;
  padding: 22px 16px 18px;
  background: color-mix(in srgb, var(--tint) 16%, transparent);
}
.card__media img { width: auto; max-height: 190px; }
.card__size {
  position: absolute; top: 12px; left: 12px;
  background: var(--white); color: var(--black);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 9px; border-radius: var(--r-md);
}
.card__body {
  padding: 18px 18px 22px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.card__rating {
  display: flex; align-items: center; gap: 7px;
  margin-top: -2px;
}
.card__stars { display: inline-flex; gap: 2px; }
.card__stars svg { width: 13px; height: 13px; fill: var(--yellow); }
.card__stars svg.is-empty { fill: rgb(12 12 12 / .18); }
.card__count { font-family: var(--ui); font-size: 12px; color: #666; }
.card__desc {
  font-size: 13px; line-height: 1.5; color: #555;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.6em;
}
.card__name {
  font-family: var(--ui); font-weight: 600;
  font-size: 17px; line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.card__buy {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: auto;
}
.price {
  display: flex; flex-direction: row; align-items: baseline;
  gap: 7px; line-height: 1.1;
}
.price__now { font-family: var(--display); font-size: 20px; }
.price__cur { font-family: var(--ui); font-weight: 600; font-size: .78em; margin-right: 1px; }
.price__was { font-family: var(--ui); font-size: 12px; color: rgb(12 12 12 / .45); }
.stats { background: var(--yellow); padding-block: var(--band); }
.stats__row { display: grid; gap: 24px; }
.stat { padding-block: 4px; }
.stat + .stat { border-top: 1px solid rgb(12 12 12 / .2); padding-top: 20px; }
.stat__figure { display: flex; align-items: flex-end; gap: 12px; margin-bottom: 14px; }
.stat__icon {
  width: 30px; height: 30px; flex: none;
  fill: none; stroke: var(--black); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: .6;
}
.stat__label {
  font-family: var(--ui); font-weight: 600;
  font-size: 16px; letter-spacing: 0; text-transform: none;
  line-height: 1.25; margin-bottom: 6px;
}
.stat__note { font-size: 12.5px; color: rgb(12 12 12 / .62); line-height: 1.45; }
.about__grid { display: grid; gap: 36px; align-items: center; }
.about__copy p { margin-bottom: 16px; color: rgb(12 12 12 / .75); }
.about__copy .display { margin-bottom: 18px; }
.about__sig {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.about__rule { width: 40px; height: 3px; border-radius: 2px; background: var(--yellow); flex: none; }
.about__art img { border-radius: 18px; }
.offer { position: relative; isolation: isolate; background: var(--black); }
.offer__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.offer__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgb(0 0 0 / .94) 0%, rgb(0 0 0 / .86) 26%,
  rgb(0 0 0 / .5) 48%, rgb(0 0 0 / .1) 70%, transparent 84%);
}
.offer__body { padding-block: 56px; }
.offer__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 8vw, 54px); line-height: .95;
  color: var(--yellow); margin-bottom: 18px;
}
.offer__lede {
  color: rgb(249 249 249 / .72); font-size: 17px;
  max-width: 34ch; margin-bottom: 22px;
}
.offer__code {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px dashed var(--yellow); border-radius: var(--r-pill);
  padding: 10px 20px; margin-bottom: 20px;
}
.offer__code span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgb(249 249 249 / .55); }
.offer__code strong { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--yellow); }
.process { background: var(--yellow); }
.process__grid { display: grid; gap: 36px; }
.process__link { margin-top: 14px; }
.process__steps { display: grid; gap: 24px; }
.process__steps li { border-top: 3px solid rgb(12 12 12 / .22); padding-top: 16px; }
.process__num { font-family: var(--display); font-size: 26px; display: block; margin-bottom: 6px; }
.process__steps h3 { font-family: var(--display); font-weight: 400; font-size: 16px; margin-bottom: 8px; }
.process__steps p { font-size: 14px; color: rgb(12 12 12 / .7); }
.posts { display: grid; gap: 24px; margin-top: 32px; }
.post__link {
  position: relative; display: flex; align-items: flex-end;
  min-height: 450px; border-radius: 16px; overflow: hidden;
  isolation: isolate; color: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post__link img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .5s ease;
}
.post__link::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(0 0 0 / .15) 0%, rgb(0 0 0 / .55) 55%, rgb(0 0 0 / .88) 100%);
  transition: background .35s ease;
}
.post:hover .post__link { transform: translateY(-5px); box-shadow: 0 18px 34px rgb(15 13 10 / .26); }
.post:hover .post__link img { transform: scale(1.06); }
.post:hover .post__link::after { background: linear-gradient(180deg, rgb(0 0 0 / .22) 0%, rgb(0 0 0 / .62) 55%, rgb(0 0 0 / .92) 100%); }
.post__tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: var(--paper); color: var(--black);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 12px;
}
.post__body { padding: 22px; width: 100%; }
.post__title {
  margin: 0;
  font-family: var(--ui); font-weight: 600;
  font-size: 19px; line-height: 1.25; margin-bottom: 6px;
}
.post__excerpt {
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.8em;
  font-size: 13.5px; color: rgb(249 249 249 / .75); line-height: 1.5;
}
.post__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 14px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: rgb(249 249 249 / .55);
}
.readmore {
  font-family: var(--ui); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0; text-transform: none; color: var(--white);
  border-bottom: 2px solid rgb(249 249 249 / .85); padding-bottom: 3px;
}
.reviews__grid { display: grid; gap: 40px; align-items: center; }
.reviews__copy p { color: rgb(12 12 12 / .65); margin: 16px 0 22px; max-width: 44ch; }
.score {
  display: flex; align-items: center; gap: 28px;
  padding: 20px 0 22px; margin: 20px 0 18px;
  border-top: 1px solid rgb(12 12 12 / .12);
  border-bottom: 1px solid rgb(12 12 12 / .12);
}
.score__figure { text-align: center; flex: none; }
.score__num {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: 46px; line-height: 1;
}
.score__stars { display: inline-flex; gap: 2px; margin: 6px 0 4px; }
.score__stars svg { width: 14px; height: 14px; fill: var(--yellow); }
.score__count {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: rgb(12 12 12 / .45);
}
.dist { flex: 1; display: grid; gap: 6px; min-width: 0; }
.dist__row { display: grid; grid-template-columns: 30px 1fr 30px; align-items: center; gap: 10px; }
.dist__label {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: var(--ui); font-weight: 600; font-size: 12px; color: rgb(12 12 12 / .7);
}
.dist__star { width: 10px; height: 10px; fill: rgb(12 12 12 / .3); }
.dist__track { height: 7px; border-radius: 4px; background: rgb(12 12 12 / .08); overflow: hidden; }
.dist__fill { display: block; height: 100%; border-radius: 4px; background: var(--yellow); }
.dist__n {
  font-family: var(--mono); font-size: 11px;
  color: rgb(12 12 12 / .45); text-align: right;
}
.reviews__honest {
  font-size: 14px; color: rgb(12 12 12 / .6);
  max-width: 42ch; margin-bottom: 22px;
}
.reviews__stage { position: relative; display: grid; gap: 16px; isolation: isolate; }
.blob { display: none; }
.review {
  background: var(--white); border-radius: 14px; padding: 20px;
  box-shadow: 0 8px 24px rgb(15 13 10 / .14);
}
.review__stars { color: var(--orange); letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }
.review blockquote p { font-size: 14.5px; color: rgb(12 12 12 / .8); line-height: 1.6; }
.review figcaption {
  margin-top: 10px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.ads { display: grid; gap: 20px; }
.ad {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: 18px; min-height: 300px;
  display: flex; align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.ad__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .55s ease;
}
.ad::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  transition: opacity .3s ease;
}
.ad--yellow { background: var(--yellow); }
.ad--yellow::after {
  background: linear-gradient(90deg, rgb(250 203 18 / .96) 0%, rgb(250 203 18 / .86) 42%,
  rgb(250 203 18 / .35) 72%, rgb(250 203 18 / 0) 92%);
}
.ad--dark { background: var(--black); color: var(--white); }
.ad--dark::after {
  background: linear-gradient(90deg, rgb(12 12 12 / .95) 0%, rgb(12 12 12 / .85) 42%,
  rgb(12 12 12 / .35) 72%, rgb(12 12 12 / 0) 92%);
}
.ad:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgb(15 13 10 / .24); }
.ad:hover .ad__bg { transform: scale(1.05); }
.ad__body { position: relative; z-index: 1; padding: 34px 28px; max-width: 24rem; }
.ad__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(22px, 4.6vw, 28px); line-height: 1.05; margin-bottom: 10px;
}
.ad p { font-size: 15px; margin-bottom: 18px; }
.ad--yellow p { color: rgb(12 12 12 / .78); }
.ad--dark p { color: rgb(249 249 249 / .78); }
.faq { display: grid; gap: 36px; }
.faq__copy p { color: rgb(12 12 12 / .62); margin: 14px 0 20px; }
.faq__list details { border-bottom: 1px solid rgb(12 12 12 / .12); }
.faq__list details:first-child { border-top: 1px solid rgb(12 12 12 / .12); }
.faq__list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0;
  font-family: var(--ui); font-weight: 600; font-size: 16px;
  transition: color .2s ease;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::marker { content: ""; }
.faq__list summary:hover { color: rgb(12 12 12 / .62); }
.faq__icon {
  display: grid; place-items: center; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgb(12 12 12 / .06);
  transition: transform .4s cubic-bezier(.2,.9,.25,1), background-color .3s ease;
}
.faq__icon svg {
  width: 15px; height: 15px;
  fill: none; stroke: var(--black); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.faq__list details.is-open .faq__icon { transform: rotate(180deg); background: var(--yellow); }
.js .faq__panel {
  height: 0; overflow: hidden;
  transition: height .4s cubic-bezier(.2,.9,.25,1);
}
.js .faq__inner {
  opacity: 0; transform: translateY(-6px);
  transition: opacity .3s ease .06s, transform .35s cubic-bezier(.2,.9,.25,1) .06s;
}
.js .faq__list details.is-open .faq__inner { opacity: 1; transform: none; }
.faq__inner p {
  padding-bottom: 22px; max-width: 62ch;
  color: rgb(12 12 12 / .65); font-size: 15px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .js .faq__panel { transition: none; }
  .js .faq__inner { transition: none; opacity: 1; transform: none; }
  .faq__icon { transition: none; }
}
.apps-band {
  display: grid; grid-template-columns: 1fr;
  background: #ffffff;
  overflow: hidden;
}
.apps-band__copy {
  background: var(--yellow);
  padding: 28px var(--gutter) 32px;
}
.apps-band__eyebrow {
  font-family: var(--ui); font-weight: 600; font-size: 20px;
  color: rgb(12 12 12 / .8); line-height: 1.1;
}
.apps-band__title {
  font-family: var(--display); font-weight: 400;
  font-size: 32px; line-height: 1.05; margin: 2px 0 8px;
}
.apps-band__note { font-size: 13.5px; color: rgb(12 12 12 / .7); max-width: 30ch; }
.apps-band__logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px 48px;
  padding: 30px var(--gutter);
}
.apps-band__logos a {
  display: block;
  filter: grayscale(1); opacity: .65;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.apps-band__logos a:hover, .apps-band__logos a:focus-visible { filter: none; opacity: 1; transform: translateY(-3px); }
.apps-band__logos img { height: 100px; width: auto; object-fit: contain; }
@media (min-width: 860px) {
  .apps-band { grid-template-columns: 420px 1fr; align-items: stretch; }
  .apps-band__copy {
    display: flex; flex-direction: column; justify-content: center;
    padding: 40px 56px 40px var(--gutter);
    
    clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
    padding-right: 96px;
  }
  .apps-band__logos {
    justify-content: space-evenly;
    padding: 40px var(--gutter) 40px 0;
    gap: 40px;
  }
  .apps-band__logos img { height: 100px; }
}
@media (min-width: 1200px) {
  .apps-band { grid-template-columns: 480px 1fr; }
  .apps-band__title { font-size: 38px; }
  .apps-band__eyebrow { font-size: 23px; }
}
.social { display: flex; justify-content: center; gap: 12px; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: rgb(249 249 249 / .75);
  border: 1px solid rgb(249 249 249 / .18);
  transition: background-color .25s ease, color .25s ease,
  border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.social a:hover, .social a:focus-visible {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow); transform: translateY(-3px);
}
.social svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
@media (min-width: 560px) {
  .heat__stop { flex-basis: 170px; }
  .promos__grid { gap: 20px; }
}
@media (min-width: 720px) {
  .hero__body { padding-block: 132px 64px; }
  .heat__stop { flex-basis: 178px; }
  .promos__grid { grid-template-columns: 1fr 1fr; }
  .promo__body { padding: 32px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
  .stat + .stat { border-top: 0; padding-top: 4px; }
  .stat:nth-child(even) { border-left: 1px solid rgb(12 12 12 / .2); padding-left: 32px; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process__grid { grid-template-columns: 380px 1fr; }
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .posts { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ads { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 340px 1fr; gap: 48px; }
  .buy { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .iconbtn { display: grid; }
  .hero__body { padding-block: 148px 64px; }
  .heat__stop { flex-basis: 190px; }
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
  .card__media img { max-height: 220px; }
  .stats__row { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat { padding-inline: 40px; }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { padding-right: 0; }
  .stat + .stat { border-left: 1px solid rgb(12 12 12 / .2); }
  .stat:nth-child(even) { padding-left: 40px; }
  .about__grid { grid-template-columns: 1fr 536px; gap: 64px; }
  .promo { min-height: 268px; }
  .promo__body { padding: 25px; }
  .offer__body { padding-block: 76px; }
  .posts { gap: 24px; }
  .reviews__grid { grid-template-columns: minmax(0, 1fr) 660px; }
  .reviews__stage { width: 660px; }
  .reviews__stage { display: block; height: 420px; }
  .review { position: absolute; width: 320px; }
  .review--a { left: 15px;  top: 40px;  transform: rotate(-5deg); z-index: 1; }
  .review--b { left: 280px; top: 130px; transform: rotate(4deg); z-index: 2; }
  .review--c { left: 60px;  top: 250px; transform: rotate(3deg); z-index: 3; }
  .blob { display: block; position: absolute; border-radius: 50%; z-index: -1; }
  .blob--1 { width: 16px;  height: 16px;  background: var(--pack-jhal);  left: 120px; top: 0; }
  .blob--2 { width: 150px; height: 150px; background: var(--pack-matar); left: 470px; top: 22px; }
  .blob--3 { width: 110px; height: 110px; background: var(--pack-tok);   left: 30px;  top: 250px; }
  .blob--4 { width: 130px; height: 130px; background: var(--yellow);     left: 330px; top: 300px; }
  .blob--5 { width: 90px;  height: 90px;  background: var(--pack-moong); left: 600px; top: 250px; }
  .buy { grid-template-columns: 1fr 1fr; gap: 24px; }
  .app img { height: 34px; }
  .faq { grid-template-columns: 380px 1fr; gap: 64px; }
}
@media (min-width: 1400px) {
  .hero__body { padding-block: 156px 72px; }
  .card__media img { max-height: 240px; }
}
@media (max-width: 999px) {
  .iconbtn { display: none; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; --section: 52px; --band: 30px; }
  .display { font-size: clamp(24px, 7vw, 30px); }
  .hero__title { font-size: clamp(34px, 11vw, 48px); }
  .hero__lede { font-size: 15px; }
  .eyebrow { font-size: 10px; letter-spacing: .16em; }
  .hero__body { padding-block: 104px 44px; }
  .hero, .hero__slide { min-height: 460px; }
  .hero { max-height: 460px; }
  .hero__img { object-position: center 45%; }
  .hero__scrim { background: linear-gradient(180deg, rgb(0 0 0 / .55) 0%, rgb(0 0 0 / .82) 55%, rgb(0 0 0 / .92) 100%); }
  .hero__dots { bottom: 22px; }
  .hero__arrow { width: 42px; height: 42px; }
  .hero__arrow svg { width: 18px; height: 18px; }
  .hero__arrow--prev { left: 10px; }
  .hero__arrow--next { right: 10px; }
  .btnrow .btn { flex: 1 1 auto; justify-content: center; }
  .heat__stop { flex-basis: 44vw; }
  .heat__row { gap: 16px; }
  .promos__grid, .cards, .cards--4, .posts, .ads, .buy { grid-template-columns: 1fr !important; }
  .stats__row { grid-template-columns: 1fr; gap: 0; }
  .stat { padding-inline: 0; border-left: 0 !important; }
  .stat + .stat { border-top: 1px solid rgb(12 12 12 / .18); padding-top: 18px; margin-top: 18px; }
  .about__grid, .process__grid, .reviews__grid, .faq { grid-template-columns: 1fr; gap: 28px; }
  .about__art img { max-height: 260px; object-fit: contain; }
  .process__steps { grid-template-columns: 1fr; gap: 18px; }
  .card__media img { max-height: 210px; }
  .card__body { padding: 16px 16px 20px; }
  .card__name { font-size: 16px; }
  .card__buy { flex-direction: row; gap: 10px; }
  .btn--sm { padding: 12px 16px; font-size: 13px; }
  .promo { min-height: 0; flex-direction: column; }
  .promo__bg { position: relative; height: 190px; z-index: 0; }
  .promo::after {
    inset: 0 0 auto 0; height: 190px;
    background: linear-gradient(180deg, rgb(0 0 0 / .1), rgb(0 0 0 / .5));
  }
  .promo__body { padding: 20px; max-width: none; background: var(--black); width: 100%; }
  .promo__title, .promo__sub { color: var(--white); }
  .ad { min-height: 0; flex-direction: column; }
  .ad__bg { position: relative; height: 180px; z-index: 0; }
  .ad::after { display: none; }
  .ad__body { padding: 24px 20px; max-width: none; }
  .reviews__stage { display: grid; gap: 14px; height: auto; width: auto; }
  .review { position: static; width: auto; transform: none !important; }
  .blob { display: none !important; }
  .score { flex-direction: column; align-items: flex-start; gap: 18px; }
  .dist { width: 100%; }
  .post__link { min-height: 300px; }
  .post__title { font-size: 17px; }
  .apps-band { grid-template-columns: 1fr; }
  .apps-band__copy { clip-path: none; padding: 26px var(--gutter); }
  .apps-band__logos { justify-content: flex-start; gap: 22px 28px; padding: 24px var(--gutter); }
  .apps-band__logos img { height: 46px; }
  .offer__body { padding-block: 44px; }
  .offer__title { font-size: clamp(28px, 9vw, 40px); }
  .sechead { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sechead__note { max-width: none; }
}
@media (max-width: 400px) {
  .heat__stop { flex-basis: 62vw; }
  .card__buy { flex-direction: column; align-items: stretch; }
  .card__buy .btn { width: 100%; }
  .price { flex-direction: row; justify-content: flex-start; }
}
.pagehead--hero-minimal {
  padding-block: 0;
  min-height: 400px;
  background: url(../img/banners/sub-hero.webp) center top / cover no-repeat;
}
.pagehead .display { margin-top: 6px; }
.pagehead__sub { color: rgb(12 12 12 / .65); font-size: 16px; margin-top: 10px; max-width: 56ch; }
.crumb-band { background: var(--cream); width: 100%; }
.crumb-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; padding-block: 14px;
}
.crumb-band__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--black); margin: 0; line-height: 1;
}
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--ui); font-size: 13px; font-weight: 600;
  color: var(--black); margin: 0;
  padding: 0; background: transparent;
}
.crumb a {
  color: var(--black); text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 8px; border-radius: 4px;
}
.crumb a:hover { background: rgba(250, 203, 18, 0.3); color: var(--black); }
.crumb [aria-current] {
  color: var(--black); font-weight: 600;
  padding: 4px 8px; background: rgba(224, 93, 35, 0.15); border-radius: 4px;
}
.crumb__sep { opacity: 0.6; color: var(--black); margin: 0 4px; font-weight: 300; }
.pdp { display: grid; gap: 40px; padding-block: 0 var(--section); }
.pdp__gallery { display: grid; gap: 14px; align-content: start; }
.pdp__stage {
  display: grid; place-items: center; border-radius: 18px;
  padding: 40px 20px;
  background: color-mix(in srgb, var(--tint) 16%, transparent);
}
.pdp__stage img { max-height: 420px; width: auto; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pdp__thumb {
  display: grid; place-items: center; aspect-ratio: 1;
  border-radius: 12px; background: rgb(12 12 12 / .05);
  border: 2px solid transparent; padding: 8px;
  transition: border-color .2s ease;
}
.pdp__thumb.is-active { border-color: var(--black); }
.pdp__thumb img { max-height: 100%; width: auto; }
.pdp__buy { display: grid; align-content: start; gap: 0; }
.pdp__cat {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.pdp__name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.05; margin: 6px 0 0;
}
.pdp__rating { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.pdp__desc { font-size: 17px; line-height: 1.65; color: rgb(12 12 12 / .7); margin-top: 14px; }
.pdp__jhal { margin: 24px 0; }
.pdp__jhalhead { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pdp__jhalhead span:first-child {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.pdp__jhalhead span:last-child {
  font-family: var(--ui); font-weight: 600;
  font-size: 13px; color: rgb(12 12 12 / .75);
}
.pdp__ticks { display: flex; gap: 6px; margin-top: 8px; }
.pdp__ticks i { flex: 1; height: 8px; border-radius: 3px; background: rgb(12 12 12 / .12); }
.pdp__ticks i.on { background: var(--orange); }
.pdp__sizes { margin-bottom: 22px; }
.pdp__label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgb(12 12 12 / .5); display: block; margin-bottom: 10px;
}
.pdp__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdp__opt {
  display: grid; gap: 2px; text-align: left;
  padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid rgb(12 12 12 / .16); background: none;
  transition: border-color .2s ease, background-color .2s ease;
}
.pdp__opt:hover { border-color: rgb(12 12 12 / .4); }
.pdp__opt.is-active { border-color: var(--black); border-width: 2px; }
.pdp__opt b { font-family: var(--ui); font-weight: 600; font-size: 15px; }
.pdp__opt span { display: flex; align-items: baseline; gap: 6px; }
.pdp__opt em { font-style: normal; font-family: var(--display); font-size: 17px; }
.pdp__opt s { font-family: var(--ui); font-size: 12px; color: rgb(12 12 12 / .45); }
.pdp__buyrow { display: flex; align-items: center; gap: 12px; }
.qty {
  display: flex; align-items: center; flex: none;
  border: 1.5px solid rgb(12 12 12 / .18); border-radius: 999px; padding: 4px;
}
.qty button { width: 40px; height: 44px; font-size: 18px; font-family: var(--ui); font-weight: 600; }
.qty span { min-width: 34px; text-align: center; font-family: var(--ui); font-weight: 600; }
.pdp__buyrow .btn { flex: 1; }
.pdp__points { display: grid; gap: 9px; margin-top: 24px; }
.pdp__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgb(12 12 12 / .65);
}
.pdp__points i { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); flex: none; }
.tabs { display: flex; gap: 30px; border-bottom: 1px solid rgb(12 12 12 / .12); }
.tabs button {
  padding: 16px 0 14px; font-family: var(--ui); font-weight: 600; font-size: 15px;
  color: rgb(12 12 12 / .5); border-bottom: 3px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.tabs button.is-active { color: var(--black); border-bottom-color: var(--black); }
.tabpanel { display: none; padding-top: 30px; }
.tabpanel.is-active { display: grid; gap: 48px; }
.spec { display: grid; gap: 0; }
.spec__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-top: 1px solid rgb(12 12 12 / .1);
}
.spec__row span:first-child { color: rgb(12 12 12 / .75); font-size: 14px; }
.spec__row span:last-child { font-family: var(--ui); font-weight: 600; font-size: 14px; }
.spec__row--sub span:first-child { padding-left: 16px; color: rgb(12 12 12 / .5); }
.prose p { color: rgb(12 12 12 / .72); line-height: 1.75; margin-bottom: 14px; max-width: 68ch; }
.prose h3 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 26px 0 10px; }
.prose ul { display: grid; gap: 8px; margin: 0 0 16px; }
.prose ul li { position: relative; padding-left: 22px; color: rgb(12 12 12 / .72); line-height: 1.7; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
}
.small {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: rgb(12 12 12 / .45);
}
.shop { display: grid; gap: 40px; padding-block: 0 var(--section); }
.filters { display: grid; gap: 26px; align-content: start; }
.filters__group { display: grid; gap: 11px; }
.filters__group > span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.check {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
  color: rgb(12 12 12 / .7); cursor: pointer;
}
.check i {
  width: 18px; height: 18px; border-radius: 5px; flex: none;
  border: 1.5px solid rgb(12 12 12 / .22); display: grid; place-items: center;
}
.check input { position: absolute; opacity: 0; width: 0; height: 0; margin: 0; }
.check input:checked + i { background: var(--yellow); border-color: var(--black); border-width: 2px; }
.check input:focus-visible + i { outline: 3px solid var(--orange); outline-offset: 2px; }
.resultbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgb(12 12 12 / .12);
}
.resultbar p { font-size: 14px; color: rgb(12 12 12 / .6); }
.select {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgb(12 12 12 / .18); border-radius: 999px;
  padding: 9px 16px; font-family: var(--ui); font-weight: 600; font-size: 13px;
}
.cartgrid { display: grid; gap: 40px; padding-block: 0 var(--section); }
.ship {
  border-radius: 14px; padding: 16px 20px 18px;
  background: color-mix(in srgb, var(--yellow) 18%, transparent); margin-bottom: 20px;
}
.ship p { font-family: var(--ui); font-weight: 600; font-size: 14px; margin-bottom: 10px; }
.ship__track { height: 8px; border-radius: 4px; background: rgb(12 12 12 / .1); overflow: hidden; }
.ship__fill { height: 100%; border-radius: 4px; background: var(--yellow); }
.line {
  display: grid; grid-template-columns: 88px 1fr auto auto; gap: 20px;
  align-items: center; padding: 20px 0; border-top: 1px solid rgb(12 12 12 / .12);
}
.line:last-of-type { border-bottom: 1px solid rgb(12 12 12 / .12); }
.line__thumb {
  display: grid; place-items: center; border-radius: 12px; padding: 8px;
  background: color-mix(in srgb, var(--tint) 16%, transparent);
}
.line__thumb img { max-height: 80px; width: auto; }
.line__name { font-family: var(--ui); font-weight: 600; font-size: 17px; }
.line__size {
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: rgb(12 12 12 / .5); margin: 2px 0 4px;
}
.line__remove { font-size: 13px; color: rgb(12 12 12 / .45); text-decoration: underline; }
.line__total { text-align: right; min-width: 84px; }
.line__total b { font-family: var(--display); font-weight: 400; font-size: 19px; }
.line__total span {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: .06em; color: rgb(12 12 12 / .45);
}
.summary {
  border-radius: 18px; padding: 26px; background: var(--cream);
  align-self: start; position: sticky; top: 120px;
}
.summary h2 { font-family: var(--display); font-weight: 400; font-size: 24px; margin-bottom: 18px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; }
.summary__row span:first-child { color: rgb(12 12 12 / .7); font-size: 15px; }
.summary__row span:last-child { font-family: var(--ui); font-weight: 600; font-size: 15px; }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 16px 0 20px; border-top: 1px solid rgb(12 12 12 / .14);
}
.summary__total span:first-child { font-family: var(--display); font-size: 22px; }
.summary__total span:last-child { font-family: var(--display); font-size: 26px; }
.summary .btn { width: 100%; justify-content: center; }
.summary__link {
  display: block; text-align: center; margin-top: 14px;
  font-size: 14px; color: rgb(12 12 12 / .55); text-decoration: underline;
}
.empty { text-align: center; padding: 60px 20px; }
.empty h2 { font-family: var(--display); font-weight: 400; font-size: 28px; margin-bottom: 10px; }
.empty p { color: rgb(12 12 12 / .6); margin-bottom: 22px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field > label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: rgb(12 12 12 / .55);
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 15px; color: var(--black);
  padding: 14px 16px; border-radius: 12px; background: var(--paper);
  border: 1.5px solid rgb(12 12 12 / .16);
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--black);
  box-shadow: 0 0 0 3px rgb(250 203 18 / .35);
}
.field textarea { min-height: 130px; resize: vertical; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__hint { font-size: 12.5px; color: rgb(12 12 12 / .5); }
fieldset { border: 0; padding: 0; margin: 0 0 30px; }
legend { font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 16px; }
.radio {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; border-radius: 12px; border: 1.5px solid rgb(12 12 12 / .16);
  margin-bottom: 10px; cursor: pointer;
}
.radio.is-active { border-color: var(--black); border-width: 2px; }
.radio i {
  width: 18px; height: 18px; border-radius: 50%; flex: none; margin-top: 2px;
  border: 1.5px solid rgb(12 12 12 / .25); display: grid; place-items: center;
}
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio input:checked + i { border: 5px solid var(--black); }
.radio b { font-family: var(--ui); font-weight: 600; font-size: 15px; display: block; }
.radio span { font-size: 13.5px; color: rgb(12 12 12 / .6); }
.account { display: grid; gap: 40px; padding-block: 0 var(--section); }
.accnav { display: grid; gap: 4px; align-content: start; }
.accnav a {
  padding: 12px 14px; border-radius: 10px; font-family: var(--ui);
  font-weight: 600; font-size: 15px; color: rgb(12 12 12 / .7);
}
.accnav a:hover { background: rgb(12 12 12 / .05); color: var(--black); }
.accnav a[aria-current] { background: var(--black); color: var(--yellow); }
.orders { display: grid; gap: 14px; }
.order { border: 1.5px solid rgb(12 12 12 / .12); border-radius: 14px; padding: 20px; }
.order__head {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; align-items: center; margin-bottom: 14px;
}
.order__id { font-family: var(--ui); font-weight: 600; font-size: 16px; }
.order__meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: rgb(12 12 12 / .5);
}
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: 999px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
}
.pill--ok { background: color-mix(in srgb, var(--pack-matar) 18%, transparent); color: #10603a; }
.pill--wait { background: color-mix(in srgb, var(--yellow) 30%, transparent); color: #5a4700; }
.order__items { display: flex; gap: 8px; flex-wrap: wrap; }
.order__items img { height: 54px; width: auto; }
.content { padding-block: 52px var(--section); }
.article__meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: rgb(12 12 12 / .55); margin-bottom: 14px;
}
.article__tag {
  background: var(--yellow); color: var(--black);
  padding: 5px 12px; border-radius: 999px; font-weight: 600; letter-spacing: .08em;
}
.article__dot { opacity: .5; }
.article__title { margin: 0 0 4px; font-size: clamp(30px, 5vw, 46px); line-height: 1.05; }
.article__hero {
  width: 100%; height: auto; border-radius: 18px;
  margin: 26px 0 32px; display: block;
  border: 1px solid rgb(12 12 12 / .08);
}
.article-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; max-width: 1120px; margin-inline: auto; }
@media (min-width: 1000px) {
  .article-layout { grid-template-columns: minmax(0,1fr) 300px; gap: 48px; }
}
.related { padding-block: var(--band) var(--section); border-top: 1px solid rgb(12 12 12 / .08); }
.related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.related__title { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 4vw, 34px); margin: 0; }
.related__all { font-family: var(--ui); font-weight: 600; font-size: 14px; color: var(--black); text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.related__all:hover { color: var(--orange); }
.related__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px) {
  .related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .related__grid { grid-template-columns: repeat(3, 1fr); }
}
.article-main { min-width: 0; max-width: 760px; }
.blog-side { display: grid; gap: 24px; }

/* ---------- Contact Form 7 compatibility ----------
   CF7 wraps every control in a <span>, which breaks the grid gap on
   .field. Make the wrapper transparent to layout.                */
.wpcf7-form-control-wrap { display: block; margin: 0; }
.contact__formwrap .wpcf7-form p { margin: 0; }
/* Defensive: kill any <br> or empty <p> CF7 still injects between a
   label and its control — they read as a large unexplained gap. */
.contact__formwrap .field br,
.contact__formwrap .field__row br { display: none; }
.contact__formwrap .wpcf7-form p:empty { display: none; margin: 0; }
.contact__formwrap .field > label { margin-bottom: 0; }
.contact__formwrap .field { margin-bottom: 18px; }
.contact__formwrap .field__row { margin-bottom: 0; }
.contact__formwrap .field__row .field { margin-bottom: 18px; }
.contact__formwrap .wpcf7-not-valid-tip {
  font-size: 12.5px; color: var(--orange); margin-top: 4px; display: block;
}
.contact__formwrap .wpcf7-response-output {
  margin: 18px 0 0; padding: 12px 16px;
  border: 1.5px solid rgb(12 12 12 / .18); border-radius: 10px;
  font-size: 14px; line-height: 1.5;
}
.contact__formwrap .wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--pack-matar); background: rgb(30 138 76 / .08);
}
.contact__formwrap .wpcf7-form.invalid .wpcf7-response-output,
.contact__formwrap .wpcf7-form.failed .wpcf7-response-output {
  border-color: var(--orange); background: rgb(224 93 35 / .08);
}
.contact__formwrap .wpcf7-spinner { margin: 0 0 0 10px; }
.contact__formwrap input[type="submit"] { width: 100%; }
@media (min-width: 620px) {
  .contact__formwrap input[type="submit"] { width: auto; min-width: 200px; }
}

/* ---------- Search results header ---------- */
.searchhead { margin-bottom: 36px; padding-bottom: 28px;
  border-bottom: 1px solid rgb(12 12 12 / .1); }
.searchhead .display { margin-bottom: 18px; }
.searchhead__form { display: flex; gap: 10px; max-width: 520px; }
.searchhead__form input {
  flex: 1; min-width: 0;
  font-family: var(--body); font-size: 15px; color: var(--black);
  padding: 13px 16px; border-radius: 12px; background: var(--paper);
  border: 1.5px solid rgb(12 12 12 / .16);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.searchhead__form input:focus {
  outline: none; border-color: var(--black);
  box-shadow: 0 0 0 3px rgb(250 203 18 / .35);
}
.searchhead__form .btn { flex: none; }
@media (max-width: 560px) {
  .searchhead__form { flex-direction: column; }
  .searchhead__form .btn { width: 100%; justify-content: center; }
}

/* Sidebar extras */
.side-shop__text { font-size: 14px; line-height: 1.55; color: rgb(12 12 12 / .7); margin: 0 0 14px; }
.side-shop__btn { width: 100%; justify-content: center; }
.side-post span { display: block; min-width: 0; }

@media (min-width: 1000px) {
  .blog-side { position: sticky; top: 120px; }
}
.side-card {
  background: var(--paper); border: 1px solid rgb(12 12 12 / .08);
  border-radius: 16px; padding: 22px 20px;
}
.side-card--accent { background: var(--black); color: var(--white); border-color: var(--black); }
.side-card__title {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: rgb(12 12 12 / .55); margin: 0 0 16px;
}
.side-card--accent .side-card__title { color: rgb(249 249 249 / .6); }
.side-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.side-cats a {
  font-family: var(--ui); font-weight: 600; font-size: 13px;
  padding: 7px 14px; border-radius: 999px; text-decoration: none;
  background: var(--cream); color: var(--black);
  border: 1.5px solid transparent; transition: border-color .2s ease, background-color .2s ease;
}
.side-cats a:hover { border-color: var(--black); background: rgba(250,203,18,.25); }
.side-posts { display: grid; gap: 14px; }
.side-post { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.side-post img { flex: none; width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.side-post__t { font-family: var(--ui); font-weight: 600; font-size: 14px; line-height: 1.3; color: var(--black); margin: 0 0 3px; display: block; }
.side-post__m { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgb(12 12 12 / .5); }
.side-post:hover .side-post__t { color: var(--orange); }
.side-share { display: flex; gap: 10px; }
.side-share a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--yellow);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.side-share a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.side-share svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.side-news p { font-size: 14px; line-height: 1.5; color: rgb(249 249 249 / .8); margin: 0 0 14px; }
.side-news__form { display: grid; gap: 8px; }
.side-news input { font-family: var(--body); font-size: 14px; color: var(--black); padding: 11px 14px; border-radius: 10px; background: var(--white); border: 0; }
.side-news input:focus { outline: none; box-shadow: 0 0 0 3px rgb(250 203 18 / .5); }
.side-news button { font-family: var(--ui); font-weight: 700; font-size: 14px; cursor: pointer; padding: 11px 14px; border-radius: 10px; border: 0; background: var(--yellow); color: var(--black); }
.side-news button:hover { filter: brightness(.96); }
.content__grid { display: grid; gap: 48px; }
.toc { display: grid; gap: 8px; align-content: start; position: sticky; top: 120px; }
.toc a { font-size: 14px; color: rgb(12 12 12 / .6); padding: 6px 0; }
.toc a:hover { color: var(--black); }
.notfound { text-align: center; padding-block: 140px var(--section); }
.notfound h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(60px, 16vw, 140px); line-height: 1;
}
.notfound p { color: rgb(12 12 12 / .65); font-size: 17px; margin: 10px auto 26px; max-width: 46ch; }
@media (min-width: 900px) {
  .pdp { grid-template-columns: 1fr 1fr; gap: 56px; }
  .shop { grid-template-columns: 240px 1fr; gap: 48px; }
  .cartgrid { grid-template-columns: 1fr 380px; gap: 48px; }
  .tabpanel.is-active { grid-template-columns: 1fr 400px; }
  .account { grid-template-columns: 230px 1fr; }
  .content__grid { grid-template-columns: 230px 1fr; }
  .checkout { grid-template-columns: 1fr 380px; gap: 48px; }
}
@media (max-width: 768px) {
  .pagehead { padding-block: 104px var(--section); }
  .pdp__stage img { max-height: 300px; }
  .pdp__opts { grid-template-columns: 1fr; }
  .line {
    grid-template-columns: 70px 1fr; grid-template-areas:
    "thumb meta" "qty total"; row-gap: 14px;
  }
  .line__thumb { grid-area: thumb; }
  .line__meta { grid-area: meta; }
  .line .qty { grid-area: qty; }
  .line__total { grid-area: total; }
  .summary { position: static; }
  .field__row { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; gap: 20px; }
  .tabs button { white-space: nowrap; }
}
.no-hero .notfound { padding-top: 180px; }
@media (max-width: 768px) {
  .no-hero .pagehead { padding-top: 0; }
  .no-hero .notfound { padding-top: 140px; }
}
.notfound { text-align: center; padding-block: 90px var(--section); position: relative; overflow: hidden; }
.notfound__code {
  font-family: var(--display); font-weight: 400; line-height: .9;
  font-size: clamp(120px, 30vw, 300px); color: var(--yellow);
  -webkit-text-stroke: 3px var(--black); margin: 0;
  letter-spacing: -.02em;
}
.notfound h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 5vw, 44px); margin: 6px 0 0; color: var(--black);
}
.notfound p { color: rgb(12 12 12 / .65); font-size: 17px; margin: 12px auto 28px; max-width: 46ch; }
.notfound__search { display: flex; gap: 8px; max-width: 380px; margin: 0 auto 26px; }
.notfound__search input {
  flex: 1; min-width: 0; font-family: var(--body); font-size: 15px; color: var(--black);
  padding: 13px 16px; border-radius: 12px; background: var(--paper);
  border: 1.5px solid rgb(12 12 12 / .16);
}
.notfound__search input:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgb(250 203 18 / .35); }
.notfound__search button {
  flex: none; padding: 0 20px; border: 0; border-radius: 12px; background: var(--yellow); color: var(--black);
  font-family: var(--ui); font-weight: 700; cursor: pointer;
}
.no-hero .notfound { padding-top: 60px; }
@media (max-width: 768px) {
  .no-hero .notfound { padding-top: 40px; }
}
.mv { padding-block: var(--band); }
.mv--alt { background: var(--cream); }
.mv__row {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
}
@media (min-width: 860px) {
  .mv__row { grid-template-columns: 1fr 1fr; gap: 56px; }
  .mv--alt .mv__media { order: 2; }
}
.mv__media { position: relative; }
.mv__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 20px; display: block;
  border: 1px solid rgb(12 12 12 / .08);
}
.mv__badge {
  position: absolute; top: 16px; left: 16px;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 400; font-size: 22px;
  box-shadow: 0 6px 18px rgb(12 12 12 / .18);
}
.mv__body { max-width: 46ch; }
.mv__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--black);
}
.mv__icon svg { width: 26px; height: 26px; stroke: var(--yellow); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mv__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 10px;
}
.mv__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 4vw, 40px); margin: 0 0 16px;
  line-height: 1; color: var(--black);
}
.mv__text { font-size: 16px; line-height: 1.68; margin: 0; color: rgb(12 12 12 / .74); }
.journey { padding-block: var(--band); }
.journey__head { text-align: center; margin-bottom: 56px; }
.journey__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 10px;
}
.journey__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 4.5vw, 40px); margin: 0; color: var(--black);
}
.timeline {
  position: relative; max-width: 820px; margin-inline: auto;
  padding-left: 0;
}
.timeline::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; left: 22px;
  width: 2px; background: repeating-linear-gradient(
  to bottom, rgb(12 12 12 / .28) 0 6px, transparent 6px 12px);
  transform: none;
}
.tl {
  position: relative; display: grid;
  grid-template-columns: 44px 1fr; align-items: start;
  gap: 12px; margin-bottom: 34px;
}
.tl:last-child { margin-bottom: 0; }
.tl__year {
  grid-column: 1; justify-self: start;
  font-family: var(--display); font-weight: 400;
  font-size: 15px; color: var(--pack-tok);
  background: var(--paper); padding: 4px 0; z-index: 2; text-align: left;
  line-height: 1;
}
.tl__body { grid-column: 2; padding: 2px 0; text-align: left; }
.tl__body h3 {
  font-family: var(--ui); font-weight: 600; font-size: 16px;
  margin: 0 0 6px; color: var(--black);
}
.tl__body p { margin: 0; font-size: 14px; line-height: 1.55; color: rgb(12 12 12 / .68); }
.tl__img {
  display: block; width: 100%; max-width: 260px;
  aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: 12px; margin-bottom: 12px;
  border: 1px solid rgb(12 12 12 / .08);
}
.tl::after {
  content: ""; position: absolute; left: 22px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); border: 2px solid var(--black);
  transform: translateX(-50%); z-index: 3;
}
@media (min-width: 760px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
  .tl { grid-template-columns: 1fr 88px 1fr; align-items: center; gap: 0; margin-bottom: 40px; }
  .tl__year {
    grid-column: 2; justify-self: center; text-align: center;
    font-size: clamp(22px, 3vw, 30px); padding: 6px 2px;
  }
  .tl--left .tl__body { grid-column: 1; text-align: right; padding-right: 32px; }
  .tl--right .tl__body { grid-column: 3; text-align: left; padding-left: 32px; }
  .tl--left .tl__img { margin-left: auto; }
  .tl--right .tl__img { margin-right: auto; }
  .tl::after {
    left: 50%; top: 50%; width: 14px; height: 14px;
    transform: translate(-50%, -50%);
  }
}
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: rgb(249 249 249 / .75);
  border: 1px solid rgb(249 249 249 / .18);
  transition: background-color .25s ease, color .25s ease,
  border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.social svg {
  width: 19px; height: 19px;
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.prose__lead {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55 !important;
  color: var(--black) !important;
  margin-bottom: 22px !important;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--yellow);
}
.prose__lead strong { font-family: var(--display); font-weight: 400; letter-spacing: .3px; }
.story { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.story .prose { max-width: 70ch; }
.story__media { display: none; }
.story__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 18px; display: block;
  border: 1px solid rgb(12 12 12 / .08);
}
@media (min-width: 900px) {
  .story { grid-template-columns: 1.2fr .8fr; gap: 48px; }
  .story__media {
    display: block; position: sticky; top: 120px;
    aspect-ratio: 4 / 5;
  }
}
.tabpanel.is-active { display: block; }
.tabs__logout { margin-left: auto; }
@media (min-width: 760px) {
  .orders { grid-template-columns: repeat(2, 1fr); }
}
.orders > .btn { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .tabpanel.is-active { grid-template-columns: none; }
}
.stk-pitch { padding-block: 56px var(--band); }
.stk-pitch__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) {
  .stk-pitch__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
}
.stk-pitch__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 12px;
}
.stk-pitch__title {
  font-family: var(--display); font-weight: 400; line-height: 1.02;
  font-size: clamp(30px, 5.4vw, 52px); margin: 0 0 18px; color: var(--black);
}
.stk-pitch__lead { font-size: 17px; line-height: 1.65; color: rgb(12 12 12 / .74); margin: 0 0 26px; max-width: 52ch; }
.stk-pitch__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.stk-pitch__media { position: relative; }
.stk-pitch__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 22px; display: block; border: 1px solid rgb(12 12 12 / .08);
}
.stk-pitch__badge {
  position: absolute; bottom: -18px; left: 22px;
  background: var(--yellow); color: var(--black);
  border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 12px 30px rgb(12 12 12 / .18);
  font-family: var(--ui); font-weight: 600; line-height: 1.1;
}
.stk-pitch__badge b { font-family: var(--display); font-weight: 400; font-size: 22px; display: block; }
.stk-stats { background: var(--black); color: var(--white); padding-block: 40px; }
.stk-stats__row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; text-align: center; }
@media (min-width: 720px) {
  .stk-stats__row { grid-template-columns: repeat(4, 1fr); }
}
.stk-stat__num { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 5vw, 44px); color: var(--yellow); line-height: 1; }
.stk-stat__lbl { font-family: var(--ui); font-weight: 600; font-size: 13px; margin-top: 8px; color: rgb(249 249 249 / .82); }
.stk-why { padding-block: var(--band); }
.stk-why__head { text-align: center; margin-bottom: 44px; }
.stk-why__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.stk-why__title { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 4.5vw, 40px); margin: 0; color: var(--black); }
.stk-why__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 620px) {
  .stk-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .stk-why__grid { grid-template-columns: repeat(4, 1fr); }
}
.stk-card {
  background: var(--paper); border: 1px solid rgb(12 12 12 / .08);
  border-radius: 18px; padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stk-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgb(12 12 12 / .1); }
.stk-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--yellow); }
.stk-card__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--black); display: grid; place-items: center; margin-bottom: 18px; }
.stk-card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stk-card h3 { font-family: var(--ui); font-weight: 600; font-size: 17px; margin: 0 0 8px; }
.stk-card p { font-size: 14px; line-height: 1.55; color: rgb(12 12 12 / .68); margin: 0; }
.stk-how { padding-block: var(--band); background: var(--cream); }
.stk-how__head { text-align: center; margin-bottom: 44px; }
.stk-how__grid { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
@media (min-width: 820px) {
  .stk-how__grid { grid-template-columns: repeat(3, 1fr); }
}
.stk-step { background: var(--paper); border-radius: 18px; padding: 30px 26px; position: relative; }
.stk-step__no {
  font-family: var(--display); font-weight: 400; font-size: 40px; line-height: 1;
  color: var(--yellow); -webkit-text-stroke: 1.5px var(--black); margin-bottom: 14px;
}
.stk-step h3 { font-family: var(--ui); font-weight: 600; font-size: 17px; margin: 0 0 8px; }
.stk-step p { font-size: 14px; line-height: 1.55; color: rgb(12 12 12 / .68); margin: 0; }
.stk-form { padding-block: var(--band) var(--section); }
.stk-form__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 900px) {
  .stk-form__grid { grid-template-columns: .8fr 1.2fr; gap: 48px; }
}
.stk-form__intro h2 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 4vw, 36px); margin: 0 0 14px; }
.stk-form__intro p { font-size: 15.5px; line-height: 1.65; color: rgb(12 12 12 / .72); margin: 0 0 20px; max-width: 42ch; }
.stk-form__list { display: grid; gap: 12px; }
.stk-form__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: rgb(12 12 12 / .78); list-style: none; }
.stk-form__list svg { flex: none; width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.stk-next { margin-top: 28px; padding: 22px 24px; background: var(--cream); border-radius: 16px; }
.stk-next__title { font-family: var(--ui); font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: rgb(12 12 12 / .6); margin: 0 0 14px; }
.stk-next__steps { display: grid; gap: 12px; margin: 0; padding: 0; }
.stk-next__steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.45; color: rgb(12 12 12 / .78); list-style: none; }
.stk-next__steps li span {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: grid; place-items: center;
  font-family: var(--ui); font-weight: 700; font-size: 12px;
  border: 1.5px solid var(--black); margin-top: 1px;
}
.stk-formcard {
  background: var(--paper); border: 1px solid rgb(12 12 12 / .08);
  border-radius: 20px; padding: 32px 28px;
}
.blog__intro { font-size: 17px; color: rgb(12 12 12 / .7); margin: 0 0 32px; max-width: 60ch; }
.blog-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1000px) {
  .blog-layout { grid-template-columns: 1fr 300px; gap: 48px; }
}
.blog-layout .posts { display: grid; gap: 24px; margin-top: 0; grid-template-columns: 1fr; }
@media (min-width: 680px) {
  .blog-layout .posts { grid-template-columns: repeat(2, 1fr); }
}
.blog-layout .posts .post--feature { grid-column: 1 / -1; }
@media (min-width: 680px) {
  .blog-layout .posts .post--feature .post__link { min-height: 420px; }
  .blog-layout .posts .post--feature .post__title { font-size: 26px; }
}
.pagination {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 40px;
}
.pagination__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  border: 1.5px solid rgb(12 12 12 / .16); border-radius: 999px;
  background: var(--paper); color: var(--black); cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.pagination__btn:hover:not(:disabled) { background: var(--cream); border-color: var(--black); }
.pagination__btn:disabled { opacity: .35; cursor: not-allowed; }
.pagination__pages { display: flex; align-items: center; gap: 6px; }
.pagination__page {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 6px;
  border: 1.5px solid transparent; border-radius: 999px;
  background: transparent; color: var(--black); cursor: pointer;
  font-family: var(--ui); font-weight: 600; font-size: 14px;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.pagination__page:hover { background: var(--cream); }
.pagination__page.is-active { background: var(--yellow); border-color: var(--black); color: var(--black); }
.blog-related { background: var(--cream); padding-block: var(--band); }
.blog-related__head { text-align: center; margin-bottom: 32px; }
.blog-related__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.blog-related__title { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 4vw, 36px); margin: 0; color: var(--black); }
.blog-related__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .blog-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .blog-related__grid { grid-template-columns: repeat(3, 1fr); }
}
.rcard {
  display: flex; gap: 14px; align-items: center; text-decoration: none;
  background: var(--paper); border: 1px solid rgb(12 12 12 / .08);
  border-radius: 14px; padding: 12px; transition: transform .2s ease, box-shadow .2s ease;
}
.rcard:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgb(12 12 12 / .1); }
.rcard img { flex: none; width: 84px; height: 84px; border-radius: 10px; object-fit: cover; }
.rcard__tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); display: block; margin-bottom: 4px; }
.rcard__t { font-family: var(--ui); font-weight: 600; font-size: 15px; line-height: 1.25; color: var(--black); margin: 0 0 4px; }
.rcard__m { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: rgb(12 12 12 / .5); }
.rcard:hover .rcard__t { color: var(--orange); }
.shopstrip { padding-block: var(--band) var(--section); }
.shopstrip__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.shopstrip__titles p { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 8px; }
.shopstrip__titles h2 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 4vw, 36px); margin: 0; }
.shopstrip__nav { display: flex; gap: 8px; }
.slidebtn {
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  border: 1.5px solid rgb(12 12 12 / .16); background: var(--paper); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.slidebtn:hover:not(:disabled) { background: var(--yellow); border-color: var(--black); }
.slidebtn:disabled { opacity: .3; cursor: not-allowed; }
.slidebtn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.shopstrip__track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 8px;
  scrollbar-width: none;
}
.shopstrip__track::-webkit-scrollbar { display: none; }
@media (min-width: 560px) {
  .shopstrip__track { grid-auto-columns: 42%; }
}
@media (min-width: 900px) {
  .shopstrip__track { grid-auto-columns: 26%; }
}
@media (min-width: 1160px) {
  .shopstrip__track { grid-auto-columns: 22%; }
}
.pcard {
  scroll-snap-align: start; text-decoration: none;
  border-radius: 16px; overflow: hidden; background: var(--paper);
  border: 1px solid rgb(12 12 12 / .08);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgb(12 12 12 / .12); }
.pcard__media { aspect-ratio: 1/1; display: grid; place-items: center; padding: 18px; background: color-mix(in srgb, var(--tint) 16%, transparent); }
.pcard__media img { max-height: 150px; width: auto; }
.pcard__body { padding: 14px 16px 18px; }
.pcard__name { font-family: var(--ui); font-weight: 600; font-size: 15px; margin: 0 0 4px; color: var(--black); }
.pcard__price { font-family: var(--ui); font-weight: 700; font-size: 15px; color: var(--black); margin: 0; }
.pcard__price s { color: rgb(12 12 12 / .4); font-weight: 500; margin-left: 6px; }
.shopcta { background: var(--black); color: var(--white); border-radius: 22px; padding: 44px 32px; text-align: center; margin-top: 44px; position: relative; overflow: hidden; }
.shopcta::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--yellow); }
.shopcta h2 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 5vw, 42px); margin: 0 0 12px; }
.shopcta p { font-size: 16px; color: rgb(249 249 249 / .8); margin: 0 auto 24px; max-width: 46ch; }
.shopcta .btn { font-size: 16px; }
.side-search { display: flex; gap: 8px; }
.side-search input {
  flex: 1; min-width: 0; font-family: var(--body); font-size: 14px; color: var(--black);
  padding: 11px 14px; border-radius: 10px; background: var(--paper);
  border: 1.5px solid rgb(12 12 12 / .16);
}
.side-search input:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgb(250 203 18 / .35); }
.side-search button {
  flex: none; width: 44px; border: 0; border-radius: 10px; background: var(--yellow);
  display: grid; place-items: center; cursor: pointer;
}
.side-search button svg { width: 18px; height: 18px; fill: none; stroke: var(--black); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.side-post__t { font-family: var(--ui); font-weight: 600; font-size: 14px; line-height: 1.3; color: var(--black); margin: 0 0 3px; }
.side-news .side-news__form { display: grid; gap: 8px; }
.post__link {
  position: relative; display: flex; align-items: flex-end;
  min-height: 340px; border-radius: 16px; overflow: hidden;
  isolation: isolate; color: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cartgrid { display: grid; gap: 40px; align-items: start; }
.checkout { display: grid; gap: 40px; align-items: start; }
.contact__info {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px;
  align-content: start;
}
.contact__group { margin-bottom: 28px; }
.contact__group:last-of-type { margin-bottom: 0; }
.contact__heading {
  font-family: var(--display); font-weight: 400;
  font-size: 20px; margin: 0 0 14px; color: var(--orange);
}
.contact__addr { font-size: 15px; line-height: 1.6; color: var(--black); margin: 0; }
.contact__addr strong { display: block; margin-bottom: 2px; }
.contact__line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact__line:last-child { margin-bottom: 0; }
.contact__badge {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.contact__badge svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__lines { display: flex; flex-direction: column; gap: 2px; padding-top: 2px; }
.contact__lines a { font-size: 15px; color: var(--black); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--yellow); width: fit-content; }
.contact__lines a:hover { background: rgba(250, 203, 18, 0.25); }
.contact__muted { font-size: 12.5px; color: rgb(12 12 12 / .55); }
.contact__value { font-size: 15px; line-height: 1.55; color: var(--black); margin: 0; }
.contact__value a { color: var(--black); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--yellow); }
.contact__value a:hover { background: rgba(250, 203, 18, 0.25); }
.contact__fssai { font-size: 12px; color: rgb(12 12 12 / .5); margin: 20px 0 0; padding-top: 16px; border-top: 1px solid rgb(12 12 12 / .1); }
.contact__formwrap {
  background: var(--paper);
  border: 1px solid rgb(12 12 12 / .08);
  border-radius: 20px;
  padding: 32px 28px;
}
.contact__formtitle {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; margin: 0 0 6px;
}
.contact__formnote { font-size: 14px; color: rgb(12 12 12 / .6); margin: 0 0 24px; }
.contact__social { display: flex; gap: 10px; margin-top: 24px; }
.contact__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); color: var(--yellow); border: 0;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.contact__social a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.contact__social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact__map { padding-block: 0 var(--section); }
.contact__mapframe {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgb(12 12 12 / .1);
  box-shadow: 0 10px 30px rgb(12 12 12 / .08);
  line-height: 0;
}
.contact__mapframe iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.1); }
@media (min-width: 900px) {
  .content__grid.contact__grid { grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }
}
.auth { max-width: 460px; margin-inline: auto; }
.auth__card {
  background: var(--paper); border: 1px solid rgb(12 12 12 / .08);
  border-radius: 20px; padding: 32px 30px;
  box-shadow: 0 20px 44px rgb(12 12 12 / .06);
}
.auth__switch { display: flex; gap: 6px; background: var(--cream); border-radius: 999px; padding: 5px; margin-bottom: 26px; }
.auth__switch button {
  flex: 1; padding: 11px 0; border: 0; border-radius: 999px; cursor: pointer;
  font-family: var(--ui); font-weight: 600; font-size: 14px;
  color: rgb(12 12 12 / .6); background: transparent;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.auth__switch button.is-active { background: var(--yellow); color: var(--black); box-shadow: 0 2px 8px rgb(12 12 12 / .12); }
.auth__panel { display: none; }
.auth__panel.is-active { display: block; }
.auth__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: -4px 0 18px; }
.auth__check { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgb(12 12 12 / .7); cursor: pointer; }
.auth__check input { width: 16px; height: 16px; accent-color: var(--black); }
.auth__forgot { font-size: 13.5px; font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 2px solid var(--yellow); padding-bottom: 1px; }
.auth__forgot:hover { color: var(--orange); }
.auth__submit { width: 100%; justify-content: center; margin-top: 4px; }
.auth__legal { font-size: 12.5px; color: rgb(12 12 12 / .55); line-height: 1.5; margin: 14px 0 0; }
.auth__legal a { color: var(--black); text-decoration: underline; }
.auth__divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: rgb(12 12 12 / .45); font-size: 12px; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.auth__divider::before, .auth__divider::after { content: ""; flex: 1; height: 1px; background: rgb(12 12 12 / .12); }
.auth__social { display: grid; gap: 10px; }
.auth__social button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 12px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid rgb(12 12 12 / .16); background: var(--paper);
  font-family: var(--ui); font-weight: 600; font-size: 14px; color: var(--black);
  transition: border-color .2s ease, background-color .2s ease;
}
.auth__social button:hover { border-color: var(--black); background: var(--cream); }
.auth__social svg { width: 18px; height: 18px; }
.auth__foot { text-align: center; font-size: 14px; color: rgb(12 12 12 / .6); margin-top: 22px; }
.auth__foot button { background: none; border: 0; cursor: pointer; font-family: var(--ui); font-weight: 700; font-size: 14px; color: var(--black); border-bottom: 2px solid var(--yellow); padding: 0 0 1px; }
.auth__foot button:hover { color: var(--orange); }
.thanks-hero { text-align: center; padding-block: 64px 44px; background: var(--cream); }
.thanks-hero__badge {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--yellow); border: 3px solid var(--black);
  display: grid; place-items: center;
  animation: thanksPop .5s cubic-bezier(.2,.9,.3,1.3) both;
}
.thanks-hero__badge svg { width: 42px; height: 42px; fill: none; stroke: var(--black); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
@keyframes thanksPop { from { transform: scale(0); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
.thanks-hero__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.thanks-hero h1 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 5.5vw, 52px); margin: 0 0 14px; line-height: 1.02; }
.thanks-hero p { color: rgb(12 12 12 / .7); font-size: 17px; margin: 0 auto; max-width: 48ch; }
.thanks-next { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 30px 0; }
@media (min-width: 620px) {
  .thanks-next { grid-template-columns: repeat(3, 1fr); }
}
.thanks-next__item { background: var(--paper); border: 1px solid rgb(12 12 12 / .08); border-radius: 14px; padding: 20px 18px; text-align: center; }
.thanks-next__ic { width: 42px; height: 42px; border-radius: 10px; background: var(--black); display: grid; place-items: center; margin: 0 auto 12px; }
.thanks-next__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.thanks-next__item h3 { font-family: var(--ui); font-weight: 600; font-size: 14px; margin: 0 0 5px; }
.thanks-next__item p { font-size: 13px; color: rgb(12 12 12 / .62); margin: 0; line-height: 1.45; }
.toc {
  display: grid; gap: 6px; align-content: start; height: max-content;
  position: sticky; top: 120px;
  background: var(--cream); padding: 20px; border-radius: 12px;
  border: 1px solid rgba(12, 12, 12, 0.08);
}
.toc::before {
  content: "On this page";
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: rgb(12 12 12 / .5); margin-bottom: 6px;
}
.toc a {
  font-size: 14px; color: rgb(12 12 12 / .7);
  padding: 8px 10px; border-radius: 8px;
  transition: background-color .2s ease, color .2s ease;
}
.toc a:hover { background: rgba(250, 203, 18, .22); color: var(--black); }
.toc a.is-active { background: var(--paper); color: var(--black); font-weight: 600; }
.shop .cards { display: grid; gap: 20px; margin-top: 0; grid-column: 2; }
.shop .pagination {
  grid-column: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 44px;
}
.pagination__ellipsis {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 42px; color: rgb(12 12 12 / .5); font-weight: 600;
}
@media (min-width: 1000px) {
  .shop .cards--4 { grid-template-columns: repeat(3, 1fr); }
}
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--ui); font-size: 13px; font-weight: 600;
  color: var(--black); margin: 0;
  padding: 0; background: transparent;
  border-radius: 0;
}
.page__heading { display: none; }
.page__title {
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 8px 0;
}
.page__subtitle {
  font-family: var(--body);
  font-size: 16px;
  color: rgb(12 12 12 / .65);
  margin: 0;
  max-width: 50ch;
}
@media (max-width: 1024px) {
  .shop { grid-template-columns: 1fr; gap: 32px; }
  .shop .filters { grid-column: 1; position: static; top: auto; height: auto; }
  .shop .resultbar { grid-column: 1; }
  .shop .cards { grid-column: 1; }
  .shop .pagination { grid-column: 1; }
}
@media (max-width: 640px) {
  .page__heading { margin-bottom: 24px; }
  .page__title {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 6px;
  }
  .page__subtitle { font-size: 14px; }
}
.shop { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding-block: 40px var(--section); align-items: start; }
.filters { display: grid; gap: 26px; align-content: start; position: sticky; top: 120px; height: max-content; background: var(--cream); padding: 20px; border-radius: 12px; border: 1px solid rgba(12, 12, 12, 0.08); }
.check input { position: absolute; left: -9999px; top: 0; }
.check input:checked + i { background: var(--yellow); border-color: var(--black); border-width: 2px; display: flex; align-items: center; justify-content: center; }
.check input:checked + i::after { content: "✓"; color: var(--black); font-size: 12px; font-weight: bold; line-height: 1; }
.resultbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding-bottom: 14px; margin-bottom: 30px; border-bottom: 1px solid rgb(12 12 12 / .12);
}
.shop .resultbar { grid-column: 2; }
.select {
  display: inline-block; appearance: none; background: white; color: var(--black);
  border: 1.5px solid rgb(12 12 12 / .18); border-radius: 999px;
  padding: 9px 36px 9px 16px; font-family: var(--ui); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: border-color 0.2s ease, background-color 0.2s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230C0C0C' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 20px;
}
.select:hover { border-color: var(--black); background-color: rgb(250 203 18 / .1); }
.select:focus { outline: 2px solid var(--orange); outline-offset: 2px; border-color: var(--black); }
.select option { background: white; color: var(--black); padding: 8px 12px; }
.summary {
  border-radius: 18px; padding: 26px;
  align-self: start; position: sticky; top: 120px;
}
@media (max-width: 768px) {
  .pagehead--hero-minimal { min-height: 280px; }
}
.no-hero .nav { background: rgb(12 12 12 / .96); box-shadow: 0 6px 24px rgb(0 0 0 / .22); }
.no-hero .pagehead { padding-top: 148px; }
@media (max-width: 768px) {
  .no-hero .pagehead { padding-top: 120px; }
}
.pagehead { background: url("../img/banners/sub-hero.webp") center top / cover no-repeat; padding-top: 70px; width: 100%; margin: 0; }
