:root {
  --wine: #4b090b;
  --wine-2: #6f0d12;
  --red: #8f1117;
  --gold: #c99735;
  --gold-light: #e5bd69;
  --cream: #fff9ef;
  --cream-2: #f7ead5;
  --cocoa: #271008;
  --ink: #2a1711;
  --muted: #78675d;
  --white: #ffffff;
  --line: rgba(111, 13, 18, 0.12);
  --shadow-sm: 0 12px 32px rgba(53, 18, 9, 0.09);
  --shadow: 0 24px 70px rgba(53, 18, 9, 0.14);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --page: min(1480px, 88vw);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-width: 320px;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

body:has(.cart-drawer.open),
body:has(.policy-dialog[open]) {
  overflow: hidden;
}

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

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

button,
select,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(201, 151, 53, 0.48);
  outline-offset: 3px;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.announcement-bar {
  min-height: 35px;
  padding: 7px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #ffeecf;
  background: linear-gradient(90deg, #470708, #861017 48%, #5f090c);
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.announcement-bar p {
  display: flex;
  align-items: center;
  gap: 7px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 92px;
  padding: 14px 6vw;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  background: rgba(255, 249, 239, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(111, 13, 18, 0.08);
  box-shadow: 0 10px 40px rgba(41, 15, 8, 0.06);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.logo-main {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.04em;
  color: var(--wine-2);
}

.logo-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 7px;
}

.logo-rule i {
  width: 25px;
  height: 1px;
  background: var(--gold);
}

.logo-rule b {
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 11px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine-2);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.cart-btn {
  min-width: 58px;
  height: 46px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--wine);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-btn svg {
  width: 26px;
  height: 26px;
}

.cart-btn span {
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--wine-2);
  font-size: 0.72rem;
  font-weight: 800;
}

.whatsapp-btn,
.btn {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsapp-btn {
  min-height: 56px;
  padding-inline: 25px;
  color: #fff;
  background: linear-gradient(135deg, #761016, #960f16);
  box-shadow: 0 12px 28px rgba(111, 13, 18, 0.18);
}

.whatsapp-btn:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(75, 9, 11, 0.2);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #7a0d13, #9c1219);
  box-shadow: 0 12px 30px rgba(111, 13, 18, 0.22);
}

.btn.secondary {
  color: var(--ink);
  background: linear-gradient(135deg, #f7e5ba, #dba43c);
  border-color: rgba(201, 151, 53, 0.55);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: var(--wine-2);
  transition: 0.25s ease;
}

.hero {
  position: relative;
  min-height: 740px;
  padding: 76px 6vw 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 95px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 1, 0, 0.96) 0%, rgba(28, 7, 3, 0.97) 48%, rgba(55, 13, 7, 0.9) 100%),
    url("assets/hero-pattern.svg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 189, 105, 0.7), transparent);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(201,151,53,.13) 48%, transparent 52%),
    linear-gradient(-45deg, transparent 47%, rgba(201,151,53,.1) 48%, transparent 52%);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: 5%;
  top: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 145, 42, 0.28), transparent 65%);
  filter: blur(5px);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.pill,
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(201, 151, 53, 0.13);
  border: 1px solid rgba(229, 189, 105, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 800px;
  margin: 22px 0 20px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 span,
.section-heading h2 span,
.quality-intro h2 span,
.story-text h2 span {
  color: var(--gold-light);
}

.ornament {
  width: min(610px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  margin: 18px 0;
}

.ornament i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament i:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament b {
  font-size: 1.3rem;
}

.ornament.small {
  max-width: 330px;
  margin: 16px 0;
}

.hero-content > p {
  max-width: 620px;
  color: #eadbc7;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-buttons .btn {
  min-width: 190px;
}

.hero .btn.secondary {
  color: #f8ead0;
  background: rgba(255, 249, 239, 0.06);
  border-color: rgba(229, 189, 105, 0.65);
}

.hero-badges {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(229, 189, 105, 0.2);
  padding-top: 20px;
}

.hero-badges > div {
  min-width: 0;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(229, 189, 105, 0.24);
}

.hero-badges > div:first-child {
  padding-left: 0;
}

.hero-badges > div:last-child {
  border-right: 0;
}

.hero-badges > div > span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(201, 151, 53, 0.09);
  border: 1px solid rgba(229, 189, 105, 0.22);
  font-weight: 800;
  font-size: 0.8rem;
}

.hero-badges p {
  min-width: 0;
  display: grid;
}

.hero-badges strong {
  color: #fff8eb;
  font-size: 0.79rem;
  white-space: nowrap;
}

.hero-badges small {
  color: #cbb9a6;
  font-size: 0.67rem;
  white-space: nowrap;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-image-frame {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 0.95 / 1;
  overflow: hidden;
  border-radius: 46% 46% 30px 30px;
  border: 1px solid rgba(229, 189, 105, 0.4);
  box-shadow: var(--shadow-dark);
  isolation: isolate;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 3, 2, 0.38));
}

.product-seal {
  position: absolute;
  top: 58px;
  right: 54px;
  z-index: 4;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff3d7;
  background: rgba(111, 13, 18, 0.94);
  border: 2px solid var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.hero-note {
  width: min(450px, 86%);
  margin-top: -36px;
  z-index: 5;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 249, 239, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 189, 105, 0.5);
  box-shadow: var(--shadow);
}

.hero-note > span {
  color: var(--gold);
  font-size: 1.4rem;
}

.hero-note p {
  display: grid;
}

.hero-note small {
  color: var(--muted);
}

.quality-section,
.section,
.instagram-section {
  padding: 90px 6vw;
}

.quality-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 189, 105, 0.14), transparent 36%),
    var(--cream);
}

