:root {
  --black: #040403;
  --ink: #0c0b08;
  --panel: #11110e;
  --panel-2: #17150f;
  --gold: #d8b45a;
  --gold-soft: #f4df9d;
  --gold-deep: #8e641f;
  --champagne: #f7edcf;
  --graphite: #171816;
  --olive: #7a8a62;
  --emerald: #2fce7b;
  --emerald-deep: #0f6d43;
  --emerald-soft: #bff7d6;
  --white: #ffffff;
  --muted: #c7beab;
  --line: rgba(216, 180, 90, 0.22);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-deep: 0 34px 110px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
span,
strong,
button,
input,
textarea,
select {
  overflow-wrap: anywhere;
}

html {
  scroll-behavior: auto;
  scroll-snap-type: y proximity;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(122, 138, 98, 0.12), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(216, 180, 90, 0.09), transparent 30%),
    linear-gradient(180deg, #060604 0%, #0b0a07 46%, #050504 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.snap-section {
  scroll-margin-top: 84px;
  scroll-snap-align: start;
}

body.modal-open {
  overflow: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(244, 201, 47, 0.24), transparent 28%),
    rgba(5, 5, 5, 0.96);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 420ms ease;
}

.page-transition::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(244, 201, 47, 0.18);
  border-radius: 8px;
  content: "";
  opacity: 0.7;
}

.page-transition img {
  position: relative;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(244, 201, 47, 0.34));
}

.page-transition span {
  position: relative;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

body.is-transitioning .page-transition {
  opacity: 1;
  transform: scale(1);
}

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

button,
input,
textarea {
  font: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.14;
  pointer-events: none;
}

.ambient-one {
  top: 12%;
  right: -12%;
  background: rgba(244, 201, 47, 0.55);
}

.ambient-two {
  bottom: 8%;
  left: -14%;
  background: rgba(156, 107, 0, 0.44);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  width: min(1240px, calc(100% - 32px));
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  margin: 14px auto -86px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 228, 138, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 6, 5, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(10px) saturate(120%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 214px;
  padding-left: 8px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(244, 201, 47, 0.34));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.34em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(244, 201, 47, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.065);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  justify-self: center;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  min-height: 38px;
  border-radius: 999px;
  padding: 11px 12px;
  overflow: hidden;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a::after {
  position: absolute;
  inset: auto 14px 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(244, 201, 47, 0.1);
  color: var(--white);
  transform: translateY(-1px);
}

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

.header-cta,
.cart-toggle,
.primary-btn,
.secondary-btn,
.contact-form button,
.catalog-lead-form button,
.filter-btn,
.product-actions button,
.product-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.header-cta,
.cart-toggle,
.primary-btn,
.contact-form button,
.catalog-lead-form button {
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  color: #121006;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(244, 201, 47, 0.22);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 228, 138, 0.5);
  background:
    linear-gradient(135deg, #fff0a8, var(--gold) 52%, #b97d00);
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 54px rgba(244, 201, 47, 0.32);
}

.cart-toggle {
  position: relative;
  width: 54px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 228, 138, 0.5);
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.5), transparent 19%),
    linear-gradient(135deg, #fff3b2, var(--gold) 52%, #b77c00);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cart-toggle:hover {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 58px rgba(244, 201, 47, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: translateY(-1px);
}

.cart-icon {
  width: 31px;
  height: 31px;
  fill: #070604;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.28));
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -6px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: #25d366;
  color: #031109;
  font-size: 11px;
  font-weight: 950;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(700px, 92svh, 860px);
  grid-template-columns: minmax(0, 700px);
  align-items: center;
  padding: clamp(86px, 8vw, 118px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 94px);
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.5) 38%, rgba(0, 0, 0, 0.2) 64%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 45%, rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 78% 22%, rgba(244, 201, 47, 0.06), transparent 33%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.45vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.contact-copy p,
.documents-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-text {
  color: rgba(255, 255, 255, 0.82);
}

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

.primary-btn,
.secondary-btn {
  padding: 0 26px;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  min-height: 54px;
  width: min(306px, 100%);
  border: 1px solid rgba(255, 228, 138, 0.5);
  padding: 0 32px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(135deg, #ffe881, var(--gold) 48%, #b77a00);
  color: #121006;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 52px rgba(244, 201, 47, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-actions .primary-btn:hover,
.hero-actions .secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 64px rgba(244, 201, 47, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 228, 138, 0.2);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.24);
}

.hero-metrics {
  display: flex;
  max-width: 680px;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 228, 138, 0.16);
}

.hero-metrics span {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hero-metrics strong {
  display: inline-block;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.hero-value-grid {
  display: none;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-value-grid span {
  display: inline-flex;
  max-width: 228px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 228, 138, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.3;
}

.hero-value-grid strong {
  color: var(--gold-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  min-height: 100%;
  place-items: stretch;
  pointer-events: none;
}

.hero-visual::before {
  display: none;
}

.showcase-carousel {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #090807;
  box-shadow: none;
  isolation: isolate;
  pointer-events: auto;
}

.carousel-track {
  position: relative;
  min-height: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 16px;
  padding: clamp(104px, 12vw, 160px) clamp(34px, 6vw, 86px) clamp(48px, 7vw, 86px);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 650ms ease, transform 650ms ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.03) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.52));
  content: "";
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04) brightness(1.1);
  transform: scale(1.01);
}

.carousel-slide div {
  display: none;
}

.carousel-slide span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.carousel-slide h2 {
  margin: 0;
  max-width: 390px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.04;
  text-wrap: balance;
}

.carousel-slide p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.carousel-slide a {
  width: fit-content;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--gold);
  color: #0c0904;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(244, 201, 47, 0.24);
}

.carousel-btn {
  position: absolute;
  top: auto;
  bottom: clamp(34px, 5vw, 58px);
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 228, 138, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  color: var(--gold);
  cursor: pointer;
  font-size: 30px;
  transform: none;
}

.carousel-btn.prev {
  right: clamp(90px, 9vw, 138px);
  left: auto;
}

.carousel-btn.next {
  right: clamp(34px, 5vw, 82px);
}

.floating-note {
  display: none;
}

.note-one {
  top: 18%;
  right: clamp(18px, 4vw, 64px);
  animation: float 4s ease-in-out infinite;
}

.note-two {
  bottom: 18%;
  right: clamp(150px, 17vw, 250px);
  left: auto;
  animation: float 4.8s ease-in-out infinite;
}

