:root {
  --black: #120f0b;
  --ink: #21170b;
  --gold: #f4c400;
  --gold-deep: #b8870b;
  --leaf: #15893e;
  --cream: #fff8dc;
  --white: #fffdf4;
  --muted: #6f6046;
  --line: rgba(33, 23, 11, 0.15);
  --shadow: 0 24px 70px rgba(61, 43, 0, 0.22);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #151515;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.warning-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #16110a;
  color: #fff;
  padding: 10px max(18px, env(safe-area-inset-left)) 10px max(18px, env(safe-area-inset-right));
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.warning-bar,
.site-header,
main,
.site-footer {
  width: min(100%, 430px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 39px;
  z-index: 19;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 253, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  width: 100%;
  min-width: 0;
  justify-content: space-between;
}

.brand-mark {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--gold-deep);
  text-shadow: 0 1px 0 #fff3ad;
}

.brand-note {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
  margin-inline: -14px;
  padding: 0 14px 4px;
  overflow-x: auto;
  font-size: 13px;
  font-weight: 700;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.nav a {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 244, 0.82);
  scroll-snap-align: start;
}

.nav::-webkit-scrollbar {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "media"
    "copy";
  min-height: auto;
  gap: 24px;
  align-items: center;
  padding: 28px 14px 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 233, 79, 0.85), transparent 28%),
    linear-gradient(135deg, #fff7b2 0%, #f4c400 45%, #f8e58a 100%);
  overflow: hidden;
}

.hero-copy {
  grid-area: copy;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(36px, 11.5vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 8.4vw, 40px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 600px;
  color: #443411;
  font-size: 16px;
  font-weight: 700;
}

.hero-actions,
.age-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  width: 100%;
}

.btn-primary {
  background: var(--leaf);
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 137, 62, 0.25);
}

.btn-secondary {
  background: var(--black);
  color: #fff;
}

.btn-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 22px 0 0;
  max-width: 640px;
}

