@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lets Get Crazy Sans";
  src: url("assets/fonts/lets-get-crazy-sans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1f6fb7;
  --blue-dark: #13446f;
  --orange: #d87432;
  --orange-dark: #9f4f20;
  --mint: #cde9d9;
  --ink: #21160f;
  --muted: #6f6256;
  --paper: #ffffff;
  --cream: #ffffff;
  --soft: #ffffff;
  --line: #e8edf2;
  --shadow: 0 22px 58px rgba(17, 24, 39, .08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.5;
  padding-bottom: 76px;
  -webkit-user-select: none;
  user-select: none;
  overflow-x: clip;
}

body.is-home {
  padding-bottom: 0;
  overflow: auto;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

button, input, textarea {
  font: inherit;
  -webkit-user-select: auto;
  user-select: auto;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  background: var(--paper);
  padding: .7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  padding: 0 clamp(1rem, 4vw, 5rem);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0);
  backdrop-filter: blur(18px);
  transition: box-shadow .28s ease, border-color .28s ease, min-height .28s ease;
  animation: navDrop .65s cubic-bezier(.2, .8, .2, 1) both;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: rgba(17, 24, 39, .08);
  box-shadow: 0 18px 45px rgba(17, 24, 39, .08);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 46px;
  padding: 0;
  background: transparent;
  text-decoration: none;
  transform-origin: left center;
  transition: transform .25s ease, opacity .25s ease;
  animation: brandSlide .72s cubic-bezier(.2, .8, .2, 1) .08s both;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-right {
  display: contents;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2vw, 1.9rem);
  flex-wrap: wrap;
  color: #111827;
  font-size: .98rem;
  font-weight: 750;
  animation: navItemsSlideCentered .72s cubic-bezier(.2, .8, .2, 1) .16s both;
}

.nav-link {
  position: relative;
  padding: .55rem 0;
  border-radius: 0;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-link:hover {
  color: var(--orange);
  background: transparent;
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: stretch;
  min-height: 82px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  min-height: 100%;
  border: 0;
  border-right: 1px solid var(--line);
  background: white;
  color: #111827;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.site-header.is-scrolled .nav-actions {
  min-height: 72px;
}

.icon-button:last-child {
  border-right: 0;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease;
}

.icon-button:hover {
  color: var(--orange);
  background: #fff8f3;
}

.icon-button:hover svg {
  transform: translateY(-1px) scale(1.06);
}

.cart-count {
  position: absolute;
  top: 22px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: .65rem;
  font-weight: 900;
  line-height: 1;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandSlide {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes navItemsSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes navItemsSlideCentered {
  from {
    opacity: 0;
    transform: translateX(calc(-50% + 18px));
  }
  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

.hero {
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .86) 43%, rgba(255, 255, 255, .18)),
    linear-gradient(0deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .04) 45%);
}

.hero-content {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  color: var(--ink);
}

.hero-panel {
  width: min(100%, 620px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow {
  margin: 0 0 .5rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: .92;
  letter-spacing: -.03em;
}

h2 {
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

h3 {
  margin-bottom: .45rem;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 48rem;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  color: #475467;
}

.hero-actions, .trust-row, .chips, .form-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .78rem 1.05rem;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #18a957, #128041);
  color: white;
  box-shadow: 0 12px 24px rgba(22, 163, 74, .25);
}

.btn-light {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-dark { background: var(--ink); color: white; }

.trust-row {
  margin-top: 1.25rem;
}

.trust-row span, .chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .7rem;
  color: var(--ink);
  background: white;
}

.section {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.3rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}

.model-grid, .proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.model-card {
  display: grid;
  grid-template-columns: minmax(150px, 42%) 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.model-card.featured { border-color: rgba(239, 124, 47, .48); }

.model-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
  border-radius: var(--radius);
}

.model-kicker {
  margin-bottom: .3rem;
  color: var(--orange-dark);
  font-weight: 900;
}

.swatches {
  display: flex;
  gap: .45rem;
  margin: .85rem 0 1rem;
}

.swatches span, .color-option span {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(22, 35, 51, .22);
}

.configurator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 1.25rem;
  align-items: start;
}

.product-gallery, .buy-box, .proof-grid article, details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-gallery { padding: 1rem; }

.main-photo {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .95), transparent 18rem),
    linear-gradient(180deg, #ffffff, #f5f7fa);
  border-radius: var(--radius);
  min-height: 520px;
  display: grid;
  align-items: center;
}

.photo-button {
  border: 0;
  background: transparent;
  cursor: zoom-in;
  padding: 1rem;
}

.photo-button img {
  width: min(100%, 620px);
  max-height: 500px;
  margin: 0 auto;
  object-fit: contain;
}

#photoCaption {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  text-align: center;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .65rem;
  margin-top: .75rem;
}

.thumbs button {
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #edf5f8;
  cursor: pointer;
  padding: .35rem;
}

.thumbs button[aria-current="true"] { border-color: var(--orange); }

.thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.buy-box {
  position: sticky;
  top: 86px;
  padding: clamp(1rem, 3vw, 1.45rem);
}

.product-subtitle {
  color: var(--muted);
  margin-bottom: 1rem;
}

.chips { margin-bottom: 1rem; }

.chips span {
  color: var(--orange-dark);
  background: rgba(216, 116, 50, .1);
  border-color: rgba(216, 116, 50, .2);
}

fieldset {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
}

legend, .field span {
  display: block;
  margin-bottom: .55rem;
  color: var(--ink);
  font-weight: 900;
}

.option-chip {
  display: inline-flex;
  margin: 0 .45rem .55rem 0;
}

.option-chip input, .color-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-chip span, .color-option {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .68rem .78rem;
  background: white;
  cursor: pointer;
}

.option-chip input:checked + span,
.color-option:has(input:checked) {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(239, 124, 47, .24);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.color-option {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.field {
  display: grid;
  gap: .35rem;
  margin-top: 1rem;
}

textarea, input[type="number"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  color: var(--ink);
  background: white;
}

textarea { resize: vertical; }

.form-row {
  align-items: stretch;
  margin: 1rem 0;
}

.form-row .field {
  flex: 0 0 130px;
  margin-top: 0;
}

.quote-summary {
  flex: 1;
  display: grid;
  align-content: center;
  min-width: 220px;
  padding: .8rem;
  border-radius: var(--radius);
  background: #eef7f1;
  color: #166534;
}

.quote-summary strong {
  font-size: 1.18rem;
}

.whatsapp { width: 100%; }

.fine-print {
  margin: .7rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.proof-banner {
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.proof-banner img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.proof-grid article {
  padding: 1rem;
}

.proof-grid span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-weight: 900;
}

.proof-grid p, .split p, details p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .76fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq {
  max-width: 900px;
}

details {
  padding: 1rem;
  margin-bottom: .75rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: .75rem 0 0;
}

.lightbox {
  width: min(96vw, 980px);
  border: 0;
  border-radius: var(--radius);
  padding: 1rem;
  background: white;
}

.lightbox::backdrop {
  background: rgba(8, 18, 30, .72);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem 1rem;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(22, 35, 51, .12);
}

.mobile-cta span {
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    row-gap: .35rem;
    min-height: auto;
    padding: .85rem 1rem .7rem;
  }

  .brand {
    grid-area: brand;
    width: 116px;
    height: 40px;
  }

  nav {
    position: static;
    left: auto;
    transform: none;
    grid-area: nav;
    justify-self: center;
    width: min(100%, 420px);
    justify-content: center;
    gap: clamp(.9rem, 5vw, 1.8rem);
    font-size: .94rem;
    animation: navItemsSlide .72s cubic-bezier(.2, .8, .2, 1) .16s both;
  }

  .nav-actions {
    grid-area: actions;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
  }

  .site-header.is-scrolled .nav-actions {
    min-height: 44px;
  }

  .icon-button {
    width: 48px;
  }

  .cart-count {
    top: 7px;
    right: 9px;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .84) 60%, rgba(255, 255, 255, .34)),
      linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .18));
  }

  h1 { max-width: 9ch; }

  .model-grid, .configurator, .proof-grid, .split {
    grid-template-columns: 1fr;
  }

  .buy-box { position: static; }

  .mobile-cta { display: flex; }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: .8rem;
  }

  nav {
    gap: 1rem;
    font-size: .88rem;
  }

  .brand {
    width: 108px;
  }

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

  .main-photo {
    min-height: 390px;
  }

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

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

