* {
  box-sizing: border-box;
}

:root {
  --ink: #251a10;
  --ink-soft: #4a3828;
  --cream: #efe1c2;
  --cream-light: #faf4e7;
  --paper: #f3e8cf;
  --tan: #c6a878;
  --rust: #8a4427;
  --green: #526044;
  --white: #fffdf7;
  --border: rgba(37, 26, 16, .18);
  --shadow: 0 20px 50px rgba(42, 29, 16, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(198,168,120,.18), transparent 30%),
    var(--cream-light);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.announcement {
  padding: 9px 20px;
  text-align: center;
  color: #fff7e6;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(250, 244, 231, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Rye", Georgia, serif;
  letter-spacing: .04em;
}

.brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.nav-shop {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.28), transparent),
    repeating-linear-gradient(0deg, rgba(67,47,27,.025) 0, rgba(67,47,27,.025) 1px, transparent 1px, transparent 5px),
    var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(25px, 7vw, 105px);
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Rye", Georgia, serif;
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(62px, 7.6vw, 120px);
  line-height: .94;
  letter-spacing: -.045em;
}

h1 em {
  color: var(--rust);
  font-style: normal;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35,25,16,.15);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-secondary {
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rust);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: 35px;
  background:
    radial-gradient(circle at center, rgba(255,250,235,.55), transparent 57%),
    #bfa674;
  border-left: 1px solid rgba(37,26,16,.2);
}

.logo-stage {
  position: relative;
  width: min(90%, 660px);
}

.logo-stage img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  filter: drop-shadow(0 25px 20px rgba(41,28,16,.28));
}

.sunburst {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  opacity: .16;
  background: repeating-conic-gradient(from 0deg, var(--ink) 0 4deg, transparent 4deg 10deg);
}

.stamp {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 8%;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  color: var(--cream);
  background: var(--rust);
  border: 4px double var(--cream);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(45,30,18,.25);
  font-family: "Rye", Georgia, serif;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-10deg);
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  color: #f9edda;
  background: var(--rust);
  border-block: 2px solid var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-left: 24px;
  font-family: "Rye", Georgia, serif;
  font-size: 14px;
  letter-spacing: .08em;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 105px clamp(22px, 6vw, 88px);
}

.section-heading h2 {
  max-width: 770px;
  margin-bottom: 42px;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.03;
}

.story {
  background: var(--cream-light);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 300px;
  padding: 34px;
  background: #f0e1c0;
  border: 1px solid var(--border);
}

.feature-number {
  display: inline-grid;
  width: 47px;
  height: 47px;
  place-items: center;
  margin-bottom: 68px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Rye", Georgia, serif;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-family: "Rye", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.feature-card p {
  max-width: 350px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.grub-section {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.grub-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(58px, 7vw, 98px);
}

.grub-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}

.grub-copy .eyebrow { color: #e7c88b; }

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: #fff4dc;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.video-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 28px 60px rgba(18,24,14,.35);
  color: var(--ink);
  transform: rotate(1.2deg);
}

.video-topline,
.video-link {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  font-size: 12px;
  font-weight: 800;
}

.video-placeholder {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 40px;
  background:
    linear-gradient(rgba(26,19,13,.35), rgba(26,19,13,.55)),
    radial-gradient(circle at center, #c9af7e, #7b6446);
  text-align: center;
}

.video-placeholder img {
  width: min(75%, 390px);
  filter: sepia(.2) drop-shadow(0 20px 18px rgba(0,0,0,.25));
}

.video-placeholder p {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  margin: 0;
  color: #fff;
  font-family: "Rye", Georgia, serif;
  font-size: 22px;
}

.play-button {
  position: absolute;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  padding-left: 5px;
  color: var(--ink);
  background: rgba(255,248,230,.9);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-size: 25px;
}

.video-link {
  text-decoration: none;
}



.tiktok-player-wrap {
  position: relative;
  width: 100%;
  min-height: 570px;
  overflow: hidden;
  background: #111;
}

.tiktok-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  color: #fff8ea;
  background:
    linear-gradient(rgba(30,21,14,.33), rgba(30,21,14,.58)),
    radial-gradient(circle at center, #c5a978 0%, #7b6245 52%, #3c2c20 100%);
  border: 0;
  cursor: pointer;
  text-align: center;
}

.tiktok-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5px);
}

.tiktok-poster img {
  position: relative;
  z-index: 1;
  width: min(68%, 355px);
  margin-bottom: 24px;
  filter: sepia(.08) drop-shadow(0 20px 18px rgba(0,0,0,.28));
  transition: transform .2s ease;
}

