@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Nunito+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --red: #e30613;
  --red-dark: #b90912;
  --yellow: #ffd400;
  --ink: #111111;
  --charcoal: #1b1b1b;
  --paper: #f5f1e8;
  --cream: #fffdf8;
  --muted: #69645d;
  --line: #ded7cb;
  --serif: "Manrope", Arial, sans-serif;
  --sans: "Nunito Sans", Arial, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 55px rgba(34, 25, 18, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 125px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 14px/1.5 var(--sans);
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 20;
  background: white;
  padding: 12px;
}
.skip-link:focus {
  top: 20px;
}
.announcement {
  min-height: 34px;
  padding: 9px 6%;
  background: var(--red);
  color: white;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 12;
}
.announcement span + span::before {
  content: "✦";
  color: var(--yellow);
  margin-right: 18px;
}

.site-header {
  height: 86px;
  padding: 0 5%;
  background: rgba(9, 9, 9, 0.98);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 34px;
  z-index: 11;
  border-bottom: 1px solid #282828;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.logo-link {
  width: 235px;
  height: 68px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  width: 225px;
  height: 85px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 11px;
}
.site-header nav a {
  padding: 12px 0;
  position: relative;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transition: 0.2s ease;
}
.site-header nav a:hover::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}
.tracking-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ddd;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease;
}
.tracking-link span { margin-left: 4px; color: var(--yellow); }
.tracking-link:hover { color: var(--yellow); }
.admin-link {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid #474747;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9c9c9;
  font-size: 17px;
  line-height: 1;
  flex: 0 0 auto;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.admin-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-sizing: border-box;
  transform: translate(-50%, 15%);
}
.admin-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  box-sizing: border-box;
  transform: translate(-50%, -90%);
}
.admin-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.cart-button {
  min-height: 42px;
  border: 1px solid #464646;
  border-radius: 50px;
  padding: 7px 8px 7px 15px;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
}
.cart-button:hover {
  border-color: var(--red);
}
.cart-button b {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 10px;
}