.quality-section::before,
.shop-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background-image: url("assets/hero-pattern.svg");
  background-size: 520px;
  mask-image: linear-gradient(90deg, #000 0, transparent 35%, transparent 65%, #000 100%);
}

.quality-intro {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}

.quality-intro .eyebrow {
  margin-inline: auto;
  color: var(--wine-2);
  background: rgba(111, 13, 18, 0.06);
  border-color: rgba(111, 13, 18, 0.16);
}

.quality-intro h2,
.section-heading h2,
.story-text h2,
.instagram-copy h2,
.policy-dialog h2 {
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  color: var(--wine);
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.quality-intro p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 330px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 252, 246, 0.84);
  border: 1px solid rgba(201, 151, 53, 0.4);
  box-shadow: 0 14px 40px rgba(82, 36, 16, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-2);
  background: radial-gradient(circle, #fff8e9, #f2dba9);
  border: 1px solid rgba(201, 151, 53, 0.26);
  font-size: 2.3rem;
}

.feature-card h3 {
  max-width: 180px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 1.52rem;
  line-height: 1.08;
}

.feature-card > i {
  width: 34px;
  height: 2px;
  margin: 16px 0;
  background: var(--gold);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.35rem);
}

.section-heading > p {
  max-width: 390px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.centered {
  max-width: 940px;
  margin-inline: auto;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading.centered > p {
  padding-bottom: 0;
}

.shop-section {
  position: relative;
  background: #fffaf2;
  overflow: hidden;
}

.product-grid,
.package-grid,
.review-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  padding: 14px 14px 20px;
  overflow: hidden;
  border-radius: 26px;
  background: #fffdf8;
  border: 1px solid rgba(111, 13, 18, 0.08);
  box-shadow: 0 16px 55px rgba(53, 18, 9, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  height: 326px;
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(145deg, #fff3d8, #f2d394);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-weight {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 8px;
  color: #fff;
  background: rgba(111, 13, 18, 0.96);
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.product-card-body {
  padding: 20px 4px 0;
  text-align: center;
}

.product-card h3,
.package-card h3 {
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.product-card .size {
  margin-top: 4px;
  color: var(--muted);
}

.price {
  display: block;
  margin: 9px 0 18px;
  color: var(--wine-2);
  font-size: 1.38rem;
  font-weight: 800;
}

.card-options {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  text-align: left;
}

.choice-label {
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-options select,
.cart-footer select,
.checkout-view input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(111, 13, 18, 0.18);
  border-radius: 11px;
}

.add-cart {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #781016, #9b1118);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(111, 13, 18, 0.22);
}

.shop-trust-row {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(111, 13, 18, 0.1);
}

.shop-trust-row span {
  padding: 3px 28px;
  color: var(--muted);
  font-size: 0.88rem;
  border-right: 1px solid rgba(111, 13, 18, 0.12);
}

.shop-trust-row span:last-child {
  border-right: 0;
}

.packages-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(22, 3, 2, 0.98), rgba(65, 9, 8, 0.97)),
    url("assets/hero-pattern.svg");
}

.packages-pattern,
.footer-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(201,151,53,.15) 48%, transparent 52%),
    linear-gradient(-45deg, transparent 47%, rgba(201,151,53,.1) 48%, transparent 52%);
  background-size: 60px 60px;
}

.section-heading.light h2,
.section-heading.light > p {
  color: #fff4e2;
}

.section-heading.light .eyebrow {
  color: var(--gold-light);
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: #fffaf0;
  border: 1px solid rgba(229, 189, 105, 0.54);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  transition: transform .25s ease;
}

.package-card:hover {
  transform: translateY(-6px);
}

.package-image {
  position: relative;
  height: 295px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.04);
}

