:root {
  --ink: #182018;
  --muted: #706a60;
  --paper: #fbf6ec;
  --surface: #ffffff;
  --line: #e6dccb;
  --green: #0f5738;
  --green-2: #28744f;
  --rose: #c86d78;
  --gold: #b9872e;
  --gold-soft: rgba(185, 135, 46, 0.28);
  --shadow: 0 18px 45px rgba(46, 38, 25, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 109, 120, 0.10), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(15, 87, 56, 0.10), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  right: clamp(14px, 4vw, 54px);
  bottom: clamp(14px, 4vw, 54px);
  width: clamp(180px, 24vw, 360px);
  aspect-ratio: 1;
  background: url("images/logo_de_redisca.jpg") center / cover no-repeat;
  border-radius: 50%;
  opacity: 0.075;
  pointer-events: none;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.promo-bar {
  display: flex;
  gap: 28px;
  justify-content: center;
  overflow: hidden;
  padding: 8px 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.promo-bar span { white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(251, 246, 236, 0.98), rgba(255, 251, 243, 0.94)),
    url("images/logo_de_redisca.jpg") left 18px center / 58px 58px no-repeat;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 15px; color: var(--green); font-weight: 900; font-size: 1.36rem; }
.brand span { display: grid; line-height: 1; }
.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(185, 135, 46, 0.62);
  outline: 1px solid rgba(15, 87, 56, 0.22);
  outline-offset: 5px;
  box-shadow: 0 8px 22px rgba(15, 87, 56, 0.16);
}
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); color: #5e584f; font-weight: 900; }
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #edf5ec;
  color: var(--green);
  border: 1px solid rgba(15, 87, 56, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}
.cart-link { display: inline-flex; align-items: center; gap: 8px; }
.cart-link span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
}
.menu-button { display: none; border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 10px 13px; font-weight: 900; }

.store-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(18px, 4vw, 38px);
  align-items: stretch;
  padding: clamp(34px, 6vw, 86px) clamp(18px, 4vw, 58px) 24px;
  background:
    linear-gradient(135deg, rgba(251, 246, 236, 0.84), rgba(255, 255, 255, 0.72)),
    url("images/logo_de_redisca.jpg") right 7vw center / min(24vw, 310px) min(24vw, 310px) no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 72% 22%, rgba(200, 109, 120, 0.14), transparent 24%),
    radial-gradient(circle at 12% 74%, rgba(15, 87, 56, 0.12), transparent 28%);
}
.store-hero::before,
.split-section::before,
.product-showcase::before,
.shipping-story::before {
  content: "";
  position: absolute;
  inset-inline: clamp(18px, 4vw, 58px);
  top: 0;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(185, 135, 46, 0.78), rgba(15, 87, 56, 0.72), rgba(185, 135, 46, 0.78), transparent);
}
.store-hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 86px);
  top: clamp(34px, 6vw, 78px);
  width: clamp(130px, 18vw, 260px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(251, 246, 236, 0.72) 0 46%, transparent 47%),
    url("images/logo_de_redisca.jpg") center / cover no-repeat;
  border-radius: 50%;
  opacity: 0.18;
  filter: saturate(0.9);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 390px;
}
.hero-brand-medallion {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 12px 18px 12px 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(46, 38, 25, 0.10);
}
.hero-brand-medallion img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(185, 135, 46, 0.62);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.72);
}
.hero-brand-medallion span {
  max-width: 180px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.08;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 0.98; letter-spacing: 0; }