.hero {
  position: relative;
  min-height: 710px;
  height: min(800px, calc(100svh - 120px));
  background:
    radial-gradient(circle at 78% 44%, rgba(227, 6, 19, 0.32), transparent 27%),
    radial-gradient(circle at 63% 82%, rgba(255, 212, 0, 0.12), transparent 22%),
    #090909;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #090909 12%, rgba(9, 9, 9, 0.96) 39%, rgba(9, 9, 9, 0.2) 75%, rgba(9, 9, 9, 0.5));
  z-index: 1;
}
.hero-inner {
  position: absolute;
  z-index: 2;
  inset: 0 max(5%, calc((100% - 1240px) / 2));
  height: 100%;
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(520px, 1.3fr);
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; max-width: 520px; padding: 8px 0; animation: hero-copy-in 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-brand { width: min(500px, 92%); height: 620px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.hero-kicker { margin: 0 0 12px; color: var(--yellow); font-size: 10px; font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; }
.hero h1 { max-width: 560px; margin: 0; color: white; font: 800 clamp(46px, 5.1vw, 76px) / 0.94 var(--serif); letter-spacing: -3.5px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-description { max-width: 395px; margin: 20px 0 25px; color: #d2cbc2; font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 21px; transform: translateY(-28px); }
.hero-actions .button { min-height: 50px; padding-inline: 21px; }
.hero-text-link { color: white; border-bottom: 1px solid #79746d; padding: 7px 0; font-size: 11px; font-weight: 700; transition: color .25s ease, border-color .25s ease; }
.hero-text-link:hover { color: var(--yellow); border-color: var(--yellow); }
.hero-text-link span { margin-left: 6px; color: var(--yellow); }
.hero-product-wrap { position: absolute; right: -7%; bottom: -10%; width: min(900px, 70vw); height: 92%; z-index: 2; animation: hero-product-in 1.15s .2s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-product { position: absolute; z-index: 2; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 32px 24px rgba(0, 0, 0, 0.55)); animation: product-float 5s 1.4s ease-in-out infinite; }
.hero-ring { position: absolute; z-index: 1; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; pointer-events: none; }
.hero-ring-one { width: 72%; aspect-ratio: 1; top: 6%; left: 14%; border-color: rgba(227, 6, 19, .62); animation: ring-spin 24s linear infinite; }
.hero-ring-two { width: 52%; aspect-ratio: 1; top: 19%; left: 24%; border-style: dashed; animation: ring-spin 18s linear infinite reverse; }
.hero-product-caption { display: none; }
.hero-seal { position: absolute; z-index: 6; top: 28px; right: 1%; display: flex; align-items: center; gap: 12px; padding: 9px 15px 9px 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 62px; background: rgba(9,9,9,.72); box-shadow: 0 12px 32px rgba(0,0,0,.24); color: #e9e0d8; backdrop-filter: blur(8px); animation: seal-in .75s .95s cubic-bezier(.22,1,.36,1) both; }
.hero-seal img { width: 82px; height: 82px; flex: 0 0 auto; object-fit: contain; animation: seal-pulse 4s 1.8s ease-in-out infinite; }
.hero-seal p { margin: 0; font-size: 8px; line-height: 1.5; text-transform: uppercase; letter-spacing: .75px; }
.hero-seal strong { display: block; max-width: 120px; color: var(--yellow); font-size: 9px; }
.hero-side-note { position: absolute; z-index: 4; left: max(2.2%, calc((100% - 1360px) / 2)); bottom: 31px; margin: 0; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 700; letter-spacing: 1.45px; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-glow { position: absolute; z-index: 0; right: 14%; bottom: -25%; width: 48vw; height: 48vw; border-radius: 50%; background: rgba(227, 6, 19, .15); filter: blur(35px); animation: glow-breathe 5s ease-in-out infinite; }
.hero-grain { position: absolute; z-index: 1; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.75) .5px, transparent .7px); background-size: 5px 5px; mix-blend-mode: soft-light; pointer-events: none;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.eyebrow-red {
  color: var(--red);
}
.button {
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}
.button-primary {
  background: var(--red);
  color: white;
}
.button-primary:hover {
  background: var(--red-dark);
}
.button-ghost {
  border-color: #777;
  color: white;
}
.full-button {
  width: 100%;
}

.trust-strip {
  max-width: 1120px;
  margin: -1px auto 0;
  padding: 25px 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.trust-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 5px 25px;
  border-right: 1px solid var(--line);
}
.trust-strip article:last-child {
  border: 0;
}
.trust-strip article > span {
  color: var(--red);
  font: italic 22px var(--serif);
}
.trust-strip b,
.trust-strip small {
  display: block;
}
.trust-strip b {
  font-size: 12px;
}
.trust-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: 110px 5%;
}
h2 {
  margin: 0 0 23px;
  font: 600 clamp(35px, 4.2vw, 57px)/1.06 var(--serif);
  letter-spacing: -2.5px;
}
.story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 9%;
  align-items: center;
}
.story-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.85;
}
.story-copy .lead {
  color: var(--ink) !important;
  font-size: 16px;
}
.story-signature {
  display: flex;
  gap: 26px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.story-card {
  min-height: 390px;
  padding: 58px 45px;
  border-radius: var(--radius);
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-card blockquote {
  margin: 0;
  max-width: 430px;
  font: 600 clamp(34px, 4vw, 53px)/1.08 var(--serif);
  letter-spacing: -2.4px;
  position: relative;
  z-index: 1;
}
.story-card p {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  font-size: 12px;
}
.story-pattern {
  width: 290px;
  height: 290px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  right: -80px;
  bottom: -100px;
}
.story-pattern::before,
.story-pattern::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.story-pattern::after {
  inset: 54px;
}

.origin-section {
  background: var(--red);
  color: white;
  padding: 95px 5%;
}
.featured-section {
  background: transparent;
}
.featured-heading {
  margin-bottom: 34px;
}
.featured-grid .product-card {
  background: transparent;
  box-shadow: none;
  animation: card-arrival 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.featured-grid .product-card:hover {
  box-shadow: none;
}
.featured-grid .product-content {
  padding-inline: 0;
}
.featured-grid .product-card:nth-child(2) {
  animation-delay: 70ms;
}
.featured-grid .product-card:nth-child(3) {
  animation-delay: 140ms;
}
.featured-grid .product-card:nth-child(4) {
  animation-delay: 210ms;
}
.origin-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 6%;
  align-items: center;
}
.origin-visual {
  padding: 18px;
}
.origin-visual img {
  max-height: 340px;
  margin: auto;
  filter: drop-shadow(0 25px 30px rgba(80, 0, 0, 0.25));
}
.origin-copy .eyebrow {
  color: var(--yellow);
}
.origin-copy p:not(.eyebrow) {
  max-width: 620px;
  line-height: 1.85;
}
.origin-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 28px 0;
}
.origin-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.origin-facts b {
  color: var(--yellow);
  font: 600 28px var(--serif);
}
.origin-facts span {
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  gap: 35px;
  padding: 10px 0;
  border-bottom: 1px solid white;
  font-size: 11px;
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading > p {
  max-width: 330px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.catalog-toolbar {
  margin: 32px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: transparent;
  font-size: 10px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}
.filter:hover,
.filter.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
#product-count {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}
.catalog-status:empty {
  display: none;
}
.catalog-status {
  color: var(--red);
  font-size: 11px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(32, 24, 17, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #dfd8cc;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-image img.preview-changing {
  animation: product-preview-change .72s cubic-bezier(.22, 1, .36, 1) both;
}
.product-detail-image img.detail-preview-changing {
  animation: detail-preview-change .8s cubic-bezier(.22, 1, .36, 1) both;
}
.product-card:hover .product-image img {
  transform: scale(1.04);
}
.product-badge,
.sold-out {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  animation: badge-attention 2.7s ease-in-out infinite;
}
.sold-out {
  left: auto;
  right: 12px;
  background: var(--yellow);
  color: var(--ink);
}
.product-image .product-badge-image {
  width: 64px;
  height: 64px;
  padding: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.24));
  animation: none;
  transition: none;
}
.product-content {
  padding: 19px;
}
.product-meta {
  margin: 0 0 7px !important;
  color: var(--red) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product-content h3 {
  margin: 0 0 8px;
  font: 600 21px/1.15 var(--serif);
}
.product-content > p {
  min-height: 37px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card-variant {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.card-variant select {
  width: 100%;
  margin-top: 5px;
  padding: 8px 26px 8px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
  color: var(--ink);
  font: 600 10px var(--sans);
  text-transform: none;
}
.product-footer {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-footer b {
  font-size: 13px;
}
.product-footer button {
  border: 0;
  border-radius: 50px;
  padding: 10px 12px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
}
.product-footer button span {
  color: var(--yellow);
  margin-left: 5px;
}
.details-link {
  margin-top: 12px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 10px;
}
.details-link:hover {
  color: var(--red);
  border-color: var(--red);
}
.inline-quantity {
  min-width: 94px;
  border: 1px solid var(--line);
  border-radius: 50px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  overflow: hidden;
  background: white;
}
.product-footer .inline-quantity button,
.inline-quantity button {
  width: 30px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}
.inline-quantity span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}
.inline-quantity.large {
  min-width: 120px;
  grid-template-columns: 38px 1fr 38px;
}

.delivery-section {
  border-top: 1px solid var(--line);
}
.delivery-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.delivery-heading > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}
.map-card {
  min-height: 600px;
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.map-card #delivery-map {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  background: #e8e3da;
}
.map-legend {
  min-height: 65px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 9px;
}
.map-legend > span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.covered-dot {
  background: var(--red);
}
.outside-dot {
  width: 12px !important;
  height: 12px !important;
  border: 2px solid var(--yellow);
  background: #2b2b2b;
}
.map-legend small {
  margin-left: auto;
  max-width: 260px;
  line-height: 1.4;
  text-align: right;
}
.coverage-checker {
  min-height: 600px;
  padding: 38px 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: 12px 12px 0 var(--red);
}
.delivery-icon {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 30px;
}
.coverage-checker h3 {
  margin: 0 0 9px;
  font: 700 27px/1.15 var(--serif);
  letter-spacing: -1px;
}
.coverage-checker > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: #aaa;
  font-size: 11px;
  line-height: 1.6;
}
.coverage-checker label {
  color: #ddd;
  font-size: 10px;
}
.coverage-checker select {
  margin: 8px 0 18px;
  border-color: #444;
  background: #242424;
  color: white;
}
.coverage-result {
  min-height: 94px;
  padding: 16px;
  border: 1px solid #383838;
  border-radius: 10px;
  background: #181818;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
.coverage-result b,
.coverage-result span {
  display: block;
}
.coverage-result b {
  font-size: 12px;
}
.coverage-result span {
  color: #aaa;
  font-size: 10px;
}
.coverage-result.has-coverage {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-2px);
}
.coverage-result.has-coverage b {
  color: #7ee7a4;
}
.coverage-result.no-coverage {
  border-color: #ee4d56;
  background: rgba(227, 6, 19, 0.1);
}
.coverage-result.no-coverage b {
  color: #ff8c92;
}
.shipping-rate-card {
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 212, 0, 0.42);
  border-radius: 8px;
  background: rgba(255, 212, 0, 0.08);
}
.shipping-rate-card > p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.shipping-rate-card div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
}
.shipping-rate-card div + div { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.shipping-rate-card span { color: #d7d2ca; font-size: 11px; }
.shipping-rate-card b { color: white; font: 800 16px var(--serif); }
.delivery-promise {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #383838;
}
.delivery-promise b,
.delivery-promise span {
  display: block;
}
.delivery-promise b {
  color: var(--yellow);
  font-size: 12px;
}
.delivery-promise span {
  margin-top: 4px;
  color: #aaa;
  font-size: 9px;
}
.map-fallback {
  height: 100%;
  margin: 0;
  padding: 40px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}
.leaflet-popup-content {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
}
.leaflet-popup-content b {
  font-family: var(--serif);
  font-size: 13px;
}

.tracking-dialog { width: min(1000px, calc(100% - 24px)); max-height: calc(100dvh - 32px); padding: 0; border-radius: 20px; overflow: auto; }
.tracking-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.94); }
.tracking-inner {
  max-width: 1120px;
  margin: auto;
  padding: 48px;
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 20px 50px rgba(35, 25, 18, .1);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.tracking-copy h2 { margin-bottom: 13px; font-size: clamp(32px, 3.5vw, 50px); }
.tracking-copy > p:not(.eyebrow) { max-width: 410px; color: var(--muted); line-height: 1.7; }
.tracking-form label { margin: 0 0 8px; }
.tracking-input-row { display: flex; gap: 10px; }
.tracking-input-row input { margin: 0; min-width: 0; text-transform: uppercase; font-weight: 800; letter-spacing: .7px; }
.tracking-input-row .button { flex: 0 0 auto; min-height: 48px; }
.tracking-error { min-height: 18px; margin: 8px 0 0; color: var(--red); font-size: 10px; }
.tracking-result { grid-column: 1 / -1; }
.tracking-result:empty { display: none; }
.tracking-card { padding-top: 28px; border-top: 1px solid var(--line); }
.tracking-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.tracking-card-header p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.tracking-code-label { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.tracking-current { display: inline-flex; padding: 8px 12px; border-radius: 50px; background: rgba(227,6,19,.1); color: var(--red); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.tracking-steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.tracking-step { position: relative; min-height: 82px; padding: 30px 8px 0 0; color: #a7a099; font-size: 9px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.tracking-step::before { content: ""; position: absolute; top: 7px; left: 0; width: 15px; height: 15px; border: 3px solid #d7d0c7; border-radius: 50%; background: #fffdf8; box-sizing: border-box; z-index: 1; }
.tracking-step:not(:last-child)::after { content: ""; position: absolute; top: 13px; left: 14px; right: 0; height: 2px; background: #d7d0c7; }
.tracking-step.done { color: var(--ink); }
.tracking-step.done::before { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 4px rgba(227,6,19,.1); }
.tracking-step.done:not(:last-child)::after { background: var(--red); }
.tracking-step.current { color: var(--red); }
.tracking-step.current::before { border-color: var(--red); background: var(--yellow); box-shadow: 0 0 0 5px rgba(227,6,19,.12); }
.tracking-meta { margin-top: 15px; color: var(--muted); font-size: 10px; }
.tracking-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.tracking-details div { min-height: 60px; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.52); }
.tracking-details small { display: block; margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .5px; }
.tracking-details b { display: block; font-size: 11px; line-height: 1.35; }
.tracking-delivery-note { margin: 12px 0 0; padding: 11px 12px; border-left: 3px solid var(--yellow); background: rgba(244, 198, 34, .12); color: var(--muted); font-size: 11px; line-height: 1.5; }
.tracking-delivery-note b { display: block; margin-bottom: 3px; color: var(--ink); }
.tracking-external-link { display: inline-block; margin-top: 13px; color: var(--red); font-size: 10px; font-weight: 800; text-decoration: none; }
.tracking-external-link:hover { text-decoration: underline; }

.contact-section {
  padding: 80px max(6%, calc((100% - 1120px) / 2));
  background: var(--yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.contact-section h2 {
  max-width: 520px;
}
.contact-section > div > p:not(.eyebrow) {
  color: #504600;
}
.contact-options {
  background: rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  padding: 8px 25px;
}
.contact-options > * {
  min-height: 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.contact-options > *:last-child {
  border: 0;
}
.contact-options span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-options b {
  font-size: 12px;
}
.contact-options i {
  font-style: normal;
  font-size: 20px;
}

.site-footer {
  padding: 0;
  background: #090909;
  color: white;
}
.footer-main {
  max-width: 1240px;
  margin: auto;
  padding: 60px 5% 45px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  align-items: start;
  gap: 55px;
}
.footer-brand img {
  width: 255px;
}
.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #999;
  font-size: 11px;
  line-height: 1.7;
}
.footer-column h3 {
  margin: 6px 0 18px;
  color: white;
  font: 700 14px var(--serif);
}
.footer-column a,
.footer-column > span,
.footer-column button {
  display: block;
  margin: 10px 0;
  padding: 0;
  border: 0;
  background: none;
  color: #999;
  text-align: left;
  font-size: 10px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-column a:hover,
.footer-column button:hover {
  color: var(--yellow);
  transform: translateX(3px);
}
.footer-bottom {
  min-height: 72px;
  padding: 16px 5%;
  border-top: 1px solid #272727;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-bottom small {
  color: #aaa;
  font-size: 9px;
}
.footer-credit {
  padding: 0 5% 18px;
  color: #777;
  text-align: center;
  font-size: 9px;
}
.footer-credit a {
  color: #ddd;
  font-weight: 700;
}
.footer-credit a:hover {
  color: var(--yellow);
}
.footer-legal-links {
  padding: 14px 5%;
  border-top: 1px solid #272727;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-legal-links button {
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: #999;
  font: 600 9px var(--sans);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.footer-legal-links button:hover { color: var(--yellow); }
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.payment-methods span {
  margin-right: 5px;
  color: #888;
  font-size: 9px;
  text-transform: uppercase;
}
.payment-methods .payment-cards {
  width: 168px;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
}
.whatsapp-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(13, 101, 48, 0.35);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  animation: whatsapp-arrival 0.7s 0.8s both;
}
.whatsapp-button:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 15px 35px rgba(13, 101, 48, 0.45);
}
.whatsapp-button img {
  width: 29px;
  height: 29px;
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  bottom: 7px;
  width: max-content;
  max-width: 210px;
  padding: 9px 12px;
  border-radius: 9px;
  background: white;
  color: #1d1d1d;
  box-shadow: 0 10px 24px rgba(0,0,0,.17);
  font: 700 10px/1.3 var(--sans);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) scale(.96);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.whatsapp-tooltip::after { content: ""; position: absolute; right: -5px; bottom: 15px; width: 10px; height: 10px; background: white; transform: rotate(45deg); }
.whatsapp-tooltip.visible { opacity: 1; transform: translateX(0) scale(1); }

dialog {
  border: 0;
  padding: 28px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 15px 80px rgba(0, 0, 0, 0.35);
}
dialog[open] {
  animation: dialog-open 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
dialog.closing {
  pointer-events: none;
  animation: dialog-close 0.24s ease both;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
dialog[open]::backdrop {
  animation: backdrop-open 0.3s ease both;
}
dialog.closing::backdrop {
  animation: backdrop-close 0.24s ease both;
}
.drawer {
  width: 500px;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 0 0 auto;
}
.drawer[open] {
  animation-name: drawer-open;
}
.drawer.closing {
  animation-name: drawer-close;
}
.checkout-dialog {
  width: 590px;
  max-width: calc(100% - 20px);
  border-radius: var(--radius);
}
.legal-dialog {
  width: min(710px, calc(100% - 24px));
  max-height: calc(100dvh - 32px);
  padding: 32px;
  border-radius: var(--radius);
  overflow: auto;
}
.legal-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.legal-dialog-header .eyebrow { margin-bottom: 7px; }
.legal-dialog-header h2 { margin: 0; font-size: 31px; line-height: 1.08; }
.legal-dialog-header .icon-button { flex: 0 0 auto; }
.legal-dialog-content { padding-top: 20px; color: #504b43; font-size: 13px; line-height: 1.7; }
.legal-dialog-content > p { margin: 0 0 21px; color: var(--ink); font-size: 14px; font-weight: 700; }
.legal-dialog-content section + section { margin-top: 19px; }
.legal-dialog-content h3 { margin: 0 0 5px; color: var(--red-dark); font: 800 14px var(--serif); }
.legal-dialog-content section p { margin: 0; }
.legal-contact-link { color: var(--red-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-contact-link:hover { color: var(--red); }
.product-detail-dialog {
  width: min(900px, calc(100% - 24px));
  max-height: calc(100dvh - 30px);
  padding: 0;
  border-radius: var(--radius);
  overflow: auto;
}
.product-detail-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.product-detail-media {
  min-width: 0;
}
.product-detail-image {
  min-height: 520px;
  background: #ded8cf;
  position: relative;
  overflow: hidden;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-image .detail-badge-image {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.3));
}
.product-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  background: #ebe5dc;
}
.product-thumbnails button {
  flex: 0 0 64px;
  height: 64px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  background: transparent;
}
.product-thumbnails button.active {
  border-color: var(--red);
}
.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-copy {
  padding: 54px 42px 38px;
}
.product-detail-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}
.product-detail-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.detail-notes {
  margin-top: 20px;
  padding: 16px;
  border-radius: 9px;
  background: #f0ebe2;
}
.detail-notes h3 {
  margin: 0 0 6px;
  font-size: 12px;
}
.detail-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.detail-facts {
  margin: 22px 0;
  padding: 15px 0;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.detail-facts small,
.detail-facts b {
  display: block;
}
.detail-facts small {
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}
.detail-facts b {
  margin-top: 4px;
  font-size: 11px;
}
.detail-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.detail-buy strong {
  font-size: 24px;
}
.dialog-header {
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.dialog-header h2 {
  margin: 0;
  font-size: 34px;
}
.icon-button {
  border: 0;
  background: transparent;
  font-size: 29px;
  line-height: 1;
}
.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
}
.cart-item img {
  width: 64px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-item h3 {
  margin: 0 0 5px;
  font: 600 18px var(--serif);
}
.cart-item small {
  color: var(--muted);
  font-size: 10px;
}
.quantity {
  width: max-content;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.quantity button {
  width: 28px;
  height: 27px;
  border: 0;
  background: transparent;
}
.quantity span {
  min-width: 20px;
  text-align: center;
  font-size: 10px;
}
.summary-line {
  margin: 17px 0;
  display: flex;
  justify-content: space-between;
}
.summary-line small {
  color: var(--muted);
}
.fine-print,
.checkout-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.empty-cart {
  padding: 70px 20px;
  text-align: center;
}
.empty-cart > span {
  color: var(--red);
  font-size: 40px;
}
.empty-cart h3 {
  font: 600 27px var(--serif);
}
.empty-cart p {
  color: var(--muted);
}
.empty-cart button {
  border: 0;
  border-bottom: 1px solid var(--red);
  background: transparent;
  padding: 8px 0;
  font-size: 11px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.payment-info {
  margin: 22px 0;
  padding: 17px;
  border: 1px dashed rgba(227, 6, 19, .5);
  border-radius: 10px;
  background: rgba(227, 6, 19, .035);
}
.payment-info legend {
  padding: 0 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.payment-info legend span { margin-left: 6px; color: var(--muted); font-size: 8px; }
.payment-info > p { margin: 0 0 10px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.payment-info label { margin-block: 8px 0; }
label {
  display: block;
  margin: 14px 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  text-transform: none;
  resize: vertical;
}
.checkout-shipping-rates {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid rgba(227, 6, 19, 0.25);
  border-radius: 8px;
  background: rgba(227, 6, 19, 0.045);
}
.checkout-shipping-rates > span {
  display: block;
  margin-bottom: 7px;
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.checkout-shipping-rates div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  color: var(--muted);
  font-size: 11px;
}
.checkout-shipping-rates b { color: var(--ink); }
.checkout-total {
  margin: 20px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 17px;
}
.form-error {
  min-height: 20px;
  color: var(--red);
  font-size: 11px;
}
.order-success {
  padding: 35px 15px;
  text-align: center;
}
.order-success > span {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e5f2e6;
  color: #1d7830;
  display: grid;
  place-items: center;
  font-size: 28px;
}
.order-success h2 {
  font-size: 37px;
}
.order-success p {
  color: var(--muted);
  line-height: 1.7;
}
.order-success > b {
  display: block;
  margin: 18px 0;
}
.order-success .order-tracking-code {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 10px 15px;
  border: 1px dashed var(--red);
  border-radius: 8px;
  color: var(--red);
  font-size: 15px;
  letter-spacing: 1px;
}
.product-footer { flex-wrap: wrap; }
.purchase-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; width: 100%; }
.purchase-controls .inline-quantity { flex: 0 0 100px; }
.purchase-controls .add-to-cart { flex: 1 1 140px; min-height: 42px; background: var(--red); color: white; }
.purchase-controls button:disabled, .quantity button:disabled { opacity: .45; cursor: not-allowed; }
.remove-cart-item { display: block; margin-top: 10px; padding: 6px 0; border: 0; background: transparent; color: var(--red); text-decoration: underline; font: inherit; font-size: 12px; }
.detail-buy { flex-wrap: wrap; }
.payment-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.payment-summary { margin-block: 20px; text-align: left; }
.payment-summary div { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
#payment-retry { margin-top: 15px; }
#payment-retry[hidden] { display: none; }
.payment-dialog[data-state="pending"] .order-success > span { background: #fff2cc; color: #805600; }
.payment-dialog[data-state="failed"] .order-success > span { background: #ffe5e5; color: #ac1824; }
.payment-dialog .order-tracking-code { overflow-wrap: anywhere; user-select: all; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 20;
  max-width: 90%;
  padding: 14px 20px;
  border-radius: 50px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 15px);
  transition: 0.2s ease;
  font-size: 11px;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Refuerzo visual de toda la experiencia */
body {
  background:
    radial-gradient(circle at 8% 16%, rgba(227, 6, 19, .035), transparent 20%),
    var(--paper);
}
.announcement {
  background: linear-gradient(90deg, #bd0710, var(--red) 48%, #bd0710);
  overflow: hidden;
}
.site-header { backdrop-filter: blur(14px); }
.site-header nav a { font-weight: 700; letter-spacing: .2px; }
.trust-strip {
  position: relative;
  z-index: 7;
  max-width: 1160px;
  margin: -24px auto 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 16px;
  background: rgba(255,253,248,.94);
  box-shadow: 0 18px 40px rgba(35,21,15,.13);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.trust-strip article {
  position: relative;
  z-index: 1;
  justify-content: flex-start;
  padding: 13px 24px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.trust-strip article:hover { transform: translateY(-3px); background: #fff; border-radius: 10px; }
.trust-strip article > span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(227,6,19,.09); font: 700 10px var(--sans); }
.trust-strip b { letter-spacing: -.15px; }
.section { padding-block: 125px; }
.story { position: relative; }
.story-copy, .story-card { position: relative; z-index: 1; }
.section-watermark {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: 4%;
  color: rgba(17,17,17,.075);
  font: 800 clamp(74px, 13vw, 185px)/1 var(--serif);
  letter-spacing: -10px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.section-watermark-light { color: rgba(255,255,255,.075); }
.story-copy .lead { font-size: 18px; line-height: 1.65; letter-spacing: -.25px; }
.story-signature span { display: inline-flex; align-items: center; gap: 8px; }
.story-signature span::before { content: "✦"; color: var(--yellow); font-size: 13px; text-shadow: 0 0 0 var(--red); }
.story-card { border-radius: 20px; background: linear-gradient(135deg, #ffd400, #ffbd00); box-shadow: 14px 14px 0 var(--red), 0 24px 50px rgba(62,35,0,.18); transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease; }
.story-card:hover { transform: translate(-4px,-5px); box-shadow: 20px 20px 0 var(--red), 0 28px 55px rgba(62,35,0,.22); }
.story-card-label { position: relative; z-index: 1; display: inline-block; margin-bottom: 26px; padding: 7px 10px; border: 1px solid rgba(0,0,0,.25); border-radius: 50px; font-size: 8px; font-weight: 800; letter-spacing: 1px; }
.story-pattern { animation: pattern-drift 18s linear infinite; }
.featured-section { position: relative; max-width: none; padding-inline: max(5%, calc((100% - 1120px) / 2)); background: #151311; color: white; overflow: hidden; }
.featured-section::before { content: attr(data-watermark); position: absolute; right: 4%; top: 40px; color: rgba(255,255,255,.035); font: 800 clamp(100px,16vw,245px)/1 var(--serif); letter-spacing: -14px; pointer-events: none; }
.featured-section .eyebrow-red { color: var(--yellow); }
.featured-section .section-heading > p { color: #c3bcb4; }
.featured-section .catalog-status { color: #f4d766; }
.featured-grid .product-card { position: relative; padding: 11px; border: 1px solid transparent; border-radius: 16px; background: rgba(255,255,255,.04); transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, border-color .35s ease; }
.featured-grid .product-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.featured-grid .product-image { border-radius: 10px; overflow: hidden; }
.featured-grid .product-content { padding: 17px 7px 7px; }
.featured-grid .product-meta { color: var(--yellow) !important; }
.featured-grid .product-content > p { color: #c7c1ba; }
.featured-grid .card-variant { color: #d8d0c6; }
.featured-grid .card-variant select { background: #282522; color: white; border-color: #4a4540; }
.featured-grid .details-link { color: #d1c8c0; border-color: #5a554e; }
.featured-grid .inline-quantity span { color: var(--ink); }
.products-section { position: relative; max-width: none; margin: 0; padding-inline: max(5%, calc((100% - 1120px) / 2)); background: #f1ede5; }
.products-section::before { content: "ELIGE TU MOMENTO"; display: block; position: relative; z-index: 1; margin-bottom: 12px; color: rgba(227,6,19,.55); font-size: 9px; font-weight: 800; letter-spacing: 2px; }
.products-section::after { content: attr(data-watermark); position: absolute; top: 52px; right: 4%; color: rgba(17,17,17,.075); font: 800 clamp(80px,14vw,200px)/1 var(--serif); letter-spacing: -10px; pointer-events: none; }
.product-card { padding: 9px; border: 1px solid rgba(159,145,128,.12); border-radius: 15px; background: #fffdf8; transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(227,6,19,.26); box-shadow: 0 18px 35px rgba(47,31,20,.12); }
.product-image { border-radius: 10px; overflow: hidden; }
.story { position: relative; max-width: none; margin: 0; padding-inline: max(5%, calc((100% - 1120px) / 2)); background: #fffdf8; border-top: 1px solid #e4ddd1; border-bottom: 1px solid #e4ddd1; }
.story-copy > p:not(.eyebrow) { color: #625c53; }
.origin-section { position: relative; overflow: hidden; background: linear-gradient(125deg, #a80811, var(--red) 50%, #d0000e); }
.origin-section::before, .origin-section::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.origin-section::before { width: 700px; height: 700px; left: -330px; top: -420px; }
.origin-section::after { width: 500px; height: 500px; right: -240px; bottom: -280px; }
.origin-inner { position: relative; z-index: 1; }
.origin-visual { position: relative; width: 100%; max-width: 580px; margin: auto; padding: 0; }
.origin-visual::before { display: none; }
.origin-visual img { position: relative; z-index: 1; width: 100%; max-height: none; aspect-ratio: 16 / 9; border: 1px solid rgba(255, 212, 0, 0.72); border-radius: 8px; object-fit: cover; box-shadow: 12px 12px 0 rgba(255, 212, 0, 0.82), 0 24px 42px rgba(64, 0, 5, 0.32); animation: none; }
.origin-copy h2 em { color: var(--yellow); font-style: normal; }
.origin-copy p:not(.eyebrow) { color: #fff3ef; }
.origin-facts div { transition: border-color .25s ease, transform .25s ease; }
.origin-facts div:hover { border-color: var(--yellow); transform: translateX(5px); }
.text-link { transition: color .25s ease, gap .25s ease; }
.text-link:hover { color: var(--yellow); gap: 45px; border-color: var(--yellow); }
.delivery-section { max-width: none; border-top: 0; position: relative; padding-inline: max(5%, calc((100% - 1240px) / 2 + 62px)); background: linear-gradient(125deg, #171411, #25201b 52%, #151311); color: white; overflow: hidden; }
.delivery-section::before { content: ""; position: absolute; top: 0; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,212,0,.55), transparent); }
.delivery-section::after { content: attr(data-watermark); position: absolute; z-index: 0; right: 4%; top: 52px; color: rgba(255,212,0,.12); font: 800 clamp(72px,12vw,175px)/1 var(--serif); letter-spacing: -9px; pointer-events: none; }
.delivery-heading, .delivery-layout { position: relative; z-index: 1; }
.delivery-section .delivery-heading .eyebrow-red { color: var(--yellow); }
.delivery-section .delivery-heading > p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.map-card { border: 1px solid rgba(255,255,255,.8); box-shadow: 0 20px 45px rgba(75,0,6,.25); }
.coverage-checker { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 12px 12px 0 var(--yellow), 0 20px 45px rgba(75,0,6,.3); }
.coverage-checker > * { position: relative; z-index: 1; }
.contact-section { position: relative; overflow: hidden; background: linear-gradient(115deg, #ffd400, #ffc400); }
.contact-section::after { content: attr(data-watermark); position: absolute; right: 4%; bottom: 35px; color: rgba(227,6,19,.12); font: 800 clamp(65px,11vw,170px)/1 var(--serif); letter-spacing: -8px; pointer-events: none; }
.contact-section > * { position: relative; z-index: 1; }

/* Las palabras de fondo comparten la misma línea visual y se mantienen completas. */
.section-watermark,
.featured-section::before,
.products-section::after,
.delivery-section::after,
.contact-section::after {
  top: 52px;
  left: auto;
  right: calc((100% - 100vw) / 2 + 4vw);
  bottom: auto;
  width: 92vw;
  text-align: right;
}

.featured-section::before,
.products-section::after,
.delivery-section::after,
.contact-section::after {
  font-size: clamp(64px, 10vw, 150px);
  letter-spacing: -7px;
  white-space: nowrap;
}

/* Igualar los rótulos restantes a la referencia que funciona: FAVORITOS. */
.products-section::after,
.delivery-section::after {
  top: 40px;
  right: calc((100% - 100vw) / 2 + 4vw);
  left: auto;
  bottom: auto;
  width: 92vw;
  text-align: right;
}

/* El cierre conserva la alineación derecha, pero descansa abajo. */
.contact-section::after {
  top: auto;
  right: 4vw;
  bottom: 35px;
  left: auto;
  width: 92vw;
  text-align: right;
}

/* En rojo, el blanco necesitaba un poco más de contraste para no perderse. */
.origin-section .section-watermark-light {
  color: rgba(255, 255, 255, 0.14);
}
.contact-options { padding: 8px 25px; border: 1px solid rgba(0,0,0,.09); box-shadow: 0 14px 30px rgba(98,72,0,.12); }
.contact-options > * { transition: padding .25s ease, background .25s ease; }
.contact-options > a:hover { padding-inline: 8px; background: rgba(255,255,255,.35); }
.site-footer { position: relative; overflow: hidden; }
.footer-main, .footer-bottom, .footer-credit { position: relative; z-index: 1; }
.footer-main { padding-top: 80px; }
.footer-brand img { filter: drop-shadow(0 8px 18px rgba(227,6,19,.16)); }
.footer-column h3 { color: var(--yellow); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; }
@keyframes pattern-drift { to { transform: rotate(360deg); } }
@keyframes origin-float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-11px) rotate(2deg); } }
@keyframes product-preview-change {
  from { opacity: 0; transform: scale(1.035); filter: saturate(.86); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes detail-preview-change {
  from { opacity: 0; transform: scale(1.03); filter: saturate(.86); }
  to { opacity: 1; transform: scale(1); filter: saturate(1); }
}
@keyframes badge-attention {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(255,212,0,0); }
  50% { transform: translateY(-3px); box-shadow: 0 5px 14px rgba(126,91,0,.22); }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-product-in {
  from { opacity: 0; transform: translate(70px, 35px) scale(.93); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes product-float {
  0%, 100% { transform: translateY(0) rotate(-.4deg); }
  50% { transform: translateY(-12px) rotate(.4deg); }
}
@keyframes ring-spin { to { transform: rotate(360deg); } }
@keyframes seal-in {
  from { opacity: 0; transform: translateY(18px) scale(.8) rotate(-12deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
@keyframes seal-pulse {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.045); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: .7; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes card-arrival {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes whatsapp-arrival {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes drawer-open {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes drawer-close {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes dialog-open {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dialog-close {
  to {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}
@keyframes backdrop-open {
  from {
    opacity: 0;
  }
}
@keyframes backdrop-close {
  to {
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .announcement {
    font-size: 8px;
  }
  .announcement span:last-child {
    display: none;
  }
  .site-header {
    height: 74px;
    padding: 0 4%;
  }
  .logo-link {
    width: 190px;
    height: 58px;
  }
  .logo-link img {
    width: 185px;
  }
  .admin-link {
    width: 32px;
    height: 32px;
  }
  .tracking-link {
    font-size: 9px;
  }
  .tracking-link span {
    display: none;
  }
  .cart-button span {
    display: none;
  }
  .cart-button {
    padding: 6px;
    border: 0;
  }
  .hero {
    height: min(760px, calc(100svh - 108px));
    min-height: 610px;
  }
  .hero-inner {
    inset: 0 6%;
    display: block;
  }
  .hero-copy { max-width: 430px; padding: 34px 0 28px; }
  .hero-actions { transform: none; }
  .hero-product-wrap { right: -18%; width: min(790px, 86vw); height: 72%; bottom: -4%; }
  .hero-seal { top: 20px; right: 0; }
  .hero-side-note { display: none; }
  .hero-brand { width: 300px; height: 380px; }
  .hero h1 { font-size: clamp(43px, 7vw, 62px); }
  .hero-description { font-size: 12px; max-width: 350px; }
  .hero::before { background: linear-gradient(105deg, #090909 12%, rgba(9,9,9,.9) 48%, rgba(9,9,9,.22)); }
}

@media (max-width: 600px) {
  .hero {
    height: 690px;
    min-height: 0;
  }
  .hero-inner { inset: 0 5%; }
  .hero-copy { padding-top: 24px; }
  .hero-brand { width: 252px; height: 316px; margin-bottom: 18px; }
  .hero-kicker { margin-bottom: 8px; font-size: 8px; }
  .hero h1 { font-size: clamp(41px, 12vw, 55px); line-height: .96; letter-spacing: -2.6px; }
  .hero-description { max-width: 284px; margin: 13px 0 18px; font-size: 11px; line-height: 1.55; }
  .hero-actions { gap: 14px; }
  .hero-actions .button { min-height: 43px; padding: 10px 14px; font-size: 10px; }
  .hero-text-link { font-size: 9px; }
  .hero-product-wrap { right: -25%; bottom: -4%; width: 133%; height: 54%; }
  .hero-product-caption { right: 21%; bottom: 16%; font-size: 7px; }
  .hero-seal { top: 12px; right: 0; gap: 0; padding: 5px; border-radius: 50%; }
  .hero-seal img { width: 56px; height: 56px; }
  .hero-seal p { display: none; }
  .hero-ring-one { width: 68%; top: 13%; }
  .hero-ring-two { width: 47%; top: 25%; }
}

@media (max-width: 760px) {
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 20px 7%;
  }
  .trust-strip article {
    justify-content: start;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .story,
  .origin-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .tracking-inner { grid-template-columns: 1fr; gap: 20px; padding: 32px 26px; }
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-image {
    min-height: 340px;
    height: 42vh;
  }
  .product-detail-image .detail-badge-image {
    top: 14px;
    left: 14px;
    width: 112px;
    height: 112px;
  }
  .product-detail-copy {
    padding: 32px 24px;
  }
  .delivery-layout {
    grid-template-columns: 1fr;
  }
  .map-card,
  .coverage-checker {
    min-height: 0;
  }
  .map-card #delivery-map {
    height: 400px;
    flex: 0 0 400px;
  }
  .story-card {
    min-height: 320px;
    padding: 40px 30px;
  }
  .origin-visual img { max-height: none; }
  .section-heading {
    display: block;
  }
  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 11px;
  }
  .product-image {
    height: 205px;
  }
  .product-content {
    padding: 14px;
  }
  .product-content h3 {
    font-size: 18px;
  }
  .product-content > p {
    min-height: 52px;
  }
  .product-footer {
    align-items: center;
  }
  .product-footer > b {
    font-size: 11px;
  }
  .contact-section {
    padding: 65px 6%;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .tracking-link {
    display: none;
  }
  .announcement span:last-child {
    display: none;
  }
  .section {
    padding: 75px 5%;
  }
  .tracking-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .tracking-inner { padding: 26px 18px; }
  .tracking-input-row { flex-direction: column; }
  .tracking-input-row .button { width: 100%; }
  .tracking-card-header { flex-direction: column; gap: 10px; }
  .tracking-steps { grid-template-columns: 1fr 1fr; row-gap: 12px; }
  .tracking-step { min-height: 62px; padding-top: 25px; }
  .tracking-step:not(:last-child)::after { display: none; }
  .tracking-details { grid-template-columns: 1fr; }
  h2 {
    font-size: 38px;
  }
  .origin-section {
    padding: 70px 5%;
  }
  .origin-facts {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: 170px;
  }
  .product-image .product-badge-image {
    width: 50px;
    height: 50px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  dialog {
    padding: 22px;
  }
  .product-detail-dialog {
    padding: 0;
  }
  .product-detail-image .detail-badge-image {
    top: 12px;
    left: 12px;
    width: 96px;
    height: 96px;
  }
  .detail-facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .whatsapp-button {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
  .map-card #delivery-map {
    height: 340px;
    flex-basis: 340px;
  }
  .map-legend {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .map-legend small {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
  .coverage-checker {
    padding: 30px 23px;
  }
}

@media (max-width: 760px) {
  .trust-strip { margin: 0; border-radius: 0; border-inline: 0; box-shadow: none; }
  .trust-strip article { padding: 13px 8px; }
  .section { padding-block: 84px; }
  .story-card { box-shadow: 8px 8px 0 var(--red), 0 18px 35px rgba(62,35,0,.16); }
  .featured-section { padding-inline: 6%; }
  .featured-section::before { top: 30px; right: 4%; font-size: 105px; letter-spacing: -7px; }
  .featured-grid .product-card, .product-card { padding: 7px; }
  .origin-section { padding-block: 82px; }
  .origin-visual::before { width: 290px; }
  .contact-section::after { top: auto; right: 4%; bottom: 24px; width: 92%; text-align: right; font-size: 76px; letter-spacing: -5px; }
}

/* Compra desde el teléfono: menos desplazamiento y controles cómodos al tacto. */
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
  .featured-section::before,
  .products-section::after {
    top: 34px;
    right: 5%;
    width: 90%;
    line-height: 1;
    letter-spacing: -0.06em;
    text-align: right;
    white-space: nowrap;
  }
  .featured-section::before {
    font-size: 14.5vw;
  }
  .products-section::after {
    font-size: 17vw;
  }
  .origin-section .section-watermark-light,
  .delivery-section::after {
    top: 34px;
    right: 5%;
    width: 90%;
    color: rgba(255, 255, 255, 0.24);
    line-height: 1;
    letter-spacing: -0.06em;
    text-align: right;
    white-space: nowrap;
  }
  .origin-section .section-watermark-light {
    font-size: 18vw;
  }
  .delivery-section::after {
    font-size: 14vw;
  }
  .announcement {
    min-height: 32px;
    padding: 8px max(5%, env(safe-area-inset-right)) 7px max(5%, env(safe-area-inset-left));
    letter-spacing: 0.7px;
  }
  .site-header {
    height: 68px;
    padding-inline: max(5%, env(safe-area-inset-right)) max(5%, env(safe-area-inset-left));
    gap: 10px;
  }
  .logo-link,
  .logo-link img {
    width: 168px;
  }
  .header-actions {
    gap: 5px;
  }
  .cart-button,
  .admin-link {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }
  .cart-button {
    justify-content: center;
    border: 1px solid #464646;
  }
  .cart-button b {
    width: 26px;
    height: 26px;
  }
  .hero {
    height: clamp(590px, 86svh, 650px);
  }
  .hero-copy {
    padding-top: 25px;
  }
  .hero-description {
    max-width: 270px;
  }
  .hero-actions {
    align-items: flex-start;
  }
  .hero-actions .button {
    min-height: 46px;
    padding-inline: 16px;
  }
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 4%;
    gap: 2px;
  }
  .trust-strip article {
    min-height: 86px;
    padding: 8px 6px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
  }
  .trust-strip article > span {
    width: 24px;
    height: 24px;
    font-size: 8px;
  }
  .trust-strip b {
    font-size: 9px;
    line-height: 1.18;
  }
  .trust-strip small {
    font-size: 8px;
    line-height: 1.25;
  }
  .section {
    padding: 66px 5%;
  }
  h2 {
    margin-bottom: 16px;
    font-size: clamp(33px, 10vw, 41px);
    letter-spacing: -1.8px;
  }
  .section-heading > p,
  .delivery-heading > p:not(.eyebrow) {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
  }
  .story-copy .lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .story-signature {
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.45;
  }
  .story-card {
    min-height: 270px;
    padding: 31px 24px;
  }
  .catalog-toolbar {
    margin: 23px 0 20px;
    gap: 12px;
  }
  .filters {
    width: calc(100% + 10vw);
    margin-inline: -5vw;
    padding: 2px 5vw 9px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filter {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 9px 14px;
  }
  #product-count {
    padding-left: 2px;
  }
  .product-grid {
    gap: 14px 8px;
  }
  .product-card,
  .featured-grid .product-card {
    padding: 6px;
    border-radius: 12px;
  }
  .product-image {
    height: auto;
    aspect-ratio: 0.88;
  }
  .product-content,
  .featured-grid .product-content {
    padding: 12px 6px 6px;
  }
  .product-meta {
    margin-bottom: 5px !important;
    font-size: 8px !important;
    letter-spacing: 0.45px;
  }
  .product-content h3 {
    min-height: 37px;
    margin-bottom: 6px;
    font-size: 17px;
    line-height: 1.1;
  }
  .product-content > p {
    min-height: 45px;
    font-size: 10px;
    line-height: 1.45;
  }
  .card-variant {
    margin-top: 9px;
  }
  .card-variant select {
    min-height: 34px;
  }
  .details-link {
    margin-top: 9px;
    min-height: 29px;
  }
  .product-footer {
    margin-top: 10px;
    gap: 5px;
  }
  .product-footer b {
    font-size: 11px;
  }
  .inline-quantity {
    min-width: 84px;
    grid-template-columns: 28px 1fr 28px;
  }
  .product-footer .inline-quantity button,
  .inline-quantity button {
    width: 28px;
    height: 36px;
  }
  .origin-section {
    padding-block: 68px;
  }
  .origin-visual {
    padding: 0;
  }
  .origin-visual img { max-height: none; }
  .origin-facts {
    gap: 13px;
    margin: 22px 0;
  }
  .delivery-section {
    padding-block: 68px;
  }
  .map-card #delivery-map {
    height: 290px;
    flex-basis: 290px;
  }
  .coverage-checker {
    padding: 28px 22px;
    box-shadow: 7px 7px 0 var(--yellow), 0 20px 45px rgba(75,0,6,.3);
  }
  .contact-section {
    padding: 62px 5%;
    gap: 34px;
  }
  .contact-options {
    padding-inline: 15px;
  }
  .contact-options > * {
    min-height: 68px;
  }
  .contact-options b {
    font-size: 11px;
    text-align: right;
  }
  .drawer {
    width: 100%;
    padding: 22px max(16px, env(safe-area-inset-right)) calc(22px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  }
  .checkout-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    padding: 22px 16px;
    overflow: auto;
  }
  .legal-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    padding: 24px 18px;
  }
  .legal-dialog-header h2 { font-size: 27px; }
  .legal-dialog-content { font-size: 12px; }
  .dialog-header h2 {
    font-size: 30px;
  }
  .cart-item {
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .cart-item img {
    width: 56px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
