/* ============================================================
   PICKALLEL — Global Stylesheet v3 (Bootstrap 5.3 based)
   Layout: .container-pl for contained sections, full-width
   (container-fluid/w-100 px-0) for full-bleed sections.
   ============================================================ */

/* ============================================================
   FONTS — adineue PRO (Bold/Regular), LORE, Caveat
   ============================================================ */
@font-face {
  font-family: "adineuePRO-Bold";
  src: url("assets/adineuePRO-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "adineuePRO-Regular";
  src: url("assets/adineuePRO-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "LORE";
  src: url("assets/LORE-Regular-Exfonta43f.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Caveat";
  src: url("assets/Caveat-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Anton";
  src: url("assets/Anton-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --green: #0b4b36;
  --green-dark: #1c3b2a;
  --cream: #f5f2e9;
  --cream-2: #faf7ee;
  --cream-3: #e9e4d8;
  --orange: #ed5f1e;
  --pink: #f7b2c9;
  --white: #ffffff;
  --lime: #a8ff3e;
  --mint: #6bbbb6;
  --leaf: #379c24;
  --leaf-light: #72a91e;
  --blue: #4b74dd;
  --red: #cd2517;
  --butter: #f2e176;
  --strike: #9eac9f;

  /* Fonts — match Figma: adineue_PRO:Bold / adineue_PRO:Regular / LORE:Demo / Caveat:Regular */
  --font-bold: "adineuePRO-Bold", "Helvetica Neue", Arial, sans-serif;
  --font-regular: "adineuePRO-Regular", "Helvetica Neue", Arial, sans-serif;
  --font-lore: "LORE", "Comic Sans MS", cursive;
  --font-caveat: "Caveat", cursive;
}

body {
  font-family: var(--font-regular);
  background: var(--cream);
  color: var(--green);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: var(--font-bold);
}
.btn:focus,
.btn:focus-visible,
.form-control:focus {
  box-shadow: none;
}

/* ============================================================
   CONTAINERS — matches 1512px Figma canvas at desktop
   ============================================================ */
.container-pl {
  --bs-gutter-x: 40px;
  width: 100%;
  max-width: 1512px;
  margin-inline: auto;
  padding-inline: var(--bs-gutter-x);
}
.container-pl-sm {
  --bs-gutter-x: 60px;
  width: 100%;
  max-width: 1512px;
  margin-inline: auto;
  padding-inline: var(--bs-gutter-x);
}

/* ============================================================
   MENU / HEADER  (absolute overlay across the page, as in Figma)
   ============================================================ */
#site-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 50;
}

.menu {
  position: relative;
}

.ticker {
  background: var(--green);
  border-radius: 60px;
  height: 44px;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker span {
  font-family: var(--font-lore);
  color: var(--cream-2);
  font-size: 18px;
  letter-spacing: 1.8px;
  line-height: 28px;
  padding: 8px 32px;
  display: block;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 22px;
}
.menu-logo img {
  height: 75px;
  width: auto;
}
.menu-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.menu-nav a {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 20px;
}
#site-header[data-var="light"] .menu-nav a {
  color: var(--white);
}
#site-header[data-var="default"] .menu-nav a {
  color: var(--green);
}
.menu-nav a:hover {
  color: var(--orange);
}

/* Hamburger + Bootstrap collapse panel (lg and down) */
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  border-radius: 3px;
  background: var(--green-dark);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
#site-header[data-var="light"] .menu-toggle span {
  background: var(--white);
}
body[data-page="product"] .menu-toggle span {
  background: var(--white);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.menu-collapse {
  border-radius: 16px;
  background: var(--green-dark);
  margin-top: 14px;
  padding: 12px 16px;
}
.menu-collapse.collapsing {
  transition: none !important;
}
.menu-collapse.show {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.menu-collapse a {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.42px;
  line-height: 46px;
  color: var(--cream-2);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  border-radius: 10px;
  padding: 0 12px;
  flex: 0 0 auto;
}
.menu-collapse a:hover {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.07);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--cream-2);
  border: none;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 20px;
  cursor: pointer;
  position: relative;
}
.cart-btn img {
  width: 18px;
  height: 18px;
}
.cart-btn:hover {
  background: var(--orange);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-bold);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-badge.show {
  display: inline-flex;
}

/* ============================================================
   FOOTER — full width band, contained grid inside
   ============================================================ */
footer#site-footer {
  background: var(--green-dark);
  color: var(--white);
}
.footer-inner {
  padding: 43px 0 24px;
}
.footer-brand {
  text-align: center;
}
.footer-brand img {
  height: 117px;
  width: auto;
  margin: 0 auto;
}
.footer-brand p {
  font-family: var(--font-caveat);
  color: var(--lime);
  font-size: 24px;
  padding-top: 8px;
}
.footer-cols {
  display: flex;
  gap: 200px;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 0 0;
}
.footer-cols .col {
  width: 246px;
}
.footer-cols .col h4 {
  font-family: var(--font-lore);
  font-size: 25px;
  letter-spacing: 0.36px;
  margin-bottom: 16px;
}
.footer-cols .col a,
.footer-cols .col div {
  display: block;
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
  padding: 2px 0;
}
.footer-cols .col a:hover {
  color: var(--lime);
}
.footer-cols .col .footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 109px;
  height: 36px;
  border: 2px solid var(--white);
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  padding: 0 16px;
  margin-top: 16px;
  white-space: nowrap;
}
.footer-cols .col .footer-contact-btn:hover {
  background: var(--white);
  color: var(--green-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 238, 0.2);
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
}
.footer-bottom p {
  font-family: var(--font-lore);
  font-size: 18px;
}

/* ============================================================
   HOMEPAGE — Figma 34:13008 (1512x4949)
   ============================================================ */
html {
  scroll-behavior: smooth;
}

/* HERO — full-bleed 0,0 1512x757 */
.hero-wrap {
  position: relative;
  width: 100%;
}
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* CHARACTERS — 271,752 186x186 (hangs over hero bottom-left, unscaled) */
.hero-characters {
  position: absolute;
  top: 96.3%;
  left: 21.93%;
  z-index: 4;
  width: 11.3%;
}
.hero-characters img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scaleY(-1) rotate(180deg);
}

