﻿:root {
  --night: #0c0b09;
  --charcoal: #15110d;
  --ember: #2a1c13;
  --gold: #c99a5b;
  --gold-soft: #f0c985;
  --cream: #f6ecdc;
  --smoke: rgba(246, 236, 220, 0.72);
  --muted: rgba(246, 236, 220, 0.58);
  --line: rgba(240, 201, 133, 0.2);
  --panel: rgba(18, 14, 10, 0.76);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --bg: var(--night);
  --bg-secondary: var(--charcoal);
  --surface: var(--charcoal);
  --surface-alt: var(--ember);
  --card: var(--panel);
  --text: var(--cream);
  --text-secondary: var(--smoke);
  --heading: var(--cream);
  --border: var(--line);
  --gold-hover: var(--gold-soft);
  --input-bg: rgba(12, 11, 9, 0.68);
  --input-text: var(--cream);
  --display-serif: "Fraunces", Georgia, serif;
  --editorial-serif: "Fraunces", Georgia, serif;
}

.payment-result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px) 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 154, 91, 0.16), transparent 34rem),
    linear-gradient(135deg, rgba(12, 11, 9, 0.99), rgba(21, 17, 13, 0.98) 48%, rgba(42, 28, 19, 0.96)),
    var(--night);
}

.payment-result-shell {
  width: min(760px, 100%);
}

.payment-result-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 56px);
  color: var(--cream);
  background: linear-gradient(145deg, rgba(21, 17, 13, 0.94), rgba(12, 11, 9, 0.88));
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.payment-result-card .eyebrow {
  justify-self: center;
  margin: 0;
  color: var(--gold-soft);
}

.payment-result-icon {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(240, 201, 133, 0.34);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.12);
  font-size: 28px;
  font-weight: 900;
}

.payment-result-card h1 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.98;
}

.payment-result-card p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--smoke);
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.7;
}

.payment-result-card .form-status {
  width: min(420px, 100%);
  margin: 4px auto 0;
  padding: 12px 16px;
  color: var(--gold-soft);
  background: rgba(240, 201, 133, 0.08);
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 8px;
  font-weight: 700;
}

.payment-result-card .form-status:empty {
  display: none;
}

.payment-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.payment-result-actions .primary-button,
.payment-result-actions .secondary-button {
  min-height: 52px;
  text-decoration: none;
}

.payment-result-actions .secondary-button {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 560px) {
  .payment-result-actions {
    grid-template-columns: 1fr;
  }
}

/* Checkout summary layout */
.checkout-page-section {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.checkout-page-section .order-copy {
  position: static;
  width: min(100%, 760px);
  max-width: 760px;
  text-align: center;
}

.checkout-page-section .order-copy h2,
.checkout-page-section .order-copy p {
  margin-inline: auto;
}

.checkout-page-section .order-form {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  width: min(100%, 1100px);
  min-width: 0;
  justify-self: center;
}

.checkout-page-section .order-form > :not(.payment-form-row):not(.cart-summary) {
  grid-column: 1;
}

.checkout-page-section .payment-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}

.checkout-page-section .payment-form-row > :not(.cart-summary) {
  grid-column: 1;
}

.checkout-page-section .cart-summary {
  align-self: start;
  grid-column: 2;
  grid-row: 1 / span 20;
  position: sticky;
  top: 92px;
  width: 100%;
  min-width: 0;
  max-height: none;
  overflow: visible;
  padding: 16px;
  gap: 8px;
}

.checkout-page-section .cart-summary h3 {
  margin-bottom: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}

.checkout-page-section #cartItems {
  display: grid;
  gap: 6px;
}

.checkout-page-section .cart-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 4px;
  align-items: start;
  justify-items: stretch;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(122, 84, 34, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.92);
  text-align: left;
}

.checkout-page-section .cart-item-image {
  width: 42px;
  height: 42px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 91, 0.24);
  border-radius: 8px;
  object-fit: cover;
  justify-self: start;
}

.checkout-page-section .cart-item-body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.checkout-page-section .cart-item-name {
  display: grid;
  min-width: 0;
  gap: 4px;
  justify-items: start;
  width: 100%;
  text-align: left;
}

.checkout-page-section .cart-item-name strong {
  overflow-wrap: anywhere;
  word-break: normal;
  color: #211912;
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.checkout-page-section .cart-item-name small,
.checkout-page-section .cart-item-quantity {
  color: rgba(43, 33, 24, 0.64);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
  overflow-wrap: anywhere;
}

.checkout-page-section .cart-item-personalization {
  display: none;
  gap: 3px;
  width: 100%;
  padding-top: 3px;
}

.checkout-page-section .cart-item-personalization span {
  color: #7a5422;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-page-section .cart-item-personalization p {
  margin: 0;
  color: rgba(43, 33, 24, 0.78);
  font-size: 11px;
  line-height: 1.42;
  overflow-wrap: anywhere;
  word-break: normal;
}

.checkout-page-section .cart-item-personalization.is-empty p {
  color: rgba(43, 33, 24, 0.5);
}

.checkout-page-section .cart-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0;
}

.checkout-page-section .cart-item-meta .cart-item-quantity {
  border: 1px solid rgba(122, 84, 34, 0.12);
  border-radius: 999px;
  padding: 3px 8px;
  color: rgba(43, 33, 24, 0.76);
  background: rgba(255, 255, 255, 0.54);
}

.checkout-page-section .cart-item-footer {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(43, 33, 24, 0.1);
}

.checkout-page-section .cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
  min-width: 0;
  width: max-content;
  max-width: 152px;
  text-align: right;
}

.checkout-page-section .cart-item-subtotal {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
  color: rgba(43, 33, 24, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.checkout-page-section .cart-item-subtotal strong {
  color: #211912;
  font-size: 15px;
  white-space: nowrap;
}

.checkout-page-section .remove-cart-item {
  display: none;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  padding: 7px 12px;
  border-color: rgba(43, 33, 24, 0.14);
  color: rgba(43, 33, 24, 0.72);
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.checkout-page-section .summary-line {
  min-width: 0;
  align-items: center;
  padding-block: 6px;
  font-size: 13px;
}

.checkout-page-section .summary-line strong {
  max-width: 62%;
  text-align: right;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.checkout-page-section .summary-total {
  margin-top: 4px;
  border-top-color: rgba(122, 84, 34, 0.28);
  padding-top: 9px;
  font-size: 15px;
}

.checkout-page-section .customs-note {
  margin: 0;
  color: rgba(43, 33, 24, 0.62);
  font-size: 10.5px;
  line-height: 1.25;
}

.checkout-page-section .webpay-clp-notice {
  margin: 0;
  color: rgba(43, 33, 24, 0.68);
  font-size: 10.5px;
  line-height: 1.25;
}

.checkout-page-section .webpay-clp-notice[hidden] {
  display: none;
}

.checkout-review-panel {
  display: grid;
  grid-column: 1;
  gap: 14px;
  min-width: 0;
}

.checkout-review-heading {
  display: grid;
  gap: 4px;
}

.checkout-review-heading h3 {
  margin: 0;
  color: #211912;
  font-size: 20px;
  line-height: 1.25;
}

.checkout-review-grid {
  display: grid;
  gap: 12px;
}

.checkout-review-global66-actions {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin: -2px 0 0;
  padding: 14px;
  border: 1px solid rgba(43, 33, 24, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.72);
}

.checkout-review-global66-actions .global66-account-button,
.checkout-review-global66-actions .global66-guide-button,
.checkout-review-global66-actions .global66-manual-payment-button {
  width: min(100%, 360px);
}

.checkout-review-card {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(43, 33, 24, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 252, 246, 0.9);
}

.checkout-review-card h4 {
  margin: 0 0 7px;
  color: #211912;
  font-size: 15px;
}

.checkout-review-card p {
  margin: 2px 0;
  color: rgba(43, 33, 24, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.review-change-button {
  width: auto;
  min-width: 0;
  border: 1px solid rgba(122, 84, 34, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  color: #7a5422;
  background: rgba(240, 201, 133, 0.14);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.review-order-button {
  grid-column: 1;
  width: min(100%, 360px);
  justify-self: center;
  margin-top: 36px;
}

.cart-summary .submit-order-button {
  width: 100%;
  justify-self: stretch;
  margin-top: 2px;
}

.shipping-carrier-fixed {
  margin: 0;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #2b2118;
  background: rgba(240, 201, 133, 0.18);
  font-weight: 800;
}

@media (max-width: 768px) {
  .checkout-page-section .order-form,
  .checkout-page-section .payment-form-row {
    grid-template-columns: 1fr;
  }

  .checkout-page-section .order-form > *,
  .checkout-page-section .payment-form-row > *,
  .checkout-page-section .cart-summary {
    grid-column: 1;
  }

  .checkout-page-section .cart-summary {
    align-self: stretch;
    position: static;
    grid-row: auto;
    max-height: none;
    overflow: visible;
    padding: 16px;
  }

  .checkout-review-panel,
  .review-order-button {
    grid-column: 1;
  }

  .checkout-review-card {
    display: grid;
    gap: 10px;
  }

  .review-change-button {
    justify-self: start;
  }

  .checkout-page-section .cart-item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    justify-items: stretch;
    padding: 14px;
  }

  .checkout-page-section .cart-item-image {
    width: 68px;
    height: 68px;
  }

  .checkout-page-section .cart-item-footer {
    align-items: flex-start;
  }

  .checkout-page-section .cart-item-subtotal {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .checkout-page-section .cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 10px;
    padding: 12px;
  }

  .checkout-page-section .cart-item-image {
    width: 58px;
    height: 58px;
    max-height: none;
    aspect-ratio: 1;
  }

  .checkout-page-section .cart-item-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 9px;
  }

  .checkout-page-section .cart-item-subtotal {
    display: flex;
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .checkout-page-section .remove-cart-item {
    justify-self: end;
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 154, 91, 0.14), transparent 32rem),
    radial-gradient(circle at 86% 24%, rgba(111, 66, 31, 0.18), transparent 36rem),
    var(--night);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  transition: background-color 300ms ease, color 300ms ease;
}

body.market-open {
  overflow: hidden;
}

body.market-open .site-header,
body.market-open main {
  visibility: hidden;
  pointer-events: none;
}

body:not(.site-entered) .main-header {
  display: none;
}

body:not(.site-entered) .main-site {
  display: none;
}

body.site-entered .language-screen {
  display: none;
}

body.site-entered .main-header {
  display: grid;
}

body.site-entered .main-site {
  display: block;
}

body.site-entered.market-open {
  overflow: auto;
}

body.site-entered.market-open .site-header,
body.site-entered.market-open main {
  visibility: visible;
  pointer-events: auto;
}

body.drawer-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

body.theme-day {
  --night: #f7f4ee;
  --charcoal: #efe8dd;
  --ember: #ddd3c4;
  --gold-soft: #d7a45f;
  --cream: #161616;
  --smoke: #555555;
  --muted: #6f6a62;
  --line: #ddd3c4;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(64, 48, 28, 0.14);
  --bg: #f7f4ee;
  --bg-secondary: #efe8dd;
  --surface: #efe8dd;
  --surface-alt: #e7ddcf;
  --card: #ffffff;
  --text: #161616;
  --text-secondary: #555555;
  --heading: #161616;
  --border: #ddd3c4;
  --gold-hover: #dfad67;
  --input-bg: #ffffff;
  --input-text: #161616;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 154, 91, 0.14), transparent 32rem),
    radial-gradient(circle at 86% 24%, rgba(221, 211, 196, 0.5), transparent 36rem),
    var(--bg);
}

body.theme-day::before {
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(105, 88, 62, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 88, 62, 0.045) 1px, transparent 1px);
}

body,
.site-header,
.site-footer,
.main-nav a,
.icon-button,
.currency-dropdown-button,
.currency-dropdown-option,
.currency-switcher select,
.hero,
.welcome-section,
.about-story,
.experiences-section,
.cinema-section,
.story-section,
.hands-section,
.statement-section,
.faq-section,
.video-stories-section,
.section,
.contact-section,
.order-section,
.product-card,
.contact-card,
.cart-drawer,
.featured-testimonial,
.people-carousel,
.people-carousel figure,
.messages-masonry figure,
.testimonial-stats div,
input,
select,
textarea {
  transition:
    background-color 300ms ease,
    color 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

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

[data-i18n] {
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.market-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(24px, 6vh, 72px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 201, 133, 0.13), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(201, 154, 91, 0.08), transparent 30rem),
    linear-gradient(135deg, #070605 0%, #14100c 55%, #090806 100%);
  -webkit-overflow-scrolling: touch;
  transition: opacity 700ms ease, visibility 700ms ease, background-color 300ms ease, color 300ms ease;
}

.market-gate::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.market-gate::after {
  position: absolute;
  inset: auto 12vw 8vh;
  height: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 201, 133, 0.34), transparent);
}

.market-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.market-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 12vh));
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.intro-panel {
  display: grid;
  place-items: center;
  text-align: center;
}

#introStep {
  min-height: min(760px, calc(100vh - 12vh));
  align-content: center;
  animation: introRise 1400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-logo {
  width: min(132px, 30vw);
  height: auto;
  margin: 0 auto clamp(30px, 5vh, 54px);
  opacity: 0.92;
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 24px rgba(240, 201, 133, 0.2));
  animation:
    introRise 1500ms cubic-bezier(0.16, 1, 0.3, 1) both,
    introBreath 5600ms 1600ms ease-in-out infinite;
}

.intro-panel h1 {
  max-width: 1120px;
  margin-bottom: clamp(18px, 3.1vh, 34px);
  color: rgba(251, 239, 219, 0.98);
  font-family: var(--display-serif);
  font-size: clamp(58px, 10.1vw, 156px);
  font-weight: 850;
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow:
    0 32px 108px rgba(0, 0, 0, 0.78),
    0 0 34px rgba(240, 201, 133, 0.11),
    0 1px 0 rgba(255, 245, 224, 0.18);
  animation: introRise 1700ms 350ms cubic-bezier(0.16, 1, 0.3, 1) both;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

.intro-slogan {
  max-width: min(820px, 92vw);
  margin: 0 auto clamp(32px, 5vh, 54px);
  color: rgba(240, 201, 133, 0.9);
  font-family: "Gloock", var(--editorial-serif);
  font-size: clamp(24px, 3vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.018em;
  text-shadow:
    0 20px 64px rgba(0, 0, 0, 0.68),
    0 0 24px rgba(240, 201, 133, 0.12);
  animation: introRise 1700ms 750ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1), filter 720ms ease;
}

.language-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 28px;
}

.intro-language-options {
  margin-top: 0;
  animation: introRise 1700ms 1150ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.language-option {
  position: relative;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  padding: 0 0 8px;
  color: rgba(246, 236, 220, 0.64);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 560ms ease, opacity 560ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 700ms ease;
}

.language-option::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 201, 133, 0.88), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.28);
  transition: opacity 560ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  transform: translateY(-2px);
  color: var(--gold-soft);
  text-shadow: 0 0 24px rgba(240, 201, 133, 0.18);
}

.language-option:hover::after,
.language-option:focus-visible::after,
.language-option.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.language-option:focus-visible {
  outline: 1px solid rgba(240, 201, 133, 0.54);
  outline-offset: 10px;
}

.market-theme-toggle {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 32px);
  z-index: 2100;
}

body.theme-day .market-gate {
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 154, 91, 0.14), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(221, 211, 196, 0.42), transparent 30rem),
    linear-gradient(135deg, #f8f3ea 0%, #efe4d3 55%, #fbf8f2 100%);
}

body.theme-day .market-gate::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(105, 88, 62, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 88, 62, 0.035) 1px, transparent 1px);
}

body.theme-day .market-gate::after {
  background: linear-gradient(90deg, transparent, rgba(201, 154, 91, 0.42), transparent);
}

body.theme-day .intro-logo {
  filter:
    drop-shadow(0 18px 38px rgba(64, 48, 28, 0.18))
    drop-shadow(0 0 20px rgba(201, 154, 91, 0.14));
}

body.theme-day .intro-panel h1 {
  color: #161616;
  text-shadow:
    0 26px 80px rgba(64, 48, 28, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.7);
}

body.theme-day .intro-slogan {
  color: #9b6a25;
  text-shadow: 0 14px 38px rgba(146, 100, 38, 0.12);
}

body.theme-day .language-option {
  color: #555555;
  text-shadow: none;
}