/* Navbar ecommerce SUMAQ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  min-height: 0;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(17, 24, 39, .04);
  animation: navDrop .55s cubic-bezier(.2, .8, .2, 1) both;
}

.site-header.is-scrolled {
  min-height: 0;
  box-shadow: 0 14px 42px rgba(17, 24, 39, .08);
}

.nav-top {
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: .8rem clamp(1.5rem, 3vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(300px, 420px) auto minmax(150px, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: clamp(.9rem, 2vw, 1.45rem);
}

.brand {
  width: clamp(112px, 10vw, 148px);
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0;
  background: transparent;
  text-decoration: none;
  animation: brandSlide .6s cubic-bezier(.2, .8, .2, 1) .05s both;
}

.nav-top .nav-actions {
  justify-self: end;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-bar {
  min-width: 0;
  height: 44px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: .65rem;
  padding: 0 .9rem;
  border: 1.5px solid #7c3cff;
  border-radius: 999px;
  background: #fbfdff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.search-bar:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(216, 116, 50, .12);
  transform: translateY(-1px);
}

.search-bar svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #667085;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-bar input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: .92rem;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  justify-self: end;
}

.social-actions a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: white;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.social-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-actions a:nth-child(2) svg,
.social-actions a:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.social-actions a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.nav-actions {
  grid-column: auto;
  grid-area: auto;
  justify-self: auto;
  display: flex;
  align-items: center;
  min-height: auto;
  border: 0;
  gap: .35rem;
}

.site-header.is-scrolled .nav-actions {
  min-height: auto;
}

.icon-button {
  width: 42px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: #050505;
  border-radius: 50%;
}

.icon-button:hover {
  color: var(--orange);
  background: #fff5ef;
}

.cart-count {
  top: 1px;
  right: 2px;
}

.nav-menu {
  position: static;
  left: auto;
  transform: none;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 5vw, 3.2rem);
  padding: 0 clamp(.9rem, 3vw, 1.25rem) .85rem;
  color: #050505;
  font-size: .95rem;
  font-weight: 850;
  text-transform: uppercase;
  animation: navItemsFade .5s ease .12s both;
}

.nav-link {
  padding: .45rem 0;
}

.nav-link:hover {
  color: var(--orange);
}

@keyframes navItemsFade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-top {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
  }

  .brand {
    justify-self: start;
  }

  .search-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(100%, 520px);
    justify-self: center;
  }

  .social-actions {
    justify-self: end;
  }

  .nav-actions {
    justify-self: end;
  }
}

@media (max-width: 680px) {
  .nav-top {
    grid-template-columns: 1fr auto;
    gap: .75rem;
  }

  .brand {
    width: 112px;
  }

  .social-actions {
    grid-column: 1 / -1;
    justify-self: center;
    order: 3;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .search-bar {
    height: 42px;
  }

  .nav-menu {
    gap: clamp(1rem, 6vw, 1.8rem);
    font-size: .82rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

.nav-menu::-webkit-scrollbar {
    display: none;
  }
}

.empty-page {
  min-height: calc(100svh - 136px);
  background: var(--paper);
}

.standalone-page {
  padding-top: 1px;
}

.home-hero {
  min-height: 0;
  background: var(--paper);
  overflow: visible;
  pointer-events: auto;
}

.home-hero-media {
  position: relative;
}

.home-hero-media > img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: initial;
  object-position: initial;
}

.hero-personalize-callout {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.hero-personalize-text,
.hero-personalize-arrow {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .7));
}

.hero-personalize-text {
  top: 17%;
  left: 61%;
  width: 25%;
  opacity: 0;
  transform: translate3d(1.2rem, -.7rem, 0) rotate(-2deg) scale(.94);
  animation:
    heroPersonalizeEnter .85s 1.05s cubic-bezier(.2, .8, .2, 1) forwards,
    heroPersonalizeFloat 3.4s 2s ease-in-out infinite;
}

.hero-personalize-arrow {
  top: 33%;
  left: 55%;
  width: 20%;
  opacity: 0;
  transform: translate3d(1.4rem, -1rem, 0) scale(.9);
  transform-origin: 85% 12%;
  animation:
    heroArrowEnter .72s 1.38s cubic-bezier(.2, .85, .25, 1.15) forwards,
    heroArrowNudge 2.4s 2.2s ease-in-out infinite;
}

@keyframes heroPersonalizeEnter {
  0% {
    opacity: 0;
    transform: translate3d(1.2rem, -.7rem, 0) rotate(-2deg) scale(.94);
    filter: blur(8px) drop-shadow(0 3px 5px rgba(0, 0, 0, .7));
  }
  70% {
    opacity: 1;
    transform: translate3d(-.18rem, .08rem, 0) rotate(.35deg) scale(1.025);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    filter: blur(0) drop-shadow(0 3px 5px rgba(0, 0, 0, .7));
  }
}

@keyframes heroArrowEnter {
  0% {
    opacity: 0;
    transform: translate3d(1.4rem, -1rem, 0) scale(.9);
    filter: blur(7px) drop-shadow(0 3px 5px rgba(0, 0, 0, .7));
  }
  65% {
    opacity: 1;
    transform: translate3d(-.2rem, .16rem, 0) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0) drop-shadow(0 3px 5px rgba(0, 0, 0, .7));
  }
}

@keyframes heroPersonalizeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -.18rem; }
}

@keyframes heroArrowNudge {
  0%, 100% { translate: 0 0; }
  45% { translate: -.22rem .12rem; }
  65% { translate: -.1rem .05rem; }
}

.hero-product-link {
  display: block;
  position: absolute;
  z-index: 3;
  top: 32.1%;
  left: 43.65%;
  width: 12.05%;
  height: 41.1%;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.hero-product-link::before {
  content: none;
}

.hero-product-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  -webkit-mask:
    linear-gradient(112deg,
      transparent 0 35%,
      rgba(255,255,255,.15) 40%,
      #fff 48%,
      rgba(255,255,255,.35) 56%,
      transparent 64% 100%);
  -webkit-mask-size: 260% 100%;
  -webkit-mask-position: 135% 0;
  mask:
    linear-gradient(112deg,
      transparent 0 35%,
      rgba(255,255,255,.15) 40%,
      #fff 48%,
      rgba(255,255,255,.35) 56%,
      transparent 64% 100%);
  mask-size: 260% 100%;
  mask-position: 135% 0;
}

.home-hero-media:hover .hero-product-glow,
.hero-product-link:focus-visible .hero-product-glow {
  opacity: .82;
  animation: hero-silver-sweep 1.45s ease-in-out infinite;
}

@keyframes hero-silver-sweep {
  0% {
    -webkit-mask-position: 135% 0;
    mask-position: 135% 0;
    opacity: 0;
  }
  18% { opacity: .85; }
  72% { opacity: .85; }
  100% {
    -webkit-mask-position: -45% 0;
    mask-position: -45% 0;
    opacity: 0;
  }
}

.hero-product-link:focus-visible {
  outline: none;
}

@media (max-width: 700px) {
  .hero-personalize-callout {
    inset: 0;
  }

  .hero-personalize-text {
    top: 16%;
    left: 59%;
    width: 27%;
  }

  .hero-personalize-arrow {
    top: 32%;
    left: 54%;
    width: 22%;
  }

  .hero-product-link {
    top: 32.1%;
    left: 43.65%;
    width: 12.05%;
    height: 41.1%;
  }

}

.home-next {
  min-height: 60vh;
  background: var(--paper);
}

/* Inicio: personalización de mascotas */
.home-personalization {
  width: 100%;
  overflow: clip;
  background: #fff;
}