.section,
.process-section,
.quote-section,
.manual-products-section,
.documents-section,
.videos-section,
.location-section,
.contact {
  min-height: calc(100vh - 84px);
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.catalog-toolbar,
.product-command-bar {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.product-command-bar {
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  margin: -4px 0 26px;
  padding: 10px;
  border: 1px solid rgba(244, 201, 47, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.search-box,
.product-search {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-search {
  gap: 6px;
}

.product-search span {
  padding-left: 18px;
}

.search-box input,
.product-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  outline: 0;
  padding: 0 18px;
}

.product-search input {
  min-height: 52px;
  border-color: rgba(255, 228, 138, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.product-view-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.all-products-btn,
.product-view-btn {
  min-height: 52px;
  border: 1px solid rgba(255, 228, 138, 0.58);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--champagne);
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.all-products-btn,
.product-view-btn.is-active {
  background:
    linear-gradient(135deg, #fff3b2, var(--gold) 52%, #b77c00);
  color: #111006;
  box-shadow: 0 18px 46px rgba(244, 201, 47, 0.23);
}

.all-products-btn:hover,
.all-products-btn.is-active,
.product-view-btn:hover,
.product-view-btn.is-active {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 22px 58px rgba(244, 201, 47, 0.32);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter-row {
  margin: 0 0 18px;
}

.filter-btn {
  min-height: 44px;
  border: 1px solid var(--line-soft);
  padding: 0 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--black);
  background: var(--gold);
}

.product-grid {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  overflow: hidden;
  padding: 0;
}

.product-grid::before,
.product-grid::after {
  display: none;
}

.product-carousel-window {
  overflow: hidden;
  padding: 6px 0 18px;
}

.product-carousel-track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 1.6vw, 18px);
  will-change: transform;
}

.product-carousel-track.is-moving {
  animation: productMarquee 34s linear infinite;
}

.product-carousel-window:hover .product-carousel-track,
.product-carousel-window:focus-within .product-carousel-track {
  animation-play-state: paused;
}

.product-carousel-track.is-static {
  width: 100%;
}

.product-carousel-track.is-static .product-card {
  flex: 1 1 0;
}

.product-card {
  width: clamp(286px, 29vw, 360px);
  flex: 0 0 clamp(286px, 29vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(244, 201, 47, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card-featured {
  border-color: rgba(255, 228, 138, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 78px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.product-card-featured .product-media {
  background:
    linear-gradient(135deg, rgba(255, 228, 138, 0.12), transparent 48%),
    #070605;
}

.product-card:hover {
  border-color: rgba(244, 201, 47, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-6px);
}

.product-media {
  aspect-ratio: 4 / 2.75;
  overflow: hidden;
  background: #090807;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-body {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
  padding: clamp(17px, 2vw, 22px);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-topline strong {
  color: var(--gold);
}

.product-tag {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: clamp(21px, 2.2vw, 26px);
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Cotizador inteligente: experiencia guiada premium */
.cart-modal {
  align-items: stretch;
  padding: 10px;
}

.cart-modal .modal-backdrop {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 210, 0, 0.13), transparent 30%),
    rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.cart-drawer {
  width: min(900px, 100%);
  max-height: calc(100vh - 20px);
  gap: 0;
  overflow: auto;
  border: 1px solid rgba(255, 212, 0, 0.5);
  border-radius: 24px;
  padding: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 212, 0, 0.11), transparent 26%),
    linear-gradient(180deg, #13130f 0%, #090907 100%);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.76),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  scrollbar-color: rgba(255, 212, 0, 0.45) transparent;
}

.cart-drawer > .modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 4;
  width: 42px;
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  backdrop-filter: blur(12px);
}

.cart-drawer-head {
  position: relative;
  gap: 9px;
  padding: 28px 84px 22px 34px;
  border-bottom: 1px solid rgba(255, 212, 0, 0.16);
  background:
    linear-gradient(110deg, rgba(255, 212, 0, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.018);
}

.cart-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.cart-title-row .eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: #ffd400;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.cart-title-row .eyebrow b {
  display: inline-grid;
  min-width: 42px;
  min-height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 212, 0, 0.48);
  border-radius: 999px;
  padding: 0 7px;
  background: rgba(255, 212, 0, 0.11);
  color: #fff3a6;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.quote-channel-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #ffd400;
  border-radius: 999px;
  padding: 0 12px;
  background: #ffd400;
  box-shadow:
    0 0 0 4px rgba(255, 212, 0, 0.08),
    0 8px 24px rgba(255, 212, 0, 0.16);
  color: #0b0b08;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer-head h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cart-drawer-head > p {
  max-width: 650px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.cart-drawer-head .cart-counter {
  margin-top: 5px;
  color: #ffd400;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.quote-value-strip span {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 12px;
  background: #0b0b08;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
}

.quote-value-strip b {
  color: #ffd400;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.quote-progress {
  display: grid;
  grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
  align-items: center;
  padding: 22px 34px 18px;
}

.quote-progress button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font: inherit;
}

.quote-progress button > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 950;
}

.quote-progress button small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-progress button.is-active,
.quote-progress button.is-complete {
  color: #fff;
}

.quote-progress button.is-active > span {
  border-color: #ffd400;
  background: #ffd400;
  box-shadow: 0 0 0 6px rgba(255, 212, 0, 0.09);
  color: #0a0a07;
}

.quote-progress button.is-complete > span {
  border-color: rgba(255, 212, 0, 0.55);
  background: rgba(255, 212, 0, 0.12);
  color: #ffd400;
}

.quote-progress > i {
  height: 1px;
  margin: 0 14px;
  background: linear-gradient(90deg, rgba(255, 212, 0, 0.42), rgba(255, 255, 255, 0.12));
}

.quote-flow {
  padding: 0 34px 24px;
}

.quote-step-panel[hidden] {
  display: none !important;
}

.quote-step-panel.is-active {
  animation: quote-step-in 240ms ease both;
}

@keyframes quote-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-step-heading,
.quote-selection-head,
.quote-review-title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.quote-step-heading {
  margin-bottom: 16px;
}

.quote-step-heading > div {
  display: grid;
  gap: 4px;
}

.quote-step-heading span,
.quote-selection-head span,
.quote-review-title span {
  color: #ffd400;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-step-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
}

.quote-step-heading > strong {
  border: 1px solid rgba(255, 212, 0, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 212, 0, 0.06);
  color: #fff1a8;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-modal .cart-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.cart-modal .cart-summary-grid div {
  min-height: 76px;
  border-color: rgba(255, 212, 0, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 212, 0, 0.08), transparent 52%),
    rgba(255, 255, 255, 0.028);
}

.cart-modal .cart-summary-grid strong {
  color: #ffd400;
}

.cart-modal .cart-summary-grid .cart-summary-secure strong {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.cart-modal .cart-picker {
  max-height: 390px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 52%),
    rgba(0, 0, 0, 0.22);
  box-shadow: none;
}

.cart-modal .quote-picker-head {
  margin-bottom: 14px;
}

.cart-modal .quote-picker-head span {
  color: #ffd400;
}

.cart-modal .quote-picker-head strong {
  color: rgba(255, 255, 255, 0.52);
}

.cart-modal .cart-search {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: 0 0 12px;
  padding-bottom: 2px;
  background: #0c0c09;
}

.cart-modal .cart-search input,
.cart-modal .cart-customer input,
.cart-modal .cart-note textarea {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cart-modal .cart-search input:focus,
.cart-modal .cart-customer input:focus,
.cart-modal .cart-note textarea:focus {
  border-color: rgba(255, 212, 0, 0.68);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.08);
}

.cart-modal .quote-product {
  grid-template-columns: 72px minmax(0, 1fr) auto;
  min-height: 98px;
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.cart-modal .quote-product:hover {
  border-color: rgba(255, 212, 0, 0.34);
  background: rgba(255, 212, 0, 0.035);
  transform: translateY(-1px);
}

.cart-modal .quote-product.is-selected {
  border-color: rgba(255, 212, 0, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 3px 0 0 #ffd400;
}

.cart-modal .quote-product img {
  border-radius: 11px;
  background: #fff;
}

.cart-modal .quote-product span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-modal .quote-product strong {
  color: #fff;
  line-height: 1.25;
}

.cart-modal .quote-product small {
  border-color: rgba(255, 212, 0, 0.2);
  background: rgba(255, 212, 0, 0.06);
  color: #ffe873;
}

.cart-modal .quote-product-controls {
  grid-template-columns: 74px 108px;
}

.cart-modal .quote-product-controls input {
  border-radius: 10px;
  text-align: center;
}

.cart-modal .quote-product-controls button {
  border-color: #ffd400;
  border-radius: 10px;
  background: #ffd400;
  color: #0b0b08;
  transition: background 160ms ease, transform 160ms ease;
}

.cart-modal .quote-product-controls button:hover {
  background: #ffe45c;
  transform: translateY(-1px);
}

.quote-selection-head {
  margin: 18px 0 10px;
}

.quote-selection-head > div {
  display: grid;
  gap: 3px;
}

.quote-selection-head strong {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.quote-selection-head .cart-clear {
  width: auto;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 11px;
}

.cart-modal .cart-items {
  max-height: 320px;
}

.cart-modal .cart-item {
  grid-template-columns: 58px minmax(0, 1fr) minmax(170px, 0.52fr) auto;
  align-items: center;
  border-color: rgba(255, 212, 0, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.cart-modal .cart-item::before {
  background: linear-gradient(90deg, #ffd400, transparent 42%);
}

.cart-modal .cart-quantity-control {
  grid-column: auto;
}

.cart-modal .cart-quantity-control > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.cart-modal .cart-stepper {
  grid-template-columns: 34px minmax(48px, 1fr) 34px;
  gap: 4px;
  border-radius: 12px;
  padding: 4px;
}

.cart-modal .cart-step,
.cart-modal .cart-stepper input {
  min-height: 34px;
}

.cart-modal .cart-remove {
  grid-column: auto;
  min-height: 38px;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 11px;
}

.cart-modal .cart-empty {
  border-color: rgba(255, 212, 0, 0.2);
  border-radius: 14px;
  background: rgba(255, 212, 0, 0.035);
}

.cart-modal .cart-customer {
  gap: 18px;
  border-color: rgba(255, 212, 0, 0.17);
  border-radius: 18px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 212, 0, 0.055), transparent 50%),
    rgba(255, 255, 255, 0.025);
}

.cart-modal .cart-form-grid {
  gap: 16px;
}

.cart-modal .cart-customer label,
.cart-modal .cart-note {
  gap: 8px;
}

.cart-modal .cart-customer label > span,
.cart-modal .cart-note > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cart-modal .cart-customer label em {
  margin-left: 4px;
  color: #ffd400;
  font-size: 8px;
  font-style: normal;
}

.cart-modal .cart-customer label small,
.cart-modal .cart-note small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

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

.quote-privacy-note {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(255, 212, 0, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255, 212, 0, 0.045);
}

.quote-privacy-note > b {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffd400;
  color: #090906;
}

.quote-privacy-note > div {
  display: grid;
  gap: 3px;
}

.quote-privacy-note strong {
  color: #fff;
  font-size: 12px;
}

.quote-privacy-note span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.5;
}

.quote-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 14px;
}

.quote-review-grid > article {
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.quote-review-title {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 212, 0, 0.04);
}

.quote-review-title button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-review-list,
.quote-review-customer {
  display: grid;
  max-height: 286px;
  overflow: auto;
}

.quote-review-list > div,
.quote-review-customer > div {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.quote-review-list > div:last-child,
.quote-review-customer > div:last-child {
  border-bottom: 0;
}

.quote-review-list > div > div {
  display: grid;
  gap: 3px;
}

.quote-review-list strong,
.quote-review-customer strong {
  color: #fff;
  font-size: 12px;
}

.quote-review-list span,
.quote-review-customer span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.quote-review-list > div > b {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 212, 0, 0.1);
  color: #ffd400;
  font-size: 10px;
}

.quote-delivery-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.quote-delivery-flow > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.quote-delivery-flow b {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 212, 0, 0.42);
  border-radius: 50%;
  color: #ffd400;
  font-size: 10px;
}

.quote-delivery-flow span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.45;
}

.quote-delivery-flow span strong {
  display: block;
  color: #fff;
  font-size: 11px;
}

.quote-delivery-flow > i {
  width: 24px;
  height: 1px;
  background: rgba(255, 212, 0, 0.3);
}

.quote-final-assurance {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffd400;
  color: #090906;
}

.quote-final-assurance span {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-final-assurance strong {
  font-size: 12px;
}

.quote-flow-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  border-top: 1px solid rgba(255, 212, 0, 0.18);
  padding: 20px 34px 24px;
  background: #090907;
}

.quote-flow-status {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: center;
}

.quote-status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #ffd400;
  box-shadow: 0 0 0 5px rgba(255, 212, 0, 0.1);
}

.quote-flow-footer .cart-hint {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: normal;
}

.quote-flow-footer .cart-hint.is-error {
  color: #ffaaaa;
}

.quote-flow-footer .cart-hint.is-success {
  color: #fff3a6;
}

.quote-flow-footer .cart-hint.is-processing {
  color: #ffd400;
}

.quote-flow-actions {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
}

.cart-modal [hidden],
.quote-flow-footer [hidden] {
  display: none !important;
}

.quote-back-btn {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
}

.quote-next-btn,
.quote-flow-footer #cartQuoteSubmit {
  min-height: 48px;
  border: 1px solid #ffd400;
  border-radius: 12px;
  padding: 0 20px;
  background: #ffd400;
  box-shadow: 0 10px 30px rgba(255, 212, 0, 0.14);
  color: #090906;
  font-size: 12px;
  font-weight: 950;
}

.quote-next-btn:hover,
.quote-flow-footer #cartQuoteSubmit:hover {
  background: #ffe45c;
  transform: translateY(-1px);
}

.quote-advisor-link {
  grid-column: 1 / -1;
  justify-self: end;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(255, 212, 0, 0.45);
  text-underline-offset: 4px;
}

.quote-advisor-link:hover {
  color: #ffd400;
}

.quote-advisor-link.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.quote-next-btn.is-disabled {
  filter: grayscale(1);
  opacity: 0.5;
}

@media (max-width: 1024px) {
  body .cart-modal {
    padding: 6px;
  }

  body .cart-modal .cart-drawer {
    width: min(860px, 100%);
    max-height: calc(100dvh - 12px);
    border-radius: 20px;
  }

  body .cart-modal .cart-drawer-head {
    padding: 24px 76px 20px 26px;
  }

  body .cart-modal .cart-drawer-head h2 {
    font-size: clamp(36px, 5.6vw, 48px);
  }

  .quote-progress {
    padding: 20px 26px 17px;
  }

  .quote-flow {
    padding: 0 26px 22px;
  }

  .quote-flow-footer {
    padding: 18px 26px 22px;
  }

  .cart-modal .quote-product {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .cart-modal .cart-item {
    grid-template-columns: 54px minmax(0, 1fr) minmax(154px, 0.52fr) auto;
  }
}

@media (max-width: 760px) {
  .cart-modal {
    padding: 0;
  }

  .cart-drawer {
    width: 100%;
    max-height: 100dvh;
    border-width: 0;
    border-radius: 0;
    scroll-padding-top: 12px;
  }

  .cart-drawer-head {
    padding: 22px 58px 18px 18px;
  }

  .cart-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-channel-pill {
    min-height: 26px;
  }

  .cart-title-row .eyebrow {
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.55;
  }

  .cart-drawer-head h2 {
    font-size: clamp(31px, 9.7vw, 42px);
    line-height: 1.02;
  }

  .cart-drawer-head > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .quote-value-strip span {
    flex-direction: column;
    gap: 2px;
    min-height: 54px;
    font-size: 9px;
    text-align: center;
  }

  .quote-progress {
    grid-template-columns: minmax(64px, auto) minmax(14px, 1fr) minmax(64px, auto) minmax(14px, 1fr) minmax(64px, auto);
    padding: 18px 16px;
  }

  .quote-progress button {
    flex-direction: column;
    gap: 5px;
    min-width: 0;
    text-align: center;
  }

  .quote-progress button small {
    display: block;
    max-width: 72px;
    font-size: 8px;
    letter-spacing: 0.045em;
    line-height: 1.25;
  }

  .quote-progress > i {
    margin: -16px 5px 0;
  }

  .quote-flow {
    padding: 0 16px 20px;
  }

  .quote-step-heading {
    align-items: flex-start;
    gap: 10px;
  }

  .quote-step-heading h3 {
    font-size: clamp(25px, 7.2vw, 32px);
    line-height: 1.06;
  }

  .quote-step-heading > strong {
    max-width: 132px;
    text-align: center;
  }

  .cart-modal .cart-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cart-modal .cart-summary-grid div {
    min-height: 70px;
    padding: 10px 8px;
  }

  .cart-modal .cart-summary-grid span {
    font-size: 8px;
  }

  .cart-modal .cart-summary-grid strong {
    font-size: 20px;
  }

  .cart-modal .cart-summary-grid .cart-summary-secure strong {
    font-size: 11px;
  }

  .cart-modal .cart-picker {
    max-height: min(54dvh, 430px);
    border-radius: 16px;
    padding: 12px;
  }

  .cart-modal .quote-picker-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cart-modal .quote-picker-head strong {
    font-size: 9px;
    line-height: 1.35;
  }

  .cart-modal .cart-search input,
  .cart-modal .cart-customer input,
  .cart-modal .cart-note textarea {
    font-size: 16px;
  }

  .cart-modal .quote-product {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 11px;
  }

  .cart-modal .quote-product-controls {
    grid-column: 1 / -1;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .quote-selection-head {
    align-items: flex-start;
  }

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

  .cart-modal .cart-quantity-control,
  .cart-modal .cart-remove {
    grid-column: 1 / -1;
  }

  .cart-modal .cart-form-grid,
  .quote-review-grid {
    grid-template-columns: 1fr;
  }

  .cart-modal .cart-customer {
    gap: 16px;
    border-radius: 16px;
    padding: 16px;
  }

  .cart-field-wide {
    grid-column: auto;
  }

  .quote-delivery-flow {
    grid-template-columns: 1fr;
  }

  .quote-delivery-flow > i {
    width: 1px;
    height: 14px;
    margin-left: 15px;
  }

  .quote-final-assurance {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .quote-flow-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px max(22px, env(safe-area-inset-bottom));
  }

  .quote-flow-actions {
    display: flex;
    width: 100%;
  }

  .quote-flow-actions .quote-next-btn,
  .quote-flow-actions #cartQuoteSubmit {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 52px;
    width: 100%;
    padding: 8px 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .quote-advisor-link {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .cart-drawer > .modal-close {
    top: 18px;
    right: 16px;
    width: 38px;
    min-height: 38px;
  }

  .quote-channel-pill {
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.075em;
  }

  .quote-value-strip span {
    padding-inline: 5px;
  }

  .quote-progress button > span {
    width: 32px;
    height: 32px;
  }

  .quote-flow {
    padding-inline: 15px;
  }

  .cart-modal .cart-summary-grid div {
    min-width: 0;
  }

  .quote-selection-head {
    flex-direction: column;
    gap: 9px;
  }

  .quote-selection-head .cart-clear {
    width: 100%;
  }

  .quote-review-list,
  .quote-review-customer {
    max-height: none;
  }

  .quote-flow-footer .cart-hint {
    font-size: 11px;
  }

  .quote-back-btn {
    flex: 0 0 78px;
    min-height: 52px;
    padding-inline: 10px;
  }
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-actions button,
.product-actions a {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 15px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.product-actions a {
  background: rgba(244, 201, 47, 0.12);
}

.product-actions .quote-product-btn {
  border-color: rgba(37, 211, 102, 0.44);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(244, 201, 47, 0.12)),
    rgba(255, 255, 255, 0.035);
  color: #bfffd6;
  font-weight: 900;
}

.product-card-featured .quote-product-btn {
  min-height: 46px;
  border-color: rgba(37, 211, 102, 0.72);
  background: linear-gradient(135deg, #2cff83, #25d366 48%, #0d8e43);
  color: #031109;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.product-actions .product-pdf-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
}

.product-actions .product-pdf-link:hover {
  border-color: rgba(255, 228, 138, 0.44);
  color: var(--gold-soft);
}

.all-products-panel {
  margin-top: clamp(24px, 4vw, 40px);
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(244, 201, 47, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 201, 47, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.process-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel-2);
}

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

.process-card,
.document-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.process-card {
  padding: 24px;
}

.process-card span {
  color: var(--gold);
  font-weight: 900;
}

.process-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.65;
}

.quote-section {
  border-top: 1px solid rgba(37, 211, 102, 0.16);
  border-bottom: 1px solid rgba(244, 201, 47, 0.12);
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 211, 102, 0.16), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(244, 201, 47, 0.12), transparent 32%),
    linear-gradient(180deg, #050505, #0d0b07);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.quote-picker,
.quote-cart {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.28);
}

.quote-picker {
  padding: clamp(18px, 2.5vw, 26px);
}

.quote-picker-head,
.quote-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.quote-picker-head span,
.quote-picker-head strong,
.quote-cart-head span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-picker-head strong,
.quote-cart-head span {
  color: #bfffd6;
}

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

.quote-product {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.quote-product.is-selected {
  border-color: rgba(37, 211, 102, 0.44);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), transparent 44%),
    rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(191, 255, 214, 0.08);
}

.quote-product img,
.cart-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: #070605;
}

.quote-product span,
.cart-item span,
.cart-hint {
  color: var(--muted);
}

.quote-product strong,
.cart-item strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.quote-product small {
  display: inline-flex;
  margin-top: 7px;
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(37, 211, 102, 0.08);
  color: #bfffd6;
  font-size: 11px;
  font-weight: 850;
}

.quote-product-controls {
  display: grid;
  grid-template-columns: 86px 112px;
  gap: 8px;
}

.quote-product-controls input,
.cart-item input,
.cart-customer input,
.cart-search input,
.cart-note textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  outline: 0;
  padding: 12px;
  font: inherit;
}

.quote-product-controls button {
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 8px;
  background: linear-gradient(135deg, #2cff83, #25d366 48%, #0d8e43);
  color: #031109;
  cursor: pointer;
  font-weight: 900;
}

.quote-cart {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 26px);
}

.quote-cart-head {
  align-items: end;
  margin-bottom: 0;
}

.quote-cart-head h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.cart-items {
  display: grid;
  gap: 12px;
  max-height: 380px;
  overflow: auto;
  padding-right: 2px;
}

.cart-empty {
  display: grid;
  gap: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.cart-empty strong {
  color: var(--white);
}

.cart-empty span {
  color: var(--muted);
  line-height: 1.55;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(244, 201, 47, 0.18);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.065), transparent 42%),
    rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.cart-item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 138, 0.36), transparent);
  content: "";
}

