* {
  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-grid > .dynamic-products,
.merch-grid > .dynamic-products {
  display: contents;
}

.general-merch-section {
  padding: 68px clamp(18px, 5vw, 72px) 76px;
  background: #f5ead4;
  border-top: 1px solid var(--border);
}

.general-merch-section[hidden] {
  display: none;
}

.general-merch-section .section-heading {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 30px;
  text-align: center;
}

.general-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 300px));
  justify-content: center;
  gap: 18px;
}

@media (max-width: 640px) {
  .general-merch-section { padding-block: 48px 56px; }
  .general-products { grid-template-columns: minmax(0, 1fr); }
}

.product-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  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;
  line-height: 1.18;
}

.jar-stage {
  width: 100%;
  height: 278px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 17px;
  background: rgba(248, 240, 223, .58);
  border: 1px solid rgba(75, 52, 27, .08);
  border-radius: 9px;
}

.jar-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.catalog-variant-picker{display:grid;gap:7px;margin:10px 0 14px}.catalog-variant-label{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#806c55}.catalog-variant-options{display:flex;flex-wrap:wrap;gap:6px}.catalog-variant-choice{border:1px solid var(--line);background:var(--paper);color:var(--ink);padding:8px 11px;border-radius:999px;font:700 12px Arial,sans-serif;cursor:pointer;transition:background .15s ease,color .15s ease,border-color .15s ease}.catalog-variant-choice:hover,.catalog-variant-choice:focus-visible{border-color:var(--teal);outline:2px solid #11666a33;outline-offset:1px}.catalog-variant-choice.selected{background:var(--teal);border-color:var(--teal);color:#fff}.catalog-variant-choice.sold-out,.catalog-variant-choice:disabled{background:#eee4d5;color:#a58f77;border-color:#dcc9ad;cursor:not-allowed;text-decoration:line-through}.catalog-variant-message{min-height:1em;color:var(--rust);font-weight:700}
.catalog-low-stock{display:inline-block;margin:6px 0 2px;padding:4px 8px;color:#8f422d;background:#f5dfbd;border:1px solid #d6a06f;border-radius:999px;font-size:10px;font-weight:800;letter-spacing:.08em}

.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;
}

/* Dynamic catalog cards keep their controls aligned even when product copy varies. */
.dynamic-products .product-card .product-title {
  min-height: 2.36em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dynamic-products .product-card .add-cart {
  margin-top: auto;
}

.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-variant {
  color: var(--ink) !important;
  font-weight: 800;
}

.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;
  }
}


/* =========================
   V5 LIMITED GRUB MERCH
   ========================= */

.merch-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(198,168,120,.20), transparent 27%),
    repeating-linear-gradient(0deg, rgba(55,39,22,.025) 0, rgba(55,39,22,.025) 1px, transparent 1px, transparent 5px),
    #f8f0df;
  border-top: 1px solid var(--border);
}

.merch-drop-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  padding: 15px clamp(18px, 5vw, 72px);
  color: #fff6e2;
  background: var(--rust);
  border-block: 2px solid var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.merch-drop-bar span:last-child {
  text-align: right;
}

.merch-drop-bar strong {
  font-family: "Rye", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .06em;
}

.merch-intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(35px, 8vw, 110px);
  align-items: end;
  padding: 88px clamp(22px, 6vw, 88px) 48px;
}

.merch-intro h2 {
  margin: 0;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: .96;
}

.merch-intro h2 em {
  color: var(--rust);
  font-style: normal;
}

.merch-intro-copy {
  max-width: 680px;
  padding-bottom: 7px;
  color: var(--ink-soft);
  font-size: 17px;
}

.merch-warning {
  margin-bottom: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #ead8b5;
  border-left: 5px solid var(--rust);
  font-size: 14px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(22px, 6vw, 88px) 70px;
}

.merch-card {
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid rgba(65,45,25,.18);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(50,34,19,.10);
}

.merch-image-wrap {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(rgba(240,220,182,.14), rgba(240,220,182,.08)),
    #e8d7b7;
  border-bottom: 1px solid var(--border);
}

.merch-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center center;
  transition: transform .35s ease;
}

.merch-card:hover .merch-image-wrap img {
  transform: scale(1.015);
}

.limited-ribbon {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: #fff5e0;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0,0,0,.16);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.merch-card-body {
  padding: 30px;
}