.pet-marquee {
  min-height: clamp(25rem, 42vw, 43rem);
  padding: clamp(6rem, 11vw, 11rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(199, 174, 145, .22), transparent 22rem),
    #f7f4ef;
}

.pet-marquee-row {
  width: max-content;
  padding-block: .45rem;
  transform: translate3d(calc(-12vw + var(--scroll-shift, 0px)), 0, 0) rotate(-7deg);
  transform-origin: center;
  will-change: transform;
  opacity: 0;
  filter: blur(10px);
  transition: opacity .8s ease, filter .9s ease;
}

.pet-marquee-row.is-reverse {
  margin-top: clamp(-.4rem, -.5vw, -.1rem);
  transform: translate3d(calc(-30vw + var(--scroll-shift, 0px)), 0, 0) rotate(-7deg);
}

.pet-marquee-row.is-third {
  margin-top: clamp(-.25rem, -.35vw, 0rem);
  transform: translate3d(calc(-18vw + var(--scroll-shift, 0px)), 0, 0) rotate(-7deg);
}

.pet-marquee-row p {
  margin: 0;
  white-space: nowrap;
  color: #111;
  font-size: clamp(2.25rem, 4.8vw, 5.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
}

.pet-marquee-row.is-reverse p {
  color: #a6784d;
  font-size: clamp(2.4rem, 5.7vw, 6.3rem);
}

.pet-marquee-row.is-third p {
  color: #667085;
  font-size: clamp(1.9rem, 4.2vw, 4.7rem);
}

.pet-marquee-row span {
  color: #b9b9b9;
  font-weight: 300;
}

.pet-marquee-row.is-visible {
  opacity: 1;
  filter: blur(0);
  animation: marqueeDiagonalReveal 1s cubic-bezier(.2,.75,.2,1) both;
}

.pet-marquee-row.is-reverse.is-visible {
  animation-delay: .12s;
}

.pet-marquee-row.is-third.is-visible {
  animation-delay: .24s;
}

@keyframes marqueeDiagonalReveal {
  from {
    opacity: 0;
    filter: blur(14px);
    translate: 0 4rem;
  }
  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}

.engraving-reveal-section,
.pet-designs {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
  content-visibility: auto;
  contain-intrinsic-size: 1100px;
}

.engraving-heading,
.pet-designs-heading {
  width: min(820px, 100%);
  margin: 0 auto clamp(2.4rem, 5vw, 4.5rem);
  text-align: center;
}

.home-reveal .engraving-kicker,
.home-reveal > p:last-child {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(7px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}

.home-reveal.is-visible .engraving-kicker {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.home-reveal.is-visible > p:last-child {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: .42s;
}

.home-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(44px) rotate(3deg);
  filter: blur(9px);
  transition:
    opacity .65s ease,
    transform .8s cubic-bezier(.16,.76,.25,1),
    filter .75s ease;
  transition-delay: calc(.09s + var(--word-index) * .09s);
}

.home-reveal.is-visible .home-word {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
}

.engraving-kicker {
  margin: 0 0 .7rem;
  color: #9a704c;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.engraving-heading h2,
.pet-designs-heading h2 {
  margin: 0;
  color: #0b0b0b;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.engraving-heading > p:last-child,
.pet-designs-heading > p:last-child {
  max-width: 660px;
  margin: 1.15rem auto 0;
  color: #626a79;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.engraving-compare {
  --reveal-position: 50%;
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f3;
  box-shadow: 0 28px 80px rgba(20, 20, 20, .14);
  isolation: isolate;
}

.engraving-before,
.engraving-after,
.engraving-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.engraving-before,
.engraving-after img {
  box-sizing: border-box;
  object-fit: contain;
  padding: clamp(.55rem, 1.6vw, 1.6rem);
  background:
    radial-gradient(circle at 50% 46%, #fff 0 20%, #f5f4f1 66%, #eceae5 100%);
}

.engraving-compare.home-animate {
  opacity: 0;
  transform: translateY(55px) scale(.965);
  filter: blur(8px);
  transition: opacity .85s ease, transform 1s cubic-bezier(.16,.76,.25,1), filter .9s ease;
}

.engraving-compare.home-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.engraving-after {
  width: var(--reveal-position);
  overflow: hidden;
}

.engraving-after img {
  width: 1120px;
  max-width: none;
}

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--reveal-position);
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 0 18px rgba(0, 0, 0, .28);
  pointer-events: none;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
}

.compare-divider svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.compare-range:focus-visible + * {
  outline: none;
}

.engraving-compare:focus-within {
  box-shadow: 0 28px 80px rgba(20, 20, 20, .14), 0 0 0 4px rgba(166, 120, 77, .28);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 2vw, 1.6rem);
  padding: .65rem .9rem;
  border-radius: 999px;
  background: rgba(15, 15, 15, .82);
  color: #fff;
  font-size: clamp(.65rem, 1vw, .82rem);
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.compare-label-before { left: clamp(1rem, 2vw, 1.6rem); }
.compare-label-after { right: clamp(1rem, 2vw, 1.6rem); }

.pet-designs {
  background: #f4efe8;
}

.pet-design-grid {
  display: grid;
  width: min(1400px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.pet-design-grid figure {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(45, 36, 28, .08);
  transition: transform .3s ease, box-shadow .3s ease;
  content-visibility: auto;
  contain-intrinsic-size: 380px;
}

.pet-design-grid figure.home-animate {
  opacity: 0;
  transform: translateY(42px) scale(.94);
  filter: blur(6px);
  transition:
    opacity .65s ease,
    transform .75s cubic-bezier(.16,.76,.25,1),
    filter .7s ease,
    box-shadow .3s ease;
  transition-delay: calc((var(--reveal-index) - 5) * .045s);
}

.pet-design-grid figure.home-animate.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.pet-design-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45, 36, 28, .15);
}

.pet-design-grid img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(.35rem, 1vw, .8rem);
  box-sizing: border-box;
  object-fit: contain;
}

.pet-design-cta {
  display: block;
  width: fit-content;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: 1rem 1.6rem;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pet-design-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #111;
}

.pet-design-cta.home-animate {
  opacity: 0;
  transform: translateY(24px);
}

.pet-design-cta.home-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 600px) {
  .pet-marquee { padding-block: 2.4rem; }
  .engraving-reveal-section,
  .pet-designs { padding-block: 3.5rem; }
  .engraving-compare { aspect-ratio: 4 / 5; border-radius: 18px; }
  .engraving-before,
  .engraving-after img { padding: .8rem; }
  .compare-divider span { width: 46px; height: 46px; }
  .pet-design-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .pet-marquee-row,
  .pet-design-grid figure,
  .pet-design-cta {
    transform: none !important;
    transition: none !important;
  }
  .home-animate,
  .home-word,
  .home-reveal .engraving-kicker,
  .home-reveal > p:last-child {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

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

.catalog-page {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.filters {
  position: sticky;
  top: 150px;
  align-self: start;
  max-height: calc(100vh - 170px);
  overflow: auto;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.filter-group {
  margin-bottom: 2.3rem;
}

.filter-group h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  line-height: 1.1;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: .72rem 0;
  color: #3f4653;
  font-size: .98rem;
}

.filter-group input {
  width: 19px;
  height: 19px;
  accent-color: #111827;
}

.catalog-heading {
  margin-bottom: 1.4rem;
}

.catalog-heading h1 {
  max-width: none;
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.catalog-heading p:not(.eyebrow) {
  max-width: 62ch;
  color: #667085;
  font-size: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.product-card {
  position: relative;
  min-width: 0;
}

.product-badges {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 2;
  display: grid;
  gap: .35rem;
  justify-items: start;
}

.product-badges span,
.product-badges strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: .25rem .5rem;
  border-radius: 4px;
  color: white;
  font-size: .72rem;
  line-height: 1;
}

.product-badges span {
  background: #4892ab;
  font-weight: 800;
}

.product-badges strong {
  background: #ff3030;
  font-weight: 900;
}

.product-photo {
  display: grid;
  place-items: end center;
  min-height: clamp(360px, 35vw, 470px);
  margin-bottom: 1rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  text-decoration: none;
  overflow: hidden;
}

.product-photo img {
  width: auto;
  max-width: 90%;
  max-height: clamp(330px, 33vw, 445px);
  object-fit: contain;
  transform: translateX(var(--photo-offset-x, 0)) translateY(var(--photo-offset-y, 0px));
  transition: transform .32s ease;
}

.product-card:hover .product-photo img {
  transform: translateX(var(--photo-offset-x, 0)) translateY(calc(var(--photo-offset-y, 0px) - 6px)) scale(1.03);
}

.product-card[data-size="1200"] {
  --photo-offset-x: -5%;
  --photo-offset-y: 18px;
}

.product-card[data-size="1200"] .product-photo img {
  max-height: clamp(365px, 35vw, 475px);
}

.accessory-card .product-photo img {
  width: auto;
  max-width: 90%;
  max-height: clamp(340px, 36vw, 445px);
}

.cover-card .product-photo {
  place-items: center;
}

.cover-card .product-photo img {
  max-width: 92%;
  max-height: clamp(340px, 35vw, 430px);
}

.morral-card .product-photo {
  place-items: end center;
  padding-bottom: .1rem;
}

.morral-card .product-photo img {
  max-width: 96%;
  max-height: clamp(365px, 39vw, 470px);
}

.hover-swap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.hover-swap img {
  grid-area: 1 / 1;
  transition: opacity .28s ease, transform .32s ease;
}

.hover-swap .secondary-image {
  opacity: 0;
  position: absolute;
}

.product-card:hover .hover-swap .primary-image,
.product-card:focus-within .hover-swap .primary-image {
  opacity: 0;
  transform: scale(1.02);
}

.product-card:hover .hover-swap .secondary-image,
.product-card:focus-within .hover-swap .secondary-image {
  opacity: 1;
  transform: scale(1);
}

.product-card[data-size="600"] .product-photo img {
  max-height: clamp(300px, 29vw, 385px);
}

.product-card[data-size="600"] {
  --photo-offset-y: 22px;
}

.product-card[data-size="600"] .senda-hover-swap {
  place-items: center;
}

.product-card[data-size="600"] .senda-hover-swap img {
  grid-area: 1 / 1;
  position: static;
  width: min(92%, 385px);
  max-width: 92%;
  height: auto;
  max-height: clamp(300px, 29vw, 385px);
  object-fit: contain;
  transform: translateY(22px) scale(1);
}

.product-card[data-size="600"]:hover .senda-hover-swap .primary-image,
.product-card[data-size="600"]:focus-within .senda-hover-swap .primary-image {
  transform: translateY(16px) scale(1.03);
}

.product-card[data-size="600"]:hover .senda-hover-swap .secondary-image,
.product-card[data-size="600"]:focus-within .senda-hover-swap .secondary-image {
  transform: translateY(16px) scale(1.03);
}

.product-card[data-size="946"] .product-photo {
  place-items: end center;
  padding-bottom: .1rem;
}

.product-card[data-size="946"] .hover-swap,
.morral-card .hover-swap {
  place-items: end center;
}

.product-card[data-size="946"] .product-photo img {
  max-height: clamp(255px, 24vw, 325px);
}

.product-card[data-size="470"] .product-photo {
  position: relative;
  place-items: center;
  height: clamp(360px, 35vw, 470px);
  min-height: clamp(360px, 35vw, 470px);
}

.product-card[data-size="470"] .product-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card[data-size="470"] .brisa-hover-swap {
  position: absolute;
  inset: 5%;
  overflow: hidden;
}

.product-card[data-size="470"] .brisa-hover-swap img {
  transform: none;
}

.product-card[data-size="470"]:hover .brisa-hover-swap .primary-image,
.product-card[data-size="470"]:focus-within .brisa-hover-swap .primary-image {
  opacity: 0;
  transform: none;
}

.product-card[data-size="470"]:hover .brisa-hover-swap .secondary-image,
.product-card[data-size="470"]:focus-within .brisa-hover-swap .secondary-image {
  opacity: 1;
  transform: none;
}

.morral-card .hover-swap .morral-model-full {
  width: 84%;
  height: 92%;
  max-width: 84%;
  max-height: 92%;
  inset: 4% 8%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.product-card .product-photo {
  place-items: center;
  padding: 0;
}

.product-card .product-photo .catalog-product-stage {
  position: relative;
  width: min(96%, 430px) !important;
  height: auto !important;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
}

.product-card[data-size="600"] .product-photo .catalog-product-stage {
  width: min(91%, 405px) !important;
  align-self: end;
}

.product-card[data-size="600"] .product-photo .catalog-product-stage > img {
  transform: scale(.95);
}

.product-card[data-size="600"]:hover .product-photo .catalog-product-stage > img,
.product-card[data-size="600"]:focus-within .product-photo .catalog-product-stage > img {
  transform: scale(.97);
}

.product-card[data-size="470"] .product-photo .catalog-product-stage {
  width: min(86%, 380px) !important;
  align-self: end;
}

.product-card[data-size="470"] .product-photo .catalog-product-stage > .primary-image {
  transform: scale(.78);
}

.product-card[data-size="470"] .product-photo .catalog-product-stage > .secondary-image {
  transform: scale(.92);
}

.product-card[data-size="470"]:hover .product-photo .catalog-product-stage > .primary-image,
.product-card[data-size="470"]:focus-within .product-photo .catalog-product-stage > .primary-image {
  transform: scale(.78);
}

.product-card[data-size="470"]:hover .product-photo .catalog-product-stage > .secondary-image,
.product-card[data-size="470"]:focus-within .product-photo .catalog-product-stage > .secondary-image {
  transform: scale(.92);
}

.product-card .product-photo .catalog-product-stage > img {
  grid-area: 1 / 1;
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: none;
}

.product-card .product-photo .catalog-product-stage > .secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-photo .catalog-product-stage > img,
.product-card:focus-within .product-photo .catalog-product-stage > img {
  transform: scale(1.025);
}

.product-card:hover .product-photo .catalog-product-stage > .primary-image,
.product-card:focus-within .product-photo .catalog-product-stage > .primary-image {
  opacity: 0;
}

.product-card:hover .product-photo .catalog-product-stage > .secondary-image,
.product-card:focus-within .product-photo .catalog-product-stage > .secondary-image {
  opacity: 1;
}

/* Brisa: ambas portadas conservan la misma altura y se apoyan en la base. */
.product-card[data-size="470"] .product-photo .catalog-product-stage > .primary-image,
.product-card[data-size="470"]:hover .product-photo .catalog-product-stage > .primary-image,
.product-card[data-size="470"]:focus-within .product-photo .catalog-product-stage > .primary-image {
  transform: scale(.84);
}

.product-card[data-size="470"] .product-photo .catalog-product-stage > .secondary-image,
.product-card[data-size="470"]:hover .product-photo .catalog-product-stage > .secondary-image,
.product-card[data-size="470"]:focus-within .product-photo .catalog-product-stage > .secondary-image {
  transform: scale(.84);
}

/* Senda en Sale: reducción leve, conservando la base alineada. */
.product-card[data-size="600"] .product-photo .catalog-product-stage > img {
  transform: scale(.95);
}

.product-card[data-size="600"]:hover .product-photo .catalog-product-stage > img,
.product-card[data-size="600"]:focus-within .product-photo .catalog-product-stage > img {
  transform: scale(.97);
}

/* Kallpa en Sale: base visual alineada con Cumbre. */
.product-card[data-size="946"] .product-photo .catalog-product-stage > img {
  transform: translateY(10px);
}

.product-card[data-size="946"]:hover .product-photo .catalog-product-stage > img,
.product-card[data-size="946"]:focus-within .product-photo .catalog-product-stage > img {
  transform: translateY(10px) scale(1.025);
}

.product-info h2 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
}

.price {
  margin: 0 0 .75rem;
  color: #111827;
  font-weight: 900;
}

.product-note {
  margin: -.25rem 0 .75rem;
  color: #667085;
  font-size: .92rem;
}

.product-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.product-swatches span,
.product-swatches button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(17, 24, 39, .18);
  box-shadow: 0 0 0 3px #fff;
}

.product-swatches button {
  appearance: none;
  display: inline-block;
  flex: 0 0 auto;
  padding: 0;
  cursor: pointer;
}

.product-swatches span.is-selected,
.product-swatches button.is-selected {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #111827;
}

.view-thumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.view-thumb-row button {
  width: 54px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 1px solid rgba(17, 24, 39, .14);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.view-thumb-row button.is-selected {
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, .08);
}

.view-thumb-row img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.silicone-card .product-swatches button.is-selected {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #111827, 0 8px 18px rgba(17, 24, 39, .16);
}

.product-detail {
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 2.8vw, 3rem) clamp(3.5rem, 5vw, 6rem) 0;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(500px, 620px);
  grid-template-areas:
    "gallery panel"
    "bottom bottom";
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  min-height: calc(100svh - 136px);
  background: #fff;
}

.detail-gallery {
  grid-area: gallery;
  position: relative;
  min-height: calc(100svh - 150px);
  display: grid;
  place-items: center;
  background: transparent;
}

.detail-controls {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: .65rem;
}

.detail-arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #c6c8cc;
  border-radius: 8px;
  background: #dedede;
  color: #111827;
  text-decoration: none;
  font-size: 1.35rem;
  transition: transform .2s ease, background .2s ease;
}

.detail-arrow:hover {
  background: #eeeeee;
  transform: translateY(-2px);
}

.detail-photo {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 150px);
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.detail-product-stage {
  position: relative;
  width: min(100%, 820px, calc(100svh - 180px));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.detail-product-stage > img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  transform: none;
}

.detail-view-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: rgba(17, 24, 39, .72);
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .08);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.detail-view-arrow:hover {
  background: rgba(255, 255, 255, .92);
  color: #111827;
  transform: translateY(-50%) scale(1.04);
}

.detail-view-arrow-prev {
  left: 0;
}

.detail-view-arrow-next {
  right: 0;
}

.detail-photo img {
  width: auto;
  max-width: 94%;
  max-height: clamp(660px, 86svh, 980px);
  object-fit: contain;
}

.detail-photo-accessory {
  min-height: calc(100svh - 150px);
}

.detail-photo-accessory img {
  max-width: min(92%, 620px);
  max-height: clamp(430px, 62svh, 680px);
}

.detail-photo-straws img {
  max-height: clamp(520px, 70svh, 760px);
}

.detail-photo-protector img {
  max-width: min(92%, 680px);
  max-height: clamp(330px, 48svh, 520px);
}

.detail-photo-covers img {
  max-width: min(92%, 620px);
  max-height: clamp(450px, 64svh, 700px);
}

.detail-photo-morral img {
  max-width: min(94%, 720px);
  max-height: clamp(520px, 70svh, 760px);
}

.detail-photo-morral img[src*="morral-blanco"] {
  transform: scale(1.025);
}

.detail-photo-morral img[src*="morral-negro-tomatodo-blanco"] {
  transform: scale(.94);
}

.detail-photo-morral img[src*="morral-modelo"] {
  max-width: min(92%, 760px);
  max-height: clamp(500px, 68svh, 720px);
  border-radius: 8px;
  transform: none;
}

.detail-photo .detail-product-stage > img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
  transform: none;
}