.cart-quantity-control {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
}

.cart-quantity-control > span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-stepper {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 228, 138, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
}

.cart-stepper input {
  min-height: 42px;
  border-color: transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  padding: 0 12px;
  appearance: textfield;
}

.cart-stepper input::-webkit-outer-spin-button,
.cart-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.cart-step {
  min-height: 42px;
  border: 1px solid rgba(255, 228, 138, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 228, 138, 0.18), rgba(244, 201, 47, 0.08)),
    rgba(255, 255, 255, 0.035);
  color: var(--gold-soft);
  cursor: pointer;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cart-step:hover {
  border-color: rgba(255, 228, 138, 0.68);
  background: linear-gradient(135deg, #fff0a8, var(--gold) 52%, #b97d00);
  color: #111006;
  transform: translateY(-1px);
}

.cart-remove {
  grid-column: 1 / -1;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 850;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cart-remove:hover {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 80, 80, 0.08);
  color: #ffd5d5;
}

.cart-note {
  display: grid;
  gap: 9px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-note textarea {
  min-height: 94px;
  resize: vertical;
}

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

.cart-summary-grid div {
  border: 1px solid rgba(255, 228, 138, 0.16);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.cart-summary-grid span,
.cart-customer label,
.cart-search span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 25px;
  line-height: 1;
}

.cart-search {
  display: grid;
  gap: 9px;
  margin-bottom: 12px;
}

.cart-search input {
  min-height: 48px;
}

.cart-customer {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 44%),
    rgba(255, 255, 255, 0.025);
}

.cart-customer .quote-picker-head {
  margin-bottom: 0;
}

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

.cart-customer label {
  display: grid;
  gap: 8px;
}

.cart-customer input {
  min-height: 48px;
  letter-spacing: 0;
  text-transform: none;
}

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

.cart-whatsapp,
.cart-clear {
  width: 100%;
  justify-content: center;
}

.cart-clear {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.cart-clear:hover {
  border-color: rgba(255, 120, 120, 0.34);
  background: rgba(255, 80, 80, 0.08);
  color: #ffd5d5;
}

.cart-whatsapp.is-disabled,
.cart-whatsapp:disabled {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.55;
}

.cart-modal {
  justify-content: flex-end;
  padding: 12px;
}

.cart-drawer {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(760px, 100%);
  max-height: calc(100vh - 24px);
  overflow: auto;
  gap: 18px;
  border: 1px solid rgba(244, 201, 47, 0.28);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(244, 201, 47, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(37, 211, 102, 0.07), transparent 34%),
    var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
}

.cart-drawer-head {
  display: grid;
  gap: 6px;
  padding-right: 42px;
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
}

.cart-drawer-head span {
  color: #bfffd6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-picker {
  max-height: 312px;
  overflow: auto;
  padding: 14px;
}

.manual-products-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--panel);
  background-size: 70px 70px;
}