.hero-stats div {
  padding: 14px;
  background: rgba(255, 253, 244, 0.72);
  border: 1px solid rgba(33, 23, 11, 0.15);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-media {
  grid-area: media;
  justify-self: center;
  width: min(78vw, 330px);
  filter: drop-shadow(0 30px 45px rgba(76, 53, 0, 0.35));
}

.hero-media img {
  border-radius: 8px;
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  object-fit: cover;
  background: #050505;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--leaf);
  color: #fff;
}

.ticker span {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 44px 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p,
.flavor-copy p,
.wholesale-section p,
.support-card p {
  color: var(--muted);
  font-size: 16px;
}

.product-grid,
.wholesale-section,
.support-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
}

.product-image-card,
.spec-panel,
.shop-card,
.support-card,
.package-card,
.asset-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-image-card {
  display: grid;
  min-height: min(92vw, 430px);
  aspect-ratio: 1 / 1.08;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.product-image-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.spec-panel {
  padding: clamp(22px, 4vw, 42px);
}

.spec-list {
  display: grid;
  gap: 12px;
}

.spec-list div {
  display: grid;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list span {
  color: var(--muted);
  font-weight: 700;
}

.spec-list strong {
  text-align: left;
}

.dark-section {
  background: var(--black);
  color: #fff;
}

.dark-section .section-heading p,
.dark-section article p {
  color: #d4c8a7;
}

.feature-grid,
.shop-grid,
.media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-grid article {
  min-height: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.detail-showcase img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.detail-showcase h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.flavor-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background: #fff6cf;
}

.asset-placeholder {
  min-height: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(244, 196, 0, 0.22), rgba(21, 137, 62, 0.08)),
    repeating-linear-gradient(45deg, rgba(33, 23, 11, 0.05), rgba(33, 23, 11, 0.05) 1px, transparent 1px, transparent 16px);
  border-style: dashed;
}

.asset-placeholder span {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-placeholder strong {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1;
}

.asset-placeholder p {
  color: var(--muted);
}

.flavor-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flavor-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.shop-card {
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: 26px;
}

.shop-card.featured {
  border-color: rgba(21, 137, 62, 0.45);
  transform: none;
}

.shop-card p {
  color: var(--muted);
}

.price {
  margin: auto 0 18px;
  font-size: 28px;
}

.wholesale-section {
  background: #fff;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--leaf);
}

.wholesale-image {
  width: 100%;
  margin-top: 22px;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.inquiry-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #f8f1cf;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 23, 11, 0.22);
  border-radius: 6px;
  padding: 12px;
  background: #fff;
}

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

.support-section {
  background: var(--black);
}

.support-card {
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
  background: #1f1a12;
}

.support-card .btn-outline {
  border-color: #fff;
  color: #fff;
}

.package-card {
  overflow: hidden;
  background: #050505;
}

.package-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  padding: 34px 14px calc(34px + var(--safe-bottom));
  background: #080705;
  color: #fff;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #d4c8a7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
  justify-content: flex-start;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  background: rgba(8, 7, 5, 0.86);
}

.age-gate.is-hidden {
  display: none;
}

.age-panel {
  width: min(100%, 390px);
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.35);
}

.age-panel h1 {
  font-size: clamp(34px, 5vw, 56px);
}

@media (max-width: 920px) {
  /* The PWA is mobile-first only. Wider screens keep the phone layout. */
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(72px + var(--safe-bottom));
  }

  .warning-bar {
    position: static;
    font-size: 11px;
    line-height: 1.35;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + var(--safe-bottom));
    background: rgba(255, 253, 244, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-cta .btn {
    min-height: 48px;
    padding: 10px;
    font-size: 14px;
  }
}

@media (min-width: 621px) {
  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: min(100%, 430px);
    margin-inline: auto;
    padding: 10px 12px calc(10px + var(--safe-bottom));
    background: rgba(255, 253, 244, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 380px) {
  .hero-media {
    width: min(72vw, 260px);
  }

  h1 {
    font-size: 34px;
  }

  .btn,
  .nav a {
    font-size: 13px;
  }
}

@media (max-height: 700px) and (max-width: 620px) {
  .hero {
    padding-top: 22px;
  }

  .hero-media {
    width: min(60vw, 235px);
  }

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

  .hero-stats div {
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 24px;
  }

  .hero-stats dd {
    font-size: 11px;
  }
}

/* Final mobile PWA layout pass: phone-first only. */
main {
  background: var(--white);
}

.warning-bar {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 11px;
  line-height: 1.35;
}

.hero {
  gap: 18px;
  padding: 22px 14px 30px;
}

.hero-media {
  width: min(72vw, 292px);
}

.hero-video {
  aspect-ratio: 4 / 5;
}

.eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(31px, 9.2vw, 40px);
  line-height: 1;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 7.2vw, 31px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.16;
}

.hero-subtitle,
.section-heading p,
.flavor-copy p,
.wholesale-section p,
.support-card p {
  font-size: 14px;
  line-height: 1.55;
}

.hero-actions,
.age-actions {
  margin-top: 18px;
}

.btn {
  min-height: 44px;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.hero-stats div {
  min-width: 0;
  padding: 12px 8px;
}

.hero-stats dt {
  font-size: 26px;
}

.hero-stats dd {
  margin-top: 5px;
  font-size: 10px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px;
}

.ticker span {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  text-align: center;
  font-size: 11px;
}

.section {
  padding: 34px 14px;
}

.section-heading {
  margin-bottom: 20px;
}

.product-grid,
.wholesale-section,
.support-section {
  gap: 16px;
}

.product-image-card {
  min-height: auto;
  aspect-ratio: 1 / 1;
}

.spec-panel,
.shop-card,
.support-card {
  padding: 18px;
}

.spec-list {
  gap: 0;
}

.spec-list div {
  gap: 5px;
  padding: 11px 0;
}

.spec-list span {
  font-size: 13px;
}

.spec-list strong {
  font-size: 14px;
}

.dark-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.feature-grid,
.shop-grid,
.media-grid {
  gap: 12px;
}

.feature-grid article {
  padding: 16px;
}

.feature-icon {
  margin-bottom: 18px;
}

.detail-showcase {
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
}

.detail-showcase img,
.flavor-image img,
.wholesale-image,
.package-card img {
  aspect-ratio: 16 / 10;
  min-height: auto;
  object-fit: cover;
}

.detail-showcase h3 {
  font-size: 21px;
}

.flavor-section {
  gap: 18px;
}

.price {
  margin: 10px 0 14px;
  font-size: 24px;
}

.check-list {
  gap: 8px;
  font-size: 14px;
}

.inquiry-form {
  padding: 18px;
}

.inquiry-form input,
.inquiry-form textarea {
  padding: 11px;
  font-size: 14px;
}

.site-footer {
  padding: 26px 14px calc(92px + var(--safe-bottom));
}

.age-panel {
  padding: 26px;
}

.age-panel h1 {
  font-size: 32px;
}

@media (min-width: 431px) {
  body::before,
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - 430px) / 2);
    background: #151515;
    pointer-events: none;
  }

  body::before {
    left: 0;
  }

  body::after {
    right: 0;
  }
}

/* Storefront polish v8: mobile poster flow */
:root {
  --page: #fffaf0;
  --card: #ffffff;
  --soft: #fff0d8;
  --pink: #f6a6b9;
}

body {
  color: #1c140a;
}

main {
  background: var(--page);
}