.package-audience {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 88px;
  height: 88px;
  padding: 10px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(88, 8, 12, .94);
  border: 2px solid var(--gold);
  font-size: .67rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.package-card-content {
  padding: 22px 24px 24px;
  text-align: center;
}

.package-card-content .mini-ornament {
  color: var(--gold);
  margin: 8px 0;
}

.package-card p {
  min-height: 48px;
  color: var(--muted);
}

.package-card .price {
  margin: 12px 0 18px;
}

.package-benefits {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(229, 189, 105, 0.22);
  padding-top: 28px;
}

.package-benefits > span {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(229, 189, 105, .24);
}

.package-benefits > span:last-child {
  border-right: 0;
}

.package-benefits b {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: .8rem;
}

.package-benefits p {
  display: grid;
}

.package-benefits strong {
  color: #fff0d3;
  font-family: "Playfair Display", serif;
}

.package-benefits small {
  color: #cbb9a6;
  font-size: .72rem;
}

.custom-order {
  position: relative;
  z-index: 2;
  margin-top: 52px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 22px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7e7, #ecd19b);
  box-shadow: var(--shadow-dark);
}

.custom-order h3 {
  margin: 8px 0;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.custom-order p {
  max-width: 760px;
  color: var(--muted);
}

.custom-order .eyebrow {
  color: var(--wine-2);
  border-color: rgba(111, 13, 18, .16);
  background: rgba(111, 13, 18, .06);
}

.story-section {
  position: relative;
  padding: 96px 6vw;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: clamp(45px, 6vw, 90px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 35%, rgba(177, 79, 18, .22), transparent 36%),
    linear-gradient(100deg, #0c0201, #310705 55%, #5e0d0c);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: url("assets/hero-pattern.svg");
  background-size: 540px;
}

.story-text,
.story-showcase {
  position: relative;
  z-index: 2;
}

.story-text h2 {
  color: #fff8eb;
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.story-text p {
  max-width: 610px;
  margin: 22px 0 28px;
  color: #eadbc7;
  line-height: 1.85;
  font-size: 1.03rem;
}

.story-showcase {
  min-height: 560px;
  display: grid;
  grid-template-columns: .78fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(229, 189, 105, .72);
  background: #f9ead0;
  box-shadow: var(--shadow-dark);
}

.story-photo {
  overflow: hidden;
  background: var(--cocoa);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card {
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(229,189,105,.25), transparent 40%),
    #fff7e8;
}

.story-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--wine-2);
  font-size: 1.6rem;
}

.story-card h3 {
  margin-top: 18px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
}

.mini-ornament {
  color: var(--gold);
  letter-spacing: .08em;
}

.story-card > p {
  margin: 15px 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.story-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.story-card li {
  position: relative;
  padding-left: 20px;
  font-size: .83rem;
  font-weight: 700;
}

.story-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.reviews-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(201,151,53,.09), transparent 30%),
    #fffaf2;
}

.review-card {
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  background: #fffefb;
  border: 1px solid rgba(111,13,18,.08);
  box-shadow: var(--shadow-sm);
}

.review-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #4d090b, #831016);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  letter-spacing: .12em;
}

.review-card > p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-family: "Playfair Display", serif;
  font-size: 1.28rem;
  line-height: 1.6;
}