h1 { max-width: 820px; margin-bottom: 20px; font-size: clamp(3.1rem, 6vw, 6.4rem); }
h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 4.2rem); }
h3 { margin-bottom: 8px; }
.hero-copy p, .page-intro p, .split-section > div > p, .empty-cart p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}
.hero-actions, .cart-actions, .checkout-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button, .icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}
.button { padding: 12px 18px; }
.button.primary { background: var(--green); border-color: var(--green); color: #fff; }
.button.secondary { background: #fff; color: var(--ink); }
.button.danger { background: #9d523f; border-color: #9d523f; color: #fff; }
.button:hover { transform: translateY(-1px); }
.hero-offer {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-offer::before,
.product-card::before,
.gift-band article::before,
.detail-image::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(185, 135, 46, 0.34);
  border-radius: 6px;
  pointer-events: none;
}
.hero-offer::after,
.gift-band article::after,
.shipping-cards article::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  aspect-ratio: 1;
  background: url("images/logo_de_redisca.jpg") center / cover no-repeat;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
}
.hero-offer strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}
.hero-offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.hero-offer a {
  color: var(--green);
  font-weight: 900;
}
.discount-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: #edf5ec;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 clamp(18px, 4vw, 58px) 20px;
}
.ornament-divider {
  display: grid;
  place-items: center;
  padding: 6px clamp(18px, 4vw, 58px) 26px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  grid-area: 1 / 1;
  width: min(720px, 100%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 87, 56, 0.34), rgba(185, 135, 46, 0.58), rgba(15, 87, 56, 0.34), transparent);
}
.ornament-divider span {
  grid-area: 1 / 1;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(251, 246, 236, 0.88) 0 58%, transparent 59%),
    url("images/logo_de_redisca.jpg") center / cover no-repeat;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 10px 24px rgba(46, 38, 25, 0.10);
}
.arabesque-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 0 clamp(18px, 4vw, 58px);
  overflow: hidden;
}
.arabesque-divider.slim { min-height: 66px; }
.arabesque-divider::before,
.arabesque-divider::after {
  content: "";
  grid-area: 1 / 1;
  width: min(860px, 100%);
  height: 42px;
  border-top: 1px solid rgba(185, 135, 46, 0.44);
  border-bottom: 1px solid rgba(15, 87, 56, 0.18);
  border-radius: 50%;
}
.arabesque-divider::after {
  width: min(520px, 72%);
  height: 28px;
  border-color: transparent;
  border-bottom: 1px solid rgba(200, 109, 120, 0.36);
  transform: translateY(-8px);
}
.arabesque-divider span {
  position: relative;
  grid-area: 1 / 1;
  width: 118px;
  height: 38px;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 32% 50%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 50%, var(--green) 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 0 14px, rgba(185, 135, 46, 0.58) 14px 104px, transparent 104px);
}
.arabesque-divider span::before,
.arabesque-divider span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 34px;
  height: 26px;
  border: 2px solid rgba(15, 87, 56, 0.46);
  border-inline-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.arabesque-divider span::before {
  left: 7px;
  transform: rotate(-28deg);
}
.arabesque-divider span::after {
  right: 7px;
  transform: rotate(28deg);
}
.category-nav a {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-weight: 900;
}

.collection-tiles {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(18px, 4vw, 58px) 28px;
}
.collection-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(46, 38, 25, 0.08);
}
.collection-tile::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 6px;
  pointer-events: none;
}
.collection-tile img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 500ms ease;
}
.collection-tile.large img { height: 330px; }
.collection-tile:hover img { transform: scale(1.05); }
.collection-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-weight: 900;
}
.feature-strip span, .product-card p, .detail-copy p, .site-footer p, .summary-row { color: var(--muted); line-height: 1.55; }

.section, .page-section, .split-section { padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 58px); }
.section-heading, .catalog-controls { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.section-heading.compact h2 { margin-bottom: 0; }
.text-link { color: var(--green); font-weight: 900; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(46, 38, 25, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(46, 38, 25, 0.14); }
.product-card a {
  display: block;
  background: #f7efe4;
}
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #f7efe4;
  transition: transform 420ms ease;
}
.product-card:hover img { transform: scale(1.025); }
.product-card-body { display: grid; gap: 10px; padding: 16px; }
.product-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price { color: var(--green); font-weight: 900; }
.card-badges {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.badge, .sale-badge { display: inline-flex; width: fit-content; min-height: 25px; align-items: center; padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 900; }
.badge { background: #edf5ec; color: var(--green); }
.sale-badge { background: #fff0f2; color: #a84753; }
.ai-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 25px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(185, 135, 46, 0.35);
  border-radius: 999px;
  background: #fff8df;
  color: #72520f;
  font-size: 0.76rem;
  font-weight: 900;
}
.old-price {
  color: #9b958c;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: line-through;
}
.swatches {
  display: flex;
  gap: 6px;
}
.swatches span {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }

.product-showcase {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
    url("images/logo_de_redisca.jpg") right 40px top 46px / 180px 180px no-repeat,
    #fff;
  border-block: 1px solid var(--line);
}
.product-showcase.alt {
  background: var(--paper);
  border-top: 0;
}
.gift-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gift-band article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 130px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(46, 38, 25, 0.06);
}
.shipping-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 58px);
  background:
    linear-gradient(90deg, rgba(251, 246, 236, 0.96), rgba(255,255,255,0.9)),
    url("images/logo_de_redisca.jpg") left 38px bottom 28px / 170px 170px no-repeat;
  border-block: 1px solid var(--line);
}
.shipping-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.shipping-cards article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 140px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 28px rgba(46, 38, 25, 0.08);
}
.shipping-cards strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.shipping-cards span {
  color: var(--muted);
  line-height: 1.5;
}
.gift-band strong {
  color: var(--green);
  font-size: 1.05rem;
}
.gift-band span {
  color: var(--muted);
  line-height: 1.5;
}