.tiktok-poster:hover img {
  transform: scale(1.02);
}

.tiktok-play-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  padding-left: 6px;
  transform: translate(-50%, -50%);
  color: var(--ink);
  background: rgba(255,248,230,.94);
  border: 4px solid rgba(255,255,255,.45);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  font-size: 27px;
  transition: transform .18s ease, background .18s ease;
}

.tiktok-poster:hover .tiktok-play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fffdf7;
}

.tiktok-poster strong {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 48px;
  font-family: "Rye", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.tiktok-poster small {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 23px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tiktok-player-slot {
  width: 100%;
  min-height: 570px;
}

.tiktok-player {
  display: block;
  width: 100%;
  height: 570px;
  border: 0;
  background: #111;
}

.tiktok-player-wrap.is-playing .tiktok-poster {
  display: none;
}

.video-link {
  align-items: center;
}

.video-link span {
  margin-left: 8px;
}
.how-section {
  background:
    linear-gradient(rgba(244,233,209,.92), rgba(244,233,209,.92)),
    repeating-linear-gradient(45deg, rgba(32,23,15,.05) 0 1px, transparent 1px 8px);
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  text-align: center;
}

.step > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--cream-light);
  background: var(--ink);
  border-radius: 50%;
  font-family: "Rye", Georgia, serif;
  font-size: 24px;
}

.step h3 {
  font-family: "Rye", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.step p {
  max-width: 330px;
  margin-inline: auto;
  color: var(--ink-soft);
}

.fine-print {
  max-width: 830px;
  margin: 55px auto 0;
  color: #685847;
  font-size: 12px;
  text-align: center;
}

.shop-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  background: #efe1c2;
}

.product-visual {
  min-height: 610px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255,255,255,.55), transparent 43%),
    repeating-linear-gradient(0deg, rgba(45,31,18,.04) 0 1px, transparent 1px 6px);
  border: 1px solid var(--border);
}

.jar {
  position: relative;
  width: min(75%, 390px);
  aspect-ratio: 1 / 1.06;
  background: linear-gradient(90deg, #c8a975, #ebd5a6 28%, #f5e5be 50%, #d8b985 75%, #b5925f);
  border: 5px solid #5c442c;
  border-radius: 22% 22% 28% 28% / 13% 13% 16% 16%;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.2), 0 30px 45px rgba(47,33,19,.25);
}

.lid {
  position: absolute;
  left: -4%;
  right: -4%;
  top: -6%;
  height: 17%;
  background: repeating-linear-gradient(90deg, #2a2119 0 5px, #4a3827 5px 10px);
  border: 4px solid #1e1711;
  border-radius: 20px 20px 10px 10px;
}

.jar-label {
  position: absolute;
  inset: 19% 10% 10%;
  display: grid;
  place-items: center;
}

.jar-label img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
}

.product-description {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 18px;
}

.product-meta {
  margin: 30px 0;
  border-block: 1px solid var(--border);
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.product-meta div:last-child { border-bottom: 0; }

.product-meta span {
  color: var(--ink-soft);
  font-size: 13px;
}

.purchase-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 8px;
}