.detail-panel {
  grid-area: panel;
  width: 100%;
  max-width: 620px;
  margin: clamp(2.75rem, 7svh, 5rem) 0 0 auto;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 18px;
  background: #eeeeef;
  box-shadow: 0 18px 42px rgba(17, 24, 39, .16);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.detail-kicker {
  display: none;
}

.detail-panel h1 {
  margin: 0 0 .5rem;
  max-width: none;
  color: #070707;
  font-size: clamp(1.42rem, 1.9vw, 1.85rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.detail-price-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1.45rem;
}

.detail-badge {
  display: none;
  align-items: center;
  min-height: 24px;
  padding: .25rem .5rem;
  border-radius: 4px;
  background: #ff3030;
  color: white;
  font-size: .72rem;
  font-weight: 900;
}

.detail-badge-accessory {
  background: #4892ab;
}

.detail-price-row strong {
  color: #111;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1;
}

.detail-copy {
  margin: 0 0 1.6rem;
  color: #364153;
  font-size: .95rem;
  line-height: 1.55;
}

.detail-option {
  margin-bottom: 1.25rem;
}

.detail-swatches {
  gap: .75rem;
}

.detail-swatches button {
  width: 28px;
  height: 28px;
}

.detail-option > span {
  display: block;
  margin-bottom: .6rem;
  color: #111;
  font-size: .95rem;
  font-weight: 850;
}

.detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.detail-pill-row span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: .55rem .85rem;
  border: 1px solid rgba(17, 24, 39, .18);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-weight: 750;
}

.addon-option {
  margin-top: .5rem;
}

.addon-list {
  display: grid;
  gap: .7rem;
}

.addon-card {
  display: grid;
  grid-template-columns: auto 62px 1fr;
  align-items: center;
  gap: .75rem;
  padding: .65rem;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.addon-card:has(input:checked) {
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(17, 24, 39, .08);
}

.addon-card:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 24, 39, .35);
}