body.theme-day .language-option:hover,
body.theme-day .language-option:focus-visible,
body.theme-day .language-option.is-active {
  color: #9b6a25;
  text-shadow: 0 0 18px rgba(201, 154, 91, 0.14);
}

body.language-fading [data-i18n],
body.language-fading .intro-language-options {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
}

body.language-settling [data-i18n],
body.language-settling .intro-language-options {
  animation: languageSettle 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes introRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes languageSettle {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes introBreath {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.market-panel h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.market-intro {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--smoke);
  font-size: 18px;
}

.gate-step {
  display: grid;
}

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

.gate-back {
  width: fit-content;
  margin-bottom: 18px;
  border: 0;
  border-bottom: 1px solid rgba(240, 201, 133, 0.38);
  padding: 0 0 4px;
  color: var(--gold-soft);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.market-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-option {
  display: grid;
  gap: 6px;
  min-height: 96px;
  align-content: center;
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 8px;
  padding: 18px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 500ms ease, border-color 500ms ease, background 500ms ease;
}

.market-option:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 201, 133, 0.58);
  background: rgba(201, 154, 91, 0.13);
}

.market-option span {
  font-weight: 800;
}

.market-option small {
  color: var(--muted);
  line-height: 1.45;
}

.europe-currency {
  display: grid;
  max-width: 260px;
  gap: 8px;
  margin-top: 18px;
  color: var(--smoke);
}

.europe-currency select {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 3vw, 40px);
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(240, 201, 133, 0.14);
  background: rgba(12, 11, 9, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(44px, 5vw, 64px);
  max-width: 178px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42));
}

.brand-name {
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(240, 201, 133, 0.1);
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: 4px;
}

.currency-switcher {
  position: relative;
  display: flex;
  min-width: 178px;
  flex-direction: column;
  gap: 3px;
  color: rgba(246, 236, 220, 0.68);
  font-size: 8.5px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.currency-switcher select {
  min-height: 38px;
  max-width: 190px;
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--cream);
  background: rgba(18, 14, 10, 0.72);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.currency-switcher .native-currency-select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.currency-dropdown {
  position: relative;
  width: min(214px, 100%);
}

.currency-dropdown-button,
.currency-dropdown-option {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 7px;
  width: 100%;
  border: 1px solid rgba(240, 201, 133, 0.24);
  color: var(--cream);
  background: rgba(18, 14, 10, 0.82);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
  cursor: pointer;
}

.currency-dropdown-button {
  min-height: 38px;
  border-radius: 999px;
  padding: 5px 9px 5px 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.currency-dropdown-button:hover,
.currency-switcher.is-open .currency-dropdown-button {
  border-color: rgba(240, 201, 133, 0.52);
  background: rgba(27, 21, 15, 0.96);
}

.currency-flag-shell {
  display: inline-grid;
  width: 25px;
  height: 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(246, 236, 220, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.currency-flag-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.currency-country {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currency-dropdown strong {
  color: var(--gold-soft);
  font-size: 10px;
  letter-spacing: 0.045em;
}

.currency-chevron,
.currency-check {
  color: rgba(240, 201, 133, 0.88);
  font-size: 12px;
  line-height: 1;
}

.currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  display: grid;
  width: min(280px, calc(100vw - 24px));
  max-height: min(420px, 68vh);
  overflow: auto;
  border: 1px solid rgba(240, 201, 133, 0.26);
  border-radius: 16px;
  padding: 6px;
  background: rgba(12, 11, 9, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.currency-switcher.is-open .currency-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-dropdown-option {
  min-height: 38px;
  border-color: transparent;
  border-radius: 10px;
  padding: 6px 8px;
  background: transparent;
}

.currency-dropdown-option:hover,
.currency-dropdown-option.is-selected {
  border-color: rgba(240, 201, 133, 0.24);
  background: rgba(201, 154, 91, 0.12);
}

.currency-dropdown-option .currency-check {
  font-size: 13px;
}

.currency-note {
  max-width: 560px;
  color: rgba(246, 236, 220, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.order-copy .currency-note {
  color: rgba(246, 236, 220, 0.82);
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 50%;
  color: rgba(246, 236, 220, 0.78);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: color 420ms ease, border-color 420ms ease, background 420ms ease, transform 420ms ease;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-toggle {
  color: rgba(246, 236, 220, 0.64);
  font-size: 17px;
  text-decoration: none;
}

.language-toggle span {
  display: block;
  line-height: 1;
  filter: grayscale(0.25) saturate(0.82);
  transform: translateY(-1px);
}

.theme-toggle {
  color: rgba(246, 236, 220, 0.72);
  font-size: 17px;
}

.theme-toggle span {
  display: block;
  line-height: 1;
  filter: saturate(0.9);
  transform: translateY(-1px);
}

.icon-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 133, 0.52);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.12);
}

body.theme-day .site-header {
  border-bottom-color: rgba(130, 102, 62, 0.18);
  background: rgba(247, 244, 238, 0.9);
  box-shadow: 0 14px 34px rgba(64, 48, 28, 0.1);
}

body.theme-day .brand-logo {
  filter: drop-shadow(0 10px 24px rgba(64, 48, 28, 0.14));
}

body.theme-day .brand-name,
body.theme-day .nav-link.active,
body.theme-day .main-nav a:hover {
  color: var(--text);
  text-shadow: none;
}

body.theme-day .main-nav {
  color: rgba(22, 22, 22, 0.72);
}

body.theme-day .main-nav a::after {
  background: linear-gradient(90deg, transparent, rgba(201, 154, 91, 0.88), transparent);
}

body.theme-day .icon-button {
  border-color: rgba(130, 102, 62, 0.2);
  color: rgba(22, 22, 22, 0.72);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(64, 48, 28, 0.08);
}

body.theme-day .icon-button:hover {
  border-color: rgba(201, 154, 91, 0.58);
  color: #9b6a25;
  background: rgba(255, 248, 232, 0.92);
}

body.theme-day .cart-count {
  color: #161616;
  background: var(--gold-hover);
}

body.theme-day .currency-switcher {
  color: rgba(22, 22, 22, 0.62);
}

body.theme-day .currency-switcher select,
body.theme-day .currency-dropdown-button,
body.theme-day .currency-dropdown-option {
  border-color: rgba(130, 102, 62, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

body.theme-day .currency-dropdown-button:hover,
body.theme-day .currency-switcher.is-open .currency-dropdown-button,
body.theme-day .currency-dropdown-option:hover,
body.theme-day .currency-dropdown-option.is-selected {
  border-color: rgba(201, 154, 91, 0.46);
  background: rgba(255, 248, 232, 0.94);
}

body.theme-day .currency-dropdown-menu {
  border-color: rgba(130, 102, 62, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(64, 48, 28, 0.18);
}

body.theme-day .hero,
body.theme-day .welcome-section,
body.theme-day .about-story,
body.theme-day .experiences-section,
body.theme-day .cinema-section,
body.theme-day .story-section,
body.theme-day .hands-section,
body.theme-day .statement-section,
body.theme-day .faq-section,
body.theme-day .video-stories-section,
body.theme-day .section,
body.theme-day .contact-section,
body.theme-day .order-section,
body.theme-day .testimonials-people-section,
body.theme-day .testimonials-messages-section,
body.theme-day .testimonial-stats-section,
body.theme-day .testimonials-closing {
  background:
    radial-gradient(circle at 78% 12%, rgba(201, 154, 91, 0.13), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--surface));
}

body.theme-day .hero-showcase {
  opacity: 0.42;
}

body.theme-day .hero-showcase::before,
body.theme-day .hero-overlay {
  background:
    radial-gradient(circle at 34% 50%, rgba(201, 154, 91, 0.18), transparent 24rem),
    linear-gradient(90deg, rgba(247, 244, 238, 0.94), rgba(247, 244, 238, 0.72) 46%, rgba(247, 244, 238, 0.32));
}

body.theme-day .hero-overlay::after {
  background: radial-gradient(circle at 68% 38%, rgba(201, 154, 91, 0.16), transparent 26rem);
}

body.theme-day .hero-content h1,
body.theme-day h1,
body.theme-day h2,
body.theme-day h3,
body.theme-day .faq-main-title,
body.theme-day .testimonials-hero-copy h1,
body.theme-day .testimonials-people-section h2,
body.theme-day .testimonials-messages-section h2,
body.theme-day .testimonials-closing-copy h2 {
  color: var(--text);
  text-shadow: none;
}

body.theme-day .hero-text,
body.theme-day .home-story-copy p,
body.theme-day .catalog-intro,
body.theme-day .contact-heading p:last-child,
body.theme-day .testimonials-hero-copy p:not(.eyebrow),
body.theme-day .testimonials-closing-copy p:not(.eyebrow),
body.theme-day .faq-list p,
body.theme-day .faq-list li,
body.theme-day .market-note,
body.theme-day .currency-note,
body.theme-day .order-copy .currency-note {
  color: var(--text-secondary);
  text-shadow: none;
}

body.theme-day .eyebrow,
body.theme-day .catalog-title,
body.theme-day .home-story-subtitle,
body.theme-day .home-story-highlight,
body.theme-day .text-emphasis,
body.theme-day .faq-link,
body.theme-day .testimonial-stats strong {
  color: #a9742d;
}

body.theme-day .primary-button,
body.theme-day .submit-button,
body.theme-day .add-cart-button {
  border-color: rgba(201, 154, 91, 0.5);
  color: #161616;
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  box-shadow: 0 18px 42px rgba(146, 100, 38, 0.18);
}

body.theme-day .primary-button:hover,
body.theme-day .submit-button:hover,
body.theme-day .add-cart-button:hover {
  border-color: rgba(201, 154, 91, 0.78);
  background: linear-gradient(135deg, #e3b66f, var(--gold));
}

body.theme-day .secondary-hero-button,
body.theme-day .catalog-category-filters button,
body.theme-day .view-toggle,
body.theme-day .secondary-button {
  border-color: rgba(130, 102, 62, 0.2);
  color: rgba(22, 22, 22, 0.72);
  background: rgba(255, 255, 255, 0.64);
}

body.theme-day .secondary-hero-button:hover,
body.theme-day .catalog-category-filters button:hover,
body.theme-day .catalog-category-filters button.is-active,
body.theme-day .view-toggle:hover,
body.theme-day .view-toggle.is-active,
body.theme-day .secondary-button:hover {
  border-color: rgba(201, 154, 91, 0.58);
  color: #9b6a25;
  background: rgba(255, 248, 232, 0.92);
}

body.theme-day .product-card,
body.theme-day .contact-card,
body.theme-day .faq-list details,
body.theme-day .featured-testimonial,
body.theme-day .people-carousel figure,
body.theme-day .messages-masonry figure,
body.theme-day .testimonial-stats div {
  border-color: var(--border);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.92)),
    var(--card);
  box-shadow: 0 18px 50px rgba(64, 48, 28, 0.1);
}

body.theme-day .product-card:hover,
body.theme-day .contact-card:hover {
  border-color: rgba(201, 154, 91, 0.46);
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 248, 232, 0.92)),
    var(--card);
  box-shadow: 0 22px 62px rgba(64, 48, 28, 0.14);
}

body.theme-day .product-image,
body.theme-day .product-card[data-category-card="libros-pintados"] .product-image {
  border-bottom-color: var(--border);
  background:
    radial-gradient(circle at center, rgba(201, 154, 91, 0.16), transparent 18rem),
    rgba(239, 232, 221, 0.72);
}

body.theme-day .product-card p,
body.theme-day .site-footer p,
body.theme-day .contact-card strong,
body.theme-day .testimonial-stats span,
body.theme-day .drawer-cart-item small {
  color: var(--text-secondary);
}

body.theme-day .catalog-controls {
  border-block-color: var(--border);
}

body.theme-day .catalog-search-control input,
body.theme-day .catalog-sort-control select,
body.theme-day .product-card select,
body.theme-day .search-bar input,
body.theme-day input,
body.theme-day select,
body.theme-day textarea {
  border-color: rgba(130, 102, 62, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
}

body.theme-day input:focus,
body.theme-day select:focus,
body.theme-day textarea:focus {
  border-color: rgba(201, 154, 91, 0.58);
  box-shadow: 0 0 0 3px rgba(201, 154, 91, 0.16);
}

body.theme-day .order-form,
body.theme-day .cart-summary,
body.theme-day .checkout-payment-method {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

body.theme-day .checkout-form-section-title h3,
body.theme-day label,
body.theme-day .phone-country-code,
body.theme-day .country-picker-button {
  color: var(--text);
}

body.theme-day .phone-country-code,
body.theme-day .country-picker-button,
body.theme-day .country-picker-menu,
body.theme-day .country-picker-menu input,
body.theme-day .country-picker-option {
  border-color: rgba(130, 102, 62, 0.2);
  background: #ffffff;
}

body.theme-day .contact-icon {
  border-color: rgba(201, 154, 91, 0.28);
  color: #9b6a25;
  background: rgba(201, 154, 91, 0.1);
}

body.theme-day .home-story-highlight {
  border-left-color: rgba(201, 154, 91, 0.46);
}

body.theme-day .about-portrait,
body.theme-day .home-video-frame,
body.theme-day .people-carousel,
body.theme-day .cart-drawer,
body.theme-day .product-detail-modal,
body.theme-day .checkout-confirmation-card {
  border-color: var(--border);
  background:
    radial-gradient(circle at 50% 14%, rgba(201, 154, 91, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

body.theme-day .about-portrait img,
body.theme-day .about-video {
  filter: saturate(0.96) contrast(1.02) brightness(0.98);
}

body.theme-day .testimonials-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 154, 91, 0.14), transparent 24rem),
    linear-gradient(135deg, var(--surface), var(--bg));
}

body.theme-day .cart-drawer {
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 154, 91, 0.14), transparent 20rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: -28px 0 80px rgba(64, 48, 28, 0.16);
}

body.theme-day .drawer-backdrop,
body.theme-day .account-backdrop,
body.theme-day .modal-backdrop {
  background: rgba(64, 48, 28, 0.22);
}

body.theme-day .drawer-cart-item,
body.theme-day .drawer-summary,
body.theme-day .drawer-summary .summary-line {
  border-color: var(--border);
}

body.theme-day .drawer-cart-item strong,
body.theme-day .drawer-summary .summary-line span,
body.theme-day .drawer-summary .summary-line strong {
  color: var(--text);
}

body.theme-day .site-footer {
  border-top-color: var(--border);
  background: #e7ddcf;
}

body.theme-day .site-footer p:first-child,
body.theme-day .site-footer [data-i18n="introSlogan"],
body.theme-day .site-footer .legal-notice {
  color: var(--text);
  text-shadow: none;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: #16100a;
  background: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
}

.search-bar {
  grid-column: 1 / -1;
  width: min(680px, 100%);
  justify-self: center;
  animation: languageSettle 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.search-bar input {
  border-color: rgba(240, 201, 133, 0.28);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
}

.main-nav a {
  position: relative;
  pointer-events: auto;
  transition: color 500ms ease;
}

html[lang="fr"] .main-nav a[data-i18n="navUs"] {
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms ease;
}

.main-nav a:hover {
  color: var(--cream);
}

.main-nav a:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: clamp(120px, 13vw, 190px) clamp(20px, 6vw, 92px) clamp(78px, 10vw, 132px);
  background: var(--night);
}

.hero-showcase,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-showcase {
  z-index: 0;
  overflow: hidden;
  opacity: 0.96;
}

.hero-showcase::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background:
    radial-gradient(circle at 34% 50%, rgba(240, 201, 133, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.44) 38%, rgba(8, 7, 6, 0.66));
  pointer-events: none;
}

.film-reel {
  position: absolute;
  left: -18vw;
  display: flex;
  width: max-content;
  gap: clamp(14px, 2vw, 28px);
  filter: blur(1.1px) saturate(0.82) contrast(1.06);
  opacity: 0.64;
  will-change: transform;
}

.film-reel-near {
  top: 14%;
  z-index: 2;
  animation: filmTravel 30s linear infinite;
}

.film-reel-mid {
  top: 46%;
  z-index: 1;
  opacity: 0.46;
  filter: blur(2.2px) saturate(0.7) contrast(1.06);
  animation: filmTravelReverse 38s linear infinite;
}

.film-reel-far {
  top: 68%;
  z-index: 0;
  opacity: 0.3;
  filter: blur(3px) saturate(0.64) contrast(1);
  transform: scale(0.82);
  animation: filmTravelFar 52s linear infinite;
}

.film-frame {
  position: relative;
  overflow: hidden;
  width: clamp(150px, 15vw, 260px);
  aspect-ratio: 0.78;
  margin: 0;
  border: 1px solid rgba(240, 201, 133, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.5);
}

.film-frame.is-wide {
  width: clamp(230px, 24vw, 410px);
  aspect-ratio: 1.55;
}

.film-frame.is-tall {
  width: clamp(170px, 17vw, 300px);
  aspect-ratio: 0.68;
}

.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.film-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 34%, rgba(8, 7, 6, 0.62)),
    radial-gradient(circle at 50% 20%, rgba(240, 201, 133, 0.08), transparent 18rem);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: center;
  width: min(1180px, 100%);
  margin-left: clamp(0px, 4vw, 54px);
}

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

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(8, 7, 6, 0.3), transparent 28rem),
    linear-gradient(90deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.72) 34%, rgba(8, 7, 6, 0.22) 70%, rgba(8, 7, 6, 0.78) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.2) 0%, rgba(8, 7, 6, 0.84) 100%);
}