/* SCROLL-REVEAL — characters slide in from their side when scrolled to */
.char-anim {
  opacity: 0;
  transition:
    opacity 0.5s ease 0.05s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.char-anim.char-left {
  transform: translateX(-110%);
}
.char-anim.char-right {
  transform: translateX(110%);
}
.char-anim.in {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .char-anim,
  .char-anim.char-left,
  .char-anim.char-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* MEET THE CREW — centered, 812, 1255x292 */
.meet-crew {
  padding: 60px 0 0;
}
.meet-crew img {
  width: 1255px;
  max-width: 100%;
  height: 292px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* WAVY BAND — full-bleed 0,1092 */
.wavy-band {
  position: relative;
  width: 100%;
}
.wavy-slices {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  height: 509px;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.wavy-slices::-webkit-scrollbar {
  display: none;
}
.wavy-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 509px;
  scroll-snap-align: center;
}
.wavy-slide img {
  width: 100%;
  height: 509px;
  object-fit: cover;
}
.wavy-arrows {
  display: flex;
  gap: 13px;
  justify-content: center;
  margin: 20px 0;
}
.wavy-arrow {
  width: 69px;
  height: 69px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.wavy-arrow img {
  width: 69px;
  height: 69px;
}
.wavy-arrow:first-child img {
  transform: scaleX(-1);
}
.wavy-arrow:hover img {
  opacity: 0.8;
}

/* FIRE PICKLE — 1287,1614 188x174 (overlap wavy band bottom-right) */
.fire-pickle {
  position: absolute;
  right: 37px;
  bottom: -39px;
  z-index: 6;
}
.fire-pickle img {
  width: 188px;
  height: 174px;
  object-fit: cover;
}

/* GOOD THINGS — full-bleed 0,1762 1512x551 */
.good-things {
  position: relative;
  width: 100%;
  height: 551px;
  overflow: hidden;
}
.good-things .good-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 551px;
  object-fit: cover;
}
.good-things h2 {
  position: absolute;
  top: 236px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0 16px;
  z-index: 2;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 100px;
  line-height: 79px;
  color: var(--pink);
  text-align: center;
  white-space: nowrap;
}

/* BUILD YOUR OWN — 77,2413 1358 */
.build-own {
  padding: 130px 0 0;
  text-align: center;
  color: var(--green);
}
.build-own-text {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  max-width: 1358px;
  margin: 0 auto;
}
.build-own .big {
  width: 100%;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 119px;
  line-height: 79px;
  text-transform: uppercase;
  letter-spacing: 0.42px;
}
.build-own .lore-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.build-own .lore-block {
  width: 100%;
  height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.build-own .lore-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.build-own .sub {
  width: 100%;
  font-family: var(--font-regular);
  font-size: 50px;
  line-height: 79px;
}
.build-own .sub strong {
  font-family: var(--font-bold);
  font-weight: 700;
}

/* SHOP THE DILL — centered */
.shop-the-dill {
  margin-top: 94px;
}
.shop-the-dill img {
  width: 873px;
  max-width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* PRODUCTS — 103,3305 */
.product-cards {
  padding: 140px 0 120px;
}
.cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-card {
  width: 639px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.product-card .card-img {
  width: 640px;
  height: 658px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.product-card .card-img img {
  width: 100%;
  height: 658px;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .card-img img {
  transform: scale(1.03);
}
.card-meta {
  text-align: center;
  color: var(--green);
  width: 383px;
  max-width: 100%;
}
.card-meta .tag {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 50px;
  line-height: 79px;
  margin: 0;
  text-transform: uppercase;
}
.card-meta .name {
  font-family: var(--font-lore);
  font-size: 40px;
  line-height: 63px;
  margin: 0;
}
.card-meta .price {
  display: flex;
  gap: 45px;
  justify-content: center;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 30px;
  white-space: nowrap;
  margin-top: 10px;
}
.card-meta .price .old {
  color: var(--strike);
  text-decoration: line-through;
}

/* ============================================================
   SHOP / PRODUCT PAGE
   ============================================================ */
.shop-page {
  padding-bottom: 120px;
}

/* TABS — 468,303 */
.shop-tabs {
  display: flex;
  gap: 95px;
  align-items: center;
  justify-content: center;
  padding: 303px 0 100px;
}
.shop-tab {
  position: relative;
  height: 46px;
  width: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 29.4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-tab .tab-pill {
  position: absolute;
  inset: -40% -20.3% -40% -19.7%;
  z-index: 0;
  display: block;
}
.shop-tab .tab-pill img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.shop-tab .tab-label {
  position: relative;
  z-index: 1;
  font-family: "Inter", var(--font-regular), sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -1.05px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.shop-tab.active .tab-pill img {
  opacity: 1;
}
.shop-grid.hidden {
  display: none;
}
.hidden {
  display: none;
}
.shop-grid {
  --bs-gutter-x: 26px;
  --bs-gutter-y: 28px;
  row-gap: 28px;
}
.shop-grid > [class*="col-"] {
  margin-bottom: 0;
}

.shop-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: center;
  text-align: center;
}
.shop-card .card-img {
  position: relative;
  width: 100%;
  height: 551px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream-3);
}
.shop-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.shop-card .card-jar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  z-index: 2;
}
.shop-card .card-jar.band {
  top: 33%;
  height: 33%;
  inset: 33% 0 auto;
}
.shop-card .card-jar.jar-sm {
  left: 23.61%;
  top: 24.86%;
  width: 52.78%;
  height: 50.27%;
}
.shop-card:hover .card-jar {
  transform: scale(1.03);
}
.shop-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 75, 54, 0.9);

  z-index: 1;
  pointer-events: none;
}
.shop-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 20;
  font-family: var(--font-lore);
  color: #000;
  font-size: 40px;
  line-height: 30px;
  letter-spacing: -2px;
  text-align: center;
  white-space: pre-wrap;
  pointer-events: none;
  width: max-content;
}
.shop-card .card-meta {
  width: 100%;
  max-width: 402px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.shop-card .card-meta .size {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: var(--green);
}
.shop-card .card-meta .vname {
  font-family: var(--font-lore);
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -2px;
}
.shop-card .card-meta .tag {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  color: var(--green);
}
.shop-card .pill {
  margin-top: 4px;
  background: var(--pink);
  border: 1px solid #000;
  border-radius: 999px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.75px;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
}
.shop-card .pill .strike {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 5px;
}
.shop-card:hover .pill {
  background: var(--green);
  color: var(--white);
}

/* ============================================================
   SPEARS CANVAS — 53:17644 (absolute 1512px canvas)
   Canvas top sits at page y449 (tabs 303 + 46 + 100 pad).
   All coords below are canvas-relative = design coords - 449.
   min-height 1641 + .shop-page padding-bottom 120 = footer at y2210.
   ============================================================ */
.shop-canvas {
  position: relative;
  width: 1512px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 1641px;
}
.shop-canvas.hidden,
.shop-canvas .shop-canvas.hidden {
  display: none;
}

/* exact-positioned cards */
.shop-canvas .canvas-card {
  position: absolute;
  width: 420px;
  margin: 0;
}
.shop-canvas .cc-mix {
  left: 100px;
  top: 0;
}
.shop-canvas .cc-garlic {
  left: 546px;
  top: 0;
}
.shop-canvas .cc-classic {
  left: 992px;
  top: 0;
}
.shop-canvas .cc-spicy {
  left: 100px;
  top: 735px;
}
.shop-canvas .cc-bb {
  left: 546px;
  top: 735px;
}

/* background/jar insets by card (matches React dump % offsets) */
.shop-canvas .card-bg {
  position: absolute;
  inset: auto;
  object-fit: cover;
  z-index: 0;
}
.shop-canvas .cc-mix .card-bg,
.shop-canvas .cc-bb .card-bg {
  left: 0;
  top: -7.08%;
  width: 374.09%;
  height: 114.16%;
}
.shop-canvas .cc-garlic .card-bg,
.shop-canvas .cc-classic .card-bg {
  left: 0;
  top: -6.55%;
  width: 291.98%;
  height: 113.09%;
}
.shop-canvas .cc-spicy .card-bg {
  left: 0;
  top: -5.62%;
  width: 287.2%;
  height: 111.24%;
}
.shop-canvas .cc-mix .card-jar {
  left: -9.52%;
  top: 4.67%;
  width: 119.04%;
  height: 90.91%;
  inset: auto;
  position: relative;
}
/* chips page (53:19091) — MIX jar is full-bleed, different insets */
.shop-canvas.chips-prod .cc-mix .card-jar {
  left: -2.02%;
  top: -4.83%;
  width: 104.04%;
  height: 100%;
}

/* mascot (53:17656) — 82 masked .v + 1 plain .vp */
.mascot {
  position: absolute;
  left: 120px;
  top: 88px; /* page 537 - 449 */
  width: 150px;
  height: 104.234px;
  overflow: hidden;
}
.mascot .v,
.mascot .vp {
  position: absolute;
}
.mascot .v {
  -webkit-mask-image: url("assets/mascot/mask.svg");
  mask-image: url("assets/mascot/mask.svg");
  -webkit-mask-size: 149.814px 103.969px;
  mask-size: 149.814px 103.969px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}
.mascot .v img,
.mascot .vp img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* page-level rotated labels (overlays, above cards) */
.shop-canvas .shop-label {
  position: absolute;
  width: 409.223px;
  height: 182.124px;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.shop-canvas .shop-label .rot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
}
.shop-canvas .shop-label .txt {
  font-family: var(--font-lore);
  color: #000;
  font-size: 40px;
  line-height: 30px;
  letter-spacing: -2px;
  text-align: center;
  white-space: normal;
  width: 402px;
}
.shop-canvas .lbl-bold {
  left: 687.77px;
  top: 91.06px; /* page 540.06 - 449 */
}
.shop-canvas .lbl-real {
  left: 1142.61px;
  top: 91.06px;
}
.shop-canvas .lbl-fire {
  left: 236.61px;
  top: 826.06px; /* page 1275.06 - 449 */
}
.shop-canvas .lbl-sweet {
  left: 687.77px;
  top: 826.06px;
}

/* labels reveal on card hover */
.shop-canvas .cc-garlic:hover ~ .lbl-bold,
.shop-canvas .cc-classic:hover ~ .lbl-real,
.shop-canvas .cc-spicy:hover ~ .lbl-fire,
.shop-canvas .cc-bb:hover ~ .lbl-sweet {
  opacity: 1;
}

/* Character 1 2 (53:18571) — x1032 y1891, overlaps footer */
.shop-char {
  position: absolute;
  left: 1032px;
  top: 1442px; /* page 1891 - 449 */
  width: 340px;
  height: 463px;
  z-index: 5;
}
.shop-char img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   CHIPS CANVAS — 101:21549 (absolute 1512px canvas)
   Header at page y448, cards at y966, character at y1673,
   footer at y1992.
   ============================================================ */
.chips-canvas {
  position: relative;
  width: 1512px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 1423px; /* canvas top 449 + 1423 + page pad 120 = footer at y1992 */
}
.chips-canvas .chips-hero {
  position: absolute;
  left: 77px;
  top: -1px; /* design page y448 vs canvas top 449 */
  width: 1358px;
  margin: 0;
  padding: 0;
}
.chips-canvas .canvas-card {
  position: absolute;
  width: 420px;
  margin: 0;
}
.chips-canvas .cc-pack-spears {
  left: 325px;
  top: 517px; /* page 966 - 449 */
}
.chips-canvas .cc-pack-chips {
  left: 771px; /* 325 + 420 + 26 gap */
  top: 517px;
}
.chips-canvas .card-bg {
  position: absolute;
  inset: auto;
  left: 0;
  top: -7.08%;
  width: 374.09%;
  height: 114.16%;
  object-fit: cover;
  z-index: 0;
}
.chips-canvas .shop-char {
  left: 1032px;
  top: 1224px; /* page 1673 - 449 */
}

/* responsive fallback — stack cards, hide decorations */
@media (max-width: 1399.98px) {
  .shop-canvas {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    padding: 0 20px;
  }
  .shop-canvas .canvas-card {
    position: static;
    flex: 0 0 auto;
    max-width: 100%;
  }
  .shop-canvas .mascot,
  .shop-canvas .shop-label,
  .shop-canvas .shop-char {
    display: none;
  }
  .chips-canvas {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    padding: 30px 20px;
  }
  .chips-canvas .canvas-card {
    position: static;
    flex: 0 0 auto;
    max-width: 100%;
  }
  .chips-canvas .chips-hero {
    position: static;
    width: 100%;
    padding: 10px 10px 20px;
  }
  .chips-canvas .shop-char {
    display: none;
  }
}

.shop-deals.hidden {
  display: none;
}
.deals-build-own {
  text-align: center;
  color: var(--green);
  padding: 70px 0 120px;
}
.deals-build-own .big {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 119px;
  line-height: 79px;
  text-transform: uppercase;
  letter-spacing: 0.42px;
}
.deals-build-own .lore-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
}
.deals-build-own .lore-block {
  width: 100%;
  height: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deals-build-own .lore-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.deals-build-own .sub {
  font-family: var(--font-regular);
  font-size: 50px;
  line-height: 79px;
}
.deals-build-own .sub strong {
  font-family: var(--font-bold);
  font-weight: 700;
}

/* CHIPS hero — build your own / variety pack! (101:21549) */
.chips-hero {
  text-align: center;
  color: var(--green);
  padding: 30px 0 90px;
}
.chips-hero .big {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 119.03px;
  line-height: 79.03px;
  text-transform: uppercase;
  letter-spacing: 0.42px;
}
.chips-hero .lore-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 50px;
}
.chips-hero .lore-block {
  width: 100%;
  height: 198px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chips-hero .lore-txt {
  font-family: var(--font-lore);
  font-size: 159.03px;
  line-height: 79.03px;
  letter-spacing: -2px;
  white-space: nowrap;
}
.chips-hero .sub {
  font-family: var(--font-regular);
  font-size: 50.03px;
  line-height: 79.03px;
}
.chips-hero .sub strong {
  font-family: var(--font-bold);
  font-weight: 700;
}
.deals-grid {
  row-gap: 28px;
  --bs-gutter-x: 26px;
  --bs-gutter-y: 28px;
}
.deals-grid > [class*="col-"] {
  margin-bottom: 0;
}

/* ============================================================
   PRODUCT DETAIL — bundler (Frame 71:13756)
   ============================================================ */
.pdp-page {
  padding: 0 0 80px;
}

.pdp-gallery {
  position: relative;
}
.pdp-main {
  width: 100%;
  height: 870px;
  overflow: hidden;
  background: #d9d9d9;
  position: relative;
}
.pdp-bg {
  position: absolute;
  left: -95.99%;
  top: -6.55%;
  width: 291.98%;
  height: 113.09%;
  pointer-events: none;
}
.pdp-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#pdp-main {
  width: 100%;
  height: 55.6%;
  left: 0;
  top: 23.11%;
  object-fit: contain;
  position: absolute;
}
#pdp-main.cover {
  object-fit: cover;
}
.pdp-thumbs {
  position: absolute;
  bottom: 30px;
  left: 160px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pdp-thumbs .thumb {
  width: 122px;
  height: 138px;
  border: 2px solid var(--green);
  padding: 0;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  background: var(--leaf-light);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-thumbs .thumb img {
  width: 96px;
  height: 117px;
  object-fit: contain;
}
.pdp-thumbs .thumb.active {
  opacity: 1;
}

.pdp-builder {
  background: var(--cream-2);
  padding: 218px 73px 32px;
}

.pdp-crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-bold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--green);
  text-transform: uppercase;
}
.pdp-crumbs img {
  width: 12px;
  height: 12px;
}
.pdp-crumbs a {
  color: rgba(28, 59, 42, 0.4);
}
.pdp-crumbs span {
  color: var(--green);
}
.pdp-crumbs a:hover {
  color: var(--green);
}

.pdp-title {
  margin-top: 30px;
  position: relative;
  text-align: center;
  padding-bottom: 16px;
}
.pdp-title .big {
  font-family: var(--font-lore);
  font-weight: 400;
  font-size: 46px;
  line-height: 36px;
  color: var(--green-dark);
  text-align: center;
  letter-spacing: 1.08px;
}
.pdp-title .sub {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--leaf);
  text-align: center;
  letter-spacing: 0.72px;
  margin-top: 10px;
}
.pdp-tagrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.pdp-title .tagline {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: var(--green);
  margin: 0;
}
.pdp-title .save-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--green-dark);
  font-family: var(--font-lore);
  font-size: 9px;
  letter-spacing: 0.27px;
  border-radius: 100px;
  padding: 0 8px;
  line-height: 20px;
  white-space: nowrap;
}
.pdp-title .divider {
  border-top: 1px solid rgba(28, 59, 42, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pdp-group {
  margin-top: 30px;
}
.pdp-label {
  font-family: var(--font-bold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--green);
  margin-bottom: 12px;
}

.deal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.deal-btn {
  width: 100%;
  height: 76px;
  border: 2px solid rgba(28, 59, 42, 0.13);
  border-radius: 12px;
  background: var(--cream-2);
  font-family: var(--font-bold);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: 0.48px;
}
.deal-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.deal-btn.locked,
.size-btn.locked {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.deal-btn .save-chip {
  position: absolute;
  top: 49px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--green-dark);
  font-family: var(--font-lore);
  font-size: 11px;
  letter-spacing: 0.24px;
  border-radius: 100px;
  padding: 2px 6px;
  line-height: 12px;
  white-space: nowrap;
}
.deal-btn .save-chip {
  display: none;
}
.deal-btn[data-deal="4"].active .save-chip {
  display: block;
}

.size-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.size-btn {
  width: 100%;
  height: 111px;
  border: 2px solid rgba(28, 59, 42, 0.13);
  border-radius: 12px;
  background: var(--cream-2);
  cursor: pointer;
  padding: 16px;
  display: block;
  text-align: left;
}
.size-btn:active,
.size-btn.active {
  background: var(--green);
  border-color: var(--green);
}
.size-btn strong {
  display: block;
  font-family: var(--font-bold);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  color: var(--green-dark);
}
.size-btn em {
  display: block;
  font-style: normal;
  font-family: var(--font-regular);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.3px;
  color: rgba(28, 59, 42, 0.6);
}
.size-btn b {
  display: block;
  font-family: var(--font-regular);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: var(--green-dark);
  padding-top: 4px;
  white-space: nowrap;
}
.size-btn.active strong,
.size-btn.active em,
.size-btn.active b {
  color: var(--white);
}

.pdp-bundle {
  margin-top: 30px;
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 12px;
}
.flavor-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 2px solid rgba(28, 59, 42, 0.08);
  border-radius: 12px;
  background: var(--cream-2);
  padding: 12px;
}
.flavor-card.on {
  background: rgba(11, 75, 54, 0.08);
  border-color: var(--green);
}
.fc-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.flavor-card img {
  width: 67px;
  height: 82px;
  object-fit: contain;
}
.fc-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.flavor-card .f-name {
  font-family: var(--font-bold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--green-dark);
  line-height: 12.5px;
  white-space: nowrap;
}
.flavor-card .f-tag {
  font-family: var(--font-lore);
  font-size: 14px;
  line-height: 20px;
  color: rgba(28, 59, 42, 0.5);
  white-space: nowrap;
}
.flavor-card .stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  padding-top: 8px;
  align-self: center;
}
.flavor-card .stepper button {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  border: 1px solid rgba(28, 59, 42, 0.2);
  background: transparent;
  color: var(--green-dark);
  font-family: var(--font-bold);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flavor-card .stepper button.off {
  opacity: 0.3;
}
.flavor-card .stepper .qty {
  font-family: var(--font-bold);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  min-width: 24px;
  text-align: center;
  letter-spacing: 0.48px;
}

.pdp-summary {
  margin-top: 20px;
}
.sel-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding-top: 8px;
}
.sel-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--pink);
  flex-shrink: 0;
}
.sel-text {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: var(--green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sel-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  min-height: 67px;
}
.sel-thumbs img {
  width: 44px;
  height: 67px;
  object-fit: cover;
}
.sel-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
}
.sel-progress .dots {
  display: flex;
  gap: 4px;
}
.sel-progress .dots span {
  width: 24px;
  height: 8px;
  border-radius: 100px;
  background: rgba(28, 59, 42, 0.08);
}
.sel-progress .dots span.on {
  background: var(--pink);
}
.sel-count {
  font-family: var(--font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  color: rgba(28, 59, 42, 0.5);
}

.pdp-add {
  width: 100%;
  height: 52px;
  margin-top: 16px;
  border: none;
  border-radius: 0;
  background: var(--green);
  color: var(--cream-2);
  font-family: var(--font-bold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  cursor: pointer;
}
.pdp-add s {
  text-decoration: line-through;
  text-decoration-color: inherit;
}
.pdp-add:hover {
  background: rgba(11, 75, 54, 0.9);
}

.pdp-ingredients {
  margin-top: 50px;
}
.ing-tabs {
  display: flex;
}
.ing-tab {
  flex: 1 1 auto;
  height: 41px;
  border-style: solid;
  border-left-width: 2px;
  border-right-width: 2px;
  border-top-width: 2px;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  background: var(--cream-2);
  font-family: var(--font-bold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 8px;
}
.ing-tab[data-ing="classic"] {
  border-color: #e7a6bc;
  color: #e7a6bc;
}
.ing-tab[data-ing="garlic"] {
  border-color: #4b74dd;
  color: #4b74dd;
}
.ing-tab[data-ing="spicy"] {
  border-color: #cd2517;
  color: #cd2517;
}
.ing-tab[data-ing="bb"] {
  border-color: #6bbbb6;
  color: #6bbbb6;
}
.ing-tab[data-ing="classic"].active {
  background: #e7a6bc;
  color: #fff;
}
.ing-tab[data-ing="garlic"].active {
  background: #4b74dd;
  color: #fff;
}
.ing-tab[data-ing="spicy"].active {
  background: #cd2517;
  color: #fff;
}
.ing-tab[data-ing="bb"].active {
  background: #6bbbb6;
  color: #fff;
}
.ing-body {
  border: 2px solid #e7a6bc;
  background: #e7a6bc;
  border-radius: 0 1px 16px 17px;
  padding: 32px;
  color: #fff;
}
.ing-label {
  font-family: var(--font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}
.ing-head {
  font-family: var(--font-bold);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.72px;
  color: #fff;
  margin-top: 12px;
}
.ing-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
}
.ing-name {
  font-family: var(--font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.27px;
  color: #fff;
}
.ing-list {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 22.75px;
  color: #fff;
  margin-top: 8px;
}
.ing-brand {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 22.75px;
  color: #fff;
  margin-top: 20px;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout {
  padding: 232px 0 120px;
  position: relative;
  overflow: hidden;
}
.checkout-hero {
  position: relative;
  height: 313px;
  border-bottom: 2px solid rgba(28, 59, 42, 0.1);
  margin-bottom: 48px;
}
.checkout-characters {
  position: absolute;
  right: 268px;
  top: -33px;
  width: auto;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.checkout-title {
  position: relative;
  z-index: 1;
  padding-top: 42px;
}
.checkout-title h1 {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 117px;
  line-height: 94px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 2.3709px;
  margin-bottom: 10px;
}
.checkout-title .lore-sub {
  font-family: var(--font-lore);
  color: var(--leaf-light);
  font-size: 20px;
  transform: rotate(-1deg);
  display: inline-block;
}

.checkout-layout {
  align-items: start;
  position: relative;
  z-index: 1;
}
.checkout-form {
  width: 100%;
  padding-right: 90px;
}
.checkout-form .row {
  --bs-gutter-x: 32px;
}

.section-label {
  margin-bottom: 32px;
}
.section-label .num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-bold);
  font-size: 12px;
  letter-spacing: 0.36px;
  color: rgba(11, 75, 54, 0.4);
  font-weight: 700;
  margin-bottom: 4px;
}
.section-label .num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(11, 75, 54, 0.1);
}
.section-label h2 {
  font-size: 30px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--green);
}
.section-label .sub {
  font-family: var(--font-lore);
  color: var(--leaf);
  font-size: 18px;
}

.field {
  margin-bottom: 24px;
}
.field label {
  display: block;
  font-family: var(--font-bold);
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(11, 75, 54, 0.2);
  background: transparent;
  font-family: var(--font-regular);
  font-size: 14px;
  color: var(--green);
  padding: 8px 0;
  height: 38px;
}
.field textarea {
  height: 94px;
  min-height: 94px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(11, 75, 54, 0.35);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--orange);
}

.pay-methods {
  margin-top: 32px;
}
.pay-option {
  border: 2px solid rgba(11, 75, 54, 0.13);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--cream-2);
  cursor: pointer;
}
.pay-option.selected {
  border-color: var(--green);
  background: #f0ede4;
}
.pay-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.pay-option-head .radio {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.pay-option.selected .radio {
  background: var(--green);
}
.pay-option.selected .radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--cream-2);
}
.pay-option-head .radio,
.pay-variant-head .radio {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.pay-option-head .radio::after,
.pay-variant-head .radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--cream-2);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.15s ease;
}
.pay-option.selected .radio::after,
.pay-variant.selected .radio::after {
  transform: scale(1);
  opacity: 1;
}
.pay-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.48px;
}
.pay-sub {
  font-family: var(--font-lore);
  font-size: 16px;
  color: rgba(11, 75, 54, 0.5);
}
.pay-option[data-method="instapay"] .pay-sub {
  color: var(--leaf);
}
.pay-badge {
  background: #6c5ce7;
  color: var(--cream-2);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.cash-emoji {
  font-size: 24px;
}
.instapay-panel {
  border-top: 1px solid rgba(11, 75, 54, 0.1);
  margin-top: 0;
  padding: 20px 24px 28px;
}
.pay-variant {
  border: 2px solid rgba(11, 75, 54, 0.13);
  border-radius: 12px;
  background: var(--cream-2);
  margin-bottom: 14px;
  cursor: pointer;
  overflow: hidden;
}
.pay-variant.selected {
  border-color: var(--green);
  background: #fff;
}
.pay-variant-head {
  display: flex;
  align-items: center;
  padding: 16px 18px;
}
.pay-variant-head .radio {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.pay-variant.selected .radio {
  background: var(--green);
}
.pay-variant.selected .radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--cream-2);
}
.pay-variant-body {
  display: none;
  border-top: 1px solid rgba(11, 75, 54, 0.1);
  padding: 16px 18px 20px;
}
.pay-variant.selected .pay-variant-body {
  display: block;
}
.remaining-note {
  font-family: var(--font-lore);
  font-size: 15px;
  color: rgba(11, 75, 54, 0.72);
  text-align: center;
  margin: 0 0 6px;
}
.remaining-note strong {
  color: var(--green);
  font-weight: 700;
}
.cash-panel {
  border-top: 1px solid rgba(11, 75, 54, 0.1);
  margin-top: 0;
  padding: 20px 24px;
}
.cash-info {
  background: rgba(55, 156, 36, 0.15);
  border: 1px solid rgba(55, 156, 36, 0.31);
  border-radius: 12px;
  padding: 16px 20px;
}
.cash-info .ci-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.42px;
  color: var(--green);
}
.cash-info .ci-sub {
  font-family: var(--font-lore);
  font-size: 16px;
  color: rgba(11, 75, 54, 0.6);
  margin-top: 2px;
}
.cash-info .ci-sub strong {
  color: var(--green);
  font-weight: 700;
}