.addon-card input {
  width: 18px;
  height: 18px;
  accent-color: #111827;
}

.addon-thumb {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  overflow: hidden;
}

.addon-thumb img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

.addon-copy {
  display: grid;
  gap: .15rem;
  color: #111827;
  line-height: 1.15;
}

.addon-copy strong {
  font-size: .9rem;
}

.addon-copy small {
  color: #6b7280;
  font-size: .78rem;
  text-decoration: line-through;
}

.addon-copy b {
  color: #111827;
  font-size: .86rem;
}

.detail-total {
  margin: -.35rem 0 1rem;
  color: #111827;
  font-weight: 900;
}

.quantity-control {
  width: 148px;
  height: 52px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  border: 1px solid #111;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  height: 100%;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.quantity-control output {
  justify-self: center;
  color: #111827;
  font-weight: 500;
}

.add-cart-button {
  width: 100%;
  min-height: 58px;
  margin: .25rem 0 1.75rem;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: white;
  font-size: .98rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.add-cart-button:hover {
  background: #171717;
  transform: translateY(-2px);
}

.detail-bottom {
  grid-area: bottom;
  width: min(100%, 960px);
  margin: clamp(1rem, 3vw, 2.5rem) 0 0;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(3rem, 6vw, 5rem);
  color: #111827;
  font-size: .98rem;
}

.detail-bottom p {
  margin: 0 0 .35rem;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 1.2rem;
}

.product-story h2,
.spec-heading {
  margin: 0 0 .75rem;
  color: #111827;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
}

.product-story p {
  margin: 0 0 .85rem;
  color: #364153;
  line-height: 1.65;
}

.product-note-final {
  color: #667085;
  font-size: .9rem;
}

.tech-sheet {
  margin: 0;
  width: 100%;
}

.tech-sheet img {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 12px;
  background: #fff;
}

.spec-heading {
  margin-top: .5rem;
}

.spec-list {
  columns: 2;
  column-gap: 2rem;
}

.detail-bottom ul {
  margin: .25rem 0 1.4rem;
  padding-left: 1.25rem;
}

.detail-accordion {
  border-top: 1px solid rgba(17, 24, 39, .12);
}

.detail-accordion summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  color: #111;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.detail-accordion summary::-webkit-details-marker {
  display: none;
}

