@font-face {
  font-family: "Archivo";
  src: url("./epl/fonts/archivo-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Archivo";
  src: url("./epl/fonts/archivo-latin-900-normal.woff2") format("woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./epl/fonts/space-grotesk-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./epl/fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
}

:root {
  --navy: #061a40;
  --navy-light: #0d326f;
  --blue: #0c53b8;
  --gold: #c79735;
  --gold-light: #e3bf71;
  --cream: #f6f3ec;
  --paper: #fff;
  --ink: #071937;
  --muted: #64728a;
  --line: #dfe5ed;
  --success: #187456;
  --shadow: 0 24px 70px rgba(6, 26, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: "Space Grotesk", sans-serif;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brandmark strong,
.product-price,
.cart-total strong {
  font-family: "Archivo", sans-serif;
}

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

.announcement {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 20px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.announcement span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(6, 26, 64, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 82px;
  margin: auto;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.brand-logo {
  width: 278px;
  height: 61px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #283650;
  font-size: 0.86rem;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
  min-height: 44px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cart-trigger b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(6, 26, 64, 0.99) 0%, rgba(7, 35, 83, 0.97) 58%, rgba(15, 65, 132, 0.94) 100%);
  color: #fff;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: -220px;
  right: 10%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(227, 191, 113, 0.25);
  box-shadow: 0 0 100px rgba(37, 116, 224, 0.22) inset;
}

.hero-glow-two {
  right: -130px;
  bottom: -260px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(38, 126, 235, 0.38), transparent 66%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 740px;
  margin: auto;
  gap: 50px;
}

.hero-copy {
  display: grid;
  gap: 25px;
  padding: 70px 0;
  animation: reveal-up 650ms ease both;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6.2vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 57ch;
  color: #cbd6e8;
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(199, 151, 53, 0.18);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 12px;
}

.hero-proof div {
  display: grid;
  gap: 3px;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  padding-right: 0;
  border: 0;
}

.hero-proof strong {
  font-size: 1.3rem;
}

.hero-proof span {
  color: #aebdd4;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.65fr) minmax(280px, 1fr);
  align-items: end;
  min-height: 610px;
  animation: reveal-up 750ms 120ms ease both;
}

.hero-product-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  align-self: center;
  margin-right: -55px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 21, 53, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.limited-label {
  width: max-content;
  padding: 6px 9px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product-copy > p {
  color: #9fb1cc;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-product-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.98;
}

.hero-product-copy > strong {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.text-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.text-action span {
  color: var(--gold-light);
  font-size: 1.6rem;
}

.hero-product-image {
  position: relative;
  display: flex;
  height: 610px;
  align-items: flex-end;
  justify-content: center;
}

.hero-product-image::after {
  position: absolute;
  content: "";
  right: 5%;
  bottom: 15px;
  left: 5%;
  height: 35px;
  border-radius: 50%;
  background: rgba(1, 8, 22, 0.75);
  filter: blur(14px);
}

.hero-product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.35));
}

.image-orbit {
  position: absolute;
  inset: 8% -5% 4% 5%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1320px, calc(100% - 48px));
  margin: -1px auto 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip article {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border-left: 1px solid var(--line);
  animation: reveal-up 500ms ease both;
}

.trust-strip article:nth-child(2) {
  animation-delay: 70ms;
}

.trust-strip article:nth-child(3) {
  animation-delay: 140ms;
}

.trust-strip article:nth-child(4) {
  animation-delay: 210ms;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(199, 151, 53, 0.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
}

.trust-strip article div {
  display: grid;
  gap: 4px;
}

.trust-strip strong {
  font-size: 0.9rem;
}

.trust-strip small {
  color: var(--muted);
  line-height: 1.45;
}

.catalog-section,
.price-section {
  width: min(1320px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading > div {
  display: grid;
  gap: 14px;
}

.section-heading h2,
.editorial-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.3rem, 4.5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading > p,
.editorial-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto 190px;
  align-items: center;
  gap: 18px;
  padding: 15px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(6, 26, 64, 0.06);
}

.search-field input,
.shop-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  outline: 0;
  background: #f8fafc;
  color: var(--ink);
}

.search-field input:focus,
.shop-toolbar select:focus {
  border-color: var(--gold);
}

.category-tabs {
  display: flex;
  gap: 4px;
}

.category-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.category-tab.is-active {
  background: var(--navy);
  color: #fff;
}

.catalog-result-line {
  display: flex;
  justify-content: space-between;
  padding: 22px 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.catalog-result-line button {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-decoration: underline;
}

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

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  z-index: 1;
  border-color: rgba(199, 151, 53, 0.5);
  box-shadow: 0 24px 55px rgba(6, 26, 64, 0.13);
  transform: translateY(-7px);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.93;
  background:
    radial-gradient(circle at 50% 70%, rgba(25, 85, 171, 0.12), transparent 35%),
    linear-gradient(160deg, #f8fbff, #eef3f8);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 350ms ease;
}

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

.product-card[data-poster="true"] .product-image-wrap img {
  object-fit: cover;
  mix-blend-mode: normal;
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-category {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.product-title-row h3 {
  font-size: 1.15rem;
  line-height: 1.1;
}

.product-title-row span {
  color: var(--muted);
  font-size: 0.83rem;
  white-space: nowrap;
}

.product-meta {
  display: flex;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
}

.product-meta span + span::before {
  content: "/";
  margin-right: 7px;
  color: #bbc4d1;
}

.product-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.product-price {
  font-size: 1.25rem;
}

.add-button,
.table-add {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background 180ms ease, transform 180ms ease;
}

.add-button:hover,
.table-add:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08);
}

.add-button:disabled,
.table-add:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.empty-products {
  grid-column: 1 / -1;
  padding: 70px 30px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.empty-products h3 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.empty-products p {
  color: var(--muted);
}

.editorial-feature {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  min-height: 720px;
  background: var(--navy);
  color: #fff;
}

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.editorial-image::after {
  position: absolute;
  content: "";
  inset: 0;
  box-shadow: inset -80px 0 100px rgba(6, 26, 64, 0.2);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 28px;
  padding: clamp(50px, 8vw, 130px);
  background:
    radial-gradient(circle at 90% 10%, rgba(26, 97, 195, 0.3), transparent 34%),
    var(--navy);
}

.editorial-copy > p {
  max-width: 56ch;
  color: #bac8dc;
}

.editorial-points {
  display: flex;
  width: 100%;
  max-width: 520px;
  gap: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-points div {
  display: grid;
  gap: 4px;
}

.editorial-points strong {
  color: var(--gold-light);
  font-size: 1.8rem;
}

.editorial-points span {
  color: #aebdd4;
  font-size: 0.78rem;
}

.price-table-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 26, 64, 0.07);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

td {
  color: #43516a;
  font-size: 0.88rem;
}

td:first-child {
  color: var(--ink);
  font-weight: 600;
}

tbody tr:hover {
  background: #f8fafc;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-size: 0.78rem;
}

.availability::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.availability.consultar {
  color: var(--muted);
}

.table-add {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

.research-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 30px;
  background: #eceff4;
  color: #536079;
  text-align: center;
}

.research-notice span {
  padding: 7px 10px;
  border: 1px solid #c8d0db;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.research-notice p {
  font-size: 0.85rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
  padding: 35px max(24px, calc((100vw - 1320px) / 2));
  background: #03122d;
  color: #fff;
}

footer > p {
  color: #8fa0ba;
  font-size: 0.78rem;
}

.footer-brand {
  overflow: hidden;
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
}

.footer-brand .brand-logo {
  width: 250px;
  height: 58px;
}

.drawer-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  background: rgba(2, 11, 28, 0.56);
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.drawer-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(460px, 100%);
  height: 100dvh;
  background: #fff;
  box-shadow: -24px 0 70px rgba(3, 18, 45, 0.22);
  transform: translateX(102%);
  transition: transform 260ms ease;
}

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

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

.cart-header > div {
  display: grid;
  gap: 8px;
}

.cart-header h2,
.quote-modal h2 {
  font-size: 2rem;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}

.cart-items {
  overflow: auto;
  padding: 8px 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 82px;
  object-fit: contain;
  background: #f2f5f8;
}

.cart-item-copy {
  display: grid;
  gap: 5px;
}

.cart-item-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.cart-item-copy strong {
  font-size: 0.9rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quantity-control button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

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

.cart-empty strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.cart-footer {
  display: grid;
  gap: 14px;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  background: #f8fafc;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-total strong {
  font-size: 1.5rem;
}

.cart-footer > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.clear-cart {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 18px;
  background: rgba(2, 11, 28, 0.7);
  opacity: 0;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.modal-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.quote-modal {
  position: relative;
  display: grid;
  width: min(570px, 100%);
  gap: 18px;
  padding: 36px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-modal > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.quote-modal textarea {
  width: 100%;
  min-height: 230px;
  resize: vertical;
  padding: 15px;
  border: 1px solid var(--line);
  background: #f7f9fc;
  color: var(--ink);
  line-height: 1.55;
}

.toast {
  position: fixed;
  z-index: 130;
  right: 24px;
  bottom: 24px;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

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

  .hero-product-copy {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 30px;
    left: 0;
    margin: 0;
  }

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

  .shop-toolbar {
    grid-template-columns: 1fr 190px;
  }

  .category-tabs {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
  }
}

@media (max-width: 820px) {
  .announcement {
    font-size: 0.6rem;
    text-align: center;
  }

  .nav-shell,
  .hero-inner,
  .trust-strip,
  .catalog-section,
  .price-section {
    width: min(100% - 28px, 1320px);
  }

  .cart-trigger span {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 70px 0 20px;
  }

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

  .hero-product {
    min-height: 590px;
  }

  .hero-product-image {
    height: 560px;
  }

  .hero-product-image img {
    height: 530px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .editorial-feature {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 620px;
  }

  .editorial-copy {
    padding: 70px 28px;
  }

  .price-table-shell {
    overflow-x: auto;
  }

  table {
    min-width: 800px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .announcement p {
    gap: 7px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    width: 205px;
    height: 50px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-proof {
    gap: 16px;
  }

  .hero-proof div {
    padding-right: 16px;
  }

  .hero-product {
    min-height: 520px;
  }

  .hero-product-image {
    height: 490px;
  }

  .hero-product-image img {
    height: 460px;
  }

  .hero-product-copy {
    padding: 20px;
  }

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

  .trust-strip article {
    min-height: 92px;
  }

  .catalog-section,
  .price-section {
    padding: 80px 0;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    grid-column: auto;
    grid-row: auto;
  }

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

  .product-image-wrap {
    aspect-ratio: 1.03;
  }

  .editorial-image {
    min-height: 520px;
  }

  .editorial-points {
    gap: 24px;
  }

  .research-notice {
    align-items: start;
    flex-direction: column;
    text-align: left;
  }

  .quote-modal {
    padding: 28px 20px;
  }
}

.checkout-acceptance {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 13px;
  border: 1px solid #d6dce5;
  background: #fff;
  cursor: pointer;
}

.checkout-acceptance input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}

.checkout-acceptance span {
  color: #536079;
  font-size: 0.72rem;
  line-height: 1.5;
}

.mercado-pago-button {
  background: #009ee3;
  color: #fff;
}

.mercado-pago-button:hover:not(:disabled) {
  background: #008dcc;
}

.mercado-pago-button:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

footer a {
  text-underline-offset: 4px;
}

.status-page,
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(199, 151, 53, 0.14), transparent 26%),
    linear-gradient(145deg, #eef3f9, #fff);
}

.status-page {
  display: grid;
  place-items: center;
  padding: 24px;
}

.status-card {
  display: grid;
  width: min(650px, 100%);
  justify-items: center;
  gap: 18px;
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-brand {
  margin-bottom: 10px;
}

.status-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(199, 151, 53, 0.45);
  border-radius: 50%;
  background: #f8f4ea;
  color: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
}

.status-card h1 {
  max-width: 11ch;
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  line-height: 0.96;
}

.status-card > p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.status-card > small {
  color: #7d899b;
  line-height: 1.5;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1040px, calc(100% - 40px));
  min-height: 95px;
  margin: auto;
}

.legal-header > a:last-child {
  color: var(--navy);
  font-size: 0.82rem;
  text-underline-offset: 4px;
}

.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 40px auto 100px;
  padding: clamp(28px, 7vw, 80px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-shell > h1 {
  max-width: 12ch;
  margin: 14px 0 20px;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.95;
}

.legal-intro {
  margin-bottom: 45px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.legal-shell section {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-shell section h2 {
  max-width: none;
  font-size: 1.2rem;
  line-height: 1.2;
}

.legal-shell section p {
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 560px) {
  .legal-header .brand-logo,
  .status-brand .brand-logo {
    width: 190px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Commercial catalog enhancements */
.ruo-banner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 20px;
  background: #b78a2e;
  color: #071937;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.ruo-banner strong {
  padding-right: 14px;
  border-right: 1px solid rgba(7, 25, 55, 0.3);
  font-weight: 900;
}

.product-visual-button,
.product-title-button,
.table-product-link {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.product-visual-button {
  display: block;
}

.product-title-button {
  display: flex;
}

.product-summary {
  min-height: 3.5em;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.product-details-link {
  margin-left: auto;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 600;
}

.product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 22%, rgba(36, 105, 197, 0.16), transparent 30%),
    linear-gradient(155deg, #ffffff 0%, #edf3fa 100%);
  color: var(--navy);
  text-align: center;
}

.product-placeholder::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(6, 26, 64, 0.09);
  border-radius: 50%;
}

.product-placeholder img,
.product-image-wrap .product-placeholder img {
  position: relative;
  width: 155px;
  height: 45px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.product-placeholder span,
.product-placeholder strong,
.product-placeholder small {
  position: relative;
  z-index: 1;
}

.product-placeholder span {
  max-width: 12ch;
  font-family: "Archivo", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.product-placeholder strong {
  color: var(--gold);
  font-size: 1rem;
}

.product-placeholder small {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.table-product-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.table-product-link:hover {
  text-decoration-color: var(--gold);
}

.whatsapp-button {
  background: #176c4d;
  color: #fff;
  text-decoration: none;
}

.whatsapp-button:hover {
  background: #10573e;
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(390px, 1.05fr);
  width: min(1020px, 100%);
  max-height: min(820px, calc(100dvh - 36px));
  overflow: auto;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-modal-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
}

.product-modal-gallery {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 650px;
  padding: 30px;
  background: #eef3f8;
}

.product-modal-main-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  background: #fff;
}

.product-modal-main-image > img {
  width: 100%;
  height: 520px;
  object-fit: contain;
}

.product-placeholder-detail {
  min-height: 520px;
}

.product-placeholder-detail img {
  width: 230px;
  height: 74px;
}

.product-placeholder-detail span {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.product-modal-thumbs {
  display: flex;
  gap: 10px;
}

.product-modal-thumb {
  width: 68px;
  height: 68px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.product-modal-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 151, 53, 0.16);
}

.product-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 68px clamp(32px, 5vw, 70px) 48px;
}

.product-modal-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.product-modal-dose {
  color: var(--gold);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
}

.product-modal-description {
  color: var(--muted);
  line-height: 1.7;
}

.product-specs {
  display: grid;
  margin: 4px 0;
  border-top: 1px solid var(--line);
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs dt {
  color: var(--muted);
}

.product-specs dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

.modal-ruo-note {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  background: #f7f3ea;
}

.modal-ruo-note strong {
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-ruo-note span {
  color: var(--muted);
  font-size: 0.75rem;
}

.product-modal-actions {
  display: grid;
  gap: 12px;
}

.product-whatsapp-link {
  color: #176c4d;
  font-size: 0.82rem;
  text-align: center;
  text-underline-offset: 4px;
}

.cart-item-image {
  display: grid;
  width: 72px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  background: #f2f5f8;
  color: var(--navy);
  font-family: "Archivo", sans-serif;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-section {
  width: min(1040px, calc(100% - 48px));
  margin: auto;
  padding: 110px 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-list summary {
  position: relative;
  padding: 25px 58px 25px 4px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  content: "+";
  top: 18px;
  right: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 78ch;
  padding: 0 58px 25px 4px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 820px) {
  .ruo-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }

  .ruo-banner strong {
    padding: 0;
    border: 0;
  }

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

  .product-modal-gallery {
    min-height: auto;
    padding: 20px;
  }

  .product-modal-main-image,
  .product-modal-main-image > img,
  .product-placeholder-detail {
    min-height: 410px;
    height: 410px;
  }

  .product-modal-copy {
    padding: 45px 24px 36px;
  }

  .faq-section {
    width: min(100% - 28px, 1040px);
    padding: 80px 0;
  }
}

@media (max-width: 560px) {
  .product-summary {
    min-height: auto;
  }

  .product-modal {
    max-height: calc(100dvh - 18px);
  }

  .product-modal-main-image,
  .product-modal-main-image > img,
  .product-placeholder-detail {
    min-height: 330px;
    height: 330px;
  }

  .product-placeholder-detail img {
    width: 180px;
    height: 56px;
  }
}