.merch-type {
  margin-bottom: 7px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.merch-card h3 {
  margin-bottom: 13px;
  font-family: "Rye", Georgia, serif;
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 400;
}

.merch-description {
  min-height: 53px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

.merch-stock {
  margin-bottom: 23px;
  padding: 16px;
  background: #f1e3c6;
  border: 1px solid rgba(72,50,27,.13);
}

.stock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.stock-heading span {
  color: var(--rust);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.stock-heading strong {
  font-family: "Rye", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
}

.size-stock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.size-stock span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  padding: 8px;
  background: rgba(255,250,239,.72);
  border: 1px solid rgba(72,50,27,.12);
  font-size: 11px;
}

.size-stock b {
  font-family: "Rye", Georgia, serif;
  font-weight: 400;
}

.merch-coming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.merch-coming small,
.merch-coming strong {
  display: block;
}

.merch-coming small {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.merch-coming strong {
  font-family: "Rye", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.merch-coming button {
  min-width: 145px;
  min-height: 46px;
  padding: 10px 16px;
  color: #fff6e4;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .72;
  cursor: not-allowed;
}

.gone-means-gone {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 33px;
  align-items: center;
  padding: 55px clamp(22px, 6vw, 88px);
  color: #fff5e2;
  background:
    linear-gradient(105deg, #21170f, #4f3621);
  border-top: 5px solid var(--rust);
}

.gone-means-gone img {
  width: 145px;
  filter: drop-shadow(0 13px 15px rgba(0,0,0,.28));
}

.gone-means-gone p {
  margin-bottom: 7px;
  color: #ddb674;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.gone-means-gone h3 {
  margin-bottom: 8px;
  font-family: "Rye", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.gone-means-gone span {
  color: rgba(255,245,226,.72);
  font-size: 13px;
}

@media (max-width: 940px) {
  .merch-drop-bar {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }

  .merch-drop-bar span:last-child {
    text-align: center;
  }

  .merch-intro {
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .merch-image-wrap {
    min-height: 460px;
  }
}

@media (max-width: 600px) {
  .merch-intro {
    padding-top: 68px;
  }

  .merch-intro h2 {
    font-size: 52px;
  }

  .merch-grid {
    padding-inline: 15px;
  }

  .merch-card-body {
    padding: 23px 18px;
  }

  .merch-image-wrap {
    min-height: 390px;
    padding: 12px;
  }

  .merch-coming {
    align-items: stretch;
    flex-direction: column;
  }

  .merch-coming button {
    width: 100%;
  }

  .size-stock {
    grid-template-columns: 1fr;
  }

  .gone-means-gone {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gone-means-gone img {
    margin-inline: auto;
  }
}


/* =========================
   V7 LIMITED INVENTORY UX
   ========================= */

.merch-limit-callout {
  margin: 22px 0;
  padding: 17px 18px;
  background: #2a1d13;
  border-left: 5px solid var(--rust);
  color: #fff5e2;
}

.merch-limit-callout span,
.merch-limit-callout strong,
.merch-limit-callout small {
  display: block;
}

.merch-limit-callout span {
  margin-bottom: 5px;
  color: #e0b46d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.merch-limit-callout strong {
  margin-bottom: 3px;
  font-family: "Rye", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.merch-limit-callout small {
  color: rgba(255,245,226,.72);
  font-size: 11px;
}

.merch-cart-button {
  min-width: 165px;
  min-height: 48px;
  padding: 10px 16px;
  color: #fff6e4;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.merch-cart-button:hover {
  background: var(--rust);
  border-color: var(--rust);
}

.cart-line.merch-line {
  grid-template-columns: 74px 1fr;
  align-items: start;
}

.cart-line.merch-line .cart-thumb {
  width: 68px;
  height: 85px;
  background: #ead8b7;
}

.cart-line.merch-line .cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line.merch-line .cart-line-info {
  min-width: 0;
}

.cart-merch-badge {
  display: inline-block !important;
  width: max-content;
  margin: 4px 0 10px !important;
  padding: 4px 7px;
  color: #fff4df !important;
  background: var(--rust);
  border-radius: 999px;
  font-size: 8px !important;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-size-label {
  display: block;
  margin: 7px 0 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cart-size-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cart-size-button {
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: #f2e4c7;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cart-size-button.selected {
  color: #fff6e4;
  background: var(--ink);
  border-color: var(--ink);
}

.cart-size-button:disabled {
  opacity: .42;
  cursor: not-allowed;
  text-decoration: line-through;
}

.inventory-status {
  display: block !important;
  margin-top: 9px !important;
  color: var(--rust) !important;
  font-size: 10px !important;
  font-weight: 800;
}

.inventory-after {
  display: block !important;
  margin-top: 3px !important;
  color: var(--ink-soft) !important;
  font-size: 10px !important;
}

.merch-qty-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-top: 10px;
}

.merch-qty-wrap .cart-qty {
  margin-top: 0;
}

.cart-remove {
  padding: 0;
  color: #7d5b40;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cart-price-tbd {
  display: block !important;
  margin-top: 6px !important;
  color: var(--ink-soft) !important;
  font-size: 10px !important;
}

.cart-stock-note {
  margin: 10px 0 0;
  padding: 10px 11px;
  color: #5d412b;
  background: #f2dfbd;
  border: 1px solid rgba(91,61,31,.14);
  font-size: 10px;
  line-height: 1.4;
}

.cart-stock-note strong {
  color: var(--rust);
}

.cart-checkout.has-tbd {
  opacity: .55;
}

@media (max-width: 600px) {
  .merch-limit-callout strong {
    font-size: 16px;
  }

  .merch-option-row {
    gap: 13px;
  }

  .merch-cart-button {
    width: 100%;
  }
}


/* =========================
   V8 RESERVATION TIMER
   ========================= */

.reservation-box {
  margin-top: 10px;
  padding: 10px 11px;
  color: #5b3f28;
  background: #f5e1bd;
  border: 1px solid rgba(91,61,31,.15);
  border-left: 4px solid var(--rust);
  font-size: 10px;
  line-height: 1.35;
}

/* Reservation notices are a full-width row beneath the cart line, not a grid column. */
.cart-line > .reservation-box {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.cart-line > .reservation-box .reservation-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 7px;
  min-width: 0;
}

.cart-line > .reservation-box .reservation-main strong,
.cart-line > .reservation-box .reservation-main .reservation-countdown {
  display: inline;
}

.cart-line > .reservation-box > small {
  display: block;
  width: 100%;
  margin-top: 4px;
  line-height: 1.4;
  white-space: normal;
}

.cart-line > .reservation-box .reservation-extend {
  display: inline-block;
  width: auto;
  min-width: 0;
  white-space: nowrap;
}

.cart-line-info > .reservation-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
  width: 100%;
  max-width: 100%;
  padding: 7px 9px;
  line-height: 1.2;
}

.reservation-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.cart-line-info > .reservation-box strong,
.cart-line-info > .reservation-box span,
.cart-line-info > .reservation-box small {
  display: inline !important;
  margin: 0;
}

.cart-line-info > .reservation-box .reservation-countdown {
  font-size: 15px;
}

.cart-line-info > .reservation-box small {
  flex-basis: 100%;
  color: var(--ink-soft);
  font-size: 9px;
}

.reservation-extend {
  margin-left: auto;
  padding: 4px 8px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(91,61,31,.28);
  border-radius: 999px;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.reservation-extend:hover,
.reservation-extend:focus-visible {
  color: #fff6e4;
  background: var(--rust);
  border-color: var(--rust);
}

.reservation-extend:disabled {
  opacity: .55;
  cursor: wait;
}

.reservation-extension-error {
  color: #9a3f28 !important;
  font-weight: 800;
}

.checkout-choice { margin-top: 14px; padding: 16px; color: var(--ink); background: #f5e1bd; border: 1px solid rgba(91,61,31,.2); border-radius: 8px; }
.checkout-choice > div, .checkout-choice > form { display: grid; gap: 8px; }
.checkout-choice button { padding: 10px 12px; color: #fff6e4; background: var(--rust); border: 1px solid var(--rust); border-radius: 5px; font: inherit; font-weight: 800; cursor: pointer; }
.checkout-google { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #3c4043 !important; background: #fff !important; border-color: #d9d9d9 !important; }
.cart-clear { display: block; margin: 8px auto; border: 0; background: transparent; color: var(--rust); text-decoration: underline; cursor: pointer; font: inherit; font-size: .9rem; }
.cart-clear:disabled { opacity: .6; cursor: wait; }
.checkout-google:hover { background: #f8f9fa !important; border-color: #b8b8b8 !important; }
.checkout-google:focus-visible { outline: 3px solid rgba(47, 117, 116, .35); outline-offset: 2px; }
.google-g { font: 700 1.05rem/1 Arial, sans-serif; color: #4285f4; }
.product-details-trigger { display: block; margin: 8px auto 0; border: 0; background: transparent; color: var(--rust); text-decoration: underline; cursor: pointer; font: inherit; }
.product-details-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.product-details-backdrop { position: absolute; inset: 0; background: rgba(36,23,15,.68); }
.product-details-panel { position: relative; z-index: 1; width: min(620px, 100%); max-height: min(90vh, 760px); overflow-y: auto; padding: 28px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 18px 60px rgba(36,23,15,.3); }
.product-details-close { position: absolute; top: 10px; right: 12px; border: 0; background: transparent; color: var(--ink); font-size: 28px; cursor: pointer; }
.product-details-image { display: block; width: min(100%, 380px); height: min(42vh, 360px); object-fit: contain; object-position: center; margin: 0 auto 18px; padding: 10px; background: rgba(248, 240, 223, .72); border: 1px solid rgba(75, 52, 27, .1); border-radius: 9px; box-sizing: border-box; }
.product-details-panel h2 { margin: 0 32px 8px 0; font-family: Georgia, serif; }
.product-details-description { margin: 14px 0; white-space: pre-line; line-height: 1.6; }
.product-details-price { display: block; margin: 16px 0; font-size: 1.15rem; }
@media (max-width: 520px) { .product-details-modal { padding: 10px; } .product-details-panel { padding: 22px 16px; } }
.checkout-choice p { margin: 0 0 8px; color: var(--ink-soft); font-size: 11px; line-height: 1.4; }
.checkout-choice input { min-height: 38px; padding: 8px 10px; border: 1px solid rgba(72,50,27,.22); border-radius: 4px; font: inherit; }
.checkout-choice small { color: var(--rust); }

[hidden] { display: none !important; }

.cart-drawer { display: flex; flex-direction: column; height: 100vh; height: 100dvh; max-height: 100dvh; overflow: hidden; }
.cart-drawer .cart-items { flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.cart-drawer .cart-footer { flex: 0 0 auto; min-height: 0; }
.checkout-choice[data-checkout-choice] { display: flex; flex: 1 1 auto; flex-direction: column; min-height: 0; height: auto; max-height: none; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.cart-drawer .cart-footer:has(.checkout-choice:not([hidden])) { flex: 1 1 auto !important; min-height: 0; overflow: hidden; display: flex; flex-direction: column; }
.cart-drawer .checkout-choice > [data-checkout-choice-step],
.cart-drawer .checkout-choice > [data-checkout-auth-view],
.cart-drawer .checkout-choice > [data-checkout-shipping-view] { flex: 0 0 auto; }

.reservation-extended-state {
  color: var(--rust) !important;
  font-weight: 800;
}

.reservation-box strong,
.reservation-box span {
  display: block;
}

.reservation-box strong {
  margin-bottom: 3px;
  color: var(--rust);
  font-size: 10px;
}

.reservation-countdown {
  font-family: "Rye", Georgia, serif;
  font-size: 14px;
  color: var(--ink);
}

.reservation-expiring {
  color: #a33f26 !important;
}

.cart-expired-message {
  margin: 12px 0;
  padding: 11px 12px;
  color: #6f2d1d;
  background: #f2d2c8;
  border: 1px solid rgba(142,64,40,.2);
  font-size: 10px;
  line-height: 1.4;
}

.cart-reservation-footer {
  margin-top: 10px !important;
  color: #6b563f !important;
  font-size: 9px !important;
  line-height: 1.4;
}


/* =========================
   V9 GRUB LOVES A RUB CONCEPT TEE
   ========================= */

.merch-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merch-card-development {
  border: 2px dashed rgba(138,68,39,.46);
  background:
    linear-gradient(rgba(255,250,240,.94), rgba(255,250,240,.94)),
    repeating-linear-gradient(45deg, rgba(138,68,39,.035) 0 1px, transparent 1px 9px);
}

.development-ribbon {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 8px 12px;
  color: #fff5e0;
  background: var(--rust);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0,0,0,.16);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.merch-development-callout {
  margin: 22px 0;
  padding: 17px 18px;
  color: var(--ink);
  background: #ead8b5;
  border: 1px dashed rgba(138,68,39,.45);
  border-left: 5px solid var(--rust);
}

.merch-development-callout span,
.merch-development-callout strong,
.merch-development-callout small {
  display: block;
}

.merch-development-callout span {
  margin-bottom: 5px;
  color: var(--rust);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.merch-development-callout strong {
  margin-bottom: 5px;
  font-family: "Rye", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}

.merch-development-callout small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.merch-interest-button {
  min-width: 145px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #fff6e4;
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 5px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .15s ease, background .15s ease;
}

.merch-interest-button:hover {
  transform: translateY(-1px);
  background: var(--ink);
  border-color: var(--ink);
}

.merch-card-development .merch-image-wrap img {
  object-fit: contain;
  object-position: center center;
}

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

  .merch-card-development {
    grid-column: 1 / -1;
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 940px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .merch-card-development {
    grid-column: auto;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .cart-line > .reservation-box .reservation-extend {
    width: 100%;
    margin-top: 3px;
  }

  .merch-interest-button {
    width: 100%;
  }
}


/* =========================
   V10 MERCH IMAGE LIGHTBOX
   ========================= */

.merch-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.merch-zoom-trigger img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
}

.zoom-hint {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: #fff7e7;
  background: rgba(35, 24, 15, .86);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}

.merch-zoom-trigger:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: -4px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 15, 10, .88);
  backdrop-filter: blur(5px);
  cursor: zoom-out;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1050px, 94vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px;
  background: #f7ecd5;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.image-lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 95px);
  object-fit: contain;
  border-radius: 8px;
}

.image-lightbox-dialog p {
  margin: 11px 44px 0;
  color: var(--ink);
  font-family: "Rye", Georgia, serif;
  font-size: 15px;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  z-index: 3;
  top: 11px;
  right: 11px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff7e7;
  background: rgba(31, 21, 13, .92);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  font: inherit;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .merch-zoom-trigger:hover img {
    transform: scale(1.025);
  }

  .merch-zoom-trigger img {
    transition: transform .22s ease;
  }
}

@media (max-width: 600px) {
  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox-dialog {
    width: 96vw;
    padding: 10px;
  }

  .image-lightbox-dialog img {
    max-height: 78vh;
  }

  .zoom-hint {
    right: 9px;
    bottom: 9px;
  }
}
.account-strip{max-width:980px;margin:70px auto;padding:34px;background:#f7ecd5;border:1px solid rgba(36,23,15,.15);text-align:center}.account-strip h2{margin:8px 0 22px}.account-strip form{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}.account-strip input,.account-strip select,.account-strip button,.specials-form input,.specials-form button{padding:11px 13px;border:1px solid rgba(36,23,15,.2);font:inherit}.account-strip button,.specials-form button{background:var(--rust);color:#fff;cursor:pointer}.account-strip [data-account-status],.specials-form small{color:#806c55}.specials-form{max-width:290px}.specials-form label{display:block;margin-bottom:8px;font-weight:700}.specials-form div{display:flex}.specials-form input{min-width:0;width:100%}
.catalog-variant-choice.selected,.catalog-variant-choice[aria-pressed="true"]{background:#24170f!important;border-color:#24170f!important;color:#fff!important;opacity:1!important;font-weight:800}
.grub-modal-backdrop{position:fixed;inset:0;z-index:200;display:grid;place-items:center;padding:20px;background:rgba(36,23,15,.68);backdrop-filter:blur(3px)}.grub-modal-backdrop[hidden]{display:none}.grub-modal{position:relative;width:min(520px,100%);max-height:min(88vh,680px);overflow-y:auto;padding:30px;background:#fffaf0;color:#3b281c;border:1px solid #d6b98f;border-top:5px solid #b45b3c;border-radius:8px;box-shadow:0 24px 70px rgba(36,23,15,.3)}.grub-modal-mark{margin-bottom:12px;color:#b45b3c;font-size:11px;font-weight:800;letter-spacing:.16em}.grub-modal h2{margin:0 44px 10px 0;color:#3b281c;font-family:"Rye",Georgia,serif;font-size:28px;line-height:1.15}.grub-modal p{margin:0;color:#725946;line-height:1.55}.grub-modal-details{margin:16px 0;padding:12px 14px;background:#f5e9d5;border:1px solid #ead8bd;border-left:3px solid #b45b3c}.grub-modal-details p{margin:3px 0;color:#3b281c;font-size:14px}.grub-modal-close{position:absolute;top:15px;right:15px;width:36px;height:36px;border:1px solid #d6b98f;border-radius:50%;background:#fffaf0;color:#3b281c;font-size:22px;line-height:1;cursor:pointer}.grub-modal-actions{display:flex;justify-content:flex-end;gap:10px;margin-top:24px}.grub-modal-actions button{min-height:42px;padding:10px 17px;border-radius:4px;font:inherit;font-weight:700;cursor:pointer}.grub-modal-primary{border:1px solid #397d78;background:#397d78;color:#fffaf0}.grub-modal-secondary{border:1px solid #d6b98f;background:transparent;color:#3b281c}.grub-modal-danger{border:1px solid #b45b3c;background:#b45b3c;color:#fffaf0}.grub-modal-actions button:focus-visible,.grub-modal-close:focus-visible{outline:3px solid #f2c36e;outline-offset:2px}body.grub-modal-open{overflow:hidden}@media (max-width:520px){.grub-modal-backdrop{padding:12px}.grub-modal{padding:24px 20px}.grub-modal-actions{flex-direction:column-reverse}.grub-modal-actions button{width:100%}}
.customer-account{margin-top:28px;padding-top:24px;border-top:1px solid var(--line)}.customer-account-heading{display:flex;align-items:center;justify-content:space-between;gap:16px}.profile-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:14px 0 28px}.profile-form label{display:grid;gap:5px;color:var(--ink-soft);font-size:12px;font-weight:700}.profile-form input{min-height:40px;padding:9px 10px;border:1px solid var(--line);background:var(--paper);color:var(--ink);font:inherit}.profile-form input:focus-visible{outline:2px solid var(--teal);outline-offset:2px}.profile-form button{grid-column:1/-1;justify-self:start}.customer-orders{margin-top:20px}.account-order-row{display:flex;width:100%;justify-content:space-between;gap:18px;margin:8px 0;padding:13px 14px;border:1px solid var(--line);background:var(--paper);color:var(--ink);text-align:left;cursor:pointer}.account-order-row:hover,.account-order-row:focus-visible{border-color:var(--teal);outline:2px solid #11666a33}.account-order-row span{display:grid;gap:4px}.account-order-row span:last-child{text-align:right}.account-order-row small{color:var(--ink-soft);font-size:11px}.account-empty{color:var(--ink-soft)}.account-order-detail{margin-top:14px;padding:15px;border:1px solid var(--line);background:#fffaf0}.account-order-detail:empty{display:none}.account-order-detail p{margin:7px 0;color:var(--ink-soft)}.account-pay-link{display:inline-block;margin-top:8px;padding:9px 13px;background:var(--teal);color:#fff;text-decoration:none;font-weight:700}@media (max-width:600px){.profile-form{grid-template-columns:1fr}.account-order-row{align-items:flex-start;flex-direction:column}.account-order-row span:last-child{text-align:left}}
.account-page{min-height:100vh;background:var(--cream)}.account-header{position:relative}.account-portal{max-width:860px;margin:0 auto;padding:56px 22px 80px}.account-card{background:var(--paper);border:1px solid var(--line);box-shadow:0 12px 30px rgba(36,23,15,.08);padding:clamp(24px,5vw,52px)}.account-card h1{margin:8px 0 28px;color:var(--ink);font-family:Rye,serif;font-size:clamp(30px,5vw,48px);font-weight:400}.account-card h2{margin:30px 0 8px;color:var(--ink);font-family:Rye,serif;font-size:24px;font-weight:400}.portal-auth-form{display:grid;gap:12px;max-width:440px}.portal-auth-form input{box-sizing:border-box;width:100%;min-height:44px;padding:11px 13px;border:1px solid var(--line);background:#fffaf0;color:var(--ink);font:inherit}.portal-auth-form input:focus-visible,.profile-form input:focus-visible{outline:2px solid var(--teal);outline-offset:2px}.account-actions{display:flex;gap:10px;flex-wrap:wrap}.account-actions button,.google-sign-in{min-height:44px;padding:10px 16px;border:1px solid var(--rust);font:inherit;font-weight:700;cursor:pointer}.account-actions button:first-child{background:var(--teal);border-color:var(--teal);color:#fff}.account-actions button:last-child{background:transparent;color:var(--rust)}.google-sign-in{display:inline-flex;align-items:center;justify-content:center;gap:10px;background:#fff;color:#3c4043;border-color:#dadce0}.google-g{font-family:Arial,sans-serif;font-size:18px;font-weight:700;color:#4285f4}.text-button{width:max-content;padding:0;border:0;background:none;color:var(--rust);text-decoration:underline;cursor:pointer;font:inherit}.account-signed-out [data-account-status],.account-status{min-height:1.3em;color:var(--ink-soft)}.account-page .customer-account-heading{align-items:flex-start}.account-page .customer-account-heading p{margin:4px 0}.account-page .profile-form{margin-top:18px}.account-page .profile-form button{padding:11px 16px;background:var(--teal);border:1px solid var(--teal);color:#fff;font:inherit;font-weight:700;cursor:pointer}.account-page .account-order-row{border-radius:3px}.account-page .account-order-detail{line-height:1.5}@media (max-width:600px){.account-portal{padding:28px 14px 56px}.account-card{padding:24px 18px}.account-page .customer-account-heading{flex-direction:column}.account-page .customer-account-heading .button{align-self:flex-start}}
.account-page .portal-auth-form input,.account-page .profile-form input{border-color:#a88c6d;background:#fffdf7;color:#2b1b12;box-shadow:inset 0 1px 2px rgba(43,27,18,.05)}.account-page .portal-auth-form input::placeholder,.account-page .profile-form input::placeholder{color:#806c55;opacity:1}.account-page .account-actions button:first-child,.account-page .profile-form button{background:#3b281c;border-color:#3b281c;color:#fffaf0;box-shadow:0 3px 0 rgba(36,23,15,.12)}.account-page .account-actions button:first-child:hover,.account-page .account-actions button:first-child:focus-visible,.account-page .profile-form button:hover,.account-page .profile-form button:focus-visible{background:#b45b3c;border-color:#b45b3c}.account-page .account-actions button:last-child{background:#fffaf0;border-color:#b45b3c;color:#7d3f2a}.account-page .account-actions button:last-child:hover,.account-page .account-actions button:last-child:focus-visible{background:#f5e9d5}.account-page .google-sign-in{width:100%;background:#fff;color:#2b2b2b;border-color:#b8b8b8;box-shadow:0 1px 2px rgba(43,27,18,.08)}.account-page .google-sign-in:hover,.account-page .google-sign-in:focus-visible{background:#f7f7f7;border-color:#7d7d7d}.account-page .text-button{margin-top:2px;padding:3px 0}.account-page .text-button:hover,.account-page .text-button:focus-visible{color:#b45b3c}.account-page button:focus-visible,.account-page a:focus-visible{outline:3px solid #e2ae55;outline-offset:3px}.account-page button:disabled{cursor:not-allowed;opacity:.6}
.account-page .account-order-row{display:block;padding:18px;text-decoration:none}.account-page .account-order-header{display:flex;align-items:center;justify-content:space-between;gap:12px}.account-page .account-statuses{display:flex;gap:6px;flex-wrap:wrap}.account-page .account-status-badge{padding:4px 8px;border-radius:999px;background:#3b281c;color:#fffaf0;font-size:10px;font-weight:800;letter-spacing:.04em;text-transform:uppercase}.account-page .account-payment-badge{background:#397d78}.account-page .account-order-date{display:block;margin-top:7px;color:var(--ink-soft)}.account-page .account-items,.account-page .account-address,.account-page .account-shipping,.account-page .account-totals{display:grid;gap:5px;margin-top:14px;padding-top:12px;border-top:1px solid var(--line)}.account-page .account-detail-label{color:var(--rust);font-size:11px;letter-spacing:.1em;text-transform:uppercase}.account-page .account-item-line,.account-page .account-carrier,.account-page .account-tracking-number{color:var(--ink)}.account-page .account-order-total{display:block;margin-top:14px;font-size:17px}.account-page .account-track-link{width:max-content;margin-top:4px;padding:9px 13px;background:var(--rust);color:#fff;text-decoration:none;font-weight:700}.account-page .account-track-link:hover,.account-page .account-track-link:focus-visible{background:var(--teal)}.account-page .account-payment-due{color:var(--ink-soft)}
.guest-order-status{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:6px}