.hero-overlay::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 68% 38%, rgba(240, 201, 133, 0.13), transparent 26rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display-serif);
  font-weight: 800;
  line-height: 0.98;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9vw, 126px);
  letter-spacing: 0.005em;
  text-shadow:
    0 24px 82px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(240, 201, 133, 0.1);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 88px);
}

.hero-content h1 {
  max-width: 620px;
  color: rgba(250, 235, 210, 0.97);
  font-family: var(--editorial-serif);
  font-size: clamp(48px, 6vw, 94px);
  font-style: italic;
  font-weight: 750;
  line-height: 0.97;
  letter-spacing: 0.012em;
  text-wrap: balance;
  text-shadow:
    0 26px 88px rgba(0, 0, 0, 0.66),
    0 0 30px rgba(240, 201, 133, 0.12);
  font-variation-settings: "SOFT" 78, "WONK" 1;
}

.site-footer [data-i18n="introSlogan"] {
  font-family: var(--editorial-serif);
  font-style: italic;
  font-weight: 750;
  line-height: 0.94;
  text-wrap: balance;
  font-variation-settings: "SOFT" 78, "WONK" 1;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--smoke);
  font-size: clamp(20px, 2.2vw, 28px);
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.5);
}

.page-eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.secondary-hero-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  text-decoration: none;
  transition: transform 500ms ease, color 500ms ease, border-color 500ms ease, background 500ms ease;
}

.secondary-hero-button:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 201, 133, 0.58);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.1);
}

.hero-video-shell {
  position: relative;
  justify-self: center;
  width: min(100%, 360px);
  max-height: 610px;
  aspect-ratio: 9 / 16;
  min-height: auto;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(21, 17, 13, 0.62);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-video-shell::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(240, 201, 133, 0.12);
  border-radius: 8px;
  content: "";
}

.hero-video-shell video,
.home-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(246, 236, 220, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: 20px;
}

.primary-button,
.submit-button,
.add-cart-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 201, 133, 0.42);
  border-radius: 999px;
  padding: 0 24px;
  color: var(--cream);
  background: rgba(201, 154, 91, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 500ms ease, background 500ms ease, border-color 500ms ease;
}

.primary-button:hover,
.submit-button:hover,
.add-cart-button:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.28);
}

.review-order-button {
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5d083, #c99436);
  border-color: rgba(201, 154, 91, 0.72);
  box-shadow: 0 18px 42px rgba(201, 148, 54, 0.26);
}

.review-order-button:hover {
  color: #1a1a1a;
  background: linear-gradient(135deg, #f8d992, #d2a247);
}

.review-order-button:disabled {
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.review-order-button,
.review-order-button:hover,
.review-order-button:active,
.review-order-button:disabled,
body.theme-day .review-order-button,
body.theme-day .review-order-button:hover,
body.theme-day .review-order-button:active,
body.theme-day .review-order-button:disabled {
  color: #000000;
  -webkit-text-fill-color: #000000;
  opacity: 1;
  filter: none;
}

.add-cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
  border-color: rgba(240, 201, 133, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.hero-caption {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 18px;
  color: rgba(246, 236, 220, 0.54);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes heroSlide {
  0%,
  17% {
    transform: translateX(0);
  }

  25%,
  42% {
    transform: translateX(-25%);
  }

  50%,
  67% {
    transform: translateX(-50%);
  }

  75%,
  92% {
    transform: translateX(-75%);
  }

  100% {
    transform: translateX(0);
  }
}

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

@keyframes filmTravelReverse {
  from { transform: translateX(-46%); }
  to { transform: translateX(0); }
}

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

@keyframes memoryWordsA {
  from { transform: translateX(0); }
  to { transform: translateX(72vw); }
}

@keyframes memoryWordsB {
  from { transform: translateX(0); }
  to { transform: translateX(-78vw); }
}

@keyframes microPhrase {
  0%, 18%, 100% {
    opacity: 0;
    transform: translateY(10px);
  }

  28%, 58% {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-section,
.about-story,
.experiences-section,
.cinema-section,
.story-section,
.hands-section,
.statement-section,
.faq-section,
.video-stories-section,
.section,
.contact-section,
.order-section {
  padding: clamp(86px, 11vw, 162px) clamp(20px, 6vw, 92px);
}

.page-section[hidden] {
  display: none !important;
}

.welcome-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 154, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, #0c0b09, #15110d);
}

.about-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 154, 91, 0.16), transparent 30rem),
    radial-gradient(circle at 86% 44%, rgba(240, 201, 133, 0.08), transparent 24rem),
    linear-gradient(180deg, #0b0a08 0%, #15110d 52%, #0c0b09 100%);
}

.about-hero,
.about-chapter {
  max-width: 1180px;
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
  padding-top: clamp(28px, 4vw, 54px);
}

.about-portrait {
  position: relative;
  width: min(100%, 610px);
  height: auto;
  max-height: 610px;
  aspect-ratio: 9 / 16;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 201, 133, 0.08), transparent 22rem),
    rgba(8, 7, 6, 0.88);
  box-shadow: var(--shadow);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.38)),
    radial-gradient(circle at 50% 22%, rgba(240, 201, 133, 0.18), transparent 34rem);
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.82);
  transform: scale(1.02);
}

.about-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
  transform: none;
}

.about-video-replay {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(240, 201, 133, 0.42);
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(21, 17, 13, 0.86), rgba(8, 7, 6, 0.78)),
    rgba(8, 7, 6, 0.82);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.045) inset;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-video-replay:hover {
  border-color: rgba(240, 201, 133, 0.76);
  background:
    linear-gradient(180deg, rgba(32, 25, 17, 0.92), rgba(11, 9, 7, 0.84)),
    rgba(8, 7, 6, 0.88);
  transform: translateY(-1px);
}

.about-video-replay:focus-visible {
  outline: 2px solid rgba(240, 201, 133, 0.8);
  outline-offset: 3px;
}

.about-video-replay {
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(64px, 7vw, 82px);
  height: clamp(64px, 7vw, 82px);
  padding: 0 0 0 4px;
  place-items: center;
  border-radius: 999px;
  font-family: var(--body);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 850;
  letter-spacing: 0.02em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.about-video-replay:hover {
  transform: translate(-50%, calc(-50% - 1px));
}

.about-video-replay.is-replay {
  width: auto;
  height: auto;
  padding: 12px 18px;
  font-size: clamp(13px, 1.1vw, 15px);
}

.about-video-replay[hidden] {
  display: none;
}

.about-intro h1,
.about-chapter h2 {
  max-width: 980px;
  margin: 0 0 clamp(22px, 3vw, 38px);
  color: var(--cream);
  font-family: var(--display-serif);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  font-variation-settings: "SOFT" 74, "WONK" 1;
  text-wrap: balance;
}

.about-intro h1 {
  font-size: clamp(48px, 7.4vw, 112px);
}

.about-chapter {
  padding-top: clamp(96px, 13vw, 190px);
}

.about-chapter-narrow {
  max-width: 900px;
  margin-left: clamp(0px, 8vw, 160px);
}

.about-origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.86fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.about-origin-copy {
  min-width: 0;
}

.about-chapter.about-origin-grid .about-origin-copy h2,
.about-chapter.about-origin-grid .about-origin-copy h3 {
  font-family: "Cormorant Garamond", var(--editorial-serif);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.about-product-placeholder {
  position: relative;
  display: grid;
  min-height: clamp(320px, 42vw, 560px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 44% 32%, rgba(240, 201, 133, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(21, 17, 13, 0.74);
  box-shadow: var(--shadow);
}

.about-product-placeholder::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240, 201, 133, 0.14);
  border-radius: 6px;
  content: "";
  pointer-events: none;
  z-index: 1;
}

.about-product-photo {
  padding: clamp(12px, 2vw, 20px);
  background:
    radial-gradient(circle at 50% 36%, rgba(240, 201, 133, 0.12), transparent 18rem),
    rgba(21, 17, 13, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), 0 0 34px rgba(160, 111, 45, 0.08);
}

.about-product-photo img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-height: clamp(300px, 40vw, 540px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.about-product-photo-mobile {
  display: none;
}

.about-product-placeholder span {
  max-width: 220px;
  color: rgba(244, 219, 180, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.about-chapter h2 {
  font-size: clamp(42px, 5.8vw, 92px);
}

.about-copy {
  display: grid;
  max-width: 760px;
  gap: 18px;
}

.about-intro .about-copy {
  max-width: 700px;
  gap: clamp(11px, 1.2vw, 15px);
}

.about-copy p,
.about-chapter > p:not(.about-statement):not(.about-closing) {
  margin: 0;
  color: rgba(248, 239, 222, 0.72);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.72;
}

.about-intro .about-copy p {
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.62;
}

.about-hero .about-intro > .eyebrow {
  font-size: 14.4px;
}

.about-statement,
.about-closing {
  max-width: 1040px;
  margin: clamp(54px, 7vw, 92px) 0;
  color: var(--gold-soft);
  font-family: var(--editorial-serif);
  font-size: clamp(42px, 6.6vw, 104px);
  font-style: italic;
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0.002em;
  text-shadow: 0 0 34px rgba(201, 154, 91, 0.14);
  font-variation-settings: "SOFT" 86, "WONK" 1;
  text-wrap: balance;
}

.about-list-copy {
  gap: 10px;
}

.about-chapter .about-list-copy p {
  color: var(--cream);
  font-family: "Cormorant Garamond", var(--editorial-serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.012em;
  opacity: 0.9;
}

.about-final {
  padding-bottom: clamp(20px, 5vw, 70px);
}

.about-closing {
  margin-bottom: 0;
  color: var(--cream);
}

.about-quote {
  color: var(--gold-soft) !important;
  font-family: var(--editorial-serif);
  font-size: clamp(28px, 3.4vw, 54px) !important;
  font-style: italic;
  font-weight: 820;
  line-height: 1.08 !important;
  text-shadow: 0 0 34px rgba(201, 154, 91, 0.13);
}

.about-desire {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
  margin: clamp(16px, 2.4vw, 28px) 0;
  border-left: 1px solid rgba(240, 201, 133, 0.32);
  padding: clamp(18px, 2.6vw, 30px) 0 clamp(18px, 2.6vw, 30px) clamp(18px, 3vw, 34px);
}

.about-desire h3 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.01em;
}

.about-desire-quote,
.about-desire-note {
  margin: 0 !important;
}

.about-desire-quote {
  max-width: 700px;
  color: var(--cream) !important;
  font-family: "Cormorant Garamond", var(--editorial-serif);
  font-size: clamp(22px, 2.1vw, 34px) !important;
  font-weight: 500;
  line-height: 1.38 !important;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.about-desire-note {
  color: rgba(248, 239, 222, 0.8) !important;
  font-size: clamp(17px, 1.35vw, 22px) !important;
  line-height: 1.5 !important;
}

.about-closing-copy {
  max-width: 940px;
  gap: clamp(18px, 2.4vw, 30px);
}

.about-final .about-closing-copy p {
  color: var(--cream);
  font-family: "Cormorant Garamond", var(--editorial-serif);
  font-size: clamp(18px, 2.25vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.48;
  text-wrap: balance;
}

.about-final .about-closing-copy p:last-child {
  color: var(--cream);
  font-size: clamp(20px, 2.55vw, 38px);
  font-weight: 500;
}

.legal-seal {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(244, 219, 180, 0.76);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.faq-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 154, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, #0c0b09, #15110d);
}

.faq-list {
  display: grid;
  max-width: 980px;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--smoke);
}

.global66-referral-box {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 2px 22px 24px;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 12px;
  padding: clamp(18px, 3vw, 26px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.14), transparent 22rem),
    rgba(12, 11, 9, 0.44);
}

.global66-referral-box h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(17px, 1.35vw, 21px);
}

.faq-list .global66-referral-box p {
  max-width: 720px;
  padding: 0;
  color: rgba(246, 236, 220, 0.72);
}

.global66-referral-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  padding: 13px 24px;
  color: #fff;
  background: #1d4ed8;
  box-shadow: 0 16px 38px rgba(29, 78, 216, 0.24);
  font-weight: 850;
  line-height: 1.1;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.global66-referral-button:hover {
  transform: translateY(-2px);
  background: #1e40af;
  box-shadow: 0 20px 44px rgba(29, 78, 216, 0.3);
}

.global66-referral-box small {
  color: rgba(246, 236, 220, 0.52);
  font-size: 12px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.welcome-video {
  display: grid;
  min-height: clamp(320px, 48vw, 680px);
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(12, 11, 9, 0.22), rgba(12, 11, 9, 0.64)),
    url("assets/Images/Banner/banner-5.jpg") center/cover;
  box-shadow: var(--shadow);
}

.welcome-video span {
  color: var(--gold-soft);
  font-family: var(--editorial-serif);
  font-style: italic;
  font-weight: 750;
  letter-spacing: 0.012em;
  font-size: clamp(32px, 5vw, 72px);
  font-variation-settings: "SOFT" 78, "WONK" 1;
}

.welcome-copy p:last-child {
  color: var(--smoke);
  font-size: clamp(20px, 2.2vw, 28px);
}

.experiences-section {
  min-height: 58vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(rgba(12, 11, 9, 0.52), rgba(12, 11, 9, 0.76)),
    url("assets/Images/Banner/banner-3.jpg") center/cover fixed;
}

.experience-lines {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.experience-lines p {
  margin: 0;
  font-family: var(--display-serif);
  font-weight: 820;
  letter-spacing: 0.004em;
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.96;
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

.cinema-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 154, 91, 0.14), transparent 28rem),
    linear-gradient(180deg, #0c0b09, #15110d);
}

.cinema-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  align-items: end;
}

.cinema-frame {
  display: grid;
  gap: 18px;
}

.cinema-frame:nth-child(2) {
  transform: translateY(44px);
}

.cinema-frame p {
  margin: 0;
  color: var(--smoke);
}

.cinema-image {
  min-height: clamp(300px, 38vw, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.9) contrast(1.08);
}

.cinema-image-one {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.66)),
    url("assets/Images/Banner/banner-5.jpg");
}

.cinema-image-two {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.64)),
    url("assets/Images/Banner/banner-6.jpg");
}

.cinema-image-three {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.64)),
    url("assets/Images/Banner/banner-4.jpg");
}

.story-section {
  background:
    linear-gradient(180deg, rgba(12, 11, 9, 1), rgba(21, 17, 13, 0.96)),
    var(--night);
}

.story-kicker {
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.story-text {
  display: grid;
  gap: 22px;
  color: var(--smoke);
  font-size: clamp(18px, 2vw, 24px);
}

.story-text p {
  margin: 0;
}

.hands-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 154, 91, 0.14), transparent 30rem),
    linear-gradient(180deg, #15110d, #0c0b09);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.hands-grid,
.catalog-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hand-card {
  display: grid;
  gap: 18px;
}

.hand-image {
  min-height: clamp(320px, 42vw, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.86) contrast(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.hand-card:hover .hand-image {
  transform: translateY(-8px);
  filter: saturate(1) contrast(1.12);
}

.hand-image-one {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.06), rgba(12, 11, 9, 0.58)),
    url("assets/Images/Banner/banner-2.jpg");
}

.hand-image-two {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.62)),
    url("assets/Images/Banner/banner-3.jpg");
}