.warning-bar {
  background: #0f0d09;
  font-size: 10px;
  font-weight: 800;
}

.site-header {
  top: 0;
  padding: 10px 14px;
  border-bottom: 0;
  background: rgba(255, 250, 240, 0.94);
}

.brand-mark {
  font-size: 25px;
  color: #9a6900;
}

.brand-note {
  color: #7a6040;
}

.nav {
  padding-top: 3px;
}

.nav a {
  background: #fff;
  border-color: rgba(34, 20, 5, 0.12);
  box-shadow: 0 4px 14px rgba(80, 50, 10, 0.05);
}

.hero {
  min-height: auto;
  padding: 14px 14px 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.65), rgba(255, 250, 240, 0.98)),
    url("/assets/images/flavor-strawberry-scene.jpeg") center / cover;
}

.hero-media {
  width: min(74vw, 286px);
}

.hero-video {
  aspect-ratio: 4 / 5;
  border: 3px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(76, 43, 0, 0.28);
}

.hero-copy {
  text-align: left;
}

h1 {
  max-width: 330px;
  font-size: clamp(31px, 9vw, 38px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(23px, 6.8vw, 29px);
}

h3 {
  font-size: 18px;
}

.hero-subtitle {
  max-width: 340px;
  color: #4b3716;
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-actions .btn {
  min-height: 42px;
  padding-inline: 10px;
}

.hero-stats {
  gap: 8px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.78);
  border: 0;
  box-shadow: 0 10px 24px rgba(111, 73, 0, 0.1);
}

.hero-stats dt {
  font-size: 24px;
}

.ticker {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  background: #171109;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar {
  display: none;
}

.ticker span {
  flex: 0 0 auto;
  min-height: 32px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.18);
}

.flavor-section {
  padding-top: 28px;
  background: #fffaf0;
}

.flavor-copy {
  text-align: left;
}

.flavor-image,
.poster-section img,
.package-card img {
  background: #080705;
}

.flavor-image img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.numbers-section {
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 14px;
  background: #fffaf0;
}

.number-card {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 18px;
  border-radius: 10px;
  background: #181109;
  color: #fff;
  box-shadow: 0 14px 34px rgba(25, 16, 5, 0.18);
}

.number-card.hero-number {
  min-height: 168px;
  background:
    linear-gradient(135deg, rgba(246, 166, 185, 0.18), rgba(244, 196, 0, 0.08)),
    #181109;
}

.number-card span {
  color: #f6a6b9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.number-card strong {
  margin-top: 4px;
  font-size: clamp(44px, 15vw, 68px);
  line-height: 0.92;
}

.number-card em {
  color: #fff3c4;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.section {
  padding: 28px 14px;
}

.section-heading {
  margin-bottom: 14px;
}

.section-heading p,
.flavor-copy p,
.wholesale-section p,
.support-card p {
  color: #745f43;
}

.flavor-image,
.spec-panel,
.shop-card,
.inquiry-form,
.support-card,
.package-card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(70, 42, 0, 0.12);
}

.flavor-image img,
.package-card img {
  aspect-ratio: 16 / 10;
}

.compact-heading {
  margin-bottom: 10px;
}

.spec-panel {
  background: #fff;
}

.spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.spec-grid div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(33, 23, 11, 0.08);
  border-radius: 8px;
  background: #fff8e5;
}

.spec-grid span {
  color: #80643a;
}

.dark-section {
  background: #12100d;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-grid article {
  min-height: 154px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-grid article p {
  font-size: 13px;
}

.feature-icon {
  margin-bottom: 12px;
  color: var(--pink);
}

.detail-showcase {
  margin-top: 14px;
  border: 0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.detail-showcase img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.poster-section {
  display: grid;
  gap: 16px;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 30px 14px;
  background: #fffaf0;
}

.poster-copy p {
  color: #745f43;
  font-size: 14px;
  line-height: 1.55;
}

.poster-section img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 14px 35px rgba(70, 42, 0, 0.12);
}

.flavor-image img,
.detail-showcase img {
  aspect-ratio: 4 / 5;
}

.package-card img {
  aspect-ratio: 16 / 10;
}

.shop-section {
  background: linear-gradient(180deg, #fffaf0 0%, #fff0d8 100%);
}

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

.shop-card {
  background: #fff;
}

.shop-card.featured {
  border: 2px solid rgba(21, 137, 62, 0.3);
}

.price {
  color: #9a6900;
}

.wholesale-section {
  background: #fffaf0;
}

.check-list {
  margin-bottom: 14px;
}

.inquiry-form {
  background: #fff;
}

.support-section {
  background: #12100d;
}

.support-card {
  background: #211a12;
}

.mobile-cta {
  box-shadow: 0 -12px 28px rgba(24, 15, 5, 0.12);
}