.total-box {
  background: var(--green);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.total-box .label {
  color: rgba(250, 247, 238, 0.5);
  font-size: 12px;
  letter-spacing: 0.36px;
}
.total-box .amount {
  color: var(--pink);
  font-family: var(--font-bold);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.08px;
}

.send-to p {
  font-family: var(--font-bold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  color: var(--green);
  margin-bottom: 12px;
}
.account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-2);
  border: 1px solid rgba(11, 75, 54, 0.1);
  border-radius: 12px;
  padding: 16px;
}
.account-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: rgba(61, 184, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
}
.account-card .name {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.48px;
}
.account-card .phone {
  font-size: 20px;
  letter-spacing: 2px;
}

.upload-hint {
  font-family: var(--font-lore);
  font-size: 16px;
  color: rgba(11, 75, 54, 0.6);
  margin: 20px 0 16px;
}
.upload-zone {
  border: 2px dashed rgba(11, 75, 54, 0.25);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.upload-zone:hover,
.upload-zone.drag {
  background: rgba(11, 75, 54, 0.04);
}
.upload-zone img {
  width: 28px;
  height: 28px;
  margin: 0 auto;
}
.upload-zone .up-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.36px;
  color: var(--green);
  margin-top: 12px;
}
.upload-zone .up-sub {
  font-size: 16px;
  color: rgba(11, 75, 54, 0.5);
}
.upload-zone.has-file .up-sub {
  color: var(--leaf);
  font-family: var(--font-bold);
  font-weight: 700;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(11, 75, 54, 0.5);
  font-family: var(--font-lore);
  font-size: 14px;
  margin: 16px 0;
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(11, 75, 54, 0.1);
}
.reference-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(11, 75, 54, 0.2);
  background: transparent;
  padding: 8px 0;
  font-size: 16px;
  color: var(--green);
}
.reference-input::placeholder {
  color: rgba(11, 75, 54, 0.5);
}