.hand-image-three {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.62)),
    url("assets/Images/Banner/banner-4.jpg");
}

.hand-card p {
  margin: 0;
  color: var(--smoke);
  font-size: 17px;
}

.statement-section {
  background:
    linear-gradient(rgba(12, 11, 9, 0.68), rgba(12, 11, 9, 0.82)),
    url("assets/Images/Banner/banner-1.jpg") center/cover fixed;
}

.statement {
  display: grid;
  gap: clamp(24px, 4vw, 46px);
  max-width: 980px;
}

.statement p {
  margin: 0;
  font-family: var(--editorial-serif);
  font-style: italic;
  font-weight: 720;
  letter-spacing: 0.01em;
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 1.02;
  font-variation-settings: "SOFT" 78, "WONK" 1;
}

.video-stories-section {
  background:
    radial-gradient(circle at 72% 22%, rgba(201, 154, 91, 0.14), transparent 26rem),
    linear-gradient(180deg, #0f0d0b, #15110d);
}

.video-placeholder {
  display: grid;
  min-height: clamp(260px, 34vw, 460px);
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(rgba(12, 11, 9, 0.58), rgba(12, 11, 9, 0.76)),
    url("assets/Images/Banner/banner-2.jpg") center/cover;
  box-shadow: var(--shadow);
}

.video-placeholder span {
  color: var(--gold-soft);
  font-family: var(--editorial-serif);
  font-style: italic;
  font-weight: 750;
  letter-spacing: 0.012em;
  font-size: clamp(32px, 5vw, 72px);
  text-align: center;
  font-variation-settings: "SOFT" 78, "WONK" 1;
}

.product-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 154, 91, 0.11), transparent 28rem),
    linear-gradient(180deg, #0f0d0b, #15110d);
}

.product-section .section-heading {
  margin-bottom: clamp(24px, 4vw, 42px);
}

.catalog-title {
  color: var(--gold-soft);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--smoke);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 60px);
  border-block: 1px solid rgba(240, 201, 133, 0.16);
  padding-block: 16px;
}

.catalog-category-filters {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-category-filters button {
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 999px;
  padding: 11px 15px;
  color: rgba(246, 236, 220, 0.78);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 360ms ease, border-color 360ms ease, background 360ms ease, transform 360ms ease;
}

.catalog-category-filters button:hover,
.catalog-category-filters button.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 133, 0.62);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.13);
}

.catalog-search-control {
  position: relative;
  display: flex;
  align-items: center;
}

.catalog-search-control svg,
.view-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-search-control svg {
  position: absolute;
  left: 14px;
  color: rgba(240, 201, 133, 0.72);
  pointer-events: none;
}

.catalog-search-control input {
  min-height: 46px;
  border-color: rgba(240, 201, 133, 0.2);
  padding-left: 44px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
}

.catalog-sort-control {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(246, 236, 220, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-sort-control select {
  min-height: 46px;
  border-color: rgba(240, 201, 133, 0.2);
  color: var(--cream);
  background: rgba(12, 11, 9, 0.68);
}

.catalog-view-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.view-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 999px;
  color: rgba(246, 236, 220, 0.7);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: color 360ms ease, border-color 360ms ease, background 360ms ease, transform 360ms ease;
}

.view-toggle:hover,
.view-toggle.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 133, 0.58);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.12);
}

.catalog-count {
  margin: 0;
  color: rgba(246, 236, 220, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  gap: clamp(48px, 7vw, 86px);
}

.product-grid.catalog-flat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-family-group {
  display: grid;
  gap: 18px;
}

.catalog-family-group h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-grid[data-view="compact"] .catalog-family-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid[data-view="compact"] .product-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
}

.product-grid[data-view="compact"] .product-image {
  min-height: 100%;
  border-right: 1px solid rgba(240, 201, 133, 0.16);
  border-bottom: 0;
}

.product-grid[data-view="compact"] .product-image img {
  height: 100%;
}

.product-grid[data-view="compact"] .product-card > :not(.product-image) {
  margin-inline: 22px;
}

.product-grid[data-view="compact"] .product-card h3 {
  font-size: clamp(20px, 1.7vw, 28px);
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(21, 17, 13, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  box-shadow: 0 20px 72px rgba(0, 0, 0, 0.28);
  transition: transform 700ms ease, border-color 700ms ease, background 700ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 201, 133, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(21, 17, 13, 0.82);
}

.category-card {
  cursor: pointer;
}

.category-card .product-actions {
  margin-top: 28px;
}

.product-image {
  position: relative;
  display: grid;
  min-height: clamp(220px, 24vw, 340px);
  place-items: center;
  border-bottom: 1px solid rgba(240, 201, 133, 0.16);
  background:
    radial-gradient(circle at center, rgba(240, 201, 133, 0.12), transparent 18rem),
    rgba(8, 7, 6, 0.36);
  filter: saturate(0.86) contrast(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.product-image img {
  width: 100%;
  height: clamp(220px, 24vw, 340px);
  object-fit: cover;
  transition: opacity 260ms ease, transform 900ms ease;
}

.product-card[data-product-card="altar-reconocimiento-doble-golden"] .product-image img[src$="Soporte de Altar.jpeg"] {
  object-position: center 42%;
}

.product-card[data-product-card="caja-bombones-personalizada"] .product-image img[src$="Caja de bombones Personalizada abierta.jpeg"],
.product-card[data-product-card="letrero-personalizado"] .product-image img[src$="Letreros Personalizados 2.jpeg"] {
  object-position: center 42%;
}

.product-card[data-category-card="libros-pintados"] .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  height: clamp(220px, 24vw, 340px);
  background:
    radial-gradient(circle at center, rgba(240, 201, 133, 0.08), transparent 18rem),
    rgba(8, 7, 6, 0.36);
}

.product-card[data-category-card="libros-pintados"] .product-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card[data-category-card="libros-pintados"]:hover .product-image {
  transform: none;
}

.product-placeholder {
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 201, 133, 0.13), transparent 16rem),
    linear-gradient(145deg, rgba(246, 236, 220, 0.055), rgba(201, 154, 91, 0.035)),
    rgba(12, 10, 8, 0.64);
  filter: none;
  text-align: center;
}

.product-placeholder .placeholder-content {
  display: grid;
  max-width: 30rem;
  gap: 12px;
}

.product-placeholder span {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1;
}

.product-placeholder p {
  margin: 0;
  color: rgba(246, 236, 220, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.34);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(10, 8, 6, 0.52);
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 360ms ease, border-color 360ms ease, background 360ms ease;
}

.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }

.product-card:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  border-color: rgba(240, 201, 133, 0.72);
  background: rgba(201, 154, 91, 0.24);
}

@media (hover: none), (pointer: coarse) {
  .product-card .gallery-arrow {
    opacity: 0.7;
  }

  .product-card .gallery-arrow:active {
    opacity: 1;
  }
}

.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.gallery-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 236, 220, 0.42);
  transition: width 280ms ease, background 280ms ease;
}

.gallery-dots span.is-active {
  width: 18px;
  background: var(--gold-soft);
}

.product-card:hover .product-image {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.12);
}

.product-image-altar {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.02), rgba(12, 11, 9, 0.58)),
    url("assets/Images/Banner/banner-5.jpg");
}

.product-image-mission {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.62)),
    url("assets/Images/Banner/banner-3.jpg");
}

.product-image-class {
  background-image:
    linear-gradient(180deg, rgba(12, 11, 9, 0.04), rgba(12, 11, 9, 0.62)),
    url("assets/Images/Banner/banner-2.jpg");
}

.product-card > :not(.product-image) {
  margin-inline: 26px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 18px;
  color: rgba(240, 201, 133, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-stock-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
  line-height: 1.1;
}

.product-stock-badge small {
  max-width: 11rem;
  color: rgba(240, 201, 133, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.product-card h3 {
  font-family: var(--display-serif);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.005em;
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

.product-card p,
.order-copy p,
.site-footer p {
  color: var(--muted);
}

.product-price {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid rgba(240, 201, 133, 0.36);
  color: var(--gold-soft);
  font-size: 22px;
}

.variant-label {
  display: block;
  margin-top: 22px;
  color: rgba(246, 236, 220, 0.72);
}

.variant-select {
  margin-top: 8px;
  border-color: rgba(240, 201, 133, 0.22);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 28px;
}

.add-cart-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--smoke);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 420ms ease, border-color 420ms ease, transform 420ms ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 201, 133, 0.58);
  color: var(--gold-soft);
}

.catalog-empty {
  margin-top: 26px;
  color: var(--muted);
  text-align: center;
}

.market-note {
  max-width: 580px;
  color: rgba(246, 236, 220, 0.88);
  font-size: 15px;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 154, 91, 0.13), transparent 28rem),
    linear-gradient(180deg, #15110d, #0c0b09);
}

.checkout-section.is-hidden {
  display: none;
}

.order-copy {
  position: sticky;
  top: 116px;
}