.manual-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.manual-product-grid .product-card {
  width: 100%;
  flex: none;
}

.export-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(244, 201, 47, 0.18);
  border-bottom: 1px solid rgba(244, 201, 47, 0.16);
  background:
    linear-gradient(90deg, rgba(244, 201, 47, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(244, 201, 47, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 42%, rgba(244, 201, 47, 0.22), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(255, 228, 138, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(244, 201, 47, 0.13), transparent 38%),
    #070604;
  background-size: 74px 74px, 74px 74px, auto, auto, auto, auto;
}

.export-strip::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244, 201, 47, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 34%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  content: "";
  pointer-events: none;
}

.export-strip::after {
  position: absolute;
  top: -35%;
  right: 28%;
  width: 180px;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 138, 0.16), transparent);
  content: "";
  opacity: 0.48;
  transform: rotate(24deg);
  pointer-events: none;
}

.export-copy {
  position: relative;
  z-index: 2;
}

.export-copy h2 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
}

.export-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.flag-carousel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.flag-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: flagMarquee 28s linear infinite;
  will-change: transform;
}

.flag-carousel:hover .flag-track,
.flag-carousel:focus-within .flag-track {
  animation-play-state: paused;
}

.flag-card {
  display: grid;
  width: 162px;
  min-height: 132px;
  place-items: center;
  gap: 10px;
  padding: 16px 14px;
  border: 1px solid rgba(244, 201, 47, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 228, 138, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.62);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.045) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flag-card:hover {
  border-color: rgba(255, 228, 138, 0.68);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.42), 0 0 32px rgba(244, 201, 47, 0.12);
  transform: translateY(-5px);
}

.flag-card strong {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.country-flag {
  position: relative;
  display: block;
  width: 112px;
  height: 70px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(0, 0, 0, 0.25) inset;
}

.flag-image {
  object-fit: cover;
}

.country-flag::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 38%, rgba(0, 0, 0, 0.16));
  content: "";
  pointer-events: none;
}

.flag-panama {
  background:
    radial-gradient(circle at 25% 25%, #244aa5 0 5px, transparent 6px),
    radial-gradient(circle at 75% 75%, #d92424 0 5px, transparent 6px),
    linear-gradient(to right, #ffffff 0 50%, #d92424 50% 100%) top / 100% 50% no-repeat,
    linear-gradient(to right, #244aa5 0 50%, #ffffff 50% 100%) bottom / 100% 50% no-repeat;
}

.flag-peru {
  background: linear-gradient(to right, #d91023 0 33.33%, #ffffff 33.33% 66.66%, #d91023 66.66% 100%);
}

.flag-bolivia {
  background: linear-gradient(to bottom, #d52b1e 0 33.33%, #f9e300 33.33% 66.66%, #007934 66.66% 100%);
}

.flag-paraguay {
  background: linear-gradient(to bottom, #d52b1e 0 33.33%, #ffffff 33.33% 66.66%, #0038a8 66.66% 100%);
}

.documents-section,
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
}

.contact {
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 620px);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
  background:
    radial-gradient(circle at 78% 36%, rgba(244, 201, 47, 0.12), transparent 34%),
    linear-gradient(180deg, #050505, #090806);
}

.videos-section {
  background:
    radial-gradient(circle at 15% 16%, rgba(244, 201, 47, 0.12), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 228, 138, 0.06), transparent 28%),
    linear-gradient(180deg, #050505, #0d0a05);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.video-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.video-card-featured {
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  align-items: center;
  border-color: rgba(244, 201, 47, 0.32);
  padding: clamp(18px, 2.4vw, 28px);
}

.video-frame {
  display: grid;
  min-height: 320px;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #090807;
  box-shadow: inset 0 0 0 1px rgba(244, 201, 47, 0.1);
}

.video-card-featured .video-frame {
  width: min(100%, 340px);
  min-height: auto;
  aspect-ratio: 9 / 16;
  justify-self: center;
  border: 1px solid rgba(255, 228, 138, 0.28);
  border-radius: 20px;
  padding: 8px;
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.18), transparent 36%),
    #050505;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.video-frame video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: #050505;
}

.video-card h3 {
  margin: 0;
  font-size: 26px;
}

.video-card p,
.location-copy p,
.map-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.location-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(244, 201, 47, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 48%, rgba(244, 201, 47, 0.18), transparent 34%),
    var(--panel-2);
  background-size: 80px 80px, auto, auto;
}

.location-details {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.location-details span {
  display: grid;
  gap: 8px;
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
}

.location-details strong {
  color: var(--gold);
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 201, 47, 0.12), transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #090807;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.map-glow {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 201, 47, 0.34), transparent 64%);
  transform: translateX(-50%);
  animation: pulse 4s ease-in-out infinite;
}

.map-pin {
  position: absolute;
  top: 36%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.map-panel h3,
.map-panel p,
.map-panel a {
  position: relative;
  z-index: 1;
}

.map-panel h3 {
  font-size: 32px;
}

.map-panel a {
  width: fit-content;
  color: var(--gold);
  font-weight: 900;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.contact-channels a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 102px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 8px;
  padding: 18px 48px 18px 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 211, 102, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(37, 211, 102, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-channels a::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.72), transparent);
  content: "";
}

.contact-channels a::after {
  position: absolute;
  right: 16px;
  top: 50%;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 999px;
  color: #25d366;
  content: ">";
  font-size: 14px;
  font-weight: 950;
  transform: translateY(-50%);
}

.contact-channels a:hover {
  border-color: rgba(37, 211, 102, 0.72);
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 211, 102, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 26px 62px rgba(37, 211, 102, 0.13);
  transform: translateY(-4px);
}

.contact-channels strong {
  color: #25d366;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.contact-channels span {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.35;
}

.contact-channel-email {
  grid-column: 1 / -1;
  min-height: 92px;
  padding-right: 58px;
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 211, 102, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(37, 211, 102, 0.09), transparent 52%),
    rgba(255, 255, 255, 0.032);
}

.contact-channel-email span {
  max-width: calc(100% - 8px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.35vw, 16px);
  letter-spacing: 0.01em;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-location {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 201, 47, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  scroll-margin-top: 110px;
}

.contact-location .location-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.contact-location .location-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.compact-map {
  gap: 14px;
  min-height: 260px;
  padding: 12px;
}

.compact-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(244, 201, 47, 0.2);
}

.compact-map a {
  justify-self: start;
  border: 1px solid rgba(244, 201, 47, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(244, 201, 47, 0.1);
  text-decoration: none;
}

.testimonial-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(100%, 100%);
  min-width: 0;
  margin-top: clamp(8px, 2vw, 18px);
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 228, 138, 0.15), transparent 28%),
    radial-gradient(circle at 88% 28%, rgba(122, 138, 98, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 228, 138, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.testimonial-panel.is-visible .testimonial-score {
  animation: testimonialScoreIn 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both 120ms;
}

.testimonial-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.testimonial-head > div:first-child {
  min-width: 0;
}

.testimonial-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
}

.testimonial-head span {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-score {
  display: grid;
  width: min(162px, 100%);
  flex: 0 0 auto;
  gap: 4px;
  justify-items: end;
  padding: 14px 16px;
  border: 1px solid rgba(255, 228, 138, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.32);
}

.testimonial-score strong {
  color: var(--gold-soft);
  font-size: 34px;
  line-height: 1;
}

.testimonial-score span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.testimonial-score small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-form {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(178px, 0.42fr) minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 228, 138, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.review-form-copy {
  display: grid;
  gap: 6px;
  align-self: center;
}

.review-form-copy h4 {
  margin: 0;
  color: var(--white);
  font-size: 19px;
  line-height: 1.12;
}

.review-form-copy span,
.review-form-status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-form input,
.review-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 228, 138, 0.18);
  border-radius: 8px;
  outline: 0;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
}

.review-form textarea {
  min-height: 78px;
  padding-top: 13px;
  resize: vertical;
}

.review-description {
  grid-column: 3;
}

.review-author {
  grid-column: auto;
}

.review-stars {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: fit-content;
  max-width: 100%;
  gap: 5px;
  align-self: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 228, 138, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.review-stars::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.14) 45%, transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%);
}