.price-label {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.price {
  font-family: "Rye", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.checkout-note {
  margin-top: 14px;
  color: #6c5b48;
  font-size: 12px;
}

.faq-section {
  background: var(--cream-light);
}

.faq-list {
  max-width: 960px;
}

.faq-list details {
  padding: 0;
  border-top: 1px solid var(--border);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  padding: 25px 3px;
  cursor: pointer;
  font-family: "Rye", Georgia, serif;
  font-size: 20px;
}

.faq-list p {
  max-width: 800px;
  padding: 0 3px 25px;
  color: var(--ink-soft);
}

.cta-band {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 60px clamp(22px, 6vw, 88px);
  color: #fff7e5;
  background: var(--rust);
}

.cta-band img {
  width: 125px;
}

.cta-band p {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
}

.button-light {
  color: var(--ink);
  background: var(--cream-light);
  border-color: var(--cream-light);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 45px clamp(22px, 6vw, 88px);
  color: #f8ecd6;
  background: #1e1711;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 72px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: "Rye", Georgia, serif;
}

.footer-brand span {
  margin-top: 3px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 20px;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
}

@media (max-width: 940px) {
  .menu-button { display: block; }

  .nav {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-light);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .hero,
  .grub-section,
  .shop-section {
    grid-template-columns: 1fr;
  }

  .hero-art { border-left: 0; border-top: 1px solid var(--border); }

  .story-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card { min-height: auto; }
  .feature-number { margin-bottom: 30px; }

  .cta-band {
    grid-template-columns: 90px 1fr;
  }

  .cta-band img { width: 90px; }
  .cta-band .button { grid-column: 1 / -1; }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .announcement { font-size: 10px; }
  .site-header { min-height: 70px; padding: 8px 16px; }
  .brand img { width: 47px; height: 47px; }

  .hero-copy { padding: 70px 22px; }
  h1 { font-size: 58px; }
  .hero-art { min-height: 420px; padding: 20px; }

  .stamp {
    width: 84px;
    height: 84px;
    font-size: 11px;
  }

  .section { padding: 75px 22px; }
  .section-heading h2 { font-size: 44px; }

  .video-placeholder { min-height: 380px; }

  .tiktok-player-wrap,
  .tiktok-poster,
  .tiktok-player-slot {
    min-height: 500px;
  }

  .tiktok-player {
    height: 500px;
  }

  .product-visual { min-height: 440px; }

  .purchase-box {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-band img { margin: auto; }
}


/* =========================
   V3 SHOP + CART
   ========================= */

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cart-count {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  padding: 0 6px;
  place-items: center;
  color: #fff8e7;
  background: var(--rust);
  border-radius: 999px;
  font-size: 11px;
}

.shop-v3 {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.55), transparent 34%),
    repeating-linear-gradient(0deg, rgba(55,39,22,.025) 0, rgba(55,39,22,.025) 1px, transparent 1px, transparent 5px),
    #f5ead4;
  border-top: 1px solid rgba(37,26,16,.15);
}

.shop-banner {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: center;
  padding: 62px clamp(22px, 6vw, 88px);
  overflow: hidden;
  color: #fff7e8;
  background:
    radial-gradient(circle at 82% 50%, rgba(239,218,175,.18), transparent 25%),
    linear-gradient(120deg, #2b2117 0%, #5b4025 52%, #88633a 100%);
  border-bottom: 5px solid #a06a39;
}

.shop-banner .eyebrow {
  color: #e3c184;
}

.shop-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .98;
}

.shop-banner p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255,247,232,.82);
  font-size: 18px;
}

.shop-banner-mark {
  position: relative;
  display: grid;
  place-items: center;
}

.shop-banner-mark::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.shop-banner-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 245px);
  filter: drop-shadow(0 22px 20px rgba(0,0,0,.32));
  transform: rotate(2deg);
}

.shop-inner {
  padding: 58px clamp(18px, 5vw, 72px) 70px;
}

.shop-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-bottom: 36px;
  text-align: center;
}

.shop-heading h3 {
  margin: 0;
  font-family: "Rye", Georgia, serif;
  font-size: clamp(31px, 3.7vw, 49px);
  font-weight: 400;
}

.paw {
  color: var(--rust);
  font-size: 25px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 1500px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-width: 0;
  padding: 25px 20px 23px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,252,242,.82), rgba(255,252,242,.82)),
    repeating-linear-gradient(45deg, rgba(73,51,28,.025) 0 1px, transparent 1px 8px);
  border: 1px solid rgba(75,52,27,.18);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(57,39,22,.07);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(57,39,22,.13);
}

.product-card.featured {
  border: 2px solid rgba(138,68,39,.58);
  box-shadow: 0 14px 36px rgba(108,61,32,.14);
}

.product-badge {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 6px 10px;
  color: #fff7e7;
  background: var(--rust);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  white-space: nowrap;
}

.product-title {
  margin-top: 31px;
  font-family: "Rye", Georgia, serif;
  font-size: 22px;
  letter-spacing: .02em;
}

.jar-stage {
  height: 278px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 10px 0 17px;
}

.shop-jar {
  position: relative;
  width: 154px;
  height: 168px;
  background:
    linear-gradient(90deg, #b99662 0%, #ddc28e 10%, #f4dfad 28%, #f9e9bd 50%, #e4c893 74%, #bb985f 100%);
  border: 3px solid #5a422a;
  border-radius: 17% 17% 24% 24% / 10% 10% 14% 14%;
  box-shadow:
    inset 9px 0 18px rgba(92,60,27,.13),
    inset -9px 0 18px rgba(92,60,27,.12),
    0 18px 23px rgba(52,35,19,.20);
  transform-origin: bottom center;
}

.shop-jar::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: -10px;
  height: 13px;
  background: rgba(40,28,17,.14);
  border-radius: 50%;
  filter: blur(5px);
  z-index: -1;
}