.mini-gallery { display: grid; grid-template-columns: 1.1fr 0.8fr 1fr; gap: 12px; padding: 0 clamp(18px, 4vw, 58px) 16px; }
.mini-gallery img { width: 100%; height: 210px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 24px rgba(46, 38, 25, 0.08); }
.split-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr); gap: clamp(28px, 5vw, 70px); background: #fff; border-block: 1px solid var(--line); }
.split-section { position: relative; }
.steps { display: grid; gap: 12px; }
.steps article { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.steps span { grid-row: span 2; display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--rose); color: #fff; font-weight: 900; }
.steps p { margin: 0; color: var(--muted); }

.page-intro { display: grid; gap: 12px; padding: clamp(38px, 6vw, 76px) clamp(18px, 4vw, 58px) 18px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); padding: 9px 13px; cursor: pointer; font-weight: 900; }
.filter-button.is-active { color: #fff; background: var(--green); border-color: var(--green); }
.detail-layout { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr); gap: clamp(26px, 5vw, 70px); align-items: start; }
.detail-image { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.detail-image { position: relative; }
.detail-image img { width: 100%; height: min(72vh, 660px); object-fit: contain; background: #f7efe4; }
.detail-copy { display: grid; gap: 18px; }
.detail-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.detail-list li { padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }

.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 22px; align-items: start; }
.cart-list, .order-summary, .checkout-form, .empty-cart { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.cart-item { display: grid; grid-template-columns: 86px 1fr auto; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: 0; }
.cart-item img { width: 86px; height: 100px; object-fit: cover; border-radius: 8px; }
.icon-button { width: 38px; height: 38px; background: #fff; color: var(--ink); }
.quantity-control { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { color: var(--ink); border-bottom: 0; font-size: 1.18rem; font-weight: 900; }
.checkout-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 900; }
.field input, .field textarea, .field select { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); padding: 11px 12px; }
.field textarea { min-height: 110px; resize: vertical; }
.notice { padding: 14px; border: 1px solid #d8c79c; border-radius: 8px; background: #fff8df; color: #654d16; line-height: 1.55; }
.catalog-note,
.ai-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 135, 46, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 223, 0.9), rgba(245, 250, 244, 0.85));
  color: #625944;
  line-height: 1.6;
}

.catalog-note {
  max-width: 880px;
}

.ai-note strong {
  color: var(--green);
}
.payment-panel { display: grid; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(135deg, rgba(15, 87, 56, 0.08), transparent), #fff; }
.payment-panel h2 { margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.payment-panel p { margin-bottom: 0; color: var(--muted); line-height: 1.55; }
.stripe-box:empty::before { content: "El pago online se abrirá en una página segura."; display: block; padding: 14px; border: 1px dashed var(--line); border-radius: 8px; color: var(--muted); font-weight: 900; }
.stripe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stripe-actions .button {
  min-height: 42px;
}
.stripe-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; padding: 34px clamp(18px, 4vw, 58px); border-top: 1px solid var(--line); background: #fff; }
.site-footer {
  background:
    linear-gradient(90deg, rgba(251, 246, 236, 0.94), rgba(255, 255, 255, 0.96)),
    url("images/logo_de_redisca.jpg") right 34px center / 140px 140px no-repeat;
}
.site-footer p { margin: 8px 0 0; }
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 34px);
}
.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}
.legal-page h2 {
  margin-top: 30px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.22rem;
  line-height: 1.25;
}
.legal-page p {
  color: var(--muted);
  line-height: 1.72;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 620px;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 18%, rgba(15, 87, 56, 0.10), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(185, 135, 46, 0.16), transparent 32%),
    linear-gradient(135deg, #fffdf8, #f7efe4);
}

.about-hero-copy h1,
.about-story h2,
.about-cta h2 {
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: 0.94;
  margin: 0 0 22px;
}

.about-hero-copy p,
.story-text p,
.about-cta p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.about-portrait {
  position: relative;
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(185, 135, 46, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,248,233,0.72));
  box-shadow: 0 28px 70px rgba(54, 39, 20, 0.10);
  text-align: center;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(15, 87, 56, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.about-portrait img {
  width: min(240px, 70vw);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(15, 87, 56, 0.16);
}

.about-portrait p {
  max-width: 360px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  line-height: 1.55;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 86px);
}

.about-values article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(185, 135, 46, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 18px 38px rgba(54, 39, 20, 0.06);
}