.detail-accordion summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 1.7rem;
  font-weight: 300;
}

.detail-accordion[open] summary::after {
  content: "−";
}

.detail-accordion p,
.detail-accordion ul {
  margin: 0 0 1.25rem;
  padding-left: 0;
  color: #364153;
}

@media (max-width: 900px) {
  .catalog-page {
    grid-template-columns: 1fr;
  }

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

  .tech-sheet {
    max-width: 360px;
  }

  .spec-list {
    columns: 1;
  }

  .product-detail {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "panel"
      "bottom";
  }

  .detail-gallery {
    min-height: 520px;
  }

  .filters {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 0 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow: visible;
  }

  .filter-group {
    margin: 0;
  }
}

@media (max-width: 620px) {
  .filters {
    grid-template-columns: 1fr;
  }

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

  .product-photo {
    min-height: 360px;
  }

}
/* Footer general SUMAQ */
.site-wide-footer {
  width: 100%;
  min-height: 330px;
  padding: 3rem clamp(2rem, 4vw, 5rem) 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr auto;
  gap: 2.5rem;
  background: #050505;
  color: #fff;
  margin-bottom: -76px;
}
.site-wide-footer .footer-brand { font-size: 2.4rem; font-weight: 700; letter-spacing: .08em; }
.site-wide-footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
}
.site-wide-footer p { margin: .25rem 0; }
.site-wide-footer a { color: #fff; text-decoration: none; }
.site-wide-footer .free-shipping {
  grid-column: 1 / -1;
  align-self: end;
  text-align: center;
}
.site-wide-footer .free-shipping strong { color: #ff3030; }

/* Carrito SUMAQ */
body.cart-is-open { overflow: hidden; }
.cart-overlay {
  position: fixed;
  z-index: 998;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .36);
  backdrop-filter: blur(3px);
}
.cart-drawer {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: transform .3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid #e9e9e9;
}
.cart-drawer-header p { margin: 0 0 .2rem; color: #777; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.cart-drawer-header h2 { margin: 0; font-size: 1.65rem; }
.cart-drawer-header h2 span { color: #9a704c; font-size: .9rem; }
.cart-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 1.75rem;
  cursor: pointer;
}
.cart-message {
  min-height: 0;
  padding: 0 1.5rem;
  color: #246a38;
  font-size: .88rem;
  font-weight: 700;
  transition: padding .2s ease;
}
.cart-message:not(:empty) { padding-block: .75rem; border-bottom: 1px solid #eee; }
.cart-message[data-type="error"] { color: #b42318; background: #fff1f0; }
.cart-items { min-height: 0; overflow-y: auto; padding: .7rem 1.5rem; }
.cart-empty { padding: 4rem 1rem; text-align: center; color: #6b7280; }
.cart-empty strong { display: block; margin-bottom: .5rem; color: #111; font-size: 1.15rem; }
.cart-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ececec;
}
.cart-line-image {
  width: 92px;
  height: 108px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f6f7f8;
}
.cart-line-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-line-copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: .18rem; }
.cart-line-copy small { color: #3e97b2; font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
.cart-line-copy strong { color: #111; font-size: .98rem; }
.cart-line-copy span { color: #667085; font-size: .82rem; }
.cart-line-copy b { margin-top: .2rem; color: #111; font-size: .9rem; }
.cart-line-actions { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: .55rem; }
.cart-line-quantity { display: grid; grid-template-columns: 30px 34px 30px; align-items: center; border: 1px solid #ccc; }
.cart-line-quantity button { height: 30px; border: 0; background: #fff; cursor: pointer; }
.cart-line-quantity output { text-align: center; font-size: .84rem; }
.cart-remove { border: 0; background: transparent; color: #777; font-size: .76rem; text-decoration: underline; cursor: pointer; }
.cart-drawer-footer { padding: 1.15rem 1.5rem 1.4rem; border-top: 1px solid #ddd; background: #fff; }
.cart-drawer-footer > div { display: flex; justify-content: space-between; font-size: 1.15rem; }
.cart-drawer-footer p { margin: .65rem 0; color: #777; font-size: .78rem; }
.cart-clear { width: 100%; min-height: 44px; border: 1px solid #111; background: #111; color: #fff; font-weight: 700; cursor: pointer; }
.cart-clear:disabled { border-color: #ddd; background: #eee; color: #999; cursor: default; }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer { transition: none; }
}

.catalog-page#sale { padding-bottom: 0; }
.sale-site-footer { margin-top: 0; }
body:has(#sale[hidden]) .sale-site-footer { display: none; }

@media (max-width: 980px) {
  .site-wide-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .site-wide-footer { grid-template-columns: 1fr; }
  .site-wide-footer .free-shipping { grid-column: 1; }
}
