:root {
  --ink: #171714;
  --ink-soft: #4d4b45;
  --green: #24352b;
  --green-2: #30473a;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --sand: #e8e0d2;
  --gold: #b89a5a;
  --gold-light: #dbc695;
  --muted: #706e67;
  --line: rgba(23, 23, 20, 0.14);
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 25px 65px rgba(23, 23, 20, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 11px 16px;
  color: white;
  background: var(--ink);
  border-radius: 2px;
}
.skip-link:focus { top: 12px; }

.promo-bar {
  position: relative;
  z-index: 60;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 7px 24px;
  color: #f6f0e3;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.promo-bar p { margin: 0; display: flex; gap: 13px; align-items: center; }
.promo-bar p span { color: rgba(255,255,255,.61); }
.promo-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.promo-date { color: var(--gold-light); border-left: 1px solid rgba(255,255,255,.2); padding-left: 13px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, .91);
  backdrop-filter: blur(18px);
}
.brand { width: 112px; height: 67px; display: flex; align-items: center; }
.brand img { width: 98px; height: 61px; object-fit: contain; mix-blend-mode: multiply; }
.site-header nav { display: flex; gap: 38px; align-items: center; }
.site-header nav a {
  position: relative;
  padding: 12px 0;
  color: #393a35;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transition: right .24s ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 2px 0 14px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.header-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.hero {
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(78px, 10vh, 130px) clamp(24px, 7vw, 116px) 70px;
  align-self: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { width: 23px; height: 1px; background: var(--gold); }
.eyebrow.light { color: rgba(255,255,255,.62); }
.hero h1,
.section-intro h2,
.combos-heading h2,
.advice-block h2,
.dialog-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 760px; font-size: clamp(52px, 6.2vw, 92px); line-height: .94; }
.hero h1 em { color: #88754f; font-weight: 400; }
.hero-lede {
  max-width: 555px;
  margin: 31px 0;
  color: #5f625b;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.72;
}
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--green); }
.button-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.button-link span { color: var(--gold); font-size: 17px; }
.hero-benefits {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 57px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-benefits div { display: grid; gap: 7px; }
.hero-benefits strong { color: var(--gold); font: 400 14px/1 var(--serif); }
.hero-benefits span { color: #64665f; font-size: 12px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }

.hero-gallery {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.8), transparent 38%),
    linear-gradient(145deg, #dcd3c2 0%, #bdc2b5 55%, #8f9d91 100%);
}
.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}
.hero-orbit {
  position: absolute;
  width: min(32vw, 480px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
}
.hero-orbit::before,
.hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.hero-orbit::before { inset: 34px; }
.hero-orbit::after { inset: 75px; }
.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #8c8f86;
  box-shadow: 0 25px 60px rgba(24, 33, 27, .25);
  border: 1px solid rgba(255,255,255,.55);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { width: 43%; height: 62%; left: 29%; top: 19%; z-index: 3; }
.hero-photo-main figcaption {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  color: white;
  background: rgba(22,29,25,.72);
  backdrop-filter: blur(10px);
}
.hero-photo-main figcaption span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.hero-photo-main figcaption strong { font: 400 17px/1 var(--serif); }
.hero-photo-top { width: 27%; height: 38%; right: 2%; top: 7%; transform: rotate(3deg); z-index: 2; }
.hero-photo-bottom { width: 26%; height: 37%; left: 2%; bottom: 7%; transform: rotate(-3deg); z-index: 2; }
.hero-size-seal {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 4;
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 4px;
  text-align: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(24,34,28,.25);
}
.hero-size-seal strong { font: 400 16px/1 var(--serif); }
.hero-size-seal span { font-size: 12px; letter-spacing: .18em; }

.catalog-section { padding: clamp(82px, 9vw, 138px) clamp(16px, 5vw, 78px); }
.section-intro { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 42px; }
.section-intro h2, .combos-heading h2 { font-size: clamp(44px, 5vw, 70px); }
.section-intro-copy { max-width: 380px; display: grid; gap: 15px; }
.section-intro-copy p { margin: 0; color: #686b64; font-size: 16px; line-height: 1.65; }
.section-intro-copy span { color: var(--gold); font-size: 12px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }

.filter-shell {
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(135px, .72fr)) auto;
  gap: 8px;
  align-items: end;
  margin-bottom: 34px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #eee8dc;
}
.search-field { position: relative; align-self: end; }
.search-field svg { position: absolute; width: 18px; left: 15px; top: 50%; transform: translateY(-50%); fill: none; stroke: #676a63; stroke-width: 1.4; }
.search-field input,
.select-field select {
  width: 100%;
  height: 49px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0;
  outline: none;
}
.search-field input { padding: 0 14px 0 46px; }
.search-field input::placeholder { color: #80827c; }
.select-field { display: grid; gap: 7px; }
.select-field > span { padding-left: 2px; color: #777970; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.select-field select { padding: 0 12px; }
.search-field input:focus,
.select-field select:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,154,90,.13); }
.clear-filters {
  height: 49px;
  padding: 0 15px;
  color: #62645e;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.clear-filters:hover { color: var(--ink); text-decoration: underline; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23,23,20,.11);
  box-shadow: 0 10px 24px rgba(23,23,20,.035);
  transition: transform .24s ease, box-shadow .24s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image-wrap { position: relative; aspect-ratio: 4 / 4.55; overflow: hidden; background: #c7b99f; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.65,.3,1); }
.product-card:hover .product-image { transform: scale(1.025); }
.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, rgba(11,17,13,.17));
}
.availability-pill {
  position: absolute;
  z-index: 2;
  left: 13px;
  bottom: 13px;
  padding: 7px 9px;
  color: white;
  background: rgba(24,31,27,.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.compare-toggle {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(255,253,249,.91);
  border: 1px solid rgba(255,255,255,.65);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.compare-toggle span { margin-right: 3px; font-size: 13px; }
.compare-toggle[aria-pressed="true"] { color: white; background: var(--green); border-color: var(--green); }
.product-content { padding: 24px; }
.product-brand { margin: 0 0 6px; color: var(--gold); font-size: 12px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { min-height: 54px; margin: 0; font: 400 26px/1.05 var(--serif); letter-spacing: -.02em; }
.product-description { min-height: 48px; margin: 12px 0 15px; color: #696b65; font-size: 15px; line-height: 1.62; }
.tag-list { min-height: 24px; display: flex; flex-wrap: wrap; gap: 6px; }
.tag-list span { padding: 6px 8px; color: #65675f; border: 1px solid var(--line); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.size-picker { margin: 22px 0 0; padding: 0; border: 0; }
.size-picker legend { width: 100%; padding: 0 0 9px; color: #777970; font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.size-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.size-option {
  min-width: 0;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 3px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}
.size-option strong { font-size: 14px; }
.size-option small { color: #72746e; font-size: 13px; }
.size-option.is-selected { color: white; background: var(--green); border-color: var(--green); }
.size-option.is-selected small { color: rgba(255,255,255,.7); }
.product-action-row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: stretch; margin-top: 14px; }
.selected-price { min-width: 72px; display: grid; align-content: center; gap: 3px; }
.selected-price small { color: #777970; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.selected-price strong { font: 400 22px/1 var(--serif); }
.order-button {
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
}
.order-button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.order-button:hover { color: white; background: var(--ink); }
.empty-state { padding: 90px 20px; text-align: center; border: 1px solid var(--line); background: var(--paper); }
.empty-state .eyebrow { justify-content: center; margin-bottom: 15px; }
.empty-state h3 { margin: 0 0 10px; font: 400 35px/1.1 var(--serif); }
.empty-state > p:not(.eyebrow) { margin: 0 0 25px; color: var(--muted); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }

.experience-section { padding: clamp(82px, 9vw, 138px) clamp(16px, 5vw, 78px); color: white; background: var(--ink); }
.combos-heading { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 45px; }
.combos-heading > p { margin: 0; color: rgba(255,255,255,.55); font: italic 22px/1.35 var(--serif); text-align: right; }
.combo-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.combo-card { min-width: 0; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(255px, .96fr); background: #f6f2e9; color: var(--ink); }
.combo-image-wrap { position: relative; min-height: 590px; overflow: hidden; background: white; }
.combo-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.combo-image-wrap > span { position: absolute; left: 15px; top: 15px; padding: 8px 10px; color: var(--ink); background: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.combo-copy { display: flex; flex-direction: column; justify-content: center; padding: 35px clamp(24px, 3vw, 42px); }
.combo-kicker { margin: 0 0 16px !important; color: var(--gold) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .13em; }
.combo-copy h3 { margin: 0; font: 400 clamp(34px, 3vw, 49px)/.96 var(--serif); letter-spacing: -.035em; }
.combo-copy > p { margin: 18px 0; color: #64665f; font-size: 15px; line-height: 1.55; }
.combo-copy ul { display: flex; flex-wrap: wrap; gap: 7px 16px; margin: 0; padding: 0; list-style: none; color: #555750; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.combo-copy li::before { content: "◆"; margin-right: 7px; color: var(--gold); font-size: 6px; }
.combo-price { display: grid; gap: 5px; margin: 32px 0 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.combo-price span { color: #74766f; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.combo-price strong { font: 400 47px/1 var(--serif); }
.button-gold { align-self: flex-start; color: var(--ink); background: var(--gold-light); }
.button-gold:hover { color: white; background: var(--green); }

.service-panel { display: grid; grid-template-columns: 1.25fr .75fr; margin-top: 80px; border: 1px solid rgba(255,255,255,.14); }
.advice-block { position: relative; overflow: hidden; padding: clamp(50px, 7vw, 100px); background: var(--green); }
.advice-block::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -115px;
  bottom: -180px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018);
}
.advice-block > img { position: absolute; width: 125px; right: 36px; top: 28px; mix-blend-mode: screen; filter: invert(1); opacity: .12; }
.advice-block h2 { position: relative; z-index: 1; max-width: 770px; font-size: clamp(43px, 5vw, 72px); line-height: .98; }
.advice-block > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 570px; margin: 24px 0 30px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; }
.advice-block .button { position: relative; z-index: 1; }
.shipping-block { padding: clamp(45px, 5vw, 74px); color: var(--ink); background: var(--gold-light); }
.shipping-block .eyebrow { color: rgba(23,23,20,.65); }
.shipping-block h3 { margin: 0 0 35px; font: 400 clamp(39px, 4vw, 58px)/.95 var(--serif); }
.shipping-item { display: grid; gap: 4px; padding: 19px 0; border-top: 1px solid rgba(23,23,20,.18); }
.shipping-item strong { font: 400 25px/1 var(--serif); }
.shipping-item span { color: rgba(23,23,20,.68); font-size: 15px; line-height: 1.5; }
.shipping-terms { margin: 28px 0 0; color: rgba(23,23,20,.62); font-size: 12px; line-height: 1.6; text-transform: uppercase; letter-spacing: .05em; }

footer { min-height: 205px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 45px; padding: 40px clamp(20px,5vw,78px); color: #555750; background: #f1ece2; }
.footer-brand img { width: 100px; height: 64px; object-fit: contain; mix-blend-mode: multiply; }
.footer-brand p { margin: 8px 0 0; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.footer-contact { display: grid; gap: 9px; text-align: center; }
.footer-contact span { color: #74766f; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.footer-contact a { font: 400 27px/1 var(--serif); }
.footer-note { justify-self: end; max-width: 300px; text-align: right; }
.footer-note p { margin: 0 0 13px; font-size: 13px; line-height: 1.5; }
.footer-note a { color: var(--ink); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  min-height: 47px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  color: white;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 12px 35px rgba(23,35,28,.27);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.whatsapp-float svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.3; }

.compare-dock {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 28px));
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 11px 12px 11px 17px;
  color: white;
  background: rgba(23,23,20,.96);
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.compare-dock-copy { display: flex; align-items: center; gap: 12px; }
.compare-badge { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font: 400 14px/1 var(--serif); }
.compare-dock p { display: grid; gap: 2px; margin: 0; font-size: 14px; }
.compare-dock small { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.button-cream { min-height: 45px; color: var(--ink); background: var(--ivory); }

.compare-dialog { width: min(980px, calc(100% - 28px)); max-height: min(88vh, 830px); padding: 0; color: var(--ink); background: var(--ivory); border: 0; box-shadow: 0 28px 100px rgba(0,0,0,.38); }
.compare-dialog::backdrop { background: rgba(10,14,11,.76); backdrop-filter: blur(5px); }
.dialog-header { position: sticky; z-index: 5; top: 0; display: flex; justify-content: space-between; align-items: start; padding: 28px 30px 22px; background: var(--ivory); border-bottom: 1px solid var(--line); }
.dialog-header .eyebrow { margin-bottom: 7px; }
.dialog-header h2 { font-size: 42px; }
.dialog-close { width: 44px; height: 44px; color: var(--ink); background: transparent; border: 1px solid var(--line); cursor: pointer; font: 300 28px/1 var(--sans); }
.comparison-wrap { overflow-x: auto; padding: 0 30px 32px; }
.comparison-table { width: 100%; min-width: 670px; table-layout: fixed; border-collapse: collapse; }
.comparison-table th,
.comparison-table td { padding: 16px 13px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.comparison-table th:first-child,
.comparison-table td:first-child { width: 135px; padding-left: 0; color: #6f716a; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table th:not(:first-child) { font: 400 21px/1.08 var(--serif); }
.comparison-table td:not(:first-child) { color: #555750; font-size: 14px; line-height: 1.55; }
.comparison-thumb { width: 100%; aspect-ratio: 4/3; margin-bottom: 10px; object-fit: cover; }
.compare-brand { display: block; margin-bottom: 5px; color: var(--gold); font: 750 12px/1.2 var(--sans); letter-spacing: .1em; text-transform: uppercase; }
.remove-compare { margin-top: 9px; padding: 0; color: #795b4d; background: transparent; border: 0; cursor: pointer; font: 750 12px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.comparison-price { display: grid; gap: 2px; }
.comparison-price strong { color: var(--ink); font-size: 12px; }
.comparison-price small { color: #777971; font-size: 12px; }
.compare-empty { padding: 70px 30px; color: var(--muted); text-align: center; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 105px; transform: translateX(-50%); max-width: calc(100% - 32px); padding: 12px 16px; color: white; background: var(--green); box-shadow: 0 12px 35px rgba(0,0,0,.22); font-size: 14px; }

@media (max-width: 1240px) {
  .combo-card { grid-template-columns: 1fr; }
  .combo-image-wrap { min-height: 0; aspect-ratio: 4/4.3; }
  .combo-copy { min-height: 475px; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 45px; padding-right: 38px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .filter-shell { grid-template-columns: 1.25fr repeat(3, 1fr); }
  .clear-filters { grid-column: 1 / -1; justify-self: start; height: 30px; }
  .service-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 92px; }
  .promo-bar { min-height: 32px; padding-inline: 12px; justify-content: flex-start; }
  .promo-bar p span, .promo-dot { display: none; }
  .promo-date { margin-left: auto; }
  .site-header { height: 68px; grid-template-columns: 1fr auto; padding: 0 16px; }
  .site-header nav { display: none; }
  .brand { height: 58px; }
  .brand img { width: 83px; height: 54px; }
  .header-cta { min-height: 40px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 22px 55px; }
  .hero h1 { font-size: clamp(50px, 13.8vw, 68px); }
  .hero-lede { margin: 24px 0; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero-benefits { margin-top: 43px; }
  .hero-benefits span { max-width: 85px; }
  .hero-gallery { min-height: 590px; }
  .hero-orbit { width: 72vw; }
  .hero-photo-main { width: 53%; height: 64%; left: 24%; top: 17%; }
  .hero-photo-top { width: 31%; height: 35%; right: 1%; top: 5%; }
  .hero-photo-bottom { width: 30%; height: 34%; left: 1%; bottom: 6%; }
  .hero-size-seal { width: 76px; right: 4%; bottom: 9%; }
  .catalog-section { padding-left: 14px; padding-right: 14px; }
  .section-intro { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section-intro h2, .combos-heading h2 { font-size: 48px; }
  .filter-shell { grid-template-columns: 1fr 1fr; padding: 9px; }
  .search-field { grid-column: 1 / -1; }
  .clear-filters { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-image-wrap { aspect-ratio: 4 / 4.75; }
  .product-card h3, .product-description { min-height: 0; }
  .experience-section { padding-left: 14px; padding-right: 14px; }
  .combos-heading { align-items: flex-start; flex-direction: column; }
  .combos-heading > p { text-align: left; }
  .combo-grid { grid-template-columns: 1fr; }
  .combo-copy { min-height: 0; padding: 34px 24px 38px; }
  .service-panel { grid-template-columns: 1fr; margin-top: 55px; }
  .advice-block, .shipping-block { padding: 52px 25px; }
  .advice-block h2 { font-size: 49px; }
  footer { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .footer-contact { text-align: left; }
  .footer-note { justify-self: start; text-align: left; }
  .whatsapp-float { right: 12px; bottom: 12px; }
  .compare-dock { bottom: 10px; }
  .compare-dock-copy p { display: none; }
  .dialog-header { padding: 22px 17px 18px; }
  .dialog-header h2 { font-size: 36px; }
  .comparison-wrap { padding: 0 17px 25px; }
}

@media (max-width: 430px) {
  .header-cta span { display: none; }
  .header-cta { width: 42px; justify-content: center; padding: 0; border: 1px solid var(--line); }
  .promo-bar { font-size: 12px; }
  .hero-benefits { gap: 8px; }
  .hero-benefits span { font-size: 12px; }
  .hero-gallery { min-height: 520px; }
  .filter-shell { grid-template-columns: 1fr; }
  .search-field, .clear-filters { grid-column: auto; }
  .product-content { padding: 21px 18px; }
  .product-action-row { grid-template-columns: 1fr; }
  .selected-price { grid-template-columns: auto auto; align-items: baseline; justify-content: space-between; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 48px; padding: 0; justify-content: center; border-radius: 50%; }
  .compare-dock { width: calc(100% - 20px); }
  .button-cream { padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