.about-values strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.12rem;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-cta {
  margin: clamp(28px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(48px, 8vw, 96px);
  padding: clamp(28px, 5vw, 70px);
  border: 1px solid rgba(185, 135, 46, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 30%, rgba(15, 87, 56, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 233, 0.96), rgba(237, 245, 236, 0.88));
  text-align: center;
}

.about-cta p {
  max-width: 700px;
  margin: 0 auto 22px;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.cookie-banner div {
  display: flex;
  gap: 10px;
}
[hidden] { display: none !important; }

@keyframes stripMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@media (max-width: 860px) {
  .menu-button { display: inline-flex; }
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .brand { font-size: 1.2rem; }
  .brand img { width: 60px; height: 60px; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 10px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid var(--line); }
  .store-hero, .collection-tiles, .split-section, .detail-layout, .cart-layout, .checkout-layout, .site-footer, .shipping-story, .about-hero, .about-story, .about-values { grid-template-columns: 1fr; }
  .store-hero { min-height: auto; }
  .about-hero { min-height: auto; }
  .hero-copy { min-height: auto; }
  .product-grid, .gift-band, .mini-gallery { grid-template-columns: 1fr 1fr; }
  .hero-brand-medallion img { width: 72px; height: 72px; }
  .collection-tile img, .collection-tile.large img { height: 220px; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.5rem, 15vw, 4rem); }
  .product-grid, .gift-band, .mini-gallery, .shipping-cards { grid-template-columns: 1fr; }
  .hero-actions, .cart-actions, .checkout-actions { flex-direction: column; }
  .button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 74px 1fr; }
  .cart-item img { width: 74px; height: 92px; }
  .cart-item > .icon-button { grid-column: 2; width: 100%; }
}

/* Redisca boutique refresh */
body {
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.72), rgba(251,246,236,0.78) 44%, rgba(255,248,239,0.96)),
    radial-gradient(circle at 7% 14%, rgba(185, 135, 46, 0.12), transparent 26%),
    radial-gradient(circle at 94% 12%, rgba(200, 109, 120, 0.12), transparent 24%),
    var(--paper);
}

body::before {
  width: clamp(220px, 30vw, 430px);
  background: url("images/logo_de_redisca.jpg") center / contain no-repeat;
  opacity: 0.055;
}

.promo-bar {
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.promo-bar span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.site-header {
  padding-block: 12px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98), rgba(255, 253, 248, 0.94)),
    radial-gradient(circle at 16% 50%, rgba(185, 135, 46, 0.12), transparent 28%);
  box-shadow: 0 12px 34px rgba(46, 38, 25, 0.07);
}

.brand {
  gap: 16px;
  min-width: 0;
}

.brand img,
.hero-brand-medallion img {
  object-fit: contain;
  background: #fffdf8;
}

.brand img {
  width: 68px;
  height: 68px;
  padding: 3px;
  border: 1px solid rgba(185, 135, 46, 0.58);
  outline: 1px solid rgba(15, 87, 56, 0.22);
  outline-offset: 4px;
}

.brand strong {
  font-size: 1.28rem;
}

.site-nav a {
  position: relative;
}

.site-nav > a:not(.whatsapp-link):not(.cart-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.store-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.88fr);
  min-height: min(760px, calc(100vh - 104px));
  gap: clamp(30px, 5vw, 76px);
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(38px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(251,246,236,0.96), rgba(255,255,255,0.88) 52%, rgba(255,247,236,0.92)),
    radial-gradient(circle at 72% 22%, rgba(185, 135, 46, 0.18), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(15, 87, 56, 0.12), transparent 24%);
}

.store-hero::before {
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(185,135,46,0.7), rgba(15,87,56,0.82), rgba(200,109,120,0.58), transparent);
}

.store-hero::after {
  right: auto;
  left: clamp(18px, 4vw, 58px);
  top: auto;
  bottom: 22px;
  width: clamp(170px, 18vw, 300px);
  background: url("images/logo_de_redisca.jpg") center / contain no-repeat;
  opacity: 0.05;
}

.hero-copy {
  min-height: 0;
}

.hero-brand-medallion {
  border-radius: 26px;
  padding: 12px 20px 12px 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,249,239,0.84));
}

.hero-brand-medallion img {
  width: 74px;
  height: 74px;
  padding: 4px;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 5.6vw, 6.2rem);
}

.hero-gallery {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 58vw, 640px);
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 7% 4% 8% 8%;
  border: 1px solid rgba(185, 135, 46, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.66), rgba(255,248,238,0.30)),
    url("images/logo_de_redisca.jpg") center / 64% auto no-repeat;
  opacity: 0.48;
  z-index: -1;
}