.order-section.checkout-page-section {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.order-section.checkout-page-section .order-copy {
  position: static;
  width: min(100%, 760px);
  max-width: 760px;
  text-align: center;
}

.order-section.checkout-page-section .order-copy h2,
.order-section.checkout-page-section .order-copy p {
  margin-inline: auto;
}

.contact-section {
  background:
    radial-gradient(circle at 78% 10%, rgba(201, 154, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, #0c0b09, #15110d);
}

.contact-heading {
  display: grid;
  max-width: 820px;
  gap: 12px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.contact-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.contact-heading p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.contact-card {
  display: grid;
  min-height: 164px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(240, 201, 133, 0.17);
  border-radius: 8px;
  padding: 20px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(21, 17, 13, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 480ms ease, border-color 480ms ease, background 480ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 201, 133, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    rgba(21, 17, 13, 0.78);
}

.contact-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.26);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  transform-origin: center;
}

.contact-icon.contact-icon-whatsapp img {
  width: 100%;
  height: 100%;
  transform: scale(1.45);
}

.contact-icon.contact-icon-mail img {
  width: 100%;
  height: 100%;
  transform: scale(1.95);
}

.contact-icon.contact-icon-instagram img {
  width: 100%;
  height: 100%;
  transform: scale(1.48);
}

.contact-icon.contact-icon-facebook img {
  width: 100%;
  height: 100%;
  transform: scale(1.26);
}

.contact-icon.contact-icon-tiktok img {
  width: 100%;
  height: 100%;
  transform: scale(1.52);
}

.contact-icon.contact-icon-location img {
  width: 100%;
  height: 100%;
  transform: scale(1.9);
}

.contact-icon.contact-icon-clock img {
  width: 100%;
  height: 100%;
  transform: scale(1.72);
}

.contact-card > span:not(.contact-icon) {
  color: rgba(240, 201, 133, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--smoke);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.18;
  white-space: pre-line;
}

.contact-card-email strong {
  max-width: 100%;
  font-size: clamp(14px, 1.35vw, 18px);
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-card-wide {
  grid-column: span 2;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 236, 220, 0.94);
  box-shadow: var(--shadow);
  color: var(--charcoal);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.cart-summary.full,
.checkout-form-section-title,
.payment-form-row,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.checkout-form-section-title {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(43, 33, 24, 0.08);
}

.checkout-form-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.checkout-form-section-title span {
  color: #7a5422;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-form-section-title h3 {
  margin: 0;
  color: #211912;
  font-size: 18px;
  line-height: 1.25;
}

label {
  color: #2b2118;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.europe-currency {
  color: var(--smoke);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #211912;
  background: rgba(255, 252, 246, 0.84);
  font: inherit;
}

.phone-split-fields {
  display: grid;
  grid-template-columns: minmax(82px, 0.28fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-country-code {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #2b2118;
  background: rgba(240, 201, 133, 0.18);
  font-weight: 800;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.country-picker {
  position: relative;
}

.country-picker-button {
  display: flex;
  width: 100%;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #211912;
  background: rgba(255, 252, 246, 0.84);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 420ms ease, box-shadow 420ms ease;
}

.country-picker-button > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-picker-selected {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

.country-picker-button:hover,
.country-picker-button[aria-expanded="true"] {
  border-color: rgba(201, 154, 91, 0.56);
  box-shadow: 0 0 0 3px rgba(201, 154, 91, 0.14);
}

#countryPickerCode,
.country-picker-code {
  color: #8d612d;
  font-weight: 900;
  white-space: nowrap;
}

.delivery-method-row {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.delivery-method-options {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.delivery-method-card {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 112px;
  height: 100%;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 252, 246, 0.84);
  cursor: pointer;
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
  overflow-wrap: anywhere;
  word-break: normal;
}

.delivery-method-card:nth-child(3) {
  grid-column: 1 / -1;
}

.delivery-method-card.is-selected {
  border-color: rgba(201, 154, 91, 0.62);
  background: rgba(240, 201, 133, 0.16);
  box-shadow: 0 0 0 3px rgba(201, 154, 91, 0.12);
}

.delivery-method-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.delivery-method-card input {
  width: auto;
  margin-top: 3px;
}

.delivery-method-card span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.delivery-method-card strong {
  font-size: 0.95rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
}

.delivery-method-card small,
.delivery-helper {
  color: #6f6256;
  font-size: 0.86rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: normal;
}

.delivery-helper {
  margin: 10px 0 0;
}

.international-shipping-row {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.international-shipping-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.international-shipping-card {
  display: grid;
  gap: 6px;
  align-content: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 104px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 8px;
  padding: 13px;
  background: rgba(255, 252, 246, 0.84);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.international-shipping-card.is-selected {
  border-color: rgba(201, 154, 91, 0.62);
  background: rgba(240, 201, 133, 0.16);
  box-shadow: 0 0 0 3px rgba(201, 154, 91, 0.12);
}

.international-shipping-card strong {
  font-size: 0.95rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
}

.international-shipping-card small {
  color: #6f6256;
  font-size: 0.84rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: normal;
}

.form-row.is-hidden {
  display: none;
}

@media (max-width: 720px) {
  .delivery-method-options {
    grid-template-columns: 1fr;
  }
  .delivery-method-card:nth-child(3) {
    grid-column: auto;
  }
  .international-shipping-options {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .delivery-method-options {
    grid-template-columns: 1fr;
  }
  .delivery-method-card:nth-child(3) {
    grid-column: auto;
  }
  .international-shipping-options {
    grid-template-columns: 1fr;
  }
}

.country-picker-menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto;
  z-index: 40;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.country-picker-menu input {
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0;
  color: #111111;
  background: #ffffff;
}

.country-picker-menu input::placeholder {
  color: #555555;
}

.country-picker-list {
  display: grid;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
}

.country-picker-option,
.country-option {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 10px 14px;
  color: #111111;
  background: #ffffff;
  font: inherit;
  cursor: pointer;
  transition: color 360ms ease, background 360ms ease;
}

.country-picker-option:hover,
.country-option:hover {
  color: #111111;
  background: #f8efe0;
}

.country-option-code {
  color: #555555;
  font-weight: 900;
}

.iti {
  width: 100%;
  --iti-border-color: rgba(43, 33, 24, 0.16);
  --iti-dialcode-color: #555555;
  --iti-dropdown-bg: #ffffff;
  --iti-hover-color: #f8efe0;
  --iti-spacer-horizontal: 14px;
}

.iti input[type="tel"] {
  min-height: 51px;
  padding-block: 13px;
  padding-left: 14px !important;
}

.iti__selected-country {
  display: none;
  border-radius: 8px 0 0 8px;
}

.iti__dropdown-content {
  border-color: rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.iti__search-input {
  color: #111111;
  background: #ffffff;
}

.iti__search-input::placeholder {
  color: #555555;
}

.iti__country {
  color: #111111;
  background: #ffffff;
}

.iti__dial-code {
  color: #555555;
}

.iti__country.iti__highlight {
  color: #111111;
  background: #f8efe0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 154, 91, 0.24);
  border-color: var(--gold);
}

.product-card label {
  color: rgba(246, 236, 220, 0.68);
}

.product-card select,
.search-bar input {
  border-color: rgba(240, 201, 133, 0.28);
  color: var(--cream);
  background: rgba(12, 11, 9, 0.68);
}

.submit-button {
  width: 100%;
  margin-top: 6px;
  color: var(--cream);
  background: #18110c;
}

.submit-order-button {
  grid-column: 1 / -1;
  width: 100%;
  color: var(--gold-soft);
  background: linear-gradient(135deg, #071a33, #0d2a4f);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.28);
}

.submit-order-button:hover {
  color: var(--gold-soft);
  background: linear-gradient(135deg, #0b2446, #12345f);
  box-shadow: 0 22px 52px rgba(11, 36, 70, 0.34);
}

.submit-order-button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: none;
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 22px;
  border: 1px solid rgba(201, 154, 91, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.cart-summary h3 {
  margin-bottom: 2px;
  color: #211912;
}

.cart-empty {
  margin: 0;
  color: rgba(43, 33, 24, 0.66);
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(43, 33, 24, 0.12);
}

.cart-item-name {
  display: grid;
  gap: 2px;
  color: #211912;
  font-weight: 800;
}

.cart-item-name small {
  color: rgba(43, 33, 24, 0.62);
  font-weight: 700;
}

.cart-quantity {
  width: 74px;
  padding: 10px;
}

.remove-cart-item {
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: #211912;
  background: rgba(255, 255, 255, 0.44);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(43, 33, 24, 0.12);
}

.summary-line span {
  color: rgba(43, 33, 24, 0.66);
}

.summary-line strong,
.summary-line.total span,
.summary-line.total strong {
  color: #211912;
}

.summary-line.total {
  margin-top: 4px;
  font-size: 20px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #34511f;
  font-weight: 800;
}

.preview-approval-box {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
  border: 1px solid rgba(201, 154, 91, 0.28);
  border-radius: 12px;
  padding: 18px;
  color: #2b2118;
  background: rgba(201, 154, 91, 0.09);
}

.preview-approval-box h3 {
  margin: 0;
  color: #211912;
  font-size: 17px;
}

.preview-approval-box p {
  margin: 0;
  color: rgba(43, 33, 24, 0.76);
  line-height: 1.6;
}

.personalization-preview-box {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(122, 84, 34, 0.18);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 252, 246, 0.82);
}

.personalization-preview-heading {
  display: grid;
  gap: 4px;
}

.personalization-preview-heading span {
  color: #7a5422;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personalization-preview-heading p,
.personalization-preview-list > p {
  margin: 0;
  color: rgba(43, 33, 24, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.personalization-preview-list {
  display: grid;
  gap: 10px;
}

.personalization-preview-item {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(43, 33, 24, 0.1);
  padding-top: 10px;
}

.personalization-preview-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.personalization-preview-item > strong {
  color: #211912;
  font-size: 14px;
  line-height: 1.35;
}

.personalization-preview-item dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.personalization-preview-item dl div {
  display: grid;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: 10px;
}

.personalization-preview-item dt {
  color: rgba(43, 33, 24, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.personalization-preview-item dd {
  margin: 0;
  color: rgba(43, 33, 24, 0.86);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.preview-approval-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(43, 33, 24, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.preview-approval-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #c99a5b;
}

.checkout-confirmation-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.global66-guide-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1220;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.global66-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 1221;
  display: none;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.global66-guide-modal.is-open {
  display: grid;
}

.global66-guide-card {
  position: relative;
  width: min(980px, 100%);
  max-height: min(860px, 92vh);
  overflow-y: auto;
  border: 1px solid rgba(240, 201, 133, 0.3);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 44px);
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(240, 201, 133, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(8, 25, 45, 0.98), rgba(13, 16, 28, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
  scrollbar-color: rgba(240, 201, 133, 0.42) rgba(255, 255, 255, 0.06);
}

.global66-guide-card h2 {
  max-width: 620px;
  margin: 8px 0 14px;
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: 0;
  line-height: 1.02;
}

.global66-guide-card h3 {
  margin: 10px 0 18px;
  color: var(--gold-soft);
  font-size: clamp(20px, 2.8vw, 28px);
  letter-spacing: 0;
  line-height: 1.15;
}

.global66-guide-card p,
.global66-guide-card li {
  color: rgba(246, 236, 220, 0.78);
  line-height: 1.65;
}

.global66-guide-card ol,
.global66-guide-card ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 14px;
  padding-left: 20px;
}

.global66-guide-header {
  max-width: 720px;
  margin-bottom: clamp(22px, 4vw, 34px);
}

.global66-guide-header > p:last-child {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 18px);
}

.global66-guide-steps {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  margin-top: 0;
}

.global66-guide-step {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 16px;
  padding: clamp(18px, 3.5vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(6, 24, 43, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  animation: global66GuideStepIn 520ms ease both;
  animation-delay: calc(var(--step-index, 0) * 70ms);
}

.global66-guide-step-number {
  display: grid;
  place-items: center;
  width: clamp(54px, 11vw, 76px);
  height: clamp(54px, 11vw, 76px);
  border: 1px solid rgba(240, 201, 133, 0.48);
  border-radius: 50%;
  color: #10243d;
  background: linear-gradient(135deg, #f5d69c, #c99a5b);
  font-family: var(--display-serif);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(201, 154, 91, 0.24);
}

.global66-guide-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(12px, 2.5vw, 18px);
}

.global66-guide-images img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.global66-guide-step-copy {
  display: grid;
  gap: 10px;
}

.global66-guide-step-copy p {
  margin: 0;
}

.global66-guide-path,
.global66-guide-emphasis,
.global66-guide-handle,
.global66-guide-warning {
  justify-self: start;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.global66-guide-handle {
  color: #10243d;
  background: linear-gradient(135deg, #f5d69c, #c99a5b);
}

.global66-guide-warning {
  color: #ffe0a3;
  background: rgba(201, 154, 91, 0.14);
}

.global66-guide-card strong {
  color: var(--cream);
}

.global66-guide-card .global66-guide-steps strong {
  color: var(--gold-soft);
}

.global66-guide-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

@keyframes global66GuideStepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .global66-guide-step {
    animation: global66GuideStepIn linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

@media (max-width: 620px) {
  .global66-guide-modal {
    align-items: start;
    padding: 12px;
  }

  .global66-guide-card {
    width: 100%;
    max-height: 94vh;
    border-radius: 14px;
  }

  .global66-guide-images img {
    width: min(100%, 230px);
    max-height: 520px;
  }

  .global66-guide-path,
  .global66-guide-emphasis,
  .global66-guide-handle,
  .global66-guide-warning {
    justify-self: stretch;
    border-radius: 12px;
  }
}

.checkout-confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 1201;
  display: none;
  place-items: center;
  padding: 20px;
}

.checkout-confirmation-modal.is-open {
  display: grid;
}

.checkout-confirmation-card {
  position: relative;
  display: grid;
  width: min(680px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  gap: 18px;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 16px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.14), transparent 22rem),
    rgba(12, 11, 9, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.checkout-confirmation-card h2,
.checkout-confirmation-card h3,
.checkout-confirmation-card p {
  margin: 0;
}

.checkout-confirmation-card h2 {
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.checkout-confirmation-message {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(240, 201, 133, 0.16);
  border-radius: 14px;
  padding: clamp(16px, 3vw, 20px);
  background: rgba(255, 255, 255, 0.045);
}

.checkout-confirmation-message p {
  color: rgba(246, 236, 220, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.checkout-confirmation-summary {
  display: grid;
  gap: 10px;
}

.checkout-confirmation-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(240, 201, 133, 0.12);
  padding-bottom: 10px;
}

.checkout-confirmation-summary span,
.checkout-payment-instructions p {
  color: rgba(246, 236, 220, 0.68);
}

.checkout-confirmation-summary strong {
  color: var(--gold-soft);
  text-align: right;
}

.checkout-payment-instructions {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(240, 201, 133, 0.16);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.global66-recommended-badge {
  width: fit-content;
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: 999px;
  padding: 7px 12px;
  color: #dbeafe;
  background: rgba(29, 78, 216, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.18);
}

.checkout-confirmation-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.checkout-confirmation-actions [hidden] {
  display: none !important;
}

.whatsapp-proof-button {
  min-height: 56px;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 18px 44px rgba(21, 128, 61, 0.28);
}

.whatsapp-proof-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-proof-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #16a34a, #166534);
  box-shadow: 0 22px 54px rgba(21, 128, 61, 0.34);
}

.payment-instructions-button {
  min-height: 56px;
  justify-content: center;
  border-color: rgba(240, 201, 133, 0.38);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.035);
}

.checkout-confirmation-actions .global66-account-button {
  width: 100%;
  min-height: 56px;
}

.checkout-confirmation-action-close {
  min-height: 56px;
  justify-content: center;
  border-color: rgba(246, 236, 220, 0.22);
  color: rgba(246, 236, 220, 0.86);
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 560px) {
  .checkout-confirmation-actions {
    grid-template-columns: 1fr;
  }

  .whatsapp-proof-button,
  .payment-instructions-button {
    width: 100%;
    min-height: 58px;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #080706;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--cream);
  font-family: var(--display-serif);
  font-weight: 800;
  letter-spacing: 0.045em;
  text-shadow: 0 0 18px rgba(240, 201, 133, 0.1);
  font-variation-settings: "SOFT" 72, "WONK" 1;
}

.site-footer [data-i18n="introSlogan"] {
  color: rgba(244, 219, 180, 0.82);
  text-shadow: 0 0 18px rgba(240, 201, 133, 0.1);
}

.site-footer .legal-notice {
  max-width: 520px;
  color: rgba(246, 236, 220, 0.58);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: right;
}

.testimonials-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  padding: clamp(118px, 13vw, 178px) clamp(20px, 7vw, 112px) clamp(72px, 8vw, 116px);
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 154, 91, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(18, 14, 10, 0.96), rgba(8, 7, 6, 0.98));
}

.testimonials-hero::after {
  position: absolute;
  right: clamp(20px, 8vw, 132px);
  bottom: clamp(28px, 7vw, 92px);
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border: 1px solid rgba(240, 201, 133, 0.12);
  border-radius: 50%;
  content: "";
  opacity: 0.48;
}

.testimonials-hero-copy,
.featured-testimonial {
  position: relative;
  z-index: 1;
}

.testimonials-hero-copy {
  max-width: 820px;
}

.testimonials-hero-copy h1,
.testimonials-people-section h2,
.testimonials-messages-section h2,
.testimonials-closing-copy h2 {
  margin: 0;
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.testimonials-hero-copy p:not(.eyebrow),
.testimonials-closing-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(246, 236, 220, 0.74);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
}

.featured-testimonial {
  display: grid;
  min-height: clamp(420px, 50vw, 680px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 24px);
  background:
    radial-gradient(circle at 50% 14%, rgba(240, 201, 133, 0.12), transparent 18rem),
    rgba(13, 10, 8, 0.82);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38);
}

.featured-testimonial img {
  display: block;
  width: 100%;
  max-height: clamp(380px, 47vw, 630px);
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  cursor: zoom-in;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.testimonials-people-section,
.testimonials-messages-section,
.testimonial-stats-section,
.testimonials-closing {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 154, 91, 0.08), transparent 22rem),
    var(--night);
}

.testimonials-people-section .section-heading,
.testimonials-messages-section .section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.people-carousel {
  --carousel-card-width: clamp(250px, 28vw, 360px);
  --carousel-gap: clamp(10px, 1.6vw, 22px);
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 62px) max(18px, calc((100% - var(--carousel-card-width)) / 2)) clamp(38px, 5vw, 66px);
  border: 1px solid rgba(240, 201, 133, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 24%, rgba(240, 201, 133, 0.12), transparent 22rem),
    linear-gradient(90deg, rgba(240, 201, 133, 0.08), transparent 20%, transparent 80%, rgba(240, 201, 133, 0.08)),
    rgba(10, 8, 7, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 26px 76px rgba(0, 0, 0, 0.3);
  cursor: grab;
  perspective: 1200px;
  scroll-behavior: smooth;
  scroll-padding-inline: max(18px, calc((100% - var(--carousel-card-width)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}

.people-carousel::-webkit-scrollbar {
  display: none;
}

.people-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.people-carousel figure {
  flex: 0 0 var(--carousel-card-width);
  aspect-ratio: 4 / 5;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 16px;
  background: rgba(18, 14, 10, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  scroll-snap-align: center;
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 360ms ease, box-shadow 360ms ease, opacity 360ms ease;
}

.people-carousel figure.is-center {
  border-color: rgba(240, 201, 133, 0.54);
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.46), 0 0 36px rgba(240, 201, 133, 0.08);
}

.people-carousel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
}

.messages-masonry {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.messages-masonry figure {
  display: block;
  width: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 12px;
  padding: clamp(8px, 1.2vw, 14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(15, 12, 9, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.messages-masonry img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  cursor: zoom-in;
}

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

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.testimonial-stats div {
  display: grid;
  min-height: 170px;
  align-content: center;
  gap: 12px;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    rgba(21, 17, 13, 0.74);
  text-align: center;
}

.testimonial-stats strong {
  color: var(--gold-soft);
  font-family: var(--display-serif);
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 0.9;
}

.testimonial-stats span {
  color: rgba(246, 236, 220, 0.72);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.testimonials-closing-copy {
  width: min(840px, 100%);
  margin: 0 auto;
}

.testimonials-closing-copy h2 {
  font-size: clamp(36px, 5.4vw, 72px);
}

.drawer-backdrop,
.account-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 7, 6, 0.58);
  backdrop-filter: blur(8px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  width: min(420px, 100vw);
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid rgba(240, 201, 133, 0.22);
  padding: 26px;
  background:
    radial-gradient(circle at 70% 0%, rgba(201, 154, 91, 0.14), transparent 20rem),
    rgba(12, 11, 9, 0.96);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.38);
  transform: translateX(100%);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
  font-size: 38px;
}

.drawer-cart-items {
  display: grid;
  gap: 14px;
  overflow: auto;
}

.drawer-cart-item {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid rgba(240, 201, 133, 0.14);
  padding-bottom: 14px;
}

.drawer-cart-item strong {
  display: block;
  color: var(--cream);
}

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

.drawer-cart-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.drawer-cart-controls .cart-quantity {
  max-width: 78px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.drawer-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--muted);
  text-align: center;
}

.drawer-summary {
  display: grid;
  gap: 18px;
  margin-top: auto;
  border-top: 1px solid rgba(240, 201, 133, 0.18);
  padding-top: 20px;
}

.drawer-summary .summary-line {
  border-color: rgba(240, 201, 133, 0.18);
}

.drawer-summary .summary-line span,
.drawer-summary .summary-line strong {
  color: var(--cream);
}

.drawer-checkout {
  width: 100%;
}

.account-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  width: min(460px, calc(100vw - 36px));
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 154, 91, 0.14), transparent 20rem),
    rgba(246, 236, 220, 0.97);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.account-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.account-modal .icon-button {
  color: var(--charcoal);
  border-color: rgba(43, 33, 24, 0.18);
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-form label {
  display: grid;
  gap: 8px;
}

.account-card {
  position: relative;
  display: grid;
  gap: 18px;
}

.modal-close {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(43, 33, 24, 0.16);
  border-radius: 999px;
  color: var(--charcoal);
  background: rgba(246, 236, 220, 0.84);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.account-coming-soon h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--display-serif);
  font-size: clamp(34px, 5.4vw, 52px);
  line-height: 0.95;
}

.account-coming-soon p:not(.eyebrow) {
  margin: 0;
  color: rgba(43, 33, 24, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.account-coming-soon .primary-button {
  width: fit-content;
  margin-top: 6px;
  text-decoration: none;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 154, 91, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.98));
  opacity: 0;
  pointer-events: none;
  transition: opacity 560ms ease;
}

.product-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-detail-shell {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 72px));
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: center;
  transform: translateY(22px) scale(0.98);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-detail-modal.is-open .product-detail-shell {
  transform: translateY(0) scale(1);
}

.detail-mobile-tabs {
  display: none;
}

.detail-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border: 1px solid rgba(240, 201, 133, 0.28);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.detail-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.detail-stage::before {
  position: absolute;
  width: min(560px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 50%;
  content: "";
}

.detail-stage::after {
  position: absolute;
  width: min(720px, 86vw);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 201, 133, 0.08);
  border-radius: 50%;
  content: "";
}

.detail-product-frame {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(430px, 72vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(240, 201, 133, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.54);
}

.detail-product-frame img {
  width: 78%;
  height: 78%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}

.detail-feature {
  position: absolute;
  z-index: 2;
  width: min(230px, 42vw);
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: rgba(18, 14, 10, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease, border-color 420ms ease, background 420ms ease;
}

.product-detail-modal.is-open .detail-feature {
  opacity: 1;
  transform: translateY(0);
  animation: featureFloat 5200ms ease-in-out infinite;
}

.detail-feature:hover {
  border-color: rgba(240, 201, 133, 0.58);
  background: rgba(201, 154, 91, 0.14);
}

.detail-feature span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-feature p {
  margin: 0;
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.45;
}

.detail-feature-1 { top: 12%; left: 8%; transition-delay: 80ms; }
.detail-feature-2 { top: 8%; right: 10%; transition-delay: 160ms; }
.detail-feature-3 { top: 42%; left: 0; transition-delay: 240ms; }
.detail-feature-4 { top: 42%; right: 0; transition-delay: 320ms; }
.detail-feature-5 { bottom: 8%; left: 12%; transition-delay: 400ms; }
.detail-feature-6 { bottom: 10%; right: 12%; transition-delay: 480ms; }

.detail-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.detail-copy h2 {
  max-width: 900px;
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 78px);
}

.detail-description {
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(246, 236, 220, 0.72);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
}

#detailPrice {
  color: var(--gold-soft);
  font-size: 24px;
  font-weight: 900;
}

.detail-options {
  display: grid;
  width: min(820px, 100%);
  gap: 14px;
  margin-top: 22px;
}

.detail-configurator {
  display: grid;
  width: min(680px, 100%);
  gap: 14px;
  margin-top: 20px;
}

.config-option-group {
  display: grid;
  gap: 10px;
}

.config-option-group > span {
  color: rgba(240, 201, 133, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.config-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.config-option {
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 999px;
  padding: 11px 15px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: color 360ms ease, border-color 360ms ease, background 360ms ease, transform 360ms ease;
}

.config-option:hover,
.config-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 133, 0.64);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.13);
}

.detail-variant-summary {
  margin: 0;
  color: rgba(246, 236, 220, 0.68);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personalization-panel {
  display: grid;
  width: min(680px, 100%);
  gap: 16px;
  margin-top: 18px;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.personalization-heading {
  display: grid;
  gap: 4px;
  text-align: left;
}

.personalization-heading span {
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.personalization-heading p {
  margin: 0;
  color: rgba(246, 236, 220, 0.62);
  font-size: 14px;
}

.personalization-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.personalization-fields label {
  display: grid;
  gap: 6px;
  color: rgba(246, 236, 220, 0.72);
  font-size: 12px;
  text-align: left;
}

.personalization-section-title {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-help {
  color: rgba(246, 236, 220, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.personalization-fields label:nth-last-child(-n + 2) {
  grid-column: 1 / -1;
}

.personalization-fields .personalization-field-wide {
  grid-column: 1 / -1;
}

.personalization-fields .personalization-file-field {
  grid-column: 1 / -1;
}

.personalization-file-note {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.personalization-file-note > span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personalization-fields input,
.personalization-fields select,
.personalization-fields textarea {
  min-height: 42px;
  border-color: rgba(240, 201, 133, 0.2);
  color: var(--cream);
  background: rgba(12, 11, 9, 0.48);
}

.personalization-fields input[type="file"] {
  display: block;
  width: 100%;
  padding: 10px;
  cursor: pointer;
}

.personalization-fields input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(240, 201, 133, 0.42);
  border-radius: 8px;
  padding: 9px 13px;
  color: #1b1308;
  background: linear-gradient(135deg, #f0c985, #c99a5b);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.detail-option-group {
  display: grid;
  gap: 10px;
}

.detail-option-group h3 {
  margin: 0;
  color: rgba(240, 201, 133, 0.78);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(240, 201, 133, 0.18);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  transition: border-color 420ms ease, background 420ms ease, transform 420ms ease;
}

.detail-option:hover,
.detail-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(240, 201, 133, 0.58);
  background: rgba(201, 154, 91, 0.12);
}

.detail-option input {
  accent-color: var(--gold-soft);
}

.detail-option span {
  text-align: left;
}

.detail-option strong,
.detail-subtotal strong {
  color: var(--gold-soft);
}

.detail-subtotal {
  display: flex;
  width: min(820px, 100%);
  justify-content: space-between;
  margin-top: 12px;
  border-top: 1px solid rgba(240, 201, 133, 0.18);
  padding-top: 14px;
  color: rgba(246, 236, 220, 0.72);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-modal .product-detail-shell {
  width: min(1180px, calc(100vw - 48px));
  height: min(820px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 44px);
  padding-top: clamp(64px, 7vw, 78px);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 154, 91, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(18, 14, 10, 0.96), rgba(9, 8, 7, 0.98));
  box-shadow: var(--shadow);
}

.product-detail-modal .detail-back {
  top: 22px;
  left: 24px;
}

.product-detail-modal .detail-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  min-width: 0;
  overflow: hidden auto;
}

.product-detail-modal #detailImage {
  grid-column: 1 / -1;
  width: 100%;
  max-height: min(520px, 52vh);
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 201, 133, 0.11), transparent 62%),
    rgba(255, 255, 255, 0.035);
  cursor: zoom-in;
}

.product-detail-modal .detail-feature {
  position: static;
  width: auto;
  opacity: 1;
  transform: none;
  animation: none;
}

.product-detail-modal .detail-feature p {
  font-size: 13px;
}

.product-detail-modal .detail-copy {
  display: flex;
  min-width: 0;
  overflow: hidden auto;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
}

.product-detail-modal .detail-copy .eyebrow {
  margin-bottom: 10px;
}

.product-detail-modal .detail-copy h2 {
  max-width: none;
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.product-detail-modal .detail-description {
  max-width: none;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.48;
}

.product-detail-modal #detailPrice {
  margin: 0;
}

.product-detail-modal .detail-configurator,
.product-detail-modal .detail-options,
.product-detail-modal .personalization-panel,
.product-detail-modal .detail-subtotal {
  width: 100%;
}

.product-detail-modal .detail-configurator {
  gap: 12px;
  margin-top: 18px;
}

.product-detail-modal .config-option {
  display: grid;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: default;
  transition: none;
}

.product-detail-modal .config-option > span {
  color: rgba(240, 201, 133, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-modal .config-option > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-modal .detail-configurator button,
.product-detail-modal .detail-options label {
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 8px;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 320ms ease, background 320ms ease, color 320ms ease;
}

.product-detail-modal .detail-configurator button {
  padding: 10px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.product-detail-modal .detail-configurator button:hover,
.product-detail-modal .detail-configurator button.is-active {
  border-color: rgba(240, 201, 133, 0.62);
  color: var(--gold-soft);
  background: rgba(201, 154, 91, 0.12);
}

.product-detail-modal .detail-options {
  gap: 10px;
  margin-top: 16px;
}

.product-detail-modal .detail-options label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
}

.product-detail-modal .detail-options input {
  accent-color: var(--gold-soft);
}

.product-detail-modal .detail-options strong {
  color: var(--gold-soft);
}

.product-detail-modal .personalization-panel {
  margin-top: 16px;
}

.product-detail-modal .personalization-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.email-assets-panel {
  display: grid;
  width: min(100%, 560px);
  gap: 8px;
  margin-top: 16px;
  justify-items: center;
}

.email-assets-panel[hidden] {
  display: none;
}

.email-assets-button {
  display: inline-flex;
  min-height: 50px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 201, 133, 0.62);
  border-radius: 999px;
  padding: 0 22px;
  color: #0c0b09;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 46px rgba(201, 154, 91, 0.2);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.email-assets-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 22px 54px rgba(201, 154, 91, 0.28);
}

.email-assets-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(246, 236, 220, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.cart-item {
  grid-template-columns: 74px minmax(0, 1fr) 92px auto;
}

.cart-item-image,
.drawer-cart-image {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 154, 91, 0.24);
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-name em,
.drawer-cart-item em {
  display: block;
  margin-top: 5px;
  color: rgba(43, 33, 24, 0.58);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.drawer-cart-item {
  grid-template-columns: 58px minmax(0, 1fr);
}

.drawer-cart-controls {
  grid-column: 2;
}

.drawer-cart-image {
  width: 50px;
  height: 50px;
}

.image-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background: rgba(5, 5, 4, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.image-zoom-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-zoom-modal img {
  max-width: min(980px, 92vw);
  max-height: 84vh;
  border: 1px solid rgba(240, 201, 133, 0.28);
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.image-zoom-close {
  position: fixed;
  top: 24px;
  right: 24px;
  border: 1px solid rgba(240, 201, 133, 0.28);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  color: var(--cream);
  background: rgba(18, 14, 10, 0.88);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 720px) {
  .image-zoom-modal {
    padding: 54px 12px 18px;
  }

  .image-zoom-modal img {
    max-width: 96vw;
    max-height: 88vh;
  }

  .image-zoom-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

.payment-video-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  max-width: 640px;
  min-width: 0;
  box-sizing: border-box;
  margin: 28px auto 0;
  border: 1px solid rgba(240, 201, 133, 0.2);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.12), transparent 19rem),
    rgba(15, 11, 8, 0.78);
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.payment-video-card.is-global66-active {
  border-color: rgba(29, 78, 216, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.14), transparent 18rem),
    rgba(15, 11, 8, 0.84);
  box-shadow: 0 18px 56px rgba(29, 78, 216, 0.12);
}

.payment-video-card .global66-payment-note {
  max-width: 460px;
  margin: 0;
  color: rgba(246, 236, 220, 0.86);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.payment-video-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.global66-wordmark {
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 26px rgba(240, 201, 133, 0.16);
}

.global66-account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 360px);
  min-height: 50px;
  border-radius: 12px;
  padding: 14px 24px;
  color: #fff;
  background: #1d4ed8;
  box-shadow: 0 16px 38px rgba(29, 78, 216, 0.24);
  font-weight: 850;
  line-height: 1.1;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.global66-account-button:hover {
  transform: translateY(-2px);
  background: #1e40af;
  box-shadow: 0 20px 44px rgba(29, 78, 216, 0.3);
}

.global66-account-button span {
  color: #fff;
  letter-spacing: 0;
}

.global66-guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: min(100%, 360px);
  border: 1px solid rgba(240, 201, 133, 0.78);
  border-radius: 12px;
  padding: 12px 20px;
  color: #21170a;
  background: linear-gradient(135deg, #f5d083, #c99436);
  box-shadow: 0 14px 30px rgba(201, 148, 54, 0.22);
  font: inherit;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.global66-guide-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 38px rgba(201, 148, 54, 0.28);
}

.payment-guide-button {
  margin-top: 10px;
}

.global66-payment-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  min-width: 0;
  margin: 10px auto 0;
  box-sizing: border-box;
}

.global66-payment-actions[hidden] {
  display: none;
}

.international-payment-summary {
  display: grid;
  gap: 4px;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(240, 201, 133, 0.42);
  border-radius: 12px;
  background: rgba(255, 249, 238, 0.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.international-payment-summary[hidden] {
  display: none;
}

.international-payment-summary span {
  color: var(--muted-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.international-payment-summary strong {
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: 22px;
  line-height: 1.1;
}

.global66-payment-actions .global66-guide-button {
  margin-top: 0;
}

.global66-payment-actions .global66-manual-payment-button {
  width: min(100%, 360px);
  margin-top: 2px;
  justify-self: center;
}

.checkout-page-section .submit-order-button {
  width: min(100%, 360px);
  justify-self: center;
}

.checkout-payment-methods {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.payment-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.checkout-payment-method {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid rgba(87, 61, 31, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: #2b2118;
  background: rgba(255, 252, 246, 0.94);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(43, 33, 24, 0.06);
}

.checkout-payment-method span {
  color: #7a5422;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-payment-method strong {
  color: #211912;
  font-size: 15px;
}

.checkout-payment-method small {
  color: rgba(43, 33, 24, 0.74);
  line-height: 1.45;
}

.checkout-payment-method.is-active {
  border-color: rgba(122, 84, 34, 0.62);
  background: linear-gradient(135deg, #fff8e8, #f2dfbd);
  box-shadow: 0 12px 28px rgba(122, 84, 34, 0.14);
}

.checkout-payment-method-alt {
  border-style: dashed;
}

.payment-flow-note {
  margin: 10px 0 0;
  color: rgba(43, 33, 24, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.webpay-payment-button {
  margin-top: 10px;
}

.webpay-payment-button[aria-disabled="true"] {
  cursor: not-allowed;
  filter: grayscale(0.25);
  opacity: 0.72;
}

.faq-global66-guide {
  margin-top: 2px;
}

@keyframes featureFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -7px; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .site-footer .legal-notice {
    text-align: left;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 96vh;
    align-items: end;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    margin-left: 0;
  }

  .film-reel {
    left: -96vw;
  }

  .film-reel-near {
    top: 10%;
  }

  .film-reel-mid {
    top: 42%;
  }

  .film-reel-far {
    top: 66%;
  }

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

  .catalog-search-control,
  .catalog-sort-control {
    grid-column: 1 / -1;
  }

  .story-grid,
  .about-hero,
  .welcome-grid,
  .cinema-grid,
  .hands-grid,
  .catalog-family-grid,
  .product-grid[data-view="compact"] .catalog-family-grid,
  .contact-grid,
  .order-section,
  .order-form {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: auto;
  }

  .about-hero {
    align-items: start;
  }

  .about-origin-grid {
    grid-template-columns: 1fr;
  }

  .about-origin-grid > .about-product-photo {
    display: none;
  }

  .about-product-photo-mobile {
    display: grid;
    margin-block: clamp(24px, 6vw, 36px);
  }

  .about-product-placeholder {
    min-height: clamp(280px, 76vw, 460px);
  }

  .about-portrait {
    width: min(90vw, 390px);
    height: auto;
    aspect-ratio: 9 / 16;
    min-height: 0;
    margin-inline: auto;
  }

  .about-chapter-narrow {
    margin-left: auto;
  }

  .product-grid[data-view="compact"] .product-card {
    grid-template-columns: 1fr;
  }

  .product-grid[data-view="compact"] .product-image {
    min-height: clamp(220px, 42vw, 320px);
    border-right: 0;
    border-bottom: 1px solid rgba(240, 201, 133, 0.16);
  }

  .order-copy {
    position: static;
  }

  .cinema-frame:nth-child(2) {
    transform: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-quantity,
  .remove-cart-item {
    width: 100%;
  }

  .hero-caption {
    left: 20px;
    right: 20px;
    flex-wrap: wrap;
  }

  .detail-stage {
    min-height: auto;
    gap: 12px;
    padding-top: 68px;
  }

  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-stage::before,
  .detail-stage::after {
    display: none;
  }

  .detail-product-frame,
  .detail-feature {
    position: relative;
    inset: auto;
  }

  .detail-feature {
    width: min(520px, 100%);
  }

  .personalization-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body:has(.cart-drawer.is-open) {
    overflow: hidden;
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2200;
    width: 100vw;
    height: 100dvh;
  }

  .cart-drawer {
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2210;
    width: min(420px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .cart-drawer .drawer-cart-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .market-gate {
    min-height: 100dvh;
    align-items: center;
    padding: 24px 18px;
  }

  .market-panel {
    margin: 0;
    padding: 0;
  }

  .market-panel h2 {
    font-size: 38px;
  }

  .intro-logo {
    width: 116px;
  }

  .intro-panel h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .hero {
    padding-top: 136px;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .hero-text {
    font-size: 18px;
  }

  .film-frame {
    width: 190px;
  }

  .film-frame.is-wide {
    width: 280px;
  }

  .language-options {
    display: grid;
    width: min(320px, 100%);
    margin-inline: auto;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .product-actions {
    display: grid;
  }

  .market-intro {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .market-options {
    grid-template-columns: 1fr;
  }

  .market-option {
    min-height: 78px;
    padding: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 42px;
    max-width: 124px;
  }

  .brand-name {
    font-size: 14px;
  }

  .main-nav {
    gap: 18px;
    font-size: 11px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-caption {
    display: none;
  }
}

/* Coherent premium typography system */
:root {
  --body: "Inter", Arial, sans-serif;
}

body {
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font-family: var(--body);
}

h1,
h2,
h3,
.brand-name,
.intro-panel h1,
.section-heading h2,
.about-intro h1,
.about-chapter h2,
.catalog-title,
.contact-heading h2,
.detail-copy h2 {
  font-family: var(--display-serif);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1;
}

h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.08;
}

p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.hero-content h1 {
  max-width: 680px;
  font-family: var(--display-serif);
  font-size: clamp(40px, 4.8vw, 66px);
  font-style: normal;
  font-weight: 820;
  line-height: 1.04;
}

.hero-text {
  max-width: 560px;
  color: var(--gold-soft);
  font-family: var(--body);
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
}

.primary-button,
.secondary-hero-button,
.add-cart-button,
.secondary-button,
.nav-link,
.eyebrow {
  font-family: var(--body);
  color: var(--gold-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-intro h1 {
  font-size: clamp(38px, 4.8vw, 64px);
}

.about-chapter h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.about-statement {
  font-family: var(--display-serif);
  font-size: clamp(34px, 4.8vw, 72px);
}

.about-hero {
  align-items: center;
}

.about-chapter {
  padding-top: clamp(70px, 8vw, 124px);
}

.about-copy {
  max-width: 720px;
}

.about-copy p,
.about-chapter > p:not(.about-statement):not(.about-closing) {
  font-size: clamp(16px, 1.25vw, 20px);
}

.about-list-copy {
  margin-top: 28px;
}

.about-list-copy p {
  font-family: var(--body);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 650;
  line-height: 1.45;
}

.about-closing {
  max-width: 760px;
  margin-top: clamp(34px, 5vw, 64px);
  font-family: var(--display-serif);
  font-size: clamp(34px, 4.4vw, 62px);
  font-style: normal;
  line-height: 1.05;
}

.catalog-title,
.contact-heading h2 {
  font-size: clamp(40px, 5.4vw, 76px);
}

.catalog-title {
  font-family: var(--body);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.drawer-header h2,
.modal-header h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.product-detail-modal .detail-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.product-detail-modal[data-product-key] {
  z-index: 1200;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 154, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, #080706, #050504);
}

.product-detail-modal[data-product-key="altar-reconocimiento"] {
  z-index: 1200;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 154, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, #080706, #050504);
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .product-detail-shell {
  width: min(1120px, calc(100vw - 42px));
  height: min(930px, calc(100vh - 20px));
  grid-template-columns: minmax(330px, 0.96fr) minmax(360px, 1fr);
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(22px, 3vw, 36px);
  padding-top: clamp(58px, 6vw, 70px);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 154, 91, 0.1), transparent 24rem),
    linear-gradient(135deg, #14100c, #090807);
  opacity: 1;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] #detailImage {
  max-height: min(320px, 36vh);
  padding: 10px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature {
  padding: 10px;
  min-height: auto;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature span {
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature p {
  font-size: 11.5px;
  line-height: 1.32;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy {
  gap: 6px;
  padding-right: 4px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy .eyebrow {
  margin-bottom: 2px;
  font-size: 11px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy h2 {
  margin-bottom: 2px;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-description {
  margin-bottom: 4px;
  font-size: 12.5px;
  line-height: 1.4;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] #detailPrice {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-configurator {
  margin-top: 4px;
}

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

.config-select-option {
  display: grid;
  gap: 7px;
}

.config-select-option span {
  color: rgba(240, 201, 133, 0.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.config-select-option select {
  min-height: 38px;
  border: 1px solid rgba(240, 201, 133, 0.24);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.58);
  font: inherit;
  font-size: 13px;
}

.launch-price-note {
  margin: 2px 0 0;
  color: rgba(240, 201, 133, 0.76);
  font-size: 12px;
  font-weight: 750;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-options {
  display: none;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-panel {
  margin-top: 4px;
  gap: 8px;
  padding: 12px 14px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-heading {
  gap: 2px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-heading p {
  font-size: 11px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 8px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields label {
  gap: 4px;
  font-size: 10.5px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields label:last-child {
  grid-column: 1 / -1;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields input,
.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields select,
.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields textarea {
  min-height: 30px;
  padding: 6px 10px;
  font-size: 12px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields textarea {
  min-height: 38px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .detail-subtotal {
  margin-top: 2px;
  padding: 12px 14px;
  font-size: 13px;
}

.product-detail-modal[data-product-key="altar-reconocimiento"] .add-cart-button {
  min-height: 44px;
  padding: 12px 16px;
}

@media (max-width: 900px) {
  .product-detail-modal[data-product-key="altar-reconocimiento"] .product-detail-shell {
    grid-template-columns: 1fr;
    height: calc(100vh - 24px);
    width: calc(100vw - 24px);
    overflow: hidden auto;
  }

  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy {
    overflow: visible;
  }

  .altar-select-grid,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields {
    grid-template-columns: 1fr;
  }
}

.home-story-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 154, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, #0c0b09, #15110d);
}

.home-story-section-alt {
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 154, 91, 0.11), transparent 28rem),
    linear-gradient(180deg, #15110d, #0c0b09);
}

.home-story-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.home-story-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
}

.home-video-frame {
  position: relative;
  display: grid;
  justify-self: center;
  width: min(100%, 360px);
  max-height: 610px;
  aspect-ratio: 9 / 16;
  min-height: auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 201, 133, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(rgba(12, 11, 9, 0.18), rgba(12, 11, 9, 0.62)),
    url("assets/Productos/Placa Golden + Bandera + Caja MDF.jpeg") center/cover;
  box-shadow: var(--shadow);
}

.home-video-frame-process {
  background:
    linear-gradient(rgba(12, 11, 9, 0.18), rgba(12, 11, 9, 0.62)),
    url("assets/Productos/Pintura LDM Tapa dura Frontal.jpeg") center/cover;
}

.home-video-frame::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(240, 201, 133, 0.12);
  border-radius: 6px;
  content: "";
}

.home-video-frame span {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-story-copy {
  max-width: 620px;
}

.home-story-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

.home-story-copy p {
  color: var(--smoke);
}

.home-story-subtitle,
.home-story-highlight {
  color: var(--gold-soft);
  font-weight: 650;
}

.home-story-highlight {
  margin-top: 24px;
  border-left: 1px solid rgba(240, 201, 133, 0.38);
  padding-left: 18px;
}

.text-emphasis {
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.faq-main-title {
  color: var(--cream);
  font-family: var(--display-serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.faq-list {
  max-width: 1040px;
}

.faq-list summary {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.35;
}

.faq-list p,
.faq-list li {
  color: var(--smoke);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.72;
}

.faq-list ul {
  margin: -8px 22px 20px;
  color: var(--smoke);
}

.faq-link {
  display: inline-flex;
  margin-top: 2px;
  border-bottom: 1px solid rgba(240, 201, 133, 0.46);
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .home-story-grid,
  .home-story-grid-reverse {
    grid-template-columns: 1fr;
  }

  .home-story-grid-reverse .home-video-frame {
    order: -1;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px 14px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    height: 44px;
    max-width: 132px;
  }

  .brand-name {
    max-width: calc(100vw - 96px);
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: none;
  }

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

  .main-nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(240, 201, 133, 0.14);
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.025);
    font-size: 10px;
    letter-spacing: 0.12em;
  }

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

  .nav-link.active {
    border-color: rgba(240, 201, 133, 0.44);
    color: var(--gold-soft);
    background: rgba(201, 154, 91, 0.1);
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .currency-switcher {
    width: min(100%, 260px);
    min-width: min(100%, 210px);
  }

  .currency-switcher select,
  .currency-dropdown {
    max-width: 100%;
    width: 100%;
  }

  .currency-dropdown-menu {
    right: 50%;
    transform: translate(50%, -4px);
  }

  .currency-switcher.is-open .currency-dropdown-menu {
    transform: translate(50%, 0);
  }

  .search-bar {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: clamp(48px, 10vw, 72px) 16px clamp(48px, 12vw, 82px);
    align-items: start;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 28px;
    align-items: stretch;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 30rem;
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.45;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .primary-button,
  .secondary-hero-button,
  .add-cart-button,
  .secondary-button {
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-video-shell,
  .home-video-frame {
    position: relative;
    width: min(100%, 320px);
    min-height: auto;
    aspect-ratio: 9 / 16;
    justify-self: center;
  }

  .hero-video-shell {
    order: 2;
  }

  .hero-video-shell video,
  .home-video-frame video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }

  .home-video-frame video {
    object-position: center 42%;
  }

  .home-video-frame-process video {
    object-position: center 48%;
  }

  .hero-video-shell::before,
  .home-video-frame::after {
    inset: 12px;
  }

  .film-reel {
    opacity: 0.42;
  }

  .film-frame {
    width: 170px;
  }

  .film-frame.is-wide {
    width: 240px;
  }

  .film-frame.is-tall {
    width: 160px;
  }

  .home-story-section {
    padding: 58px 16px;
  }

  .home-story-grid,
  .home-story-grid-reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    width: 100%;
  }

  .home-story-copy {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .home-video-frame,
  .home-story-grid-reverse .home-video-frame {
    order: 2;
  }

  .home-story-copy h2,
  .faq-main-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.06;
  }

  .home-story-copy p,
  .faq-list p,
  .faq-list li {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .global66-referral-box {
    margin-inline: 14px;
    padding: 18px 14px;
  }

  .global66-referral-button {
    width: min(100%, 340px);
    padding-inline: 16px;
  }

  .global66-account-button,
  .global66-guide-button {
    width: min(100%, 340px);
    padding-inline: 16px;
  }

  .catalog-controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-search-control,
  .catalog-sort-control,
  .catalog-view-controls,
  .catalog-count {
    width: 100%;
  }

  .catalog-view-controls {
    justify-content: flex-start;
  }

  .catalog-count {
    white-space: normal;
  }

  .catalog-family-grid,
  .product-grid[data-view="compact"] .catalog-family-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 42px;
  }

  .product-grid[data-view="compact"] .product-card,
  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-grid[data-view="compact"] .product-image,
  .product-image {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 201, 133, 0.16);
  }

  .product-image,
  .product-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-card > :not(.product-image),
  .product-grid[data-view="compact"] .product-card > :not(.product-image) {
    margin-inline: 18px;
  }

  .product-card h3,
  .product-grid[data-view="compact"] .product-card h3 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.08;
  }

  .product-actions {
    display: grid;
    gap: 10px;
  }

  .testimonials-hero,
  .testimonials-people-section,
  .testimonials-messages-section,
  .testimonial-stats-section,
  .testimonials-closing {
    padding-inline: 18px;
  }

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

  .testimonials-hero-copy h1,
  .testimonials-people-section h2,
  .testimonials-messages-section h2,
  .testimonials-closing-copy h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .featured-testimonial {
    min-height: auto;
    padding: 12px;
  }

  .featured-testimonial img {
    max-height: min(68vh, 560px);
  }

  .people-carousel {
    --carousel-card-width: min(76vw, 300px);
    --carousel-gap: 10px;
    width: calc(100% + 18px);
    margin-right: -18px;
    padding-block: 30px 42px;
    padding-inline: max(12px, calc((100% - var(--carousel-card-width)) / 2));
  }

  .people-carousel figure {
    flex-basis: var(--carousel-card-width);
  }

  .messages-masonry {
    grid-template-columns: 1fr;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-name {
    font-size: 13px;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .currency-switcher {
    flex: 0 1 230px;
    width: min(100%, 230px);
    min-width: min(100%, 205px);
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 36px 14px 52px;
  }

  .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(31px, 11vw, 44px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .primary-button,
  .secondary-hero-button {
    width: 100%;
    min-height: 46px;
    padding: 14px 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .film-reel-near {
    top: 8%;
  }

  .film-reel-mid {
    top: 38%;
  }

  .film-reel-far {
    top: 64%;
  }

  .film-frame {
    width: 138px;
  }

  .film-frame.is-wide {
    width: 210px;
  }

  .film-frame.is-tall {
    width: 126px;
  }

  .home-story-section {
    padding: 54px 14px;
  }

  .home-story-copy h2,
  .faq-main-title {
    font-size: clamp(28px, 10vw, 36px);
  }

  .home-story-highlight {
    padding-left: 14px;
  }

  .faq-list details {
    padding-inline: 18px;
  }

  .catalog-title {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .catalog-controls {
    margin-top: 20px;
  }

  .catalog-search-control,
  .catalog-sort-control select {
    min-height: 46px;
  }

  .product-card > :not(.product-image),
  .product-grid[data-view="compact"] .product-card > :not(.product-image) {
    margin-inline: 16px;
  }

  .product-meta {
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
  }

  .product-card h3,
  .product-grid[data-view="compact"] .product-card h3 {
    font-size: clamp(20px, 7.5vw, 26px);
  }

  .product-price {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .product-detail-modal {
    place-items: stretch;
    padding: 10px;
  }

  .product-detail-modal .product-detail-shell,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .product-detail-shell {
    display: grid;
    width: 100%;
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    overflow: hidden auto;
    padding: 18px;
    padding-top: 70px;
  }

  .product-detail-modal .detail-back {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 10px 13px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .detail-mobile-tabs {
    position: sticky;
    top: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    border: 1px solid rgba(240, 201, 133, 0.2);
    border-radius: 999px;
    padding: 5px;
    background: rgba(10, 8, 6, 0.88);
    backdrop-filter: blur(14px);
  }

  .detail-mobile-tabs button {
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(246, 236, 220, 0.74);
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 320ms ease, border-color 320ms ease, background 320ms ease;
  }

  .detail-mobile-tabs button.is-active {
    border-color: rgba(240, 201, 133, 0.56);
    color: var(--gold-soft);
    background: rgba(201, 154, 91, 0.14);
  }

  .product-detail-modal .detail-visual,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-visual {
    min-width: 0;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-detail-modal #detailImage,
  .product-detail-modal[data-product-key="altar-reconocimiento"] #detailImage {
    max-height: none;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .product-detail-modal .detail-feature,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature {
    width: 100%;
    padding: 12px;
  }

  .product-detail-modal .detail-feature span,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature span {
    font-size: 10px;
  }

  .product-detail-modal .detail-feature p,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .product-detail-modal .detail-copy,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy {
    min-width: 0;
    overflow: visible;
    gap: 10px;
    padding-right: 0;
  }

  .product-detail-modal .detail-copy .eyebrow,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy .eyebrow {
    font-size: 10px;
    margin-bottom: 0;
  }

  .product-detail-modal .detail-copy h2,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.04;
  }

  .product-detail-modal .detail-description,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-description {
    font-size: 13px;
    line-height: 1.5;
  }

  .product-detail-modal #detailPrice,
  .product-detail-modal[data-product-key="altar-reconocimiento"] #detailPrice {
    font-size: 23px;
  }

  .product-detail-modal .detail-configurator,
  .product-detail-modal .detail-options,
  .product-detail-modal .personalization-panel,
  .product-detail-modal .email-assets-panel,
  .product-detail-modal .detail-subtotal,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-configurator,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-options,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-panel,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .email-assets-panel,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-subtotal {
    margin-top: 8px;
  }

  .product-detail-modal .personalization-fields,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields,
  .altar-select-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-modal .detail-options label {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-detail-modal .detail-options strong {
    grid-column: 2;
  }

  .product-detail-modal[data-mobile-tab="description"] .detail-configurator,
  .product-detail-modal[data-mobile-tab="description"] .detail-options,
  .product-detail-modal[data-mobile-tab="description"] .personalization-panel,
  .product-detail-modal[data-mobile-tab="description"] .email-assets-panel,
  .product-detail-modal[data-mobile-tab="description"] .detail-subtotal,
  .product-detail-modal[data-mobile-tab="description"] .add-cart-button {
    display: none;
  }

  .product-detail-modal[data-mobile-tab="personalize"] .detail-visual,
  .product-detail-modal[data-mobile-tab="personalize"] .detail-description {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-detail-modal {
    padding: 6px;
  }

  .product-detail-modal .product-detail-shell,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .product-detail-shell {
    width: 100%;
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 8px;
    padding: 14px;
    padding-top: 66px;
  }

  .detail-mobile-tabs {
    gap: 5px;
    padding: 4px;
  }

  .detail-mobile-tabs button {
    min-height: 38px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .product-detail-modal #detailImage,
  .product-detail-modal[data-product-key="altar-reconocimiento"] #detailImage {
    aspect-ratio: 1 / 1;
  }

  .product-detail-modal .detail-feature,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-feature {
    padding: 10px;
  }

  .product-detail-modal .personalization-panel,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-panel {
    padding: 12px;
  }

  .email-assets-button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .email-assets-panel p {
    font-size: 12px;
  }

  .product-detail-modal .personalization-fields input,
  .product-detail-modal .personalization-fields select,
  .product-detail-modal .personalization-fields textarea,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields input,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields select,
  .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields textarea {
    width: 100%;
    min-height: 38px;
  }
}

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

@media (max-width: 560px) {
  .product-grid.catalog-flat-grid {
    grid-template-columns: 1fr;
  }

  .catalog-category-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-category-filters button {
    width: 100%;
  }
}

/* Final theme layer: keeps late component rules from reintroducing dark surfaces in day mode. */
body.theme-day,
body.theme-day main {
  color: var(--text);
  background-color: var(--bg);
}

body.theme-day .about-story,
body.theme-day .welcome-section,
body.theme-day .home-story-section,
body.theme-day .home-story-section-alt,
body.theme-day .section,
body.theme-day .product-section,
body.theme-day .contact-section,
body.theme-day .order-section,
body.theme-day .faq-section,
body.theme-day .testimonials-hero,
body.theme-day .testimonials-people-section,
body.theme-day .testimonials-messages-section,
body.theme-day .testimonial-stats-section,
body.theme-day .testimonials-closing {
  background:
    radial-gradient(circle at 78% 12%, rgba(201, 154, 91, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-secondary));
}

body.theme-day .site-header,
body.theme-day .site-footer,
body.theme-day .cart-drawer,
body.theme-day .product-detail-shell,
body.theme-day .product-detail-modal[data-product-key] .product-detail-shell,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .product-detail-shell,
body.theme-day .global66-guide-card,
body.theme-day .checkout-confirmation-card {
  border-color: var(--border);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 154, 91, 0.1), transparent 24rem),
    var(--card);
  box-shadow: var(--shadow);
}

body.theme-day .product-detail-modal,
body.theme-day .product-detail-modal[data-product-key],
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"],
body.theme-day .global66-guide-modal,
body.theme-day .checkout-confirmation-modal {
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 154, 91, 0.16), transparent 28rem),
    rgba(247, 244, 238, 0.96);
}

body.theme-day .drawer-backdrop,
body.theme-day .account-backdrop,
body.theme-day .modal-backdrop,
body.theme-day .checkout-confirmation-backdrop,
body.theme-day .global66-guide-backdrop {
  background: rgba(64, 48, 28, 0.24);
}

body.theme-day h1,
body.theme-day h2,
body.theme-day h3,
body.theme-day .brand-name,
body.theme-day .nav-link.active,
body.theme-day .about-intro h1,
body.theme-day .about-chapter h2,
body.theme-day .about-chapter h3,
body.theme-day .home-story-copy h2,
body.theme-day .faq-main-title,
body.theme-day .detail-copy h2,
body.theme-day .product-detail-modal .detail-copy h2,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-copy h2,
body.theme-day .drawer-header h2,
body.theme-day .modal-header h2,
body.theme-day .checkout-confirmation-card h2,
body.theme-day .global66-guide-card h2,
body.theme-day .cart-summary h3,
body.theme-day .checkout-form-section-title h3,
body.theme-day .preview-approval-box h3,
body.theme-day .personalization-preview-item > strong {
  color: var(--heading);
  text-shadow: none;
}

body.theme-day p,
body.theme-day li,
body.theme-day .about-copy p,
body.theme-day .about-chapter > p:not(.about-statement):not(.about-closing),
body.theme-day .about-list-copy p,
body.theme-day .about-final .about-closing-copy p,
body.theme-day .about-desire-quote,
body.theme-day .about-desire-note,
body.theme-day .home-story-copy p,
body.theme-day .hero-text,
body.theme-day .catalog-intro,
body.theme-day .contact-heading p:last-child,
body.theme-day .detail-description,
body.theme-day .product-detail-modal .detail-description,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-description,
body.theme-day .detail-feature p,
body.theme-day .personalization-heading p,
body.theme-day .personalization-file-note,
body.theme-day .field-help,
body.theme-day .email-assets-panel p,
body.theme-day .faq-list p,
body.theme-day .faq-list li,
body.theme-day .testimonials-hero-copy p:not(.eyebrow),
body.theme-day .testimonials-closing-copy p:not(.eyebrow),
body.theme-day .global66-guide-card p,
body.theme-day .global66-guide-card li,
body.theme-day .checkout-confirmation-message p,
body.theme-day .checkout-payment-instructions p,
body.theme-day .checkout-confirmation-summary span,
body.theme-day .payment-flow-note,
body.theme-day .currency-note,
body.theme-day .market-note,
body.theme-day .cart-empty,
body.theme-day .cart-item-name small,
body.theme-day .personalization-preview-heading p,
body.theme-day .personalization-preview-list > p,
body.theme-day .personalization-preview-item dt,
body.theme-day .personalization-preview-item dd,
body.theme-day .preview-approval-check,
body.theme-day .site-footer .legal-notice {
  color: var(--text-secondary);
  text-shadow: none;
}

body.theme-day .eyebrow,
body.theme-day .catalog-title,
body.theme-day .config-option-group > span,
body.theme-day .product-detail-modal .config-option > span,
body.theme-day .config-select-option span,
body.theme-day .personalization-heading span,
body.theme-day .personalization-section-title,
body.theme-day .personalization-file-note > span,
body.theme-day .detail-feature span,
body.theme-day .detail-option-group h3,
body.theme-day .checkout-form-section-title span,
body.theme-day .personalization-preview-heading span,
body.theme-day .global66-guide-card h3,
body.theme-day .global66-guide-steps strong,
body.theme-day .contact-card > span:not(.contact-icon),
body.theme-day .home-story-subtitle,
body.theme-day .home-story-highlight,
body.theme-day .text-emphasis,
body.theme-day .faq-link,
body.theme-day .launch-price-note {
  color: #9b6a25;
}

body.theme-day #detailPrice,
body.theme-day .product-detail-modal #detailPrice,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] #detailPrice,
body.theme-day .detail-option strong,
body.theme-day .detail-subtotal strong,
body.theme-day .checkout-confirmation-summary strong,
body.theme-day .summary-line strong,
body.theme-day .summary-line.total span,
body.theme-day .summary-line.total strong,
body.theme-day .testimonial-stats strong {
  color: #9b6a25;
}

body.theme-day .product-card,
body.theme-day .contact-card,
body.theme-day .faq-list details,
body.theme-day .about-desire,
body.theme-day .about-statement,
body.theme-day .about-closing,
body.theme-day .about-product-placeholder,
body.theme-day .home-video-frame,
body.theme-day .featured-testimonial,
body.theme-day .people-carousel,
body.theme-day .people-carousel figure,
body.theme-day .messages-masonry figure,
body.theme-day .testimonial-stats div,
body.theme-day .detail-feature,
body.theme-day .detail-product-frame,
body.theme-day .product-detail-modal #detailImage,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] #detailImage,
body.theme-day .detail-configurator button,
body.theme-day .product-detail-modal .detail-configurator button,
body.theme-day .detail-option,
body.theme-day .product-detail-modal .detail-options label,
body.theme-day .personalization-panel,
body.theme-day .product-detail-modal .personalization-panel,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-panel,
body.theme-day .personalization-file-note,
body.theme-day .email-assets-panel,
body.theme-day .detail-subtotal,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .detail-subtotal,
body.theme-day .cart-summary,
body.theme-day .checkout-page-section .cart-item,
body.theme-day .preview-approval-box,
body.theme-day .personalization-preview-box,
body.theme-day .checkout-confirmation-message,
body.theme-day .checkout-payment-instructions,
body.theme-day .checkout-payment-method,
body.theme-day .payment-video-card,
body.theme-day .global66-guide-steps div {
  border-color: var(--border);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.92)),
    var(--card);
  box-shadow: 0 16px 46px rgba(64, 48, 28, 0.1);
}

body.theme-day .product-card:hover,
body.theme-day .contact-card:hover,
body.theme-day .detail-feature:hover,
body.theme-day .detail-option:hover,
body.theme-day .detail-option.is-active,
body.theme-day .product-detail-modal .detail-configurator button:hover,
body.theme-day .product-detail-modal .detail-configurator button.is-active,
body.theme-day .product-detail-modal .detail-options label:hover,
body.theme-day .checkout-payment-method.is-active {
  border-color: rgba(201, 154, 91, 0.5);
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff, rgba(255, 248, 232, 0.94)),
    var(--card);
}

body.theme-day .global66-guide-step {
  border-color: var(--border);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.94)),
    var(--card);
  box-shadow: 0 16px 46px rgba(64, 48, 28, 0.1);
}

body.theme-day .global66-guide-path,
body.theme-day .global66-guide-emphasis,
body.theme-day .global66-guide-warning {
  color: var(--heading);
  background: rgba(201, 154, 91, 0.1);
}

body.theme-day .global66-guide-images img {
  border-color: rgba(201, 154, 91, 0.2);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(64, 48, 28, 0.12);
}

body.theme-day .product-image,
body.theme-day .product-card[data-category-card="libros-pintados"] .product-image,
body.theme-day .detail-stage::before,
body.theme-day .detail-stage::after {
  border-color: rgba(201, 154, 91, 0.18);
  background:
    radial-gradient(circle at center, rgba(201, 154, 91, 0.12), transparent 18rem),
    var(--surface);
}

body.theme-day .product-card h3,
body.theme-day .product-card p,
body.theme-day .contact-card strong,
body.theme-day .drawer-cart-item strong,
body.theme-day .cart-item-name,
body.theme-day .checkout-payment-method strong,
body.theme-day .global66-guide-card strong,
body.theme-day .site-footer p:first-child,
body.theme-day .site-footer [data-i18n="introSlogan"] {
  color: var(--text);
  text-shadow: none;
}

body.theme-day input,
body.theme-day select,
body.theme-day textarea,
body.theme-day .product-card select,
body.theme-day .search-bar input,
body.theme-day .catalog-search-control input,
body.theme-day .catalog-sort-control select,
body.theme-day .variant-select,
body.theme-day .config-select-option select,
body.theme-day .personalization-fields input,
body.theme-day .personalization-fields select,
body.theme-day .personalization-fields textarea,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields input,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields select,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields textarea,
body.theme-day .country-picker-button,
body.theme-day .country-picker-menu,
body.theme-day .country-picker-menu input,
body.theme-day .country-picker-option,
body.theme-day .payment-native-select,
body.theme-day .drawer-cart-controls .cart-quantity {
  border-color: rgba(130, 102, 62, 0.2);
  color: var(--input-text);
  background: var(--input-bg);
  box-shadow: none;
}

body.theme-day input::placeholder,
body.theme-day textarea::placeholder,
body.theme-day .country-picker-menu input::placeholder,
body.theme-day .iti__search-input::placeholder {
  color: rgba(85, 85, 85, 0.68);
}

body.theme-day label,
body.theme-day .personalization-fields label,
body.theme-day .product-detail-modal[data-product-key="altar-reconocimiento"] .personalization-fields label,
body.theme-day .catalog-sort-control,
body.theme-day .summary-line span,
body.theme-day .drawer-summary .summary-line span,
body.theme-day .drawer-summary .summary-line strong,
body.theme-day .drawer-cart-item small,
body.theme-day .checkout-payment-method span,
body.theme-day .checkout-payment-method small {
  color: var(--text-secondary);
}

body.theme-day .primary-button,
body.theme-day .submit-button,
body.theme-day .add-cart-button,
body.theme-day .drawer-checkout,
body.theme-day .email-assets-button {
  border-color: rgba(201, 154, 91, 0.58);
  color: #161616;
  background: linear-gradient(135deg, var(--gold-hover), var(--gold));
  box-shadow: 0 18px 42px rgba(146, 100, 38, 0.18);
}

body.theme-day .secondary-button,
body.theme-day .secondary-hero-button,
body.theme-day .detail-back,
body.theme-day .product-detail-modal .detail-back,
body.theme-day .catalog-category-filters button,
body.theme-day .view-toggle,
body.theme-day .payment-instructions-button,
body.theme-day .remove-cart-item,
body.theme-day .modal-close {
  border-color: rgba(130, 102, 62, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
}

body.theme-day .secondary-button:hover,
body.theme-day .secondary-hero-button:hover,
body.theme-day .detail-back:hover,
body.theme-day .catalog-category-filters button:hover,
body.theme-day .catalog-category-filters button.is-active,
body.theme-day .view-toggle:hover,
body.theme-day .view-toggle.is-active,
body.theme-day .payment-instructions-button:hover,
body.theme-day .remove-cart-item:hover {
  border-color: rgba(201, 154, 91, 0.58);
  color: #9b6a25;
  background: rgba(255, 248, 232, 0.94);
}

body.theme-day .about-portrait,
body.theme-day .about-product-photo,
body.theme-day .about-video-replay {
  border-color: var(--border);
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 154, 91, 0.1), transparent 22rem),
    var(--card);
  box-shadow: var(--shadow);
}

body.theme-day .about-portrait::after {
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.04), rgba(247, 244, 238, 0.2)),
    radial-gradient(circle at 50% 22%, rgba(201, 154, 91, 0.12), transparent 34rem);
}

body.theme-day .home-story-highlight {
  border-left-color: rgba(201, 154, 91, 0.46);
}

body.theme-day .cart-drawer,
body.theme-day .site-footer {
  background: var(--surface-alt);
}

body.theme-day .drawer-cart-item,
body.theme-day .drawer-summary,
body.theme-day .drawer-summary .summary-line,
body.theme-day .summary-line,
body.theme-day .cart-item,
body.theme-day .checkout-confirmation-summary div {
  border-color: var(--border);
}

body.theme-day .iti {
  --iti-border-color: rgba(130, 102, 62, 0.2);
  --iti-dialcode-color: var(--text-secondary);
  --iti-dropdown-bg: #ffffff;
  --iti-hover-color: #f8efe0;
  --iti-path-globe-1x: url("https://cdn.jsdelivr.net/npm/intl-tel-input@29.0.1/build/img/globe_light.webp");
  --iti-path-globe-2x: url("https://cdn.jsdelivr.net/npm/intl-tel-input@29.0.1/build/img/globe_light@2x.webp");
}

.icon-button.market-theme-toggle {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 32px);
  z-index: 2100;
  border-color: rgba(240, 201, 133, 0.28);
}

body.theme-day .about-desire-note {
  color: var(--gold) !important;
}

body:not(.theme-day) .about-desire-note {
  color: var(--gold-soft) !important;
}

.order-form.is-global66-manual-payment .international-payment-summary {
  border-color: rgba(201, 154, 91, 0.42);
  color: #17110a;
  background: linear-gradient(135deg, #fff8e8, #efd59f);
}

.order-form.is-global66-manual-payment .international-payment-summary strong {
  color: #17110a;
}

.order-form.is-global66-manual-payment .international-payment-summary span {
  color: #3a2a15;
}

.global66-transfer-total {
  display: grid;
  gap: 6px;
  width: min(100%, 360px);
  margin: 4px auto 0;
  border: 1px solid rgba(201, 154, 91, 0.42);
  border-radius: 8px;
  padding: 14px 16px;
  color: #17110a;
  background: linear-gradient(135deg, #fff8e8, #efd59f);
  text-align: center;
}

.global66-transfer-total[hidden] {
  display: none;
}

.global66-transfer-total span {
  color: #3a2a15;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global66-transfer-total strong {
  color: #17110a;
  font-size: 24px;
  line-height: 1.1;
}

.order-form.is-manual-payment-step .cart-summary h3,
.order-form.is-manual-payment-step .cart-summary #cartItems,
.order-form.is-manual-payment-step .cart-summary #cartEmpty,
.order-form.is-manual-payment-step .cart-summary .summary-line,
.order-form.is-manual-payment-step .cart-summary .customs-note {
  display: none;
}

.order-form.is-global66-manual-payment .submit-order-button {
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5d083, #c99436);
  box-shadow: 0 18px 44px rgba(201, 148, 54, 0.28);
}

.order-form.is-global66-manual-payment .submit-order-button:hover {
  color: #1a1a1a;
  background: linear-gradient(135deg, #f8d996, #d6a243);
  box-shadow: 0 22px 52px rgba(201, 148, 54, 0.34);
}

.order-form.is-global66-manual-payment .submit-order-button:disabled {
  cursor: not-allowed;
  color: #1a1a1a;
  opacity: 1;
  background: linear-gradient(135deg, #f5d083, #c99436);
  box-shadow: none;
}