.review-card.featured > p {
  color: #f3e1c8;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card footer > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine-2);
  font-size: .75rem;
  font-weight: 800;
}

.review-card.featured footer > span {
  color: var(--wine);
  background: var(--gold-light);
}

.review-card footer div {
  display: grid;
}

.review-card footer small {
  color: var(--muted);
}

.review-card.featured footer small {
  color: #cbb9a6;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(600px, 1.3fr);
  align-items: center;
  gap: 55px;
  background: var(--cream);
}

.instagram-copy p {
  max-width: 430px;
  margin: 17px 0 25px;
  color: var(--muted);
}

.insta-grid {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.insta-grid figure {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  background: var(--cream-2);
}

.insta-grid figure.wide {
  grid-row: 1 / 3;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.insta-grid figure:hover img {
  transform: scale(1.06);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 70px 6vw 26px;
  color: #f9ead1;
  background:
    radial-gradient(circle at 50% -20%, rgba(201,151,53,.16), transparent 35%),
    linear-gradient(100deg, #2b0506, #5e0b0f 50%, #3c0709);
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .72fr .9fr 1fr;
  gap: 54px;
}

.footer-brand {
  padding-right: 30px;
  border-right: 1px solid rgba(229,189,105,.34);
}

.footer-logo .logo-main {
  color: #fff7e8;
  font-size: 2.55rem;
}

.footer-logo .logo-rule b {
  color: #fff7e8;
}

.footer-brand > p {
  max-width: 420px;
  margin-bottom: 18px;
  color: #e7cfad;
}

.footer h4 {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 12px;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gold);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column a,
.policy-link {
  position: relative;
  margin-bottom: 14px;
  padding-left: 18px;
  color: #f1ddbf;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: .94rem;
}

.footer-column a::before,
.policy-link::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.footer-column a:hover,
.policy-link:hover {
  color: #fff;
}

.footer-contact > a {
  margin-bottom: 12px;
  padding: 10px 0 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.footer-contact > a > span {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.footer-contact > a p {
  display: grid;
}

.footer-contact strong {
  color: #fff0d9;
  font-size: .91rem;
}

.footer-contact small {
  color: #c9b293;
  font-size: .72rem;
}

.follow-heading {
  margin-top: 24px;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 25px;
}

.footer-badges > span {
  min-width: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-weight: 800;
}

.footer-badges small {
  margin-top: 5px;
  color: #cbb99f;
  font-size: .62rem;
  font-weight: 500;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  font-size: .75rem;
  font-weight: 800;
}

.social-links a:hover {
  color: var(--wine);
  background: var(--gold-light);
}

.footer-bottom {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}

.footer-bottom span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,189,105,.64));
}

.footer-bottom span:nth-of-type(2) {
  background: linear-gradient(90deg, rgba(229,189,105,.64), transparent);
}

.footer-bottom p {
  grid-column: 1 / 4;
  margin-top: 18px;
  color: #e7cfad;
  text-align: center;
  font-size: .85rem;
}

.policy-dialog {
  width: min(640px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 36px));
  padding: 36px;
  overflow-y: auto;
  border: 1px solid rgba(201,151,53,.5);
  border-radius: 24px;
  color: var(--ink);
  background: #fffaf1;
  box-shadow: 0 30px 100px rgba(0,0,0,.34);
}

.policy-dialog::backdrop {
  background: rgba(16, 3, 2, .72);
  backdrop-filter: blur(5px);
}

.policy-dialog h2 {
  margin-bottom: 18px;
  font-size: 2.5rem;
}

.policy-dialog #policyContent {
  color: var(--muted);
  line-height: 1.75;
}

.policy-dialog #policyContent h3 {
  margin: 20px 0 7px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
}

.policy-dialog #policyContent ul {
  padding-left: 20px;
}

.dialog-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--wine-2);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  background: rgba(10, 2, 1, .58);
  backdrop-filter: blur(2px);
  transition: opacity .25s ease;
}

.cart-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  z-index: 80;
  width: min(480px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fffaf2;
  box-shadow: -30px 0 90px rgba(0,0,0,.28);
  transition: right .28s ease;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.cart-header h2 {
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
}

.cart-header .eyebrow {
  padding: 4px 9px;
  color: var(--wine-2);
  background: rgba(111,13,18,.05);
  border-color: rgba(111,13,18,.12);
  font-size: .6rem;
}

.cart-header > button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--wine-2);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.checkout-view,
.verifying-view,
.result-view {
  flex: 1;
  overflow-y: auto;
  padding: 26px;
}