.hero-gallery::after {
  content: "";
  position: absolute;
  inset: 12% -5% 13% auto;
  width: 46%;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, rgba(15,87,56,0.12), rgba(185,135,46,0.12));
  z-index: -2;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(185, 135, 46, 0.38);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(46, 38, 25, 0.16);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.hero-photo:hover img {
  transform: scale(1.055);
}

.hero-photo span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(46, 38, 25, 0.12);
}

.hero-photo-main {
  left: 8%;
  top: 0;
  width: 58%;
  height: 62%;
}

.hero-photo-side {
  right: 0;
  top: 13%;
  width: 43%;
  height: 48%;
}

.hero-photo-small {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 39%;
}

.hero-price-card {
  position: absolute;
  right: 8%;
  bottom: 6%;
  display: grid;
  gap: 3px;
  min-width: 170px;
  padding: 18px;
  border: 1px solid rgba(185,135,46,0.42);
  border-radius: 10px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(46, 38, 25, 0.16);
}

.hero-price-card span,
.hero-price-card small {
  color: var(--muted);
  font-weight: 900;
}

.hero-price-card strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.7rem;
  line-height: 1;
}

.ornament-divider {
  padding-top: 18px;
}

.ornament-divider::before,
.ornament-divider::after {
  width: min(940px, 100%);
  height: 2px;
}

.ornament-divider span {
  position: relative;
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle, rgba(255,253,248,0.94) 0 64%, transparent 65%),
    url("images/logo_de_redisca.jpg") center / contain no-repeat;
}

.ornament-divider span::before,
.ornament-divider span::after {
  content: "";
  position: absolute;
  top: 38px;
  width: 160px;
  height: 28px;
  border-top: 2px solid rgba(15,87,56,0.34);
  border-radius: 50%;
}

.ornament-divider span::before {
  right: 88px;
}

.ornament-divider span::after {
  left: 88px;
}

.arabesque-divider {
  min-height: 108px;
}

.arabesque-divider::before {
  height: 54px;
  border-top-color: rgba(185,135,46,0.62);
  border-bottom-color: rgba(15,87,56,0.30);
}

.arabesque-divider span {
  width: 162px;
  height: 48px;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 50%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 50%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 8% 50%, rgba(200,109,120,0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 92% 50%, rgba(200,109,120,0.82) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 0 10px, rgba(185,135,46,0.64) 10px 152px, transparent 152px);
}

.arabesque-divider span::before,
.arabesque-divider span::after {
  top: 4px;
  width: 54px;
  height: 38px;
  border-width: 2px;
  border-color: rgba(15,87,56,0.52);
  border-inline-color: transparent;
  border-bottom-color: transparent;
}

.collection-tiles {
  gap: 18px;
}

.collection-tile {
  border-color: rgba(185,135,46,0.42);
}

.collection-tile img {
  height: 285px;
}

.collection-tile.large img {
  height: 370px;
}

.collection-tile span {
  border: 1px solid rgba(185,135,46,0.32);
}

.product-showcase {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94), rgba(255,251,244,0.88)),
    radial-gradient(circle at 8% 18%, rgba(185,135,46,0.12), transparent 28%),
    url("images/logo_de_redisca.jpg") right 44px top 44px / 210px 210px no-repeat,
    #fff;
}

.product-card {
  border-color: rgba(185,135,46,0.30);
}

.product-card::before {
  border-color: rgba(185,135,46,0.22);
}