.testimonial-panel.is-visible .review-stars::before {
  animation: reviewStarsSweep 1600ms ease 520ms both;
}

.review-stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.review-stars label {
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  position: relative;
  transition: color 160ms ease, transform 160ms ease;
}

.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label {
  color: var(--gold-soft);
  transform: translateY(-1px);
}

.review-form button {
  grid-column: 4;
  justify-self: end;
  min-height: 46px;
  padding: 0 20px;
  white-space: nowrap;
}

.review-form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
}

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

.testimonial-card {
  position: relative;
  display: grid;
  min-height: 205px;
  align-content: space-between;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.26);
  transform: translateY(16px);
  opacity: 0;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.testimonial-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 228, 138, 0.1), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(122, 138, 98, 0.12), transparent 28%);
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.testimonial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.1) 42%, transparent 70%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-115%);
}

.testimonial-card > * {
  position: relative;
}

.testimonial-card.is-user-review {
  border-color: rgba(244, 223, 157, 0.36);
  background:
    linear-gradient(145deg, rgba(216, 180, 90, 0.12), transparent 44%),
    rgba(12, 12, 9, 0.86);
}

.testimonial-panel.is-visible .testimonial-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: testimonialCardIn 780ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.testimonial-panel.is-visible .testimonial-card::after {
  animation: testimonialCardSheen 1250ms ease both;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(1) {
  animation-delay: 90ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(1)::after {
  animation-delay: 380ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(2) {
  animation-delay: 180ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(2)::after {
  animation-delay: 470ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(3) {
  animation-delay: 270ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(3)::after {
  animation-delay: 560ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(4) {
  animation-delay: 360ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(4)::after {
  animation-delay: 650ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(5) {
  animation-delay: 450ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(5)::after {
  animation-delay: 740ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(6) {
  animation-delay: 540ms;
}

.testimonial-panel.is-visible .testimonial-card:nth-child(6)::after {
  animation-delay: 830ms;
}

.testimonial-card:hover {
  border-color: rgba(244, 223, 157, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.testimonial-card.is-new-review,
.testimonial-panel.is-visible .testimonial-card.is-new-review {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: testimonialNewReview 900ms cubic-bezier(0.18, 0.9, 0.18, 1) backwards;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 22px rgba(244, 201, 47, 0.18);
}

.testimonial-panel.is-visible .testimonial-rating {
  animation: testimonialStarsGlow 2400ms ease-in-out infinite;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.58;
}

.testimonial-card div:last-child {
  display: grid;
  gap: 4px;
}

.testimonial-card strong {
  color: var(--gold-soft);
  font-size: 14px;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.document-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.document-panel div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.document-panel strong {
  color: var(--gold);
}

.document-panel span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  width: 100%;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-self: end;
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(255, 228, 138, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 228, 138, 0.085), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-form-head {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 228, 138, 0.14);
}

.contact-form-head .eyebrow {
  margin-bottom: 0;
  font-size: 10px;
}

.contact-form-head h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
}

.contact-form-head span {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  outline: 0;
  padding: 0 15px;
  min-height: 52px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 228, 138, 0.48);
  background: rgba(0, 0, 0, 0.46);
  box-shadow: 0 0 0 3px rgba(244, 201, 47, 0.09);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 116px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: vertical;
}

.contact-form button {
  grid-column: 1 / -1;
  min-height: 58px;
  margin-top: 2px;
  border: 1px solid rgba(255, 228, 138, 0.56);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(135deg, #ffe881, var(--gold) 48%, #b77a00);
  color: #121006;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 20px 56px rgba(244, 201, 47, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  display: grid;
  width: min(1040px, 96vw);
  max-height: 92vh;
  grid-template-columns: 0.9fr 1fr;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62);
}

.modal-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.modal-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 48px);
}

.modal-content p,
.modal-content li {
  color: var(--muted);
  line-height: 1.6;
}

.modal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #050505;
  color: var(--gold);
  cursor: pointer;
}

.catalog-modal-card {
  position: relative;
  display: grid;
  width: min(760px, 94vw);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid rgba(244, 201, 47, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 201, 47, 0.09), transparent 42%),
    var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.68);
}

.catalog-modal-copy,
.catalog-lead-form {
  padding: clamp(22px, 4vw, 40px);
}

.catalog-modal-copy {
  padding-bottom: 10px;
}

.catalog-modal-copy h2 {
  max-width: 560px;
  font-size: clamp(30px, 5vw, 48px);
}

.catalog-modal-copy p,
.catalog-form-status {
  color: var(--muted);
  line-height: 1.65;
}

.catalog-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 12px;
}

.catalog-lead-form label {
  display: grid;
  gap: 9px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-lead-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  outline: 0;
  padding: 0 16px;
  font: inherit;
}

.catalog-lead-form button,
.catalog-form-status {
  grid-column: 1 / -1;
}

.catalog-lead-form button {
  min-height: 56px;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.is-hidden {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(244, 201, 47, 0.12), transparent 26%),
    linear-gradient(180deg, #070705, #030302 62%, #050505);
}

.legal-header {
  display: flex;
  width: min(1120px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(244, 201, 47, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(20px) saturate(132%);
}

.legal-header .brand {
  min-width: 0;
}

.legal-header-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 201, 47, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0 clamp(46px, 7vw, 74px);
}

.legal-document {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(244, 201, 47, 0.16);
  border-radius: 12px;
  padding: clamp(24px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(13, 12, 9, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.legal-document header {
  display: grid;
  gap: 10px;
}

.legal-document h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1;
}

.legal-document h2 {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.18;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal-document p {
  margin: 0;
}

.legal-document section {
  display: grid;
  gap: 10px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-document a {
  color: var(--gold);
  font-weight: 800;
}

.legal-updated {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 38px);
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(244, 201, 47, 0.14);
  background:
    radial-gradient(circle at 82% 0%, rgba(244, 201, 47, 0.12), transparent 28%),
    radial-gradient(circle at 62% 60%, rgba(37, 211, 102, 0.08), transparent 32%),
    linear-gradient(180deg, #070705, #040403);
  color: rgba(255, 255, 255, 0.72);
}

.footer::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 138, 0.4), transparent);
  content: "";
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand span {
  color: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-brand small,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer a {
  border: 1px solid rgba(244, 201, 47, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(244, 201, 47, 0.045);
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer a:hover {
  background: rgba(244, 201, 47, 0.12);
  color: var(--gold-soft);
  transform: translateY(-1px);
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes shine {
  0%,
  38% {
    transform: translateX(0) rotate(24deg);
  }
  62%,
  100% {
    transform: translateX(650px) rotate(24deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes productMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes flagMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes testimonialScoreIn {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testimonialCardIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testimonialCardSheen {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }

  22% {
    opacity: 0.8;
  }

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

@keyframes testimonialStarsGlow {
  0%,
  100% {
    text-shadow: 0 0 16px rgba(216, 180, 90, 0.16);
  }

  50% {
    text-shadow: 0 0 28px rgba(244, 223, 157, 0.34);
  }
}

@keyframes testimonialNewReview {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
  }

  62% {
    opacity: 1;
    transform: translateY(3px) scale(1.012);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reviewStarsSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  28% {
    opacity: 0.75;
  }

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

/* Premium visual pass */
.ambient {
  opacity: 0.09;
  filter: blur(128px);
}

.ambient-one {
  background: rgba(216, 180, 90, 0.42);
}

.ambient-two {
  background: rgba(122, 138, 98, 0.34);
}

.site-header {
  top: 16px;
  border-color: rgba(247, 237, 207, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 4, 0.82);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px) saturate(130%);
}

.brand-logo {
  filter: drop-shadow(0 0 18px rgba(216, 180, 90, 0.24));
}

.brand strong {
  color: rgba(247, 237, 207, 0.96);
  letter-spacing: 0.16em;
}

.brand small {
  color: var(--gold-soft);
  letter-spacing: 0.38em;
}

.nav {
  border-color: rgba(247, 237, 207, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.2);
  color: rgba(247, 237, 207, 0.62);
  letter-spacing: 0.12em;
}

.nav a {
  min-height: 36px;
  padding: 10px 14px;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(247, 237, 207, 0.1);
  color: var(--champagne);
}

.nav a::after {
  inset: auto 16px 7px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.cart-toggle,
.header-cta,
.primary-btn,
.contact-form button,
.catalog-lead-form button,
.all-products-btn {
  border: 1px solid rgba(247, 237, 207, 0.44);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 36%),
    linear-gradient(135deg, #f7e6a8 0%, #d8b45a 48%, #8e641f 100%);
  color: #111007;
  box-shadow:
    0 18px 48px rgba(216, 180, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.secondary-btn,
.product-actions .product-pdf-link,
.filter-btn {
  border-color: rgba(247, 237, 207, 0.17);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(7, 7, 6, 0.58);
  color: rgba(247, 237, 207, 0.84);
}

.hero {
  min-height: clamp(690px, 92svh, 850px);
  background: #050504;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 36%, rgba(0, 0, 0, 0.22) 66%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05) 44%, rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 18% 78%, rgba(216, 180, 90, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(122, 138, 98, 0.12), transparent 30%);
}

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

.eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.34em;
}

h1 {
  max-width: 720px;
  color: var(--champagne);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
}

h2 {
  color: var(--champagne);
  font-size: clamp(30px, 4.35vw, 52px);
  font-weight: 790;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.contact-copy p,
.documents-copy p {
  color: rgba(247, 237, 207, 0.72);
}

.hero-text {
  max-width: 700px;
  color: rgba(247, 237, 207, 0.78);
}

.hero-actions {
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .primary-btn,
.hero-actions .secondary-btn {
  width: min(292px, 100%);
  min-height: 52px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.hero-actions .secondary-btn {
  border-color: rgba(247, 237, 207, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.34);
  color: var(--champagne);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions .primary-btn:hover,
.hero-actions .secondary-btn:hover,
.all-products-btn:hover,
.all-products-btn.is-active,
.cart-toggle:hover {
  border-color: rgba(247, 237, 207, 0.64);
  box-shadow:
    0 24px 64px rgba(216, 180, 90, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.primary-btn,
.secondary-btn,
.all-products-btn,
.contact-form button,
.catalog-lead-form button,
.review-form button,
.product-actions button,
.product-actions a,
.cart-clear,
.cart-whatsapp {
  min-height: 46px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-btn,
.all-products-btn,
.contact-form button,
.review-form button {
  border-color: rgba(247, 237, 207, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #f4df9d 0%, #d8b45a 50%, #8e641f 100%);
  box-shadow:
    0 14px 34px rgba(216, 180, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.secondary-btn,
.product-actions .product-pdf-link,
.filter-btn,
.cart-clear {
  border-color: rgba(247, 237, 207, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 4, 0.48);
  color: rgba(247, 237, 207, 0.88);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.catalog-green-btn,
.hero-actions .catalog-green-btn,
.catalog-lead-form .catalog-green-btn {
  border-color: rgba(191, 247, 214, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--emerald-soft) 0%, var(--emerald) 48%, var(--emerald-deep) 100%);
  color: #06120b;
  box-shadow:
    0 16px 42px rgba(47, 206, 123, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.primary-btn:hover,
.secondary-btn:hover,
.all-products-btn:hover,
.all-products-btn.is-active,
.contact-form button:hover,
.catalog-lead-form button:hover,
.review-form button:hover,
.product-actions button:hover,
.product-actions a:hover,
.cart-clear:hover,
.cart-whatsapp:hover {
  transform: translateY(-2px);
}

.catalog-green-btn:hover,
.hero-actions .catalog-green-btn:hover,
.catalog-lead-form .catalog-green-btn:hover {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 20px 54px rgba(47, 206, 123, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.cart-toggle {
  gap: 8px;
  width: auto;
  min-width: 124px;
  padding: 0 18px 0 15px;
  border-color: rgba(247, 237, 207, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #f7df94 0%, #d8aa3f 48%, #8c601c 100%);
  color: #100d05;
  box-shadow:
    0 16px 42px rgba(216, 180, 90, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.cart-toggle .cart-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.cart-label {
  display: inline-flex;
  align-items: center;
  color: #0a0803;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-green-btn,
.hero-actions .catalog-green-btn,
.catalog-lead-form .catalog-green-btn {
  border-color: rgba(192, 255, 219, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(135deg, #d7ffe7 0%, #25d366 44%, #128c4a 100%);
  color: #031109;
  box-shadow:
    0 18px 48px rgba(37, 211, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.catalog-green-btn:hover,
.hero-actions .catalog-green-btn:hover,
.catalog-lead-form .catalog-green-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 22px 62px rgba(37, 211, 102, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.hero-metrics {
  max-width: 650px;
  border-top-color: rgba(247, 237, 207, 0.13);
}

.hero-metrics span {
  color: rgba(247, 237, 207, 0.66);
}

.hero-metrics strong {
  color: var(--gold-soft);
  font-weight: 900;
}

.carousel-slide img {
  filter: saturate(0.95) contrast(1.08) brightness(0.96);
}

.carousel-slide::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.05) 52%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58));
}

.carousel-btn {
  border-color: rgba(247, 237, 207, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.36);
  color: var(--gold-soft);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
}

.section,
.videos-section,
.contact {
  background-color: transparent;
}

.section,
.videos-section,
.contact {
  min-height: auto;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.catalog-section {
  padding-top: clamp(72px, 8vw, 104px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.product-command-bar {
  margin-bottom: 32px;
  border-color: rgba(247, 237, 207, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 8, 7, 0.66);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.product-search input,
.search-box input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-lead-form input {
  border-color: rgba(247, 237, 207, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(4, 4, 3, 0.56);
  color: var(--champagne);
}

.product-search input:focus,
.search-box input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.catalog-lead-form input:focus {
  border-color: rgba(244, 223, 157, 0.5);
  box-shadow:
    0 0 0 4px rgba(216, 180, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-card,
.flag-card,
.video-card,
.contact-form,
.contact-location,
.testimonial-panel,
.review-form,
.testimonial-card,
.location-details span,
.map-panel,
.all-products-panel,
.modal-card,
.catalog-modal-card,
.cart-drawer {
  border-color: rgba(247, 237, 207, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 8, 0.76);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-card {
  border-radius: 10px;
}

.product-body {
  padding: clamp(18px, 2.1vw, 24px);
}

.product-card-featured {
  border-color: rgba(244, 223, 157, 0.34);
  background:
    linear-gradient(145deg, rgba(216, 180, 90, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 8, 0.8);
}

.product-card:hover,
.flag-card:hover {
  border-color: rgba(244, 223, 157, 0.45);
  box-shadow: var(--shadow-deep);
  transform: translateY(-5px);
}

.product-media {
  background:
    linear-gradient(145deg, rgba(216, 180, 90, 0.08), transparent 42%),
    #090907;
}

.product-media img {
  filter: saturate(0.98) contrast(1.04);
}

.product-tag {
  border-color: rgba(244, 223, 157, 0.22);
  background: rgba(247, 237, 207, 0.055);
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}

.product-card h3,
.video-card h3,
.contact-form-head h3,
.contact-location .location-copy h3,
.testimonial-head h3 {
  color: var(--champagne);
}

.product-card p,
.video-card p,
.location-copy p,
.map-panel p,
.contact-form-head span,
.testimonial-head span,
.testimonial-card span {
  color: rgba(247, 237, 207, 0.68);
}

.testimonial-card p {
  color: rgba(247, 237, 207, 0.76);
}

.testimonial-rating,
.testimonial-card strong {
  color: var(--gold-soft);
}

.review-form input,
.review-form textarea {
  border-color: rgba(247, 237, 207, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(4, 4, 3, 0.56);
  color: var(--champagne);
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(244, 223, 157, 0.5);
  box-shadow:
    0 0 0 4px rgba(216, 180, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-actions .quote-product-btn {
  border-color: rgba(122, 138, 98, 0.52);
  background:
    linear-gradient(135deg, rgba(122, 138, 98, 0.28), rgba(216, 180, 90, 0.1)),
    rgba(255, 255, 255, 0.035);
  color: #dce7cd;
}

.product-card-featured .quote-product-btn {
  border-color: rgba(190, 210, 160, 0.56);
  background: linear-gradient(135deg, #dbe8c0, #8da06d 52%, #4b5a38);
  color: #091004;
  box-shadow: 0 14px 34px rgba(122, 138, 98, 0.24);
}

.export-strip {
  padding-top: clamp(24px, 3.2vw, 42px);
  padding-bottom: clamp(24px, 3.2vw, 42px);
  border-color: rgba(247, 237, 207, 0.12);
  background:
    radial-gradient(circle at 16% 24%, rgba(122, 138, 98, 0.13), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(216, 180, 90, 0.12), transparent 30%),
    linear-gradient(135deg, #080806, #12110c 52%, #080806);
}

.export-strip::before {
  inset: 12px;
}

.export-copy h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}

.export-copy p {
  font-size: 16px;
  line-height: 1.58;
}

.flag-carousel {
  padding: 4px 0;
}

.flag-track {
  animation-duration: 20s;
}

.flag-card {
  width: 150px;
  min-height: 112px;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
}

.country-flag {
  width: 102px;
  height: 62px;
}

.videos-section {
  background:
    radial-gradient(circle at 15% 16%, rgba(122, 138, 98, 0.1), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(216, 180, 90, 0.08), transparent 28%),
    linear-gradient(180deg, #050504, #0b0a07);
}

.video-card-featured .video-frame {
  border-color: rgba(244, 223, 157, 0.24);
  background:
    linear-gradient(145deg, rgba(216, 180, 90, 0.14), transparent 36%),
    #050504;
}

.contact {
  background:
    radial-gradient(circle at 78% 36%, rgba(122, 138, 98, 0.12), transparent 34%),
    radial-gradient(circle at 16% 20%, rgba(216, 180, 90, 0.08), transparent 30%),
    linear-gradient(180deg, #050504, #090806);
}

.contact-channels a {
  border-color: rgba(247, 237, 207, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 8, 0.72);
}

.contact-channels a:hover {
  border-color: rgba(244, 223, 157, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(14, 14, 11, 0.82);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.34);
}

@media (max-width: 960px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    top: 10px;
    width: min(720px, calc(100% - 24px));
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    border-radius: 24px;
    padding: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    gap: 6px;
    overflow: visible;
    padding: 8px;
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.62);
  }

  .site-header.is-menu-open .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav a {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .header-cta,
  .cart-toggle {
    grid-column: 2;
    grid-row: 1;
    min-height: 44px;
    padding: 0 14px;
  }

  .cart-toggle {
    width: 50px;
    min-width: 44px;
    padding: 0;
  }

  .hero,
  .documents-section,
  .export-strip,
  .location-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: clamp(150px, 24svh, 240px) clamp(18px, 5vw, 48px) clamp(36px, 7svh, 62px);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.32) 56%, rgba(0, 0, 0, 0.16)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.8)),
      radial-gradient(circle at 72% 18%, rgba(244, 201, 47, 0.055), transparent 35%);
  }

  .hero-copy {
    max-width: 680px;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.86);
  }

  h1 {
    max-width: 680px;
    font-size: clamp(40px, 7vw, 60px);
  }

  .hero-text {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.62;
  }

  .carousel-slide div,
  .floating-note {
    display: none;
  }

  .hero-visual {
    width: 100%;
    min-height: 100%;
    margin-right: 0;
  }

  .showcase-carousel,
  .carousel-track {
    width: 100%;
    min-height: 100%;
    height: 100%;
  }

  .carousel-slide img {
    object-position: center top;
    filter: saturate(1.06) contrast(1.04) brightness(1.12);
  }

  .catalog-toolbar,
  .product-command-bar {
    grid-template-columns: 1fr;
  }

  .product-command-bar {
    border-radius: 18px;
  }

  .product-view-switch {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .all-products-btn,
  .product-view-btn {
    width: 100%;
  }

  .section,
  .process-section,
  .quote-section,
  .manual-products-section,
  .documents-section,
  .videos-section,
  .location-section,
  .contact {
    padding-top: clamp(44px, 9vw, 72px);
    padding-bottom: clamp(44px, 9vw, 72px);
  }

  .process-grid,
  .quote-layout,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .quote-cart {
    position: static;
  }

  .quote-product {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .quote-product-controls {
    grid-column: 1 / -1;
  }

  .cart-drawer {
    width: min(700px, 100%);
  }

  .cart-form-grid {
    grid-template-columns: 1fr;
  }

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

  .video-card-featured {
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  }

  .video-card-featured .video-frame {
    width: min(100%, 320px);
    min-height: auto;
    aspect-ratio: 9 / 16;
  }

  .video-frame {
    min-height: 280px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-form {
    max-width: 720px;
    justify-self: stretch;
  }

  .hero-value-grid {
    display: none;
    max-width: 680px;
  }

  .hero-value-grid span {
    padding: 9px 12px;
  }

  .hero-metrics {
    max-width: 560px;
  }

  .hero-metrics span {
    min-height: auto;
    padding: 0;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .product-grid {
    padding: 0 14px;
  }

  .product-carousel-track.is-static {
    width: max-content;
  }

  .product-carousel-track.is-static .product-card {
    flex: 0 0 min(330px, calc(100vw - 44px));
  }

  .product-card {
    width: min(330px, calc(100vw - 44px));
    flex-basis: min(330px, calc(100vw - 44px));
  }

  .manual-product-grid .product-card {
    width: 100%;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-lead-form {
    grid-template-columns: 1fr;
  }

  .modal-card > img {
    min-height: 280px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .legal-document h1 {
    font-size: clamp(32px, 7vw, 46px);
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 18px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
    padding-left: 2px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 0.3em;
  }

  .header-cta,
  .cart-toggle {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .cart-toggle {
    width: 40px;
    min-width: 40px;
    padding: 0;
  }

  .cart-icon {
    width: 25px;
    height: 25px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header.is-menu-open .nav {
    grid-template-columns: 1fr;
  }

  .nav {
    font-size: 12px;
  }

  .nav a {
    min-height: 34px;
    padding: 9px 12px;
  }

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

  .hero-value-grid {
    margin-top: 18px;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(118px, 30svh, 220px) 16px 28px;
    align-items: end;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.25) 62%, rgba(0, 0, 0, 0.16)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.82)),
      radial-gradient(circle at 62% 20%, rgba(244, 201, 47, 0.045), transparent 34%);
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(30px, 9.3vw, 40px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.04;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .hero-text {
    font-size: 13.5px;
    line-height: 1.54;
  }

  .hero-actions {
    order: 4;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 100%;
  }

  .showcase-carousel,
  .carousel-track {
    width: 100%;
    min-height: 100%;
    height: 100%;
  }

  .carousel-slide {
    padding: 96px 16px 28px;
    align-content: end;
  }

  .carousel-slide::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02)),
      linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  }

  .carousel-slide h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .carousel-slide div {
    display: none;
  }

  .carousel-slide p {
    max-width: 92%;
    font-size: 13px;
  }

  .floating-note {
    display: none;
  }

  .carousel-btn {
    display: none;
  }

  .hero-value-grid {
    display: none;
  }

  .hero-value-grid span {
    gap: 4px;
    padding: 11px 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-value-grid strong {
    font-size: 11px;
  }

  .hero-metrics {
    display: none;
  }

  .contact-channels a,
  .location-details span {
    min-height: auto;
    padding: 15px 48px 15px 15px;
  }

  .contact {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .contact-form-head {
    padding-bottom: 14px;
  }

  .contact-form label:nth-of-type(5) {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form select {
    min-height: 48px;
  }

  .contact-form textarea {
    min-height: 104px;
  }

  .contact-form button {
    grid-column: auto;
    min-height: 52px;
    font-size: 12px;
  }

  .contact-channel-email span {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading p,
  .contact-copy p,
  .documents-copy p {
    font-size: 15px;
    line-height: 1.6;
  }

  .video-card {
    gap: 14px;
    padding: 14px;
  }

  .video-card-featured {
    grid-template-columns: 1fr;
  }

  .video-card-featured .video-frame {
    width: min(72vw, 310px);
    min-height: auto;
    aspect-ratio: 9 / 16;
  }

  .video-frame {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-grid {
    padding: 0 10px;
  }

  .product-carousel-track {
    gap: 10px;
  }

  .product-card {
    width: min(300px, calc(100vw - 34px));
    flex-basis: min(300px, calc(100vw - 34px));
  }

  .product-media {
    aspect-ratio: 4 / 2.85;
  }

  .product-body {
    padding: 16px;
  }

  .product-actions button,
  .product-actions a {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .product-command-bar {
    gap: 10px;
    margin-bottom: 18px;
    padding: 9px;
  }

  .product-search span {
    padding-left: 10px;
    font-size: 10px;
  }

  .product-search input {
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }

  .all-products-panel {
    padding: 12px;
  }

  .quote-picker,
  .quote-cart {
    padding: 16px;
  }

  .cart-drawer {
    max-height: calc(100vh - 12px);
    border-radius: 8px;
    padding: 16px;
  }

  .cart-drawer-head h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

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

  .cart-summary-grid div {
    padding: 11px 9px;
  }

  .cart-summary-grid span {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .cart-summary-grid strong {
    font-size: 21px;
  }

  .quote-picker-head,
  .quote-cart-head {
    display: grid;
    justify-content: stretch;
  }

  .quote-product {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .quote-product-controls {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .cart-clear {
    order: 2;
  }

  .manual-product-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    gap: 14px;
    padding: 26px 18px;
  }

  .footer-brand span {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .footer-brand small,
  .footer p {
    font-size: 11px;
  }

  .footer nav {
    gap: 8px;
  }

  .footer a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .legal-header {
    width: calc(100% - 20px);
    align-items: flex-start;
    border-radius: 18px;
  }

  .legal-header .brand-logo {
    width: 54px;
    height: 54px;
  }

  .legal-header .brand strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .legal-header .brand small {
    font-size: 9px;
  }

  .legal-header-link {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .legal-shell {
    width: calc(100% - 20px);
    padding: 36px 0 42px;
  }

  .legal-document {
    border-radius: 10px;
    padding: 22px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel-track.is-moving,
  .flag-track,
  .testimonial-panel.is-visible .testimonial-score,
  .testimonial-panel.is-visible .testimonial-card,
  .testimonial-panel.is-visible .testimonial-card::after,
  .testimonial-panel.is-visible .testimonial-rating,
  .testimonial-panel.is-visible .review-stars::before,
  .testimonial-card.is-new-review {
    animation: none;
  }

  .testimonial-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .testimonial-head {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-score {
    justify-items: start;
  }

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

  .review-form-copy,
  .review-stars,
  .review-description,
  .review-form button {
    grid-column: 1 / -1;
  }

  .review-form button {
    justify-self: stretch;
  }

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

@media (max-width: 620px) {
  .testimonial-panel {
    padding: 18px;
  }

  .review-form {
    grid-template-columns: 1fr;
  }

  .review-form label,
  .review-description,
  .review-form button {
    grid-column: 1;
  }

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

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

@media (max-width: 960px) {
  .cart-toggle {
    width: auto;
    min-width: 112px;
    gap: 7px;
    padding: 0 15px 0 13px;
  }

  .cart-toggle .cart-icon {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 620px) {
  .cart-toggle {
    width: auto;
    min-width: 96px;
    min-height: 40px;
    gap: 5px;
    padding: 0 10px 0 9px;
  }

  .cart-toggle .cart-icon {
    width: 18px;
    height: 18px;
  }

  .cart-label {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .cart-badge {
    top: -7px;
    right: -5px;
  }
}

/* Carousel visibility pass */
.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.08) 72%, rgba(0, 0, 0, 0.02)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 18% 78%, rgba(216, 180, 90, 0.12), transparent 30%);
}

.carousel-slide::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.02)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.32));
}

.carousel-slide img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.05) brightness(1.14);
  transform: scale(1);
}

@media (max-width: 960px) {
  .hero {
    display: grid;
    min-height: 100svh;
    align-items: start;
    padding: clamp(116px, 16svh, 150px) clamp(18px, 5vw, 42px) clamp(42px, 7vw, 62px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.68)),
      radial-gradient(circle at 72% 16%, rgba(216, 180, 90, 0.08), transparent 34%);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .showcase-carousel,
  .carousel-track {
    width: 100%;
    min-height: 100%;
    height: 100%;
    background:
      radial-gradient(circle at 50% 44%, rgba(216, 180, 90, 0.08), transparent 36%),
      #050504;
  }

  .carousel-slide {
    padding: 0;
    align-content: center;
    justify-items: center;
  }

  .carousel-slide::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.32) 58%, rgba(0, 0, 0, 0.18)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.76));
  }

  .carousel-slide img {
    object-fit: contain;
    object-position: center 48%;
    filter: saturate(1.08) contrast(1.04) brightness(1.16);
  }

  .carousel-btn {
    top: auto;
    bottom: clamp(24px, 5vw, 40px);
    display: grid;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.42);
    transform: none;
  }

  .carousel-btn.prev {
    right: 64px;
    left: auto;
  }

  .carousel-btn.next {
    right: 12px;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 98px 16px 34px;
  }

  .hero-visual {
    inset: 0;
    border-radius: 0;
  }

  .carousel-btn {
    display: none;
  }
}

/* Compact responsive hero pass */
@media (max-width: 960px) {
  .hero {
    min-height: auto;
    align-items: start;
    padding: clamp(96px, 13svh, 128px) clamp(18px, 5vw, 42px) clamp(26px, 5vw, 42px);
    background:
      linear-gradient(180deg, #050504 0%, #050504 72%, #0a0906 100%);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.72)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.16) 72%, rgba(0, 0, 0, 0.08));
  }

  .hero-copy {
    max-width: min(680px, 100%);
  }

  .hero-visual {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(286px, 42vw, 360px);
    min-height: 0;
  }

  .carousel-slide img {
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 76px 16px 18px;
  }

  .hero-visual {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(234px, 64vw, 258px);
    min-height: 0;
  }

  .hero .eyebrow {
    margin-bottom: 7px;
    font-size: 8.5px;
    letter-spacing: 0.2em;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(24px, 7.5vw, 31px);
    line-height: 1.01;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 0;
    font-size: 11.2px;
    line-height: 1.36;
  }

  .hero-actions {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    min-height: 39px;
    font-size: 9.5px;
    letter-spacing: 0.075em;
  }

  .carousel-slide::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.42)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.1) 76%);
  }
}

/* Premium mobile/tablet hero composition */
@media (max-width: 960px) {
  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background:
      linear-gradient(180deg, #050504 0%, #050504 58%, #0b0a07 100%);
  }

  .hero::before {
    inset: 0 0 auto;
    height: clamp(320px, 58vw, 460px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.04) 46%, rgba(5, 5, 4, 0.9)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.06) 76%);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 1;
    z-index: 0;
    width: 100%;
    height: clamp(320px, 58vw, 460px);
    min-height: 0;
    overflow: hidden;
    pointer-events: auto;
  }

  .showcase-carousel,
  .carousel-track {
    width: 100%;
    min-height: 100%;
    height: 100%;
  }

  .carousel-slide {
    padding: 0;
    align-content: center;
    justify-items: center;
  }

  .carousel-slide::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 48%, rgba(5, 5, 4, 0.88)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 70%);
  }

  .carousel-slide img {
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.14) contrast(1.06) brightness(1.12);
    transform: scale(1);
  }

  .hero-copy {
    order: 2;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-top: clamp(-42px, -5vw, -26px);
    padding: clamp(28px, 5vw, 46px) clamp(18px, 5vw, 42px) clamp(28px, 5vw, 44px);
    background:
      linear-gradient(180deg, rgba(5, 5, 4, 0.86), #050504 30%, #0b0a07 100%);
  }

  .hero h1 {
    max-width: 720px;
    margin-bottom: 12px;
    font-size: clamp(34px, 6.4vw, 54px);
    line-height: 1;
  }

  .hero-text {
    max-width: 640px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .hero::before {
    height: clamp(250px, 78vw, 320px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.03) 45%, rgba(5, 5, 4, 0.92)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04) 74%);
  }

  .hero-visual {
    height: clamp(250px, 78vw, 320px);
  }

  .hero-copy {
    margin-top: -34px;
    padding: 36px 16px 24px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 8.5px;
    letter-spacing: 0.2em;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(28px, 8.6vw, 35px);
    line-height: 1;
  }

  .hero-text {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 16px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* Product carousel, button, and review contrast polish */
@keyframes productMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.product-carousel-track.is-moving {
  animation-duration: 46s;
}

.primary-btn,
.secondary-btn,
.all-products-btn,
.contact-form button,
.catalog-lead-form button,
.review-form button,
.product-actions button,
.product-actions a,
.cart-toggle,
.cart-clear,
.cart-whatsapp,
.filter-btn {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.12;
}

.testimonial-grid .testimonial-card {
  border-color: rgba(216, 180, 90, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 246, 218, 0.92), rgba(255, 255, 255, 0.98) 46%, rgba(249, 244, 232, 0.98)),
    #ffffff;
  color: #17130b;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.testimonial-grid .testimonial-card::before {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 180, 90, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(216, 180, 90, 0.12), transparent 42%);
  opacity: 1;
}

.testimonial-grid .testimonial-card::after {
  background: linear-gradient(120deg, transparent 10%, rgba(216, 180, 90, 0.16) 42%, transparent 70%);
}

.testimonial-grid .testimonial-card.is-user-review {
  border-color: rgba(216, 180, 90, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 246, 218, 0.96), #ffffff 48%, rgba(248, 241, 222, 0.98)),
    #ffffff;
}

.testimonial-grid .testimonial-card:hover {
  border-color: rgba(216, 180, 90, 0.48);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.28);
}

.testimonial-grid .testimonial-card p {
  color: #211c13;
}

.testimonial-grid .testimonial-card strong {
  color: #111006;
}

.testimonial-grid .testimonial-card span {
  color: #675d49;
}

.testimonial-grid .testimonial-rating {
  color: #c99518;
  text-shadow: 0 0 18px rgba(216, 180, 90, 0.16);
}

@media (max-width: 960px) {
  .product-grid {
    padding: 0 clamp(12px, 3vw, 22px);
  }

  .product-carousel-window {
    padding: 8px 0 24px;
  }

  .product-carousel-track {
    gap: 14px;
  }

  .product-card {
    width: clamp(334px, 45vw, 390px);
    flex-basis: clamp(334px, 45vw, 390px);
  }

  .product-actions button,
  .product-actions a {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn,
  .all-products-btn,
  .contact-form button,
  .catalog-lead-form button,
  .review-form button,
  .cart-whatsapp {
    min-height: 46px;
  }

  .cart-toggle {
    min-height: 44px;
  }
}

@media (max-width: 620px) {
  .product-grid {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .product-carousel-window {
    width: 100%;
    overflow: hidden;
    padding: 8px 0 24px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
  }

  .product-carousel-track {
    gap: 14px;
    padding-inline: 8px;
  }

  .product-carousel-track.is-moving {
    animation: productMarquee 30s linear infinite;
  }

  .product-card {
    width: min(380px, calc(100vw - 28px));
    flex-basis: min(380px, calc(100vw - 28px));
  }

  .product-media {
    aspect-ratio: 16 / 10;
  }

  .product-body {
    gap: 11px;
    padding: 15px;
  }

  .product-card h3 {
    font-size: clamp(19px, 5.3vw, 23px);
    line-height: 1.08;
  }

  .product-card p {
    font-size: 13px;
    line-height: 1.46;
  }

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

  .product-actions button,
  .product-actions a {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    font-size: 10.5px;
    letter-spacing: 0.055em;
    white-space: normal;
  }

  .product-actions .product-pdf-link {
    grid-column: 1 / -1;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn,
  .all-products-btn,
  .contact-form button,
  .catalog-lead-form button,
  .review-form button,
  .cart-whatsapp,
  .cart-clear {
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .all-products-btn {
    width: 100%;
  }

  .cart-toggle {
    min-height: 42px;
    min-width: 102px;
    padding: 0 11px 0 10px;
  }

  .filter-btn {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  .testimonial-grid .testimonial-card {
    min-height: 184px;
    padding: 17px;
  }
}

@media (max-width: 620px) and (hover: none) {
  .product-carousel-window:hover .product-carousel-track,
  .product-carousel-window:focus-within .product-carousel-track {
    animation-play-state: running;
  }
}

/* Mantiene el cotizador premium por encima de los estilos heredados del carrito. */
body .cart-modal {
  align-items: stretch;
  justify-content: flex-end;
  padding: 10px;
}

body .cart-modal .cart-drawer {
  width: min(900px, 100%);
  max-height: calc(100vh - 20px);
  gap: 0;
  overflow: auto;
  border: 1px solid rgba(255, 212, 0, 0.5);
  border-radius: 24px;
  padding: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 212, 0, 0.11), transparent 26%),
    linear-gradient(180deg, #13130f 0%, #090907 100%);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.76),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body .cart-modal .cart-drawer-head {
  gap: 9px;
  padding: 28px 84px 22px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.018);
}

body .cart-modal .cart-drawer-head h2 {
  font-size: clamp(36px, 5vw, 58px);
}

body .cart-modal .quote-channel-pill {
  color: #111006;
}

@media (min-width: 761px) and (max-width: 1024px) {
  body .cart-modal {
    padding: 6px;
  }

  body .cart-modal .cart-drawer {
    width: min(860px, 100%);
    max-height: calc(100dvh - 12px);
    border-radius: 20px;
  }

  body .cart-modal .cart-drawer-head {
    padding: 24px 76px 20px 26px;
  }

  body .cart-modal .cart-drawer-head h2 {
    font-size: clamp(36px, 5.6vw, 48px);
  }
}

@media (max-width: 760px) {
  body .cart-modal {
    padding: 0;
  }

  body .cart-modal .cart-drawer {
    width: 100%;
    max-height: 100dvh;
    border-width: 0;
    border-radius: 0;
  }

  body .cart-modal .cart-drawer-head {
    padding: 22px 58px 18px 18px;
  }

  body .cart-modal .cart-drawer-head h2 {
    font-size: clamp(31px, 9.7vw, 42px);
  }
}