.cart-view[hidden],
.checkout-view[hidden],
.verifying-view[hidden],
.result-view[hidden] {
  display: none !important;
}

.cart-items {
  flex: 1;
  min-height: 0;
  padding: 18px 24px;
  overflow-y: auto;
}

.empty-cart {
  max-width: 280px;
  margin: 70px auto 0;
  color: var(--muted);
  text-align: center;
}

.empty-cart::before {
  content: "🛍";
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-2);
  font-size: 1.7rem;
}

.cart-item {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-item h4 {
  color: var(--wine);
}

.cart-item small {
  color: var(--muted);
}

.cart-item p {
  margin-top: 5px;
  color: var(--wine-2);
  font-weight: 800;
}

.cart-item button {
  padding: 5px;
  color: var(--wine-2);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -10px 34px rgba(53,18,9,.05);
}

.cart-footer label,
.checkout-view label {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-weight: 800;
  font-size: .85rem;
}

.cart-footer select {
  margin-bottom: 15px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0;
}

.total-row.grand {
  margin-top: 12px;
  padding-top: 13px;
  color: var(--wine);
  border-top: 1px solid var(--line);
  font-size: 1.18rem;
}

.cart-footer .btn,
.checkout-view > .btn {
  width: 100%;
}

.clear-cart-btn {
  margin: 16px 0 10px;
  color: var(--wine-2);
  background: transparent;
  border-color: rgba(111,13,18,.2);
}

.checkout-back {
  margin-bottom: 18px;
  padding: 0;
  color: var(--wine-2);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.checkout-view h3,
.verifying-view h3,
.result-step h3 {
  margin: 10px 0 8px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.checkout-total {
  margin-bottom: 17px;
}

.checkout-total strong {
  color: var(--wine-2);
}

.momo-number-row {
  margin-bottom: 14px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  background: #f8e8c5;
  border: 1px solid rgba(201,151,53,.5);
}

.momo-number-row span {
  color: var(--wine);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: .03em;
  user-select: all;
}

.copy-btn {
  padding: 9px 14px;
  flex-shrink: 0;
  color: var(--ink);
  background: var(--gold-light);
  border: 0;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-instructions {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.checkout-view input {
  margin-bottom: 14px;
}

.form-error {
  margin-bottom: 14px;
  padding: 11px 13px;
  color: #8b0e14;
  background: #ffe5e6;
  border-radius: 10px;
  font-size: .88rem;
}

.verifying-view,
.result-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.verifying-view {
  align-items: center;
}

.verifying-view p,
.result-step p {
  color: var(--muted);
  line-height: 1.65;
}

.pulse-badge {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--wine-2));
}

.pulse-badge::before,
.pulse-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  opacity: .45;
  animation: pulse-ring 1.8s ease-out infinite;
}

.pulse-badge::after {
  animation-delay: .6s;
}

.pulse-badge span {
  width: 25px;
  height: 25px;
  z-index: 2;
  border-radius: 50%;
  background: #fff8e7;
}

@keyframes pulse-ring {
  to { transform: scale(1.85); opacity: 0; }
}

.call-fallback {
  margin-top: 22px;
}

.call-fallback p {
  margin-bottom: 11px;
}

.call-btn {
  width: 100%;
  color: #fff;
  background: var(--wine-2);
}

.result-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-icon {
  position: relative;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 50%;
}

.result-icon.success {
  background: radial-gradient(circle, var(--gold-light), var(--wine-2));
  animation: pop-in .4s ease;
}

.result-icon.success::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 40px;
  width: 27px;
  height: 14px;
  border-left: 5px solid #fff7e8;
  border-bottom: 5px solid #fff7e8;
  transform: rotate(-45deg);
}

.result-icon.rejected {
  background: #f0dec0;
}

.result-icon.rejected::before,
.result-icon.rejected::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 42px;
  width: 32px;
  height: 4px;
  border-radius: 4px;
  background: var(--wine-2);
  transform: rotate(45deg);
}