.product-card img {
  height: 250px;
  background:
    linear-gradient(135deg, #fffaf0, #f6eee2);
}

.card-actions .button.secondary {
  color: var(--green);
  border-color: rgba(15,87,56,0.26);
}

.shipping-story,
.site-footer {
  background:
    linear-gradient(90deg, rgba(251,246,236,0.96), rgba(255,255,255,0.92)),
    url("images/logo_de_redisca.jpg") right 44px center / 190px 190px no-repeat;
}

@media (max-width: 1040px) {
  .store-hero {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .promo-bar span {
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .hero-gallery {
    min-height: 620px;
  }

  .hero-photo-main,
  .hero-photo-side,
  .hero-photo-small,
  .hero-price-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-gallery {
    display: grid;
    gap: 14px;
  }

  .hero-photo-main,
  .hero-photo-side,
  .hero-photo-small {
    height: 260px;
  }

  .hero-gallery::before,
  .hero-gallery::after {
    display: none;
  }
}

/* Redisca final polish */
.promo-bar {
  background:
    linear-gradient(90deg, #0b4b30, #14633f 42%, #0b4b30),
    var(--green);
}

.promo-bar span:first-child {
  background: rgba(255, 255, 255, 0.12);
  color: #fff7d9;
}

.site-header {
  min-height: 126px;
}

.brand img {
  width: 94px;
  height: 94px;
  padding: 5px;
  border-width: 2px;
  box-shadow:
    0 14px 34px rgba(15, 87, 56, 0.18),
    0 0 0 8px rgba(255, 253, 248, 0.82),
    0 0 0 10px rgba(185, 135, 46, 0.18);
}

.brand strong {
  font-size: 1.58rem;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.76rem;
  color: #a87323;
}

.season-badge {
  position: relative;
  display: inline-grid;
  width: fit-content;
  gap: 3px;
  margin: 0 0 18px;
  padding: 14px 22px 14px 58px;
  border: 1px solid rgba(185, 135, 46, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,248,235,0.88));
  box-shadow: 0 16px 36px rgba(46, 38, 25, 0.11);
}

.season-badge::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 34% 50%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 66% 50%, var(--rose) 0 5px, transparent 6px),
    #fff8ea;
  border: 1px solid rgba(185,135,46,0.34);
  transform: translateY(-50%);
}

.season-badge span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.season-badge strong {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1;
}

.ornament-divider,
.arabesque-divider {
  isolation: isolate;
}

.ornament-divider {
  min-height: 124px;
  padding-block: 18px 34px;
}

.ornament-divider::before,
.ornament-divider::after {
  width: min(980px, calc(100% - 36px));
  height: 56px;
  background: none;
  border-top: 1px solid rgba(185,135,46,0.48);
  border-bottom: 1px solid rgba(15,87,56,0.18);
  border-radius: 50%;
}

.ornament-divider::after {
  width: min(680px, calc(78% - 20px));
  height: 32px;
  border-top-color: transparent;
  border-bottom-color: rgba(200,109,120,0.34);
  transform: translateY(-12px);
}

.ornament-divider span {
  width: 112px;
  height: 78px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,253,248,0.98) 0 38%, transparent 39%),
    radial-gradient(circle at 50% 50%, var(--gold) 0 5px, transparent 6px),
    radial-gradient(circle at 30% 50%, var(--green) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 50%, var(--rose) 0 7px, transparent 8px),
    linear-gradient(90deg, rgba(185,135,46,0.22), rgba(255,255,255,0.92), rgba(185,135,46,0.22));
  box-shadow:
    0 12px 30px rgba(46, 38, 25, 0.11),
    inset 0 0 0 1px rgba(185,135,46,0.32);
}

.ornament-divider span::before,
.ornament-divider span::after {
  top: 22px;
  width: 220px;
  height: 42px;
  border-top: 2px solid rgba(15,87,56,0.32);
  border-bottom: 1px solid rgba(185,135,46,0.38);
}

.ornament-divider span::before {
  right: 112px;
  border-radius: 0 50% 50% 0;
}

.ornament-divider span::after {
  left: 112px;
  border-radius: 50% 0 0 50%;
}

.arabesque-divider {
  min-height: 118px;
}

.arabesque-divider::before,
.arabesque-divider::after {
  background: none;
}

.arabesque-divider::before {
  width: min(1000px, calc(100% - 42px));
  height: 70px;
  border-top: 1px solid rgba(185,135,46,0.52);
  border-bottom: 1px solid rgba(15,87,56,0.24);
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}

.arabesque-divider::after {
  width: min(760px, 74%);
  height: 48px;
  border-bottom: 1px solid rgba(200,109,120,0.34);
  transform: translateY(-16px);
}

.arabesque-divider span {
  width: 210px;
  height: 56px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fffdf8 0 18px, transparent 19px),
    radial-gradient(circle at 50% 50%, var(--gold) 0 5px, transparent 6px),
    radial-gradient(circle at 34% 50%, var(--green) 0 6px, transparent 7px),
    radial-gradient(circle at 66% 50%, var(--green) 0 6px, transparent 7px),
    radial-gradient(circle at 18% 50%, var(--rose) 0 4px, transparent 5px),
    radial-gradient(circle at 82% 50%, var(--rose) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 0 8px, rgba(185,135,46,0.56) 8px 202px, transparent 202px);
}

.arabesque-divider span::before,
.arabesque-divider span::after {
  top: 0;
  width: 76px;
  height: 52px;
  border-top: 2px solid rgba(15,87,56,0.48);
  border-bottom: 1px solid rgba(185,135,46,0.44);
  border-left-color: transparent;
  border-right-color: transparent;
}

.arabesque-divider span::before {
  left: 8px;
  transform: rotate(-18deg);
}

.arabesque-divider span::after {
  right: 8px;
  transform: rotate(18deg);
}

.hero-photo-main {
  box-shadow:
    0 24px 58px rgba(46, 38, 25, 0.18),
    -18px 18px 0 rgba(185,135,46,0.10);
}