.shop-lid {
  position: absolute;
  z-index: 3;
  left: -4%;
  right: -4%;
  top: -10px;
  height: 28px;
  background:
    repeating-linear-gradient(90deg, #19140f 0 4px, #34281d 4px 8px);
  border: 3px solid #15110d;
  border-radius: 13px 13px 6px 6px;
  box-shadow: inset 0 3px 2px rgba(255,255,255,.12);
}

.shop-label {
  position: absolute;
  inset: 22px 10px 9px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.shop-label img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: sepia(.08) contrast(1.03);
}

.jar-size-4 { transform: scale(.76); }
.jar-size-6 { transform: scale(.88); }
.jar-size-8 { transform: scale(1); }
.jar-size-18 {
  width: 170px;
  height: 205px;
  transform: scale(1.09);
}

.jar-size-18 .shop-label {
  inset: 27px 10px 10px;
}

.product-blurb {
  min-height: 52px;
  margin: 0 auto 13px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.product-price {
  margin-bottom: 14px;
  font-family: "Rye", Georgia, serif;
  font-size: 27px;
}

.add-cart {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff5df;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.add-cart:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-1px);
}

.add-cart.added {
  background: var(--green);
  border-color: var(--green);
}

.shop-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1500px;
  margin: 28px auto 0;
  border: 1px solid rgba(75,52,27,.18);
  background: rgba(255,249,235,.65);
}

.shop-benefits > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-right: 1px solid rgba(75,52,27,.15);
}

.shop-benefits > div:last-child {
  border-right: 0;
}

.benefit-icon {
  flex: 0 0 auto;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--rust);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
}

.shop-benefits strong,
.shop-benefits small {
  display: block;
}

.shop-benefits strong {
  margin-bottom: 3px;
  font-family: "Rye", Georgia, serif;
  font-size: 13px;
  font-weight: 400;
}

.shop-benefits small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  background: rgba(26,18,12,.52);
  backdrop-filter: blur(2px);
  transition: opacity .22s ease;
}

.cart-overlay.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 81;
  top: 0;
  right: 0;
  width: min(430px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  transform: translateX(103%);
  color: var(--ink);
  background: var(--cream-light);
  box-shadow: -18px 0 45px rgba(31,21,13,.24);
  transition: transform .25s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 27px 25px 19px;
  border-bottom: 1px solid var(--border);
}

.cart-header .eyebrow {
  margin-bottom: 4px;
}

.cart-header h2 {
  margin: 0;
  font-size: 42px;
}

.cart-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  text-align: center;
}

.cart-empty img {
  width: 150px;
  margin-bottom: 16px;
  opacity: .72;
}

.cart-empty strong {
  color: var(--ink);
  font-family: "Rye", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
}

.cart-empty span {
  margin-top: 7px;
  font-size: 13px;
}

.cart-line {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.cart-thumb {
  position: relative;
  width: 58px;
  height: 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e5c88f;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.cart-thumb img {
  width: 52px;
}

.cart-line-info strong,
.cart-line-info span {
  display: block;
}

.cart-line-info strong {
  font-size: 14px;
}

.cart-line-info span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
}

.cart-qty button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f2e4c7;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.cart-line-total {
  font-weight: 800;
  font-size: 13px;
}

.cart-footer {
  padding: 19px 22px 23px;
  background: #efe0c0;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-subtotal span {
  color: var(--ink-soft);
  font-size: 13px;
}

.cart-subtotal strong {
  font-family: "Rye", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.cart-checkout {
  width: 100%;
  min-height: 50px;
  color: #fff8e8;
  background: var(--ink);
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.cart-checkout:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.cart-footer p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-benefits > div:nth-child(2) {
    border-right: 0;
  }

  .shop-benefits > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(75,52,27,.15);
  }
}

@media (max-width: 940px) {
  .nav-cart {
    width: 100%;
    justify-content: center;
  }

  .shop-banner {
    grid-template-columns: 1fr 180px;
  }

  .shop-banner-mark::before {
    width: 230px;
    height: 230px;
  }
}

@media (max-width: 680px) {
  .shop-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 50px;
    padding-bottom: 45px;
    text-align: center;
  }

  .shop-banner p:not(.eyebrow) {
    margin-inline: auto;
  }

  .shop-banner-mark img {
    width: 155px;
  }

  .shop-banner-mark::before {
    width: 190px;
    height: 190px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 430px;
    width: 100%;
    margin-inline: auto;
  }

  .jar-stage {
    height: 260px;
  }

  .shop-benefits {
    grid-template-columns: 1fr;
  }

  .shop-benefits > div,
  .shop-benefits > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(75,52,27,.15);
  }

  .shop-benefits > div:last-child {
    border-bottom: 0;
  }
}