.result-icon.rejected::after {
  transform: rotate(-45deg);
}

@keyframes pop-in {
  from { transform: scale(.6); opacity: 0; }
}

.kitchen-status-line {
  margin-top: 14px;
  color: var(--wine-2) !important;
  font-weight: 800;
}

.delivery-review-prompt {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(111, 13, 18, 0.14);
  border-radius: 18px;
  background: #fff8ef;
  text-align: left;
}

.delivery-review-prompt[hidden] {
  display: none !important;
}

.delivery-review-prompt h4 {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 1.05rem;
}

.delivery-review-prompt p {
  margin: 0 0 14px;
  color: var(--muted);
}

.result-step .call-fallback,
.result-step .btn.secondary {
  width: 100%;
  margin-top: 18px;
}

.js-reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal,
.js-reveal-enabled .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1280px) {
  .navbar {
    gap: 22px;
  }

  .nav-links {
    gap: 20px;
    font-size: .9rem;
  }

  .whatsapp-btn {
    padding-inline: 18px;
  }

  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }

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

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

  .feature-card:nth-child(4),
  .feature-card:nth-child(5) {
    grid-column: span 1;
  }

  .story-section {
    grid-template-columns: .9fr 1.1fr;
  }
}

@media (max-width: 1060px) {
  .announcement-bar p:last-child {
    display: none;
  }

  .announcement-bar {
    justify-content: center;
  }

  .navbar {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: grid;
    order: 2;
  }

  .nav-actions {
    order: 3;
  }

  .nav-actions .whatsapp-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 6vw;
    width: min(330px, 88vw);
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    border-radius: 18px;
    background: #fffaf2;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(111,13,18,.05);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero h1 {
    max-width: 920px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

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

  .feature-card:last-child {
    grid-column: 1 / 3;
    min-height: 270px;
  }

  .product-grid,
  .package-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card:last-child,
  .package-card:last-child,
  .review-card:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .package-benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

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

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

  .story-text {
    max-width: 820px;
  }

  .instagram-section {
    grid-template-columns: 1fr;
  }

  .instagram-copy {
    max-width: 620px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }

  .footer-contact {
    grid-column: 1 / 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 24px;
  }

  .footer-contact h4 {
    grid-column: 1 / 4;
  }

  .footer-contact .follow-heading {
    margin-top: 10px;
  }

  .social-links {
    grid-column: 1 / 4;
  }
}