.hero-price-card {
  border-color: rgba(15,87,56,0.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,249,236,0.93));
}

@media (max-width: 860px) {
  .site-header {
    min-height: auto;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 560px) {
  .season-badge {
    padding-left: 52px;
  }

  .ornament-divider span::before,
  .ornament-divider span::after {
    width: 96px;
  }
}

/* Redisca baroque signature */
.site-header {
  min-height: 168px;
}

.brand img {
  width: 132px;
  height: 132px;
  padding: 6px;
  object-fit: contain;
  background:
    radial-gradient(circle, #fffdf8 0 58%, #f7ecd8 59% 100%);
  border: 2px solid rgba(185, 135, 46, 0.72);
  box-shadow:
    0 18px 40px rgba(15, 87, 56, 0.18),
    0 0 0 8px rgba(255, 253, 248, 0.86),
    0 0 0 11px rgba(185, 135, 46, 0.20),
    0 0 0 13px rgba(15, 87, 56, 0.08);
}

.brand strong {
  font-size: 1.9rem;
}

.brand small {
  font-size: 0.82rem;
}

.hero-brand-medallion img {
  width: 104px;
  height: 104px;
}

.hero-photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f7efe4;
}

.hero-photo-main {
  box-shadow:
    0 28px 66px rgba(46, 38, 25, 0.20),
    -20px 20px 0 rgba(185,135,46,0.12),
    18px -18px 0 rgba(15,87,56,0.08);
}

.hero-photo-main::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 7px;
  pointer-events: none;
}

.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.18) 42%, transparent 50%),
    radial-gradient(circle at 82% 18%, rgba(185,135,46,0.18), transparent 24%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.ornament-divider {
  min-height: 150px;
}

.ornament-divider::before {
  width: min(1080px, calc(100% - 30px));
  height: 86px;
  border-top: 2px solid rgba(185,135,46,0.56);
  border-bottom: 1px solid rgba(15,87,56,0.28);
}

.ornament-divider::after {
  width: min(860px, 82%);
  height: 58px;
  border-bottom: 1px solid rgba(200,109,120,0.42);
}

.ornament-divider span {
  width: 172px;
  height: 96px;
  border-radius: 999px;
  background:
    url("images/logo_de_redisca.jpg") center / 66px 66px no-repeat,
    radial-gradient(circle at 50% 50%, rgba(255,253,248,0.98) 0 35%, transparent 36%),
    radial-gradient(circle at 18% 50%, rgba(15,87,56,0.92) 0 7px, transparent 8px),
    radial-gradient(circle at 32% 50%, rgba(185,135,46,0.92) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 50%, rgba(185,135,46,0.92) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 50%, rgba(200,109,120,0.86) 0 7px, transparent 8px),
    linear-gradient(90deg, rgba(185,135,46,0.28), rgba(255,255,255,0.96), rgba(185,135,46,0.28));
}

.ornament-divider span::before,
.ornament-divider span::after {
  top: 18px;
  width: 310px;
  height: 62px;
  border-top: 2px solid rgba(15,87,56,0.36);
  border-bottom: 1px solid rgba(185,135,46,0.44);
}

.ornament-divider span::before {
  right: 168px;
}

.ornament-divider span::after {
  left: 168px;
}

.arabesque-divider {
  min-height: 142px;
}

.arabesque-divider::before {
  width: min(1080px, calc(100% - 28px));
  height: 92px;
  border-top: 2px solid rgba(185,135,46,0.58);
  border-bottom: 1px solid rgba(15,87,56,0.30);
}

.arabesque-divider::after {
  width: min(820px, 78%);
  height: 62px;
  border-bottom: 1px solid rgba(200,109,120,0.42);
}

.arabesque-divider span {
  width: 260px;
  height: 68px;
  background:
    url("images/logo_de_redisca.jpg") center / 54px 54px no-repeat,
    radial-gradient(circle at 50% 50%, #fffdf8 0 24px, transparent 25px),
    radial-gradient(circle at 28% 50%, var(--green) 0 7px, transparent 8px),
    radial-gradient(circle at 72% 50%, var(--green) 0 7px, transparent 8px),
    radial-gradient(circle at 15% 50%, var(--rose) 0 5px, transparent 6px),
    radial-gradient(circle at 85% 50%, var(--rose) 0 5px, transparent 6px),
    radial-gradient(circle at 39% 50%, var(--gold) 0 5px, transparent 6px),
    radial-gradient(circle at 61% 50%, var(--gold) 0 5px, transparent 6px),
    linear-gradient(90deg, transparent 0 12px, rgba(185,135,46,0.64) 12px 248px, transparent 248px);
}

.arabesque-divider span::before,
.arabesque-divider span::after {
  width: 94px;
  height: 62px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: auto;
  }

  .brand img {
    width: 90px;
    height: 90px;
  }
}

/* Boutique checkout and hero video */
.boutique-hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.55fr);
  gap: 18px;
  min-height: clamp(560px, 64vw, 760px);
  padding: 18px;
  border: 1px solid rgba(185,135,46,0.34);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,248,235,0.48)),
    url("images/logo_de_redisca.jpg") center / 58% auto no-repeat;
  box-shadow: 0 28px 70px rgba(46, 38, 25, 0.15);
}