.place-order {
  background: #0b4b36;
  color: var(--cream-2);
  border: none;
  border-radius: 0;
  width: 239px;
  height: 68px;
  padding: 0;
  text-align: center;
  line-height: 68px;
  font-family: var(--font-bold);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.54px;
  cursor: pointer;
  margin-top: 28px;
  display: inline-block;
  transition: background 0.2s;
}
.place-order:hover {
  background: #7d948b;
}
.place-order:disabled {
  background: rgba(11, 75, 54, 0.15);
  color: rgba(11, 75, 54, 0.35);
  cursor: not-allowed;
}
.checkout-note {
  font-family: var(--font-lore);
  font-size: 18px;
  color: rgba(11, 75, 54, 0.4);
  margin-top: 12px;
}

@media (min-width: 1200px) {
  .checkout-layout.row {
    display: grid;
    grid-template-columns: 633px 571px;
    gap: 108px;
    margin: 0;
    width: auto;
  }
  .checkout-layout .checkout-form,
  .checkout-layout .order-summary-wrap {
    flex: none;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
  }
}

.order-summary-wrap {
  position: sticky;
  top: 60px;
}
.order-summary {
  background: #f5f1e8;
  border: 2px solid rgba(11, 75, 54, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
}
.order-summary h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: var(--green);
}
.order-summary .count {
  font-family: var(--font-lore);
  font-size: 16px;
  color: rgba(11, 75, 54, 0.4);
  margin-top: 2px;
}