@media (max-width: 760px) {
  :root {
    --page: 90vw;
  }

  html {
    scroll-padding-top: 86px;
  }

  .announcement-bar {
    min-height: 31px;
    padding-inline: 4vw;
    font-size: .68rem;
    text-align: center;
  }

  .navbar {
    min-height: 78px;
    padding: 11px 5vw;
  }

  .logo-main {
    font-size: 1.55rem;
  }

  .logo-rule i {
    width: 18px;
  }

  .logo-rule b {
    font-size: .55rem;
  }

  .cart-btn {
    min-width: 46px;
    gap: 4px;
  }

  .cart-btn svg {
    width: 23px;
    height: 23px;
  }

  .hero,
  .quality-section,
  .section,
  .story-section,
  .instagram-section,
  .footer {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 62px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.7rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-badges {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges > div {
    padding: 0 10px;
  }

  .hero-badges strong,
  .hero-badges small {
    white-space: normal;
  }

  .hero-image-frame {
    border-radius: 32px;
  }

  .product-seal {
    width: 74px;
    height: 74px;
    top: 34px;
    right: 34px;
    font-size: .8rem;
  }

  .quality-section,
  .section,
  .instagram-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .feature-grid,
  .product-grid,
  .package-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child,
  .product-card:last-child,
  .package-card:last-child,
  .review-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .feature-card {
    min-height: auto;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading > p {
    padding-bottom: 0;
  }

  .product-image,
  .package-image {
    height: 280px;
  }

  .shop-trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .shop-trust-row span {
    padding-inline: 0;
    border-right: 0;
  }

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

  .package-benefits > span {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(229,189,105,.18);
  }

  .custom-order {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-order .btn {
    width: 100%;
  }

  .story-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .story-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .story-photo {
    height: 360px;
  }

  .story-card {
    padding: 34px 25px;
  }

  .review-card.featured {
    transform: none;
  }

  .insta-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .insta-grid figure.wide {
    grid-row: 1 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / 3;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(229,189,105,.24);
  }

  .footer-contact {
    grid-column: 1 / 3;
    grid-template-columns: 1fr;
  }

  .footer-contact h4,
  .footer-contact .follow-heading,
  .social-links {
    grid-column: auto;
  }

  .footer-contact > a {
    margin-bottom: 0;
  }

  .policy-dialog {
    padding: 26px 22px;
  }
}

@media (max-width: 480px) {
  .navbar {
    gap: 7px;
  }

  .menu-toggle {
    width: 38px;
  }

  .cart-btn span {
    min-width: 21px;
    height: 21px;
    padding-inline: 5px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-badges > div,
  .hero-badges > div:nth-child(2) {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(229,189,105,.16);
  }

  .hero-badges > div:last-child {
    border-bottom: 0;
  }

  .hero-note {
    width: 94%;
    margin-top: -22px;
  }

  .product-image,
  .package-image {
    height: 245px;
  }

  .story-photo {
    height: 300px;
  }

  .story-card ul {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

  .insta-grid figure.wide {
    grid-row: auto;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Live storefront availability states */
.availability-ribbon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(75, 20, 17, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.unavailable-card {
  opacity: 0.76;
}

.unavailable-card:hover {
  transform: none;
}

.add-cart:disabled,
.card-options select:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.add-cart:disabled:hover {
  transform: none;
  box-shadow: none;
}

.package-card-content small {
  min-height: 22px;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-allergen {
  min-height: 36px;
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.store-update-notice {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 2500;
  width: min(92vw, 520px);
  padding: 13px 18px;
  border: 1px solid rgba(216, 162, 61, 0.55);
  border-radius: 14px;
  color: #fff8e9;
  background: rgba(77, 12, 16, 0.96);
  box-shadow: 0 18px 45px rgba(20, 4, 5, 0.3);
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.store-update-notice.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.comment-form {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 34px auto 0;
  padding: 26px;
  display: grid;
  gap: 15px;
  border: 1px solid rgba(111, 13, 18, 0.1);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: var(--shadow-sm);
}

.comment-form h3 {
  margin-top: 10px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.comment-form label {
  display: grid;
  gap: 7px;
  color: var(--wine);
  font-weight: 800;
  font-size: 0.88rem;
}

.comment-form input,
.comment-form select,
.comment-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(111, 13, 18, 0.18);
  border-radius: 12px;
  background: #fff;
}

.comment-form textarea {
  min-height: 118px;
  resize: vertical;
}

.comment-form .btn {
  width: 100%;
}

.site-report-button {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 2600;
  min-height: 46px;
  padding: 10px 14px 10px 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(229, 189, 105, 0.5);
  border-radius: 999px;
  color: #fff8e9;
  background: rgba(75, 9, 11, 0.96);
  box-shadow: 0 14px 34px rgba(20, 4, 5, 0.26);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-report-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: var(--gold-light);
}

.site-report-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid rgba(201, 151, 53, 0.5);
  border-radius: 24px;
  color: var(--ink);
  background: #fffaf1;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.site-report-dialog::backdrop {
  background: rgba(16, 3, 2, 0.72);
  backdrop-filter: blur(5px);
}

.site-report-dialog h2 {
  margin: 10px 0 8px;
  color: var(--wine);
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  line-height: 1.1;
}

.site-report-dialog > p {
  margin-bottom: 18px;
  color: var(--muted);
}

.site-report-dialog form,
.site-report-dialog label {
  display: grid;
  gap: 10px;
}

.site-report-dialog form {
  gap: 14px;
}

.site-report-dialog label {
  color: var(--wine);
  font-weight: 800;
  font-size: 0.88rem;
}

.site-report-dialog input,
.site-report-dialog textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(111, 13, 18, 0.18);
  border-radius: 12px;
  background: #fff;
}

.site-report-dialog textarea {
  min-height: 132px;
  resize: vertical;
}

.site-report-dialog .btn {
  width: 100%;
}

@media (max-width: 480px) {
  .site-report-button {
    left: 12px;
    bottom: 16px;
    min-height: 42px;
    padding-right: 12px;
    font-size: 0.78rem;
  }
}