.boutique-hero-gallery::before,
.boutique-hero-gallery::after {
  display: none;
}

.boutique-hero-gallery .hero-photo {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
}

.boutique-video-card {
  min-height: 100%;
  border-radius: 18px;
}

.boutique-video-card video {
  border-radius: inherit;
}

.boutique-side-panel {
  display: grid;
  grid-template-rows: 1fr 1fr auto;
  gap: 14px;
}

.boutique-mini-card {
  min-height: 190px;
  border-radius: 16px;
}

.boutique-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-mini-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.boutique-price-card {
  position: relative;
  inset: auto;
  min-width: 0;
  border-radius: 16px;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
}

.order-summary {
  position: sticky;
  top: 142px;
}

.summary-pay {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-pay .stripe-actions {
  display: grid;
}

.summary-pay .button {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
}

.secondary-actions {
  margin-top: 8px;
}

.secondary-actions .button {
  background: #fff;
  color: var(--muted);
}

.payment-panel {
  display: none;
}

.stripe-box:empty::before {
  content: none;
}

@media (max-width: 1040px) {
  .boutique-hero-gallery {
    grid-template-columns: 1fr;
  }

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

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

  .boutique-video-card {
    min-height: 620px;
  }

  .boutique-side-panel {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .boutique-price-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .boutique-hero-gallery {
    padding: 12px;
    min-height: 0;
  }

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

  .review-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .boutique-video-card {
    min-height: 520px;
  }

  .boutique-side-panel {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

.seo-intro {
  max-width: 1080px;
  margin-inline: auto;
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(12px, 3vw, 28px);
  text-align: center;
}

.seo-intro h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.seo-intro p:last-child {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 135, 46, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(248,243,233,0.82));
  border-block: 1px solid rgba(185, 135, 46, 0.18);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.faq-grid article {
  border: 1px solid rgba(185, 135, 46, 0.22);
  background: rgba(255,255,255,0.72);
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(54, 39, 20, 0.06);
}

.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.trust-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 18%, rgba(15, 87, 56, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(248, 243, 233, 0.9));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trust-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(185, 135, 46, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,248,233,0.72));
  box-shadow: 0 18px 38px rgba(54, 39, 20, 0.07);
}

.trust-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.trust-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 87, 56, 0.18);
  border-radius: 8px;
  background: rgba(237, 245, 236, 0.76);
}

.review-strip blockquote {
  margin: 0;
}

.review-strip p {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.18;
}

.review-strip cite {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

/* More ornate Redisca separators */
.ornament-divider,
.arabesque-divider {
  overflow: hidden;
}

.ornament-divider::before,
.arabesque-divider::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,253,248,0.98) 0 26px, transparent 27px),
    radial-gradient(circle at 50% 50%, rgba(185,135,46,0.28) 0 48px, transparent 49px),
    linear-gradient(90deg, transparent, rgba(185,135,46,0.76), rgba(15,87,56,0.66), rgba(185,135,46,0.76), transparent);
  border-top-color: rgba(185,135,46,0.66);
  border-bottom-color: rgba(15,87,56,0.36);
}

.ornament-divider span,
.arabesque-divider span {
  box-shadow:
    0 18px 44px rgba(46,38,25,0.10),
    0 0 0 7px rgba(255,253,248,0.86),
    0 0 0 9px rgba(185,135,46,0.20);
}

.ornament-divider span::before,
.ornament-divider span::after,
.arabesque-divider span::before,
.arabesque-divider span::after {
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(15,87,56,0.62) 0 5px, transparent 6px),
    radial-gradient(ellipse at 34% 42%, rgba(185,135,46,0.62) 0 4px, transparent 5px),
    radial-gradient(ellipse at 52% 58%, rgba(200,109,120,0.44) 0 4px, transparent 5px),
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(15,87,56,0.18) 18px 19px, transparent 20px 34px);
}

.arabesque-divider::after {
  background:
    linear-gradient(90deg, transparent, rgba(200,109,120,0.22), rgba(185,135,46,0.34), rgba(200,109,120,0.22), transparent);
}