.summary-items {
  border-bottom: 1px solid rgba(11, 75, 54, 0.1);
}
.summary-item {
  display: grid;
  grid-template-columns: 3px 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
}
.summary-item .accent {
  width: 3px;
  height: 78px;
}
.summary-item img {
  width: 52px;
  height: 78px;
  object-fit: contain;
}
.summary-item .title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.36px;
}
.summary-item .variant {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 12px;
  color: rgba(11, 75, 54, 0.5);
  margin-top: 2px;
}
.summary-item .line-price {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.42px;
  text-align: right;
}

.summary-totals {
  padding-top: 16px;
}
.summary-totals .sum-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--green);
  margin-bottom: 10px;
}
.summary-totals .sum-line .k {
  font-size: 10px;
  letter-spacing: 0.3px;
  color: rgba(11, 75, 54, 0.5);
  text-transform: uppercase;
}
.summary-totals .sum-line span:last-child {
  font-family: var(--font-bold);
  font-weight: 700;
  letter-spacing: 0.42px;
}

.upgrade-box {
  background: rgba(55, 156, 36, 0.15);
  border: 1px solid rgba(55, 156, 36, 0.31);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 8px 0 12px;
}
.upgrade-box .u-title {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.27px;
  color: var(--green);
}
.upgrade-box .u-sub {
  font-family: var(--font-lore);
  font-size: 14px;
  color: rgba(11, 75, 54, 0.6);
}
.upgrade-box .u-bar {
  height: 6px;
  border-radius: 10px;
  background: rgba(11, 75, 54, 0.1);
  margin-top: 8px;
  overflow: hidden;
}
.upgrade-box .u-bar span {
  display: block;
  height: 100%;
  background: var(--leaf);
  border-radius: 10px;
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(11, 75, 54, 0.15);
  margin-top: 8px;
  padding-top: 12px;
}
.summary-total-line .t {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.42px;
}
.summary-total-line .a {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.72px;
  color: var(--green);
}

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.story-intro {
  padding: 263px 0 0;
  align-items: center;
}
.story-intro .art img {
  width: 437px;
  max-width: 100%;
  height: 470px;
  object-fit: cover;
}
.story-intro .txt h1 {
  font-family: var(--font-lore);
  font-weight: 400;
  font-size: clamp(40px, 3.6vw, 53.61px);
  line-height: 60.6px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.story-intro .txt h1 span {
  color: var(--red);
}
.story-intro .txt p {
  font-size: clamp(19px, 1.75vw, 26px);
  line-height: 34px;
  color: var(--red);
  text-align: justify;
  margin: 0;
}
.story-intro .txt p strong {
  font-weight: 700;
}

/* FULL-WIDTH BAND — 0,875 1512x1096 */
.story-band {
  position: relative;
  width: 100%;
  height: 1096px;
  margin-top: 100px;
  overflow: hidden;
}
.story-band .wide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.story-band .tint {
  position: absolute;
  inset: 0;
  background: rgba(220, 0, 0, 0.6);
  mix-blend-mode: multiply;
}
.story-band .band-text {
  position: absolute;
  left: 267px;
  top: 152px;
  width: 897px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.story-band .band-text .line {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 47.45px);
  line-height: 70.563px;
  letter-spacing: 1.6935px;
  color: var(--butter);
  white-space: nowrap;
}
.story-band .band-text .rot-a {
  transform: rotate(-1deg);
}
.story-band .band-text .rot-b {
  transform: rotate(2deg);
  margin-top: 32px;
}
.story-band .band-text .rot-c {
  transform: rotate(-1.5deg);
  margin-top: 32px;
}
.story-band .band-text .so-lore {
  font-family: var(--font-lore);
  font-size: clamp(52px, 6.9vw, 96px);
  line-height: 0.9;
  color: var(--butter);
  transform: rotate(-1deg);
  margin-top: 10px;
}
.story-band .band-text .made {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(56px, 8.2vw, 106.19px);
  line-height: 124.19px;
  letter-spacing: 3.7257px;
  color: var(--butter);
}
.story-band .friends {
  position: absolute;
  left: 177px;
  bottom: 319px;
  width: 112px;
  height: 231px;
  object-fit: contain;
  /* transform: rotate(180deg) scaleY(-1); */
}

/* WORDPLAY — Frame 16 at 309,2071 */
.story-wordplay-wrap {
  padding: 150px 0 220px;
  position: relative;
}
.story-wordplay {
  width: 894px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-wordplay .w-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.story-wordplay .wp {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 67.74px);
  line-height: 84.675px;
  letter-spacing: 2.0322px;
  text-transform: uppercase;
  color: var(--green-dark);
  white-space: nowrap;
  text-align: center;
}
.story-wordplay .wp.w1 {
  color: var(--green-dark);
  opacity: 0.3;
  transform: rotate(-2deg);
}
.story-wordplay .wp.w2 {
  opacity: 0.65;
  transform: rotate(1deg);
}
.story-wordplay .wp.w3 {
  color: var(--green);
  opacity: 1;
  transform: rotate(-1deg);
}
.story-wordplay .just-say {
  font-family: var(--font-lore);
  font-size: 24px;
  line-height: 32px;
  color: var(--leaf);
  width: 184px;
  text-align: center;
  margin-top: 16px;
}

/* YELLOW QUOTE BOX — 896x210, butter, rounded 24, rotate -1 */
.story-wordplay .quote {
  position: relative;
  width: 100%;
  height: 210px;
  background: var(--butter);
  border-radius: 24px;
  transform: rotate(-1deg);
  overflow: hidden;
  margin-top: 64px;
}
.story-wordplay .quote .pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.story-wordplay .quote .quote-txt {
  position: absolute;
  left: 56px;
  top: 56px;
}
.story-wordplay .quote p {
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 48.75px;
  letter-spacing: 0.9px;
  color: var(--green);
  white-space: nowrap;
  margin: 0;
}
.story-wordplay .quote p span {
  display: inline-block;
  font-family: var(--font-lore);
  font-weight: 400;
  font-size: clamp(19px, 1.85vw, 28px);
  line-height: 40px;
  letter-spacing: 0.9px;
  transform: rotate(1deg);
}

/* CHARACTER ART — 1135,2282 143x183 (sits right of the word stack) */
.story-solo {
  position: absolute;
  right: 234px;
  top: 246px;
  width: 255px;
  height: 183px;
  object-fit: cover;
  z-index: 2;
}

/* ============================================================
   CONTACT / GENERIC BLOCK
   ============================================================ */
.contact-page {
  padding-bottom: 100px;
}

.contact-headline {
  padding: 263px 0 0;
  max-width: 790px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.contact-headline .eyebrow {
  font-family: var(--font-lore);
  font-size: 30px;
  line-height: 32px;
  color: var(--leaf);
  margin: 0;
}
.contact-headline h1 {
  font-family: var(--font-bold);
  font-size: 142.9px;
  line-height: 129.9px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.42px;
  white-space: nowrap;
  margin: 0;
}
.contact-headline h1 span {
  color: var(--leaf);
}
.contact-headline .sub {
  font-family: var(--font-lore);
  font-size: 30px;
  line-height: 28px;
  color: var(--green);
  margin: 0;
}

.contact-body {
  padding: 130px 0 0;
}
.contact-form {
  width: 100%;
}
.contact-form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.contact-form .field + .field {
  padding-top: 40px;
}
.contact-form label {
  font-family: var(--font-bold);
  font-size: 17px;
  letter-spacing: 0.36px;
  color: var(--green-dark);
  padding-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-lore);
  font-size: 20px;
  color: rgba(28, 59, 42, 0.5);
  background: none;
  border: none;
  border-bottom: 3px solid var(--green-dark);
  width: 100%;
  padding: 0 0 12px;
}
.contact-form input {
  height: 47px;
}
.contact-form textarea {
  min-height: 151px;
  resize: none;
}
.contact-form .send-wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.contact-send {
  background: var(--green-dark);
  color: var(--cream-2);
  border: none;
  padding: 20px 40px;
  font-family: var(--font-bold);
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 28px;
  cursor: pointer;
}
.contact-send:hover {
  background: var(--orange);
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-card {
  border-radius: 24px;
  padding: 40px;
}
.contact-card .card-inner {
  max-width: 429px;
}
.card-green {
  background: var(--green);
  transform: rotate(-1.5deg);
}
.card-lime {
  background: var(--leaf-light);
  transform: rotate(2deg);
}
.contact-side .chat-label {
  font-family: var(--font-lore);
  font-size: 20px;
  line-height: 28px;
  color: #3db832;
  padding-bottom: 8px;
  margin: 0;
}
.contact-side .chat-mail {
  font-family: var(--font-bold);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.9px;
  color: var(--cream-2);
}
.contact-side .follow-block {
  border-top: 1px solid rgba(250, 247, 238, 0.2);
  padding-top: 32px;
  margin-top: 32px;
}
.contact-side .follow-title {
  font-family: var(--font-bold);
  font-size: 12px;
  letter-spacing: 0.36px;
  color: var(--cream-2);
}
.contact-side .follow-block a {
  display: block;
  font-family: var(--font-lore);
  font-size: 20px;
  line-height: 28px;
  color: var(--cream-2);
  padding-top: 12px;
}
.contact-side .follow-block a:hover {
  color: var(--lime);
}
.contact-side .faq-label {
  font-family: var(--font-lore);
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
  margin: 0;
}
.contact-side .faq-col {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.contact-side .faq-row {
  padding-top: 12px;
}
.contact-side .faq-q {
  font-family: var(--font-bold);
  font-size: 17px;
  letter-spacing: 0.42px;
  line-height: 20px;
  color: var(--white);
  margin: 0;
}
.contact-side .faq-a {
  font-family: var(--font-lore);
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  margin: 0;
}

/* GENERIC BLOCK (thankyou) */
.page-block {
  padding: 340px 0 80px;
  text-align: center;
}
.page-block h1 {
  font-size: 90px;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 2px;
  line-height: 1;
}
.page-block .intro {
  font-family: var(--font-lore);
  font-size: 22px;
  color: var(--leaf);
  margin: 10px 0 0;
}

/* FAQ */
.faq-item {
  border-bottom: 2px solid rgba(11, 75, 54, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-bold);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q .icon {
  transition: transform 0.3s;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  padding: 0 0 20px;
  color: rgba(11, 75, 54, 0.8);
  line-height: 1.6;
}

/* ============================================================
   CART DRAWER / TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 14px;
  z-index: 200;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

.cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 685px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream-2);
  z-index: 300;
  transition: left 0.35s ease;
  box-shadow: 8px 0 24px rgba(28, 59, 42, 0.18);
  border-right: 4px solid var(--green);
  display: flex;
  flex-direction: column;
}
.cart-drawer.closed {
  left: -720px;
}
.cart-drawer.open {
  left: 0;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(28, 59, 42, 0.1);
}
.cart-drawer.is-empty .drawer-head {
  justify-content: flex-end;
  border-bottom: none;
}
.drawer-pill {
  background: var(--orange);
  color: var(--white);
  font-family: "Anton", var(--font-bold);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  display: none;
}
.drawer-pill.show {
  display: inline-block;
}
.drawer-close {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(28, 59, 42, 0.2);
  border-radius: 50%;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex: none;
}
.drawer-close img {
  width: 16px;
  height: 16px;
}
.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.drawer-item {
  display: flex;
  gap: 12px;
  align-items: stretch;
  position: relative;
  height: 134px;
  padding: 16px 22px 16px 10px;
  border-bottom: 1px solid var(--pink);
  border-left: 4px solid var(--pink);
}
.di-remove {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.di-remove:hover {
  opacity: 1;
  background: var(--pink);
}
.di-jar {
  width: 89px;
  flex: 0 0 89px;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.di-jar img {
  position: absolute;
  left: -19.1%;
  top: -12.18%;
  width: 119.1%;
  height: 124.37%;
  max-width: none;
}
.di-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.di-title {
  font-family: var(--font-lore);
  font-size: 14px;
  line-height: 17.5px;
  letter-spacing: 0.42px;
  color: var(--green);
}
.di-variant {
  font-size: 12px;
  line-height: 16px;
  color: rgba(28, 59, 42, 0.5);
  margin-top: 2px;
}
.di-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  height: 34px;
  border: 1px solid rgba(28, 59, 42, 0.2);
  border-radius: 999px;
  overflow: hidden;
  width: 94px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.qty-btn img {
  width: 12px;
  height: 12px;
}
.drawer-qty {
  font-family: "Anton", var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  color: var(--green);
  width: 28px;
  text-align: center;
}
.di-price {
  font-family: "Anton", var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.42px;
  color: var(--green);
  white-space: nowrap;
}
.drawer-build {
  padding: 24px 0;
}
.build-box {
  background: var(--cream-3);
  border: 2px solid rgba(28, 59, 42, 0.13);
  border-radius: 16px;
  padding: 20px;
}
.build-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.build-title {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  color: var(--green);
}
.build-pill {
  background: var(--leaf-light);
  color: var(--white);
  font-family: var(--font-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  padding: 4px 8px;
  border-radius: 999px;
}
.build-slots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}
.build-slot {
  width: 59px;
  height: 81px;
  position: relative;
  overflow: hidden;
}
.build-slot img {
  position: absolute;
  left: -16.21%;
  top: -16.27%;
  width: 130.81%;
  height: 132.54%;
  max-width: none;
}
.build-slot.empty {
  width: 48px;
  height: 69px;
  overflow: hidden;
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
}
.build-slot.empty img {
  position: static;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.build-bar {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(28, 59, 42, 0.1);
  overflow: hidden;
}
.build-bar span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf-light);
}
.build-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 19.5px;
  color: rgba(28, 59, 42, 0.6);
}
.build-note b {
  font-family: var(--font-bold);
  color: var(--green);
}
/* Empty cart state */
.drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 64px 0;
}
.de-img {
  width: 408px;
  max-width: 100%;
}
.de-img img {
  width: 100%;
  height: auto;
}
.de-title {
  font-family: var(--font-bold);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.6px;
  color: var(--green-dark);
}
.de-sub {
  font-family: var(--font-lore);
  font-size: 18px;
  line-height: 28px;
  color: rgba(28, 59, 42, 0.5);
}
.drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(11, 75, 54, 0.1);
}
.drawer-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}
.dt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dt-row:last-of-type {
  margin-bottom: 0;
}
.dt-label {
  font-family: var(--font-bold);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.36px;
  color: rgba(11, 75, 54, 0.6);
}
.dt-value {
  font-family: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.42px;
  color: var(--green);
}
.dt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(11, 75, 54, 0.1);
  margin-top: 8px;
  padding-top: 8px;
}
.dt-total .dt-label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.48px;
  color: var(--green);
}
.dt-total .dt-value {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.6px;
}
.checkout-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--green);
  color: var(--cream-2);
  border: none;
  border-radius: 0;
  padding: 15px;
  font-family: var(--font-bold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42px;
  cursor: pointer;
  margin-top: 16px;
  text-decoration: none;
}
.checkout-cta:hover {
  background: #0a4230;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 299;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Mid-laptops — keep the big stacked look but never clip */
@media (max-width: 1499.98px) and (min-width: 1200px) {
  .story-band .band-text .line {
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15;
    white-space: normal;
  }
  .story-band .band-text .so-lore {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
  }
  .story-band .band-text .made {
    font-size: clamp(46px, 7vw, 92px);
    line-height: 1.1;
    letter-spacing: 2px;
  }
  .story-band .band-text .rot-b,
  .story-band .band-text .rot-c {
    margin-top: 22px;
  }
}

@media (max-width: 1199.98px) {
  .checkout {
    padding-top: 180px;
  }
  .checkout-hero {
    height: auto;
    padding-bottom: 32px;
  }
  .checkout-characters {
    width: 400px;
    height: 232px;
    top: 6px;
  }
  .checkout-title h1 {
    font-size: 76px;
    line-height: 1.02;
  }
  .checkout-form {
    padding-right: 0;
  }
  .build-own .big {
    font-size: 88px;
    line-height: 1;
  }
  .build-own .sub {
    font-size: 40px;
    line-height: 1.2;
  }
  .hero,
  .hero .hero-bg {
    height: 640px;
  }
  .flavor-card .stepper {
    width: 100%;
  }
  .footer-cols {
    gap: 120px;
  }
  .story-band {
    height: auto;
    min-height: max(90vh, 540px);
  }
  .story-band .band-text {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 48px);
  }
  .story-band .band-text .line {
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.18;
    white-space: normal;
  }
  .story-band .band-text .so-lore {
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1;
  }
  .story-band .band-text .made {
    font-size: clamp(42px, 6.5vw, 68px);
    line-height: 1.1;
    letter-spacing: 2px;
  }
  .story-band .friends {
    left: 20px;
    bottom: 30px;
    width: 90px;
    height: 180px;
  }
}
@media (max-width: 991.98px) {
  .container-pl,
  .container-pl-sm {
    --bs-gutter-x: 24px;
  }
  .story-band {
    margin-top: 18px !important;
  }
  .story-solo {
    right: 0px !important;
    bottom: 150px !important;
    width: 210px !important;
    height: 124px !important;
    top: unset !important;
  }
  .story-wordplay-wrap {
    padding: 70px 0 50px;
    position: relative;
  }
  .story-band .friends {
    left: 6px !important;
    bottom: 37px !important;
    width: 65px !important;
    height: 190px !important;
  }
  .hero-characters {
    position: absolute;
    top: 95.3%;
    left: 3.93%;
    z-index: 4;
    width: 34.3%;
  }
  .meet-crew img {
    height: 90px !important;
  }
  .wavy-slices {
    height: 200px;
  }
  .wavy-slide,
  .wavy-slide img {
    height: 183px !important;
  }
  .fire-pickle img {
    width: 111px;
    height: 125px;
    object-fit: cover;
  }
  .good-things h2 {
    position: absolute;
    top: 76px;
  }
  #site-header {
    top: 20px;
  }
  .product-cards {
    padding: 0px 0 72px !important;
  }
  .ticker span {
    font-size: 14px !important;
  }
  .product-card .card-img,
  .product-card .card-img img {
    height: 340px !important;
  }
  .build-own {
    padding: 60px 0 0;
  }
  .build-own-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  .shop-tabs {
    gap: 40px !important;
  }
  .wavy-slices {
    height: 170px !important;
  }

  .shop-the-dill img {
    height: 200px;
  }
  .shop-the-dill {
    margin-top: 0px;
  }

  .pdp-thumbs .thumb {
    width: 60px !important;
    height: 86px;
  }
  .pdp-thumbs .thumb img {
    height: 85px !important;
  }
  .pdp-thumbs {
    justify-content: center !important;
  }
  #pdp-main {
    height: 42.6%;

    top: 32.11%;
  }
  .pay-option-head .radio {
    margin-right: 14px;
  }

  .checkout-hero {
    height: auto;
    padding-bottom: 0px !important;
  }

  .hero .hero-bg {
    object-fit: contain;
    height: 100% !important;
  }
  .hero {
    height: 100% !important;
  }
  *,
  .story-wordplay .w-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .story-intro .art img {
    height: 420px;
  }
  .page-block {
    padding-top: 190px;
  }
  .page-block h1 {
    font-size: 72px;
    line-height: 1.05;
  }
  .chips-hero .big {
    font-size: 80px;
    line-height: 1.05;
  }
  .chips-hero .lore-txt {
    font-size: 96px;
    line-height: 1.1;
  }
  .menu-nav {
    gap: 16px;
  }
  .footer-cols {
    gap: 32px;
    flex-wrap: wrap;
    padding-left: 0;
  }
  .footer-cols .col {
    width: 200px;
  }
  .meet-crew img {
    height: 220px;
  }
  .build-own .big {
    font-size: 72px;
    line-height: 1;
  }
  .shop-tabs {
    gap: 48px;
  }
  .pdp-builder {
    padding: 80px 24px 40px;
  }
  .pdp-main {
    height: 640px;
  }
  .pdp-thumbs {
    left: 24px;
    bottom: 30px;
  }
  .story-intro {
    padding-top: 180px;
  }
  .contact-headline {
    padding-top: 180px;
  }
  .contact-headline h1 {
    font-size: 96px;
    line-height: 1.05;
  }
  .good-things h2 {
    font-size: 72px;
    line-height: 1.05;
  }
  .checkout {
    padding-top: 180px;
  }
  .checkout-characters {
    display: none;
  }
  .checkout-form {
    padding-right: 0;
  }
  .checkout-title h1 {
    font-size: 64px;
    line-height: 1.05;
  }
}
@media (max-width: 767.98px) {
  .container-pl,
  .container-pl-sm {
    --bs-gutter-x: 20px;
  }
  .story-intro .art img {
    height: 360px;
  }
  .shop-card .pill {
    white-space: normal;
    height: auto;
    padding: 8px 20px;
  }
  .pdp-crumbs {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer-brand img {
    height: 80px;
  }
  .footer-cols .col {
    width: 100%;
    text-align: center;
  }
  .footer-cols .col h4 {
    margin-bottom: 8px;
  }
  .menu-logo img {
    height: 55px;
  }
  .cart-btn span:not(.cart-badge) {
    display: none;
  }
  .cards-row {
    gap: 24px;
  }
  .card-meta .tag {
    font-size: 34px;
    line-height: 1.2;
  }
  .card-meta .name {
    font-size: 28px;
    line-height: 1.2;
  }
  .card-meta .price {
    gap: 20px;
    font-size: 24px;
  }
  .build-own .big {
    font-size: 64px;
    line-height: 1;
  }
  .build-own .lore-block {
    height: 140px;
  }
  .build-own .sub {
    font-size: 32px;
    line-height: 1.2;
  }
  .deals-build-own {
    padding: 40px 0 80px;
  }
  .deals-build-own .big {
    font-size: 64px;
    line-height: 1;
  }
  .deals-build-own .lore-block {
    height: 140px;
  }
  .deals-build-own .sub {
    font-size: 32px;
    line-height: 1.2;
  }
  .chips-hero .big {
    font-size: 64px;
    line-height: 1;
  }
  .chips-hero .lore-block {
    height: 140px;
  }
  .chips-hero .lore-txt {
    font-size: 96px;
    line-height: 1;
  }
  .chips-hero .sub {
    font-size: 32px;
    line-height: 1.2;
  }
  .shop-label {
    font-size: 30px;
    line-height: 24px;
  }
  .shop-card .card-img {
    height: 420px;
  }
  .good-things h2 {
    font-size: 52px;
    line-height: 1;
    white-space: normal;
  }
  .shop-tabs {
    gap: 24px;
    padding-top: 220px;
  }
  .shop-tab {
    padding: 0 20px;
  }
  .shop-tab .tab-label {
    font-size: 16px;
  }
  .flavor-grid {
    grid-template-columns: 1fr;
  }
  .pdp-title .big {
    font-size: 38px;
    line-height: 38px;
  }
  .pdp-title .sub {
    font-size: 22px;
    line-height: 1.2;
  }
  .pdp-tagrow {
    flex-wrap: wrap;
  }
  .deal-btn,
  .size-btn {
    width: 100%;
  }
  .ing-body {
    padding: 24px;
  }
  .ing-head {
    font-size: 20px;
    line-height: 26px;
  }
  .contact-headline h1 {
    font-size: 72px;
    line-height: 1;
    white-space: normal;
  }
  .checkout {
    padding-top: 150px;
  }
  .checkout-title {
    margin-bottom: 50px;
  }
  .page-block {
    padding: 200px 0 60px;
  }
  .story-wordplay .wp {
    font-size: 40px;
    line-height: 56px;
    white-space: normal;
  }
  .story-wordplay {
    gap: 40px;
  }
  .hero {
    height: 520px;
  }
  .hero .hero-bg {
    height: 520px;
  }
  .meet-crew img {
    height: 180px;
  }
  .wavy-slices {
    height: 320px;
  }
  .wavy-slide,
  .wavy-slide img {
    height: 320px;
  }
  .good-things,
  .good-things .good-bg {
    height: 380px;
  }
  .story-band,
  .story-band .wide {
    height: auto;
    min-height: max(90vh, 560px);
  }
  .story-band .band-text {
    left: 20px;
    width: calc(100% - 40px);
  }
  .story-band .band-text .line {
    font-size: clamp(24px, 4.8vw, 34px);
    line-height: 1.2;
    white-space: normal;
  }
  .story-band .band-text .so-lore {
    font-size: clamp(30px, 9vw, 44px);
  }
  .story-band .band-text .made {
    font-size: clamp(34px, 8vw, 50px);
    line-height: 1.1;
    letter-spacing: 1.5px;
  }
  .story-band .band-text .rot-b,
  .story-band .band-text .rot-c {
    margin-top: 18px;
  }
  .story-band .friends {
    left: 12px;
    bottom: 24px;
    width: 80px;
    height: 190px;
  }
  .story-solo {
    right: 12px;
    top: 40px;
    width: 100px;
    height: 128px;
  }
  .story-wordplay .quote {
    height: 150px;
  }
  .story-wordplay .quote p {
    white-space: normal;
    line-height: 30px;
  }
  .footer-cols {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-left: 0;
  }
  .cart-drawer {
    width: 100%;
    left: -100%;
  }
  .cart-drawer.closed {
    left: -100%;
  }
  .checkout-title h1 {
    font-size: 48px;
    line-height: 1.05;
  }
  .checkout-hero {
    height: auto;
    padding-bottom: 32px;
  }
  .pdp-main {
    height: 600px;
  }
  .pdp-thumbs {
    bottom: 20px;
    left: 20px;
  }
  .pdp-page {
    padding-top: 0;
  }
}
@media (max-width: 575.98px) {
  .menu-bar {
    gap: 12px;
  }
  .menu-logo img {
    height: 46px;
  }
  .menu-collapse {
    padding: 10px 12px;
  }
  .menu-collapse a {
    font-size: 13px;
    line-height: 42px;
    padding: 0 9px;
  }
  .pdp-main {
    height: 480px;
  }
  .pdp-builder {
    padding: 56px 20px 40px;
  }
  .pdp-thumbs .thumb {
    width: 76px;
    height: 86px;
  }
  .pdp-thumbs {
    left: 12px;
    bottom: 12px;
    right: 12px;
  }
  .chips-hero {
    padding: 10px 10px 60px;
  }
  .chips-hero .big {
    font-size: 52px;
    line-height: 1.05;
  }
  .chips-hero .lore-txt {
    font-size: 56px;
    white-space: normal;
    line-height: 1.15;
  }
  .chips-hero .sub {
    font-size: 28px;
    line-height: 1.25;
  }
  .shop-card .card-img {
    height: 400px;
  }
  .contact-headline h1 {
    font-size: 52px;
    line-height: 1;
    white-space: normal;
  }
  .contact-side .chat-mail {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }
  .story-wordplay .wp {
    font-size: 30px;
    line-height: 40px;
  }
  .story-intro .art img {
    height: 300px;
  }
  .page-block h1 {
    font-size: 44px;
    line-height: 1.05;
  }
  .hero {
    height: 420px;
  }
  .hero .hero-bg {
    height: 420px;
  }
  .meet-crew img {
    height: 150px;
  }
  .good-things,
  .good-things .good-bg {
    height: 320px;
  }
  .good-things h2 {
    font-size: 44px;
  }
  .product-cards {
    padding: 80px 0 72px;
  }
  .product-card {
    gap: 24px;
  }
  .product-card .card-img,
  .product-card .card-img img {
    height: 460px;
  }
  .cards-row {
    gap: 48px;
  }
  .place-order {
    width: 100%;
  }
  .footer-brand img {
    height: 64px;
  }
  .footer-cols {
    gap: 20px;
  }
  .footer-cols .col a,
  .footer-cols .col div {
    font-size: 16px;
  }
  .story-band,
  .story-band .wide {
    min-height: max(90vh, 600px);
  }
  .story-band .band-text {
    left: 16px;
    width: calc(100% - 32px);
  }
  .story-band .band-text .made {
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1.12;
    letter-spacing: 1px;
  }
  .story-band .band-text .rot-b,
  .story-band .band-text .rot-c {
    margin-top: 12px;
  }
  .shop-tabs {
    gap: 18px;
    padding-top: 200px;
  }
  .shop-tab {
    padding: 0 16px;
  }
  .shop-tab .tab-label {
    font-size: 14px;
    letter-spacing: -0.7px;
  }
  .checkout-title h1 {
    font-size: 40px;
    line-height: 1.1;
  }
  .ing-tabs {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .ing-tab {
    font-size: 10px;
    padding: 0 6px;
  }
  .wavy-arrow {
    width: 54px;
    height: 54px;
  }
  .wavy-arrow img {
    width: 54px;
    height: 54px;
  }
}

/* ============================================================
   CUTE ANIMATIONS
   ============================================================ */

/* ----- Playful jar wiggle on product hover ----- */
@keyframes jar-wiggle {
  0%   { transform: scale(1) rotate(0); }
  25%  { transform: scale(1.06) rotate(-3deg); }
  50%  { transform: scale(1.05) rotate(2.5deg); }
  75%  { transform: scale(1.05) rotate(-1.5deg); }
  100% { transform: scale(1.05) rotate(0); }
}
.product-card:hover .card-img img,
.shop-card:hover .card-jar {
  animation: jar-wiggle 0.6s ease-in-out;
  transform: scale(1.05);
}

/* ----- Bouncy buttons ----- */
.place-order {
  transition: background 0.2s, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.place-order:not(:disabled):hover {
  background: #105a42;
  transform: translateY(-3px) scale(1.04);
}
.place-order:not(:disabled):active {
  transform: translateY(1px) scale(0.97);
}
.wavy-arrow:hover img {
  opacity: 0.8;
  transform: translateY(-4px) scale(1.06);
}
.wavy-arrow:first-child:hover img {
  transform: scaleX(-1) translateY(-4px) scale(1.06);
}

/* ----- Fire pickle gentle bob ----- */
.fire-pickle img {
  animation: bob 2.6s ease-in-out infinite alternate;
}
@keyframes bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* ----- Order fireworks (thank-you page) ----- */
#pickle-fw {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .fire-pickle img {
    animation: none;
    opacity: 0;
    display: none;
  }
  .product-card:hover .card-img img,
  .shop-card:hover .card-jar {
    animation: none;
    transform: none;
  }
  .place-order:hover,
  .wavy-arrow:hover img,
  .wavy-arrow:first-child:hover img {
    transform: none;
  }
}

/* ----- Checkout button: dimmed until valid, brand green when ready ----- */
.place-order {
  text-decoration: none;
}

/* ----- Cart wiggle when item added ----- */
@keyframes cart-wiggle {
  0%   { transform: rotate(0); }
  25%  { transform: rotate(-8deg) scale(1.1); }
  50%  { transform: rotate(7deg) scale(1.1); }
  75%  { transform: rotate(-4deg) scale(1.05); }
  100% { transform: rotate(0) scale(1); }
}
.cart-btn.cart-wiggle {
  animation: cart-wiggle 0.55s ease-in-out;
}

/* ----- Nav underline grow & logo wiggle ----- */
.menu-nav a,
.menu-collapse a {
  position: relative;
}
.menu-nav a::after,
.menu-collapse a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.menu-nav a:hover::after,
.menu-collapse a:hover::after {
  transform: scaleX(1);
}
.menu-logo img {
  transition: transform 0.3s ease;
}
.menu-logo:hover img {
  transform: rotate(-4deg) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .menu-nav a::after,
  .menu-collapse a::after {
    transform: none;
    transition: none;
  }
  .menu-logo:hover img {
    transform: none;
  }
}

/* ============================================================
   MORE CUTE — scroll reveal, toast pop, item pop, floats
   ============================================================ */

/* ----- Gentle fade-up on scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease 0.05s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.good-things h2.reveal.in {
  transform: translateX(-50%);
}
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ----- Toast bounce-in ----- */
.toast.show {
  animation: toast-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes toast-pop {
  0%   { transform: translateX(-50%) translateY(26px) scale(0.8); opacity: 0; }
  60%  { transform: translateX(-50%) translateY(-4px) scale(1.06); opacity: 1; }
  100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}

/* ----- Cart drawer items pop-in ----- */
.drawer-item {
  animation: item-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes item-pop {
  from { transform: translateX(26px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ----- Characters & footer logo softly float ----- */
.char-anim.in img,
.footer-brand img {
  animation: bob 3.6s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .toast.show,
  .drawer-item,
  .char-anim.in img,
  .footer-brand img {
    animation: none;
  }
}
