:root {
  --bg: #e7e7e7;
  --ink: #2c2c2c;
  --muted: #5d5d5a;
  --line: rgba(44, 44, 44, 0.26);
  --white: #ffffff;
  --product-offset-y: 100px;
  --button-offset-y: 50px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #e7e7e7;
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--bg);
}

.hero__header {
  width: 100%;
  height: clamp(72px, 7vw, 92px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0 0 auto 0;
  padding: 0 clamp(24px, 4vw, 54px);
  z-index: 120;
  background: rgba(231, 231, 231, 0.66);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  font-size: clamp(27px, 3.1vw, 34px);
  line-height: 1;
  letter-spacing: 0.055em;
  font-weight: 600;
}

.hero__content {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 82px) 24px clamp(42px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.018em;
}

.hero__title span {
  display: block;
  font-size: clamp(38px, 4.2vw, 56px);
  letter-spacing: 0.005em;
}

.hero__title strong {
  display: block;
  margin-top: -0.02em;
  font-size: clamp(64px, 8.7vw, 116px);
  font-weight: 600;
  letter-spacing: 0.012em;
}

.hero__product {
  width: min(76vw, 745px);
  margin: clamp(20px, 3.4vw, 34px) 0 clamp(34px, 4.8vw, 54px);
  position: relative;
  top: var(--product-offset-y);
}

.hero__product img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__button {
  position: relative;
  top: var(--button-offset-y);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 48px;
  padding: 15px 28px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.hero__button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  position: fixed;
  right: clamp(24px, 4vw, 54px);
  top: clamp(24px, 3.2vw, 34px);
  width: 21px;
  height: 16px;
  z-index: 140;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease, width 320ms ease;
}

.menu-toggle span:nth-child(3) {
  width: 74%;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

body.menu-open .menu-toggle span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  background: rgba(231, 231, 231, 0);
  transition: background 520ms ease;
}

.site-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  min-height: 100%;
  padding: clamp(118px, 12vw, 150px) clamp(28px, 5vw, 56px) 48px;
  background: rgba(231, 231, 231, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-left: 1px solid rgba(44, 44, 44, 0.12);
  transform: translateX(100%);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.site-menu__panel a {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  transition: color 220ms ease, transform 220ms ease;
}

.site-menu__panel a:hover {
  color: #c38f43;
  transform: translateX(4px);
}


body.menu-open {
  overflow: hidden;
}

body.menu-open .site-menu {
  pointer-events: auto;
  background: rgba(44, 44, 44, 0.12);
}

body.menu-open .site-menu__panel {
  transform: translateX(0);
}

.scroll-section {
  min-height: 100svh;
  scroll-snap-align: start;
  transition: opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1), transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}


.section-reveal {
  opacity: 0;
  transform: translateY(74px);
  transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.section-reveal--delay {
  transition-delay: 220ms;
}

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


.products {
  min-height: 100svh;
  padding: clamp(118px, 11vw, 145px) clamp(24px, 7vw, 92px) clamp(64px, 7vw, 90px);
  background: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.products__intro {
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
}


.products__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.05;
  font-weight: 600;
  color: var(--ink);
}

.products__intro p {
  max-width: 540px;
  margin: 24px auto 0;
  color: rgba(44, 44, 44, 0.48);
  line-height: 1.55;
  font-size: 14px;
}

.products__grid {
  width: min(100%, 980px);
  margin: clamp(144px, 13.5vw, 176px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 40px);
}

.product-category {
  display: block;
  text-align: center;
  outline-offset: 8px;
}

.product-category__media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e5e5e5;
}

.product-category__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-category__title {
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  font-weight: 500;
  color: #121212;
  transition: color 220ms ease, transform 220ms ease;
}

.product-category:hover .product-category__media img {
  transform: scale(1.045);
  filter: contrast(1.02);
}

.product-category:hover .product-category__title {
  color: #c38f43;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }

  .hero__header {
    padding-top: 31px;
  }

  .menu-toggle {
    width: 17px;
    height: 13px;
    top: 24px;
    right: 24px;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .brand {
    font-size: 25px;
  }

  .hero__content {
    justify-content: start;
    padding-top: clamp(82px, 18vh, 128px);
    padding-bottom: 64px;
  }

  .hero__title span {
    font-size: clamp(31px, 9.3vw, 42px);
  }

  .hero__title strong {
    font-size: clamp(54px, 15.8vw, 76px);
  }

  .hero__product {
    width: min(96vw, 500px);
    margin-top: 42px;
    margin-bottom: 70px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }

  .hero__button {
    min-width: 216px;
    font-size: 11px;
    letter-spacing: 0.36em;
  }

  .products {
    min-height: 100svh;
    padding: 104px 22px 64px;
  }

  .products__intro p {
    font-size: 13px;
  }

  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
    margin-top: 108px;
  }

  .product-category__title {
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }
}

@media (max-width: 420px) {
  .hero__content {
    padding-inline: 16px;
  }

  .hero__title strong {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero__product {
    width: 104vw;
    max-width: 430px;
    margin-top: 46px;
    margin-bottom: 76px;
    transform: translateX(-1.5vw);
  }

  .products {
    padding-inline: 18px;
  }


  .products__intro h2 {
    font-size: 31px;
  }

  .products__grid {
    gap: 30px 14px;
  }
}

/* Entrada del hero */
.brand,
.reveal {
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}

.hero.is-visible .brand {
  animation: heroRise 1600ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.hero.is-visible .reveal--title {
  animation: heroRise 1800ms cubic-bezier(0.16, 1, 0.3, 1) 360ms forwards;
}

.hero.is-visible .reveal--product {
  animation: productRise 2300ms cubic-bezier(0.16, 1, 0.3, 1) 760ms forwards;
}

.hero.is-visible .reveal--button {
  animation: heroRise 1700ms cubic-bezier(0.16, 1, 0.3, 1) 1250ms forwards;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

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

@keyframes productRise {
  from {
    opacity: 0;
    transform: translateY(76px) scale(0.982);
  }

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

@media (prefers-reduced-motion: reduce) {
  .brand,
  .reveal,
  .section-reveal,
  .scroll-section {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
}

.brand {
  display: inline-flex;
  width: clamp(105px, 11vw, 145px);
  color: var(--ink);
}

.brand__svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Ocultado suave por dirección/posición */
.hero__content,
.scroll-section .section-reveal {
  transition: opacity 1600ms cubic-bezier(0.16, 1, 0.3, 1), transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-section.is-before .section-reveal,
.hero.scroll-section.is-before .hero__content {
  opacity: 0;
  transform: translateY(-92px);
  pointer-events: none;
}

.scroll-section.is-after .section-reveal,
.hero.scroll-section.is-after .hero__content {
  opacity: 0;
  transform: translateY(92px);
  pointer-events: none;
}

.scroll-section.is-visible-section .section-reveal,
.hero.scroll-section.is-visible-section .hero__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 760px) {
  .hero__header {
    height: 76px;
    padding-top: 0;
  }

  .menu-toggle span {
    height: 2px;
  }

  .site-menu__panel a {
    font-size: 12px;
  }
}


/* Ajustes v4 */
.hero__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  transform: translateZ(0);
}

.brand {
  opacity: 1;
  transform: none;
  animation: none !important;
}

.site-menu {
  z-index: 260;
}

.menu-toggle {
  z-index: 340;
}


body.menu-open .brand {
  opacity: 1;
  transform: none;
}


/* Ajustes v6: transicion de bloques mas suave y menu simplificado */
.site-menu__panel {
  gap: 0;
  justify-content: center;
}

.site-menu__panel a {
  margin: 0 0 100px;
}

.site-menu__panel a:last-child {
  margin-bottom: 0;
}

/* Evita el ocultado brusco por clases anteriores */
.scroll-section.is-before .section-reveal,
.scroll-section.is-after .section-reveal,
.scroll-section.is-visible-section .section-reveal,
.hero.scroll-section.is-before .hero__content,
.hero.scroll-section.is-after .hero__content,
.hero.scroll-section.is-visible-section .hero__content {
  opacity: var(--section-opacity, 1);
  transform: translate3d(0, var(--section-shift, 0px), 0);
  pointer-events: auto;
}

.hero__content,
.scroll-section .section-reveal {
  opacity: var(--section-opacity, 0);
  transform: translate3d(0, var(--section-shift, 44px), 0);
  transition:
    opacity 1800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.products__grid {
  margin-top: clamp(216px, 20.25vw, 264px);
}

@media (max-width: 760px) {
  .products__grid {
    margin-top: 162px;
  }

  .site-menu__panel {
    align-items: flex-start;
  }

  .site-menu__panel a {
    margin-bottom: 72px;
  }
}

/* Ajustes v7: elimina overlay fantasma y mejora salida vertical */
.site-menu {
  visibility: hidden;
  opacity: 0;
  background: transparent !important;
  transition: opacity 520ms ease, visibility 0ms linear 520ms;
}

body.menu-open .site-menu {
  visibility: visible;
  opacity: 1;
  background: rgba(44, 44, 44, 0.08) !important;
  transition: opacity 520ms ease, visibility 0ms linear 0ms;
}

.hero__content,
.section-motion-content {
  opacity: var(--motion-opacity, 1) !important;
  transform: translate3d(0, var(--motion-y, 0px), 0) !important;
  transition: opacity 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.products__motion {
  width: 100%;
}

/* Desactiva reglas anteriores que movian cada elemento por separado */
.scroll-section .section-reveal,
.scroll-section.is-before .section-reveal,
.scroll-section.is-after .section-reveal,
.scroll-section.is-visible-section .section-reveal {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
}

/* Mas aire entre texto y categorias */
.products__grid {
  margin-top: clamp(252px, 24vw, 312px) !important;
}

@media (max-width: 760px) {
  .products__grid {
    margin-top: 190px !important;
  }
}

/* Ajustes v8 */
.products__grid {
  margin-top: clamp(176px, 16.8vw, 218px) !important;
}

.site-menu {
  background: transparent !important;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0ms linear 520ms !important;
}

.site-menu__panel {
  background: #e7e7e7 !important;
  color: var(--ink);
  box-shadow: -24px 0 80px rgba(44, 44, 44, 0.08);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.menu-open .site-menu {
  background: rgba(231, 231, 231, 0.08) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

main {
  transition: filter 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter, transform;
}

body.menu-open main {
  filter: blur(9px);
  transform: scale(0.992);
}

.hero__content,
.section-motion-content {
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (max-width: 760px) {
  .products__grid {
    margin-top: 133px !important;
  }

  body.menu-open main {
    filter: blur(7px);
  }
}

/* Ajustes v9 */
:root {
  --bg: #ffffff;
  --white: #ffffff;
}

html,
body,
.hero,
.products,
main {
  background: #ffffff !important;
}

.hero__header {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.products__grid {
  margin-top: clamp(132px, 12.6vw, 164px) !important;
}

.product-category__media {
  background: #fafafa !important;
}

.site-menu {
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
  transition: none !important;
}

.site-menu__panel {
  background: #ffffff !important;
  border-left: 0 !important;
  box-shadow: none !important;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  transition:
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease !important;
  will-change: transform, opacity;
}

body.menu-open .site-menu {
  pointer-events: auto;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.menu-open .site-menu__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.menu-open main {
  filter: blur(9px) brightness(0.96);
  transform: scale(0.992);
}

@media (max-width: 760px) {
  .products__grid {
    margin-top: 100px !important;
  }

  .site-menu__panel {
    width: min(330px, 86vw);
  }

  body.menu-open main {
    filter: blur(7px) brightness(0.96);
  }
}

/* About */
.about {
  min-height: 100svh;
  background: #ffffff;
  color: var(--ink);
  scroll-snap-align: start;
  overflow: hidden;
}

.about__motion {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
}

.about__media {
  margin: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #fafafa;
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
}

.about__content {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(108px, 11vw, 150px) clamp(52px, 8vw, 84px) clamp(70px, 8vw, 100px);
  max-width: 560px;
}

.about__content h2 {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #222222;
}

.about__content p {
  margin: 0 0 24px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(30, 30, 30, 0.78);
  text-align: justify;
}

.about__link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(30, 30, 30, 0.48);
  padding-bottom: 8px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(30, 30, 30, 0.7);
  transition: color 220ms ease, border-color 220ms ease, gap 220ms ease;
}

.about__link:hover {
  color: #c38f43;
  border-color: rgba(195, 143, 67, 0.7);
  gap: 28px;
}

/* Ajuste adicional: productos mas compacto */
.products__grid {
  margin-top: clamp(99px, 9.45vw, 123px) !important;
}

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

  .about__media {
    min-height: 48svh;
    height: 48svh;
  }

  .about__media img {
    min-height: 48svh;
  }

  .about__content {
    min-height: 52svh;
    max-width: none;
    padding: 54px 26px 70px;
  }
}

@media (max-width: 760px) {
  .products__grid {
    margin-top: 75px !important;
  }

  .about__media {
    height: 48svh;
    min-height: 48svh;
  }

  .about__content {
    padding: 48px 24px 64px;
  }

  .about__content h2 {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .about__content p {
    font-size: 14px;
    line-height: 1.58;
  }
}

/* Ajustes v10: transicion de secciones + About 50/50 */
.hero__content,
.section-motion-content {
  opacity: var(--motion-opacity, 0) !important;
  transform: translate3d(0, var(--motion-y, 70px), 0) !important;
  transition:
    opacity 820ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.hero.is-visible .hero__content {
  opacity: var(--motion-opacity, 1) !important;
}

.about {
  min-height: 100svh !important;
  height: 100svh;
  background: #ffffff !important;
  color: #1C1A1A !important;
  overflow: hidden;
}

.about__motion {
  min-height: 100svh !important;
  height: 100svh;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
}

.about__media {
  margin: 0 !important;
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden !important;
  background: #fafafa !important;
}

.about__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.about__content {
  min-height: 100svh !important;
  height: 100svh !important;
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: clamp(90px, 9vw, 130px) clamp(66px, 8vw, 116px) clamp(74px, 8vw, 110px) !important;
  color: #1C1A1A !important;
}

.about__content h2 {
  color: #1C1A1A !important;
  font-size: clamp(37px, 3.5vw, 50px) !important;
  margin: 0 0 26px !important;
}

.about__content p {
  max-width: 525px;
  color: #1C1A1A !important;
  font-size: clamp(10.5px, 0.86vw, 12px) !important;
  line-height: 1.58 !important;
  letter-spacing: 0.025em !important;
  text-align: justify !important;
  margin: 0 0 22px !important;
}

.about__link {
  color: #1C1A1A !important;
  border-bottom-color: rgba(28, 26, 26, 0.48) !important;
}

@media (max-width: 900px) {
  .about {
    height: auto;
    min-height: 100svh !important;
    overflow: visible;
  }

  .about__motion {
    height: auto;
    min-height: 100svh !important;
    grid-template-columns: 1fr !important;
  }

  .about__media {
    height: 50svh !important;
    min-height: 50svh !important;
  }

  .about__content {
    height: auto !important;
    min-height: 50svh !important;
    padding: 56px 26px 72px !important;
    align-items: flex-start !important;
  }

  .about__content p {
    font-size: 12px !important;
  }
}

/* Ajustes v11: fade real en scroll, about mas centrado e imagenes finales */
html {
  scroll-snap-type: y proximity;
}

.hero__content,
.section-motion-content {
  opacity: var(--motion-opacity, 0) !important;
  transform: translate3d(0, var(--motion-y, 70px), 0) !important;
  transition:
    opacity 520ms linear,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.product-category__media {
  background: #fafafa !important;
}

.product-category__media img {
  object-fit: contain !important;
  padding: clamp(18px, 2.4vw, 32px);
}

.about__content {
  align-items: center !important;
  padding-left: clamp(52px, 6vw, 88px) !important;
  padding-right: clamp(52px, 6vw, 88px) !important;
}

.about__content h2,
.about__content p,
.about__link {
  width: min(100%, 430px) !important;
}

.about__content h2 {
  margin-bottom: 24px !important;
}

.about__content p {
  max-width: 430px !important;
  font-size: clamp(10px, 0.82vw, 11.5px) !important;
  line-height: 1.56 !important;
  margin-bottom: 20px !important;
}

.about__link {
  margin-top: 54px !important;
}

@media (max-width: 900px) {
  .about__content {
    align-items: center !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .about__content h2,
  .about__content p,
  .about__link {
    width: min(100%, 440px) !important;
  }

  .about__link {
    margin-top: 42px !important;
  }
}

@media (max-width: 760px) {
  .product-category__media img {
    padding: 16px;
  }
}

/* Ajustes v12: fade real sin variables, mobile 1 pantalla y text button limpio */
.hero__content,
.section-motion-content {
  opacity: 0;
  transform: translate3d(0, 70px, 0);
  transition:
    opacity 760ms ease,
    transform 1040ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.hero.is-visible .hero__content {
  opacity: 1;
}

.products,
.about {
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden !important;
}

.products__motion,
.about__motion {
  height: 100svh !important;
  min-height: 100svh !important;
}

.products {
  padding-top: clamp(96px, 9vw, 120px) !important;
  padding-bottom: clamp(36px, 4vw, 54px) !important;
}

.products__grid {
  margin-top: clamp(74px, 7.2vw, 94px) !important;
}

.about__content {
  justify-content: center !important;
  align-items: center !important;
}

.about__content h2,
.about__content p {
  width: min(100%, 410px) !important;
}

.about__content p {
  max-width: 410px !important;
  margin-bottom: 18px !important;
}

.about__link {
  width: fit-content !important;
  max-width: none !important;
  margin-top: 64px !important;
  gap: 24px !important;
  border-bottom: 1px solid rgba(28, 26, 26, 0.48) !important;
}

.about__link span:last-child {
  display: inline-block;
  font-size: 0;
  width: 30px;
  height: 1px;
  background: currentColor;
  position: relative;
  top: -1px;
}

.about__link span:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 900px) {
  .products,
  .about {
    height: 100svh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .products {
    padding: 86px 20px 28px !important;
    justify-content: center !important;
  }

  .products__intro h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .products__intro p {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    margin-top: 16px !important;
  }

  .products__grid {
    margin-top: clamp(44px, 8vh, 62px) !important;
    gap: clamp(20px, 4vh, 28px) 18px !important;
  }

  .product-category__media img {
    padding: 14px !important;
  }

  .product-category__title {
    margin-top: 12px !important;
    font-size: 9px !important;
  }

  .about__motion {
    grid-template-columns: 1fr !important;
    grid-template-rows: 50svh 50svh !important;
    height: 100svh !important;
    min-height: 100svh !important;
  }

  .about__media {
    height: 50svh !important;
    min-height: 50svh !important;
  }

  .about__content {
    height: 50svh !important;
    min-height: 50svh !important;
    padding: 34px 24px 42px !important;
    justify-content: center !important;
  }

  .about__content h2,
  .about__content p {
    width: min(100%, 420px) !important;
  }

  .about__content h2 {
    font-size: 35px !important;
    margin-bottom: 18px !important;
  }

  .about__content p {
    font-size: 10.8px !important;
    line-height: 1.48 !important;
    margin-bottom: 14px !important;
  }

  .about__link {
    margin-top: 34px !important;
  }
}

@media (max-width: 420px) {
  .products {
    padding-top: 78px !important;
  }

  .products__grid {
    margin-top: 40px !important;
    gap: 20px 16px !important;
  }

  .about__media {
    height: 49svh !important;
    min-height: 49svh !important;
  }

  .about__motion {
    grid-template-rows: 49svh 51svh !important;
  }

  .about__content {
    height: 51svh !important;
    min-height: 51svh !important;
    padding: 30px 20px 38px !important;
  }
}

/* Fix v5: motion estable sin ocultar secciones */
.hero__content,
.section-motion-content {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

.products,
.about {
  position: relative;
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.products__motion,
.about__motion {
  height: 100svh !important;
  min-height: 100svh !important;
}

/* About: 50/50 desktop y texto centrado en su bloque */
.about__motion {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

.about__media {
  height: 100svh !important;
  min-height: 100svh !important;
}

.about__media img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.about__content {
  height: 100svh !important;
  min-height: 100svh !important;
  color: #1C1A1A !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  padding: clamp(96px, 9vw, 130px) clamp(54px, 6.5vw, 92px) clamp(74px, 7vw, 110px) !important;
}

.about__content h2,
.about__content p {
  width: min(100%, 410px) !important;
  color: #1C1A1A !important;
}

.about__content p {
  max-width: 410px !important;
  font-size: clamp(10px, 0.82vw, 11.5px) !important;
  line-height: 1.56 !important;
}

.about__link {
  width: fit-content !important;
  margin-top: 66px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(28, 26, 26, 0.5) !important;
  color: #1C1A1A !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 24px !important;
}

.about__link span:last-child {
  display: inline-block !important;
  font-size: 0 !important;
  width: 34px !important;
  height: 1px !important;
  background: currentColor !important;
  position: relative !important;
  top: 0 !important;
}

.about__link span:last-child::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  width: 7px !important;
  height: 7px !important;
  border-top: 1px solid currentColor !important;
  border-right: 1px solid currentColor !important;
  transform: translateY(-50%) rotate(45deg) !important;
}

@media (max-width: 900px) {
  .about__motion {
    grid-template-columns: 1fr !important;
    grid-template-rows: 50svh 50svh !important;
  }

  .about__media,
  .about__content {
    height: 50svh !important;
    min-height: 50svh !important;
  }

  .about__content {
    padding: 32px 24px 40px !important;
  }

  .about__content h2 {
    font-size: 35px !important;
    margin-bottom: 18px !important;
  }

  .about__content p {
    font-size: 10.8px !important;
    line-height: 1.48 !important;
    margin-bottom: 14px !important;
  }

  .about__link {
    margin-top: 34px !important;
  }
}

/* Ajuste v6: hero con imagen desktop/mobile de fondo */
:root {
  --bg: #ffffff;
}

body,
.hero,
.hero__header,
.site-menu__panel {
  background: #ffffff !important;
}

.hero {
  position: relative !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: relative !important;
  z-index: 2 !important;
  min-height: 100svh !important;
  width: 100% !important;
  max-width: none !important;
  padding: clamp(88px, 9vw, 118px) 24px clamp(60px, 7vw, 82px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.hero__title {
  margin-top: clamp(74px, 9.4vh, 118px) !important;
}

.hero__button {
  position: absolute !important;
  top: auto !important;
  bottom: clamp(52px, 8.4vh, 82px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.hero__button:hover {
  transform: translateX(-50%) translateY(-2px) !important;
}

.hero__product {
  display: none !important;
}

/* Fade mas evidente para las secciones que salen */
.hero__content,
.section-motion-content {
  transition:
    opacity 520ms linear,
    transform 1020ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (max-width: 760px) {
  .hero__background img {
    object-position: center center;
  }

  .hero__content {
    padding: 82px 18px 54px !important;
  }

  .hero__title {
    margin-top: clamp(142px, 18vh, 172px) !important;
  }

  .hero__title span {
    font-size: clamp(30px, 8vw, 42px) !important;
  }

  .hero__title strong {
    font-size: clamp(55px, 15vw, 78px) !important;
  }

  .hero__button {
    bottom: clamp(64px, 8.5vh, 92px) !important;
  }
}

/* Ajustes v7: hero final, entrada premium y navbar transparente en hero */
.hero__header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition:
    background 520ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-backdrop-filter 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.is-scrolled .hero__header,
body.menu-open .hero__header {
  background: rgba(255, 255, 255, 0.74) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  box-shadow: none !important;
}

.hero__background {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(1.012);
  will-change: opacity, transform;
}

.hero.is-visible .hero__background {
  animation: heroBackgroundRise 1800ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.hero__title {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  will-change: opacity, transform;
}

.hero.is-visible .hero__title {
  animation: heroTitleRise 1700ms cubic-bezier(0.16, 1, 0.3, 1) 320ms forwards !important;
}

.hero__button {
  opacity: 0;
  will-change: opacity, transform;
  transform: translate3d(-50%, 42px, 0) !important;
}

.hero.is-visible .hero__button {
  animation: heroButtonRise 1650ms cubic-bezier(0.16, 1, 0.3, 1) 760ms forwards !important;
}

.hero__button:hover {
  transform: translate3d(-50%, -2px, 0) !important;
}

@keyframes heroBackgroundRise {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(1.012);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroTitleRise {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroButtonRise {
  from {
    opacity: 0;
    transform: translate3d(-50%, 42px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__background,
  .hero__title,
  .hero__button {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero__button {
    transform: translateX(-50%) !important;
  }
}

/* Ajustes v8: hero desaparece como bloque, Productos centrado y CTA About limpio */
.hero__background,
.hero__content,
.section-motion-content {
  transition:
    opacity 220ms linear,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform !important;
}

.products {
  height: 100svh !important;
  min-height: 100svh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(84px, 8vw, 112px) clamp(24px, 7vw, 92px) clamp(48px, 5vw, 72px) !important;
}

.products__motion {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
}

.products__grid {
  margin-top: clamp(62px, 6.2vw, 82px) !important;
}

.about__content {
  align-items: center !important;
}

.about__text {
  width: min(100%, 410px) !important;
  color: #1C1A1A !important;
}

.about__text h2,
.about__text p {
  width: 100% !important;
  color: #1C1A1A !important;
}

.about__text p {
  max-width: 410px !important;
}

.about__link {
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: none !important;
  margin-top: 60px !important;
  gap: 18px !important;
  padding-bottom: 7px !important;
  border-bottom: 1px solid rgba(28, 26, 26, 0.48) !important;
}

.about__link span:last-child {
  width: 22px !important;
  height: 1px !important;
}

.about__link span:last-child::after {
  width: 5px !important;
  height: 5px !important;
}

.about__link:hover {
  gap: 22px !important;
}

@media (max-width: 900px) {
  .products {
    padding: 84px 20px 34px !important;
  }

  .products__grid {
    margin-top: clamp(42px, 7vh, 56px) !important;
  }

  .about__text {
    width: min(100%, 420px) !important;
  }

  .about__link {
    margin-top: 32px !important;
  }
}

@media (max-width: 420px) {
  .products__grid {
    margin-top: 38px !important;
  }
}

/* Ajustes v9: categorias nuevas, hover estable y hero sale antes */
.products__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  max-width: 1120px !important;
}

.hero__button:hover {
  background: transparent !important;
  color: var(--ink) !important;
  transform: translate3d(-50%, 0, 0) !important;
}

.hero__button:focus-visible {
  transform: translate3d(-50%, 0, 0) !important;
}

.product-category__media img[src*="category-sillas"] {
  padding: clamp(16px, 2vw, 28px) !important;
}

@media (max-width: 900px) {
  .products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 680px !important;
  }
}

@media (max-width: 760px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 420px) {
  .products__grid {
    gap: 18px 14px !important;
  }
}

/* Ajustes v10: botón hero sin salto, categorías más legibles y quinto elemento centrado */
.hero__button,
.hero__button:hover,
.hero__button:focus,
.hero__button:focus-visible,
.hero__button:active {
  transform: translate3d(-50%, -2px, 0) !important;
  transition: opacity 420ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease !important;
}

.hero.is-visible .hero__button {
  animation: heroButtonRise 1650ms cubic-bezier(0.16, 1, 0.3, 1) 760ms forwards !important;
}

@keyframes heroButtonRise {
  from {
    opacity: 0;
    transform: translate3d(-50%, 42px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, -2px, 0);
  }
}

.product-category__title {
  font-size: clamp(12px, 0.95vw, 14px) !important;
}

@media (max-width: 760px) {
  .product-category__title {
    font-size: clamp(11px, 2.8vw, 13px) !important;
  }

  .products__grid .product-category:last-child {
    grid-column: 1 / -1 !important;
    width: calc((100% - 18px) / 2) !important;
    justify-self: center !important;
  }
}

@media (max-width: 420px) {
  .products__grid .product-category:last-child {
    width: calc((100% - 14px) / 2) !important;
  }
}

/* Ajustes v11: Products centrado, cards mas grandes y labels mas discretos */
.products {
  padding: clamp(62px, 5.8vw, 88px) clamp(20px, 4.5vw, 56px) clamp(52px, 5.4vw, 80px) !important;
  align-items: center !important;
  justify-content: center !important;
}

.products__motion {
  width: min(100%, 1344px) !important;
  margin: -3vh auto 0 !important;
}

.products__grid {
  width: min(100%, 1344px) !important;
  max-width: 1344px !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(30px, 3vw, 42px) !important;
  margin-top: clamp(54px, 5.2vw, 70px) !important;
}

.product-category__media {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
}

.product-category__media img {
  padding: clamp(12px, 1.8vw, 24px) !important;
}

.product-category__title {
  margin-top: 18px !important;
  font-size: clamp(9.5px, 0.76vw, 11.2px) !important;
  letter-spacing: 0.34em !important;
}

@media (max-width: 900px) {
  .products {
    padding: 78px 20px 40px !important;
  }

  .products__motion {
    margin-top: 0 !important;
  }

  .products__grid {
    max-width: 720px !important;
    gap: 24px 18px !important;
    margin-top: 46px !important;
  }

  .product-category__title {
    font-size: clamp(8.8px, 2.2vw, 10.4px) !important;
  }
}

@media (max-width: 760px) {
  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .products__grid .product-category:last-child {
    grid-column: 1 / -1 !important;
    width: calc((100% - 18px) / 2) !important;
    justify-self: center !important;
  }
}

@media (max-width: 420px) {
  .products {
    padding: 78px 20px 36px !important;
  }

  .products__grid {
    gap: 22px 14px !important;
    margin-top: 42px !important;
  }

  .products__grid .product-category:last-child {
    width: calc((100% - 14px) / 2) !important;
  }
}

/* Lifestyle carousel v17 */
.lifestyle {
  position: relative;
  height: 100svh !important;
  min-height: 100svh !important;
  overflow: hidden !important;
  background: #ffffff !important;
  scroll-snap-align: start;
}

.lifestyle__motion {
  --lifestyle-gap: clamp(16px, 1.55vw, 22px);
  --lifestyle-tile: clamp(230px, 22vw, 310px);
  height: 100svh !important;
  min-height: 100svh !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(82px, 8vw, 108px) clamp(28px, 3.4vw, 48px) clamp(42px, 5vw, 58px);
}

.lifestyle__carousel {
  width: min(calc((var(--lifestyle-tile) * 3) + (var(--lifestyle-gap) * 2)), calc(100vw - 56px));
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.lifestyle__track {
  display: grid;
  grid-template-rows: repeat(2, var(--lifestyle-tile));
  grid-auto-columns: var(--lifestyle-tile);
  grid-auto-flow: column dense;
  gap: var(--lifestyle-gap);
  width: max-content;
  min-width: max-content;
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  padding: 0;
  align-content: center;
}

.lifestyle__track::-webkit-scrollbar {
  display: none;
}

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

.lifestyle-item {
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
  scroll-snap-align: start;
}

.lifestyle-card__placeholder {
  width: 100%;
  height: 100%;
  background: #d9d9d9;
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: one large image plus two small stacked images. */
.lifestyle-item:nth-child(3n + 1) {
  grid-row: span 2;
  grid-column: span 2;
}

.lifestyle-item:nth-child(3n + 2) {
  grid-row: 1;
  grid-column: span 1;
}

.lifestyle-item:nth-child(3n + 3) {
  grid-row: 2;
  grid-column: span 1;
}

@media (max-width: 1100px) and (min-width: 701px) {
  .lifestyle__motion {
    --lifestyle-gap: 14px;
    --lifestyle-tile: clamp(190px, 22vw, 245px);
    padding: 86px 24px 42px;
  }

  .lifestyle__carousel {
    width: min(calc((var(--lifestyle-tile) * 3) + (var(--lifestyle-gap) * 2)), calc(100vw - 48px));
  }
}

/* Mobile: vertical gallery, no horizontal carousel. */
@media (max-width: 700px) {
  .lifestyle {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
    scroll-snap-align: start;
  }

  .lifestyle__motion {
    height: auto !important;
    min-height: 100svh !important;
    display: block !important;
    padding: 86px 18px 42px !important;
  }

  .lifestyle__carousel {
    overflow: visible !important;
    width: 100% !important;
  }

  .lifestyle__track {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    overflow: visible !important;
    cursor: default !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .lifestyle-item,
  .lifestyle-item:nth-child(n) {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
  }

  .lifestyle-item:nth-child(3n + 1) {
    aspect-ratio: 4 / 5 !important;
  }

  .lifestyle-item.is-loop-clone {
    display: none !important;
  }
}


/* Products listing page */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 46px;
  padding: 14px 28px;
  border: 1px solid #1c1a1a;
  background: transparent;
  color: #1c1a1a;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.34em;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #1c1a1a;
  color: #ffffff;
}

.products__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 3.2vw, 46px);
}

.products__view-all {
  min-width: 168px;
}

body.product-page {
  min-height: 100svh;
  background: #ffffff !important;
  color: #2c2c2c;
  overflow-x: hidden;
}

body.product-page .hero__header {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.08) !important;
  box-shadow: none !important;
}

.product-header__brand {
  color: #2c2c2c;
}

.products-page {
  min-height: 100svh;
  background: #ffffff;
  padding: clamp(132px, 12vw, 156px) clamp(18px, 5vw, 64px) clamp(56px, 7vw, 84px);
}

.products-page__inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.products-page h1 {
  margin: 0;
  color: #050505;
  font-size: clamp(27px, 2.55vw, 34px);
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.products-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px clamp(24px, 3.3vw, 36px);
  margin-top: clamp(46px, 4.4vw, 58px);
}

.products-filter__item {
  position: relative;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0 0 5px;
  color: rgba(44, 44, 44, 0.38);
  font-family: inherit;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease;
}

.products-filter__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.34em;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms ease;
}

.products-filter__item:hover,
.products-filter__item.is-active {
  color: #111111;
}

.products-filter__item.is-active::after {
  transform: scaleX(1);
}

.products-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 2.4vw, 32px);
  margin-top: clamp(94px, 7.6vw, 104px);
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fafafa;
  overflow: hidden;
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(20px, 2.2vw, 34px);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card--empty::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fafafa;
}

.product-card.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .products__actions {
    margin-top: 26px;
  }

  .products-page {
    padding: 122px 22px 54px;
  }

  .products-page__inner {
    width: min(100%, 680px);
  }

  .products-filter {
    gap: 16px 24px;
    margin-top: 38px;
  }

  .products-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 56px;
  }
}

@media (max-width: 640px) {
  .primary-button {
    min-width: 156px;
    min-height: 42px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .products-page {
    padding: 108px 18px 44px;
  }

  .products-page h1 {
    font-size: clamp(21px, 6.2vw, 26px);
    letter-spacing: 0.2em;
  }

  .products-filter {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .products-filter::-webkit-scrollbar {
    display: none;
  }

  .products-filter__item {
    flex: 0 0 auto;
    font-size: 8.5px;
    letter-spacing: 0.28em;
    padding-bottom: 4px;
  }

  .products-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
  }

  .product-card img {
    padding: 18px;
  }
}

/* Product detail page */
.product-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-detail-page {
  min-height: 100svh;
  background: #ffffff;
  color: #1e1e1e;
}

.product-detail {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 116px 28px 72px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 52px;
  color: rgba(44, 44, 44, 0.34);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.product-breadcrumb a,
.product-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  color: rgba(44, 44, 44, 0.72);
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: clamp(46px, 5.4vw, 76px);
  align-items: start;
}

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

.product-gallery__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f5f2;
}

.product-gallery__item--hero {
  grid-column: 1 / -1;
}

.product-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__item--hero img,
.product-gallery__item:nth-child(2) img,
.product-gallery__item:nth-child(3) img {
  object-fit: contain;
  padding: clamp(34px, 4vw, 62px);
}

.product-info {
  position: sticky;
  top: 124px;
  padding-top: 34px;
}

.product-info h1 {
  margin: 0 0 28px;
  color: #050505;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.product-info__description {
  max-width: 390px;
  margin: 0;
  color: rgba(44, 44, 44, 0.42);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.product-info__divider {
  width: 100%;
  height: 1px;
  margin: 38px 0 32px;
  background: rgba(44, 44, 44, 0.18);
}

.product-option,
.product-spec {
  margin: 0 0 28px;
}

.product-option h2,
.product-spec h2 {
  margin: 0 0 16px;
  color: #2c2c2c;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.product-swatches {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-swatch {
  appearance: none;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  padding: 3px;
  cursor: pointer;
}

.product-swatch::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--swatch, #999999);
}

.product-swatch.is-active {
  border-color: #2c2c2c;
}

.product-spec p {
  margin: 0;
  color: rgba(44, 44, 44, 0.42);
  font-size: 11px;
  line-height: 1.6;
  font-weight: 400;
}

.product-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  border: 1px solid #282725;
  background: #282725;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}

.product-quote:hover {
  background: transparent;
  color: #282725;
}

.product-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 86%;
  height: 82%;
  align-items: center;
  justify-items: center;
  color: rgba(44, 44, 44, 0.56);
}

.product-diagram__front {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 24px 12px 22px;
}

.product-diagram__front small {
  margin-top: 10px;
  color: #2c2c2c;
  font-size: 5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-diagram__chair {
  position: relative;
  width: 70%;
  height: 54%;
  border: 1px solid rgba(44, 44, 44, 0.54);
  border-radius: 16% 16% 8% 8%;
}

.product-diagram__chair::before,
.product-diagram__chair::after {
  content: "";
  position: absolute;
  background: rgba(44, 44, 44, 0.54);
}

.product-diagram__chair--front::before {
  left: 13%;
  right: 13%;
  top: 46%;
  height: 1px;
}

.product-diagram__chair--front::after {
  left: 20%;
  right: 20%;
  bottom: -18%;
  height: 34%;
  border-left: 1px solid rgba(44, 44, 44, 0.54);
  border-right: 1px solid rgba(44, 44, 44, 0.54);
  background: transparent;
}

.product-diagram__chair--plan {
  border-radius: 12%;
}

.product-diagram__chair--plan::before {
  left: 12%;
  right: 12%;
  top: 22%;
  height: 1px;
}

.product-diagram__chair--plan::after {
  left: 12%;
  right: 12%;
  bottom: 22%;
  height: 1px;
}

.product-diagram__line {
  position: absolute;
  color: rgba(44, 44, 44, 0.62);
  font-size: 5px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.product-diagram__line--top {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.product-diagram__line--top::before {
  content: "";
  position: absolute;
  left: -23px;
  right: -23px;
  top: 50%;
  height: 1px;
  background: rgba(44, 44, 44, 0.36);
  transform: translateY(-50%);
  z-index: -1;
}

.product-diagram__line--side {
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 900px) {
  .product-detail {
    width: min(100%, 720px);
    padding: 106px 22px 58px;
  }

  .product-breadcrumb {
    margin-bottom: 34px;
    gap: 10px;
    font-size: 8.5px;
    letter-spacing: 0.28em;
  }

  .product-detail__layout {
    display: block;
  }

  .product-info {
    position: static;
    padding-top: 38px;
  }

  .product-info h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .product-info__description {
    max-width: none;
    font-size: 11px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 640px) {
  .product-detail {
    padding: 100px 18px 46px;
  }

  .product-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .product-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .product-gallery {
    gap: 14px;
  }

  .product-gallery__item--hero img,
  .product-gallery__item:nth-child(2) img,
  .product-gallery__item:nth-child(3) img {
    padding: 24px;
  }

  .product-info {
    padding-top: 34px;
  }

  .product-info h1 {
    margin-bottom: 22px;
    font-size: 43px;
  }

  .product-info__description {
    font-size: 10.5px;
    line-height: 1.66;
    letter-spacing: 0.14em;
  }

  .product-info__divider {
    margin: 30px 0 26px;
  }

  .product-swatch {
    width: 30px;
    height: 30px;
  }

  .product-quote {
    min-height: 54px;
    font-size: 13px;
    letter-spacing: 0.22em;
  }
}

/* Mobile product detail bottom sheet behavior */
.product-mobile-tabs,
.product-mobile-section-title {
  display: none;
}

@media (max-width: 820px) {
  body.product-detail-page {
    background: #ffffff;
    overflow-x: hidden;
  }

  body.product-detail-page .product-header {
    height: 65px;
    min-height: 65px;
    background: #ffffff !important;
    color: #2c2c2c !important;
    box-shadow: none;
  }

  body.product-detail-page .product-header .brand {
    width: min(184px, 46vw);
  }

  body.product-detail-page .product-header .menu-toggle {
    color: #2c2c2c !important;
  }

  .product-detail {
    width: 100%;
    padding: 65px 0 0;
  }

  .product-breadcrumb {
    display: none;
  }

  .product-detail__layout {
    display: block;
  }

  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .product-gallery__item,
  .product-gallery__item--hero,
  .product-gallery__item--diagram {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 0;
    background: #f2f2f2;
  }

  .product-gallery__item + .product-gallery__item {
    margin-top: 0;
  }

  .product-gallery__item img,
  .product-gallery__item--hero img,
  .product-gallery__item:nth-child(2) img,
  .product-gallery__item:nth-child(3) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px 20px;
  }

  .product-gallery__item:nth-child(n + 4) img {
    object-fit: cover;
    padding: 0;
  }

  .product-info {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    z-index: 90;
    width: 100vw;
    max-height: calc(100svh - 65px);
    padding: 24px 25px max(22px, env(safe-area-inset-bottom));
    background: #ffffff;
    color: #1e1e1e;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, calc(100% + 24px), 0);
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1), max-height 420ms cubic-bezier(.22, 1, .36, 1), box-shadow 420ms ease;
    box-shadow: none;
    cursor: pointer;
    pointer-events: none;
    will-change: transform;
  }

  .product-info.is-peeking {
    transform: translate3d(0, 0, 0);
    max-height: min(310px, 58svh);
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.04);
    pointer-events: auto;
  }

  .product-info.is-expanded {
    transform: translate3d(0, 0, 0);
    max-height: calc(100svh - 65px);
    cursor: pointer;
    box-shadow: 0 -20px 55px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
  }

  .product-info h1 {
    margin: 0 0 24px;
    font-size: clamp(40px, 14vw, 52px);
    line-height: 0.9;
  }

  .product-mobile-tabs {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 22px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .product-mobile-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-mobile-tab {
    appearance: none;
    border: 0;
    border-bottom: 1px solid transparent;
    padding: 0 0 5px;
    background: transparent;
    color: rgba(44, 44, 44, 0.26);
    font-family: "Montserrat", sans-serif;
    font-size: 8px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .product-mobile-tab.is-active {
    color: #2c2c2c;
    border-bottom-color: #2c2c2c;
  }

  .product-mobile-section-title {
    display: none;
    margin: 0 0 18px;
    color: #2c2c2c;
    font-size: 9px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .product-info.is-expanded .product-mobile-section-title--description {
    display: block;
  }

  .product-info__description {
    max-width: none;
    margin: 0;
    font-size: 9.5px;
    line-height: 1.45;
    letter-spacing: 0.12em;
  }

  .product-info__divider {
    display: none;
  }

  .product-option,
  .product-spec {
    margin: 0 0 32px;
  }

  .product-option h2,
  .product-spec h2 {
    margin-bottom: 17px;
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .product-spec p {
    font-size: 10.5px;
    color: rgba(44, 44, 44, 0.42);
  }

  .product-swatches {
    gap: 10px;
  }

  .product-swatch {
    width: 29px;
    height: 29px;
  }

  .product-quote {
    min-height: 52px;
    margin-top: 22px;
    font-size: 14px;
    letter-spacing: 0.22em;
  }

  .product-info:not(.is-expanded) .product-option,
  .product-info:not(.is-expanded) .product-spec {
    display: none;
  }

  .product-info:not(.is-expanded)[data-active-tab="tapizado"] .product-info__description,
  .product-info:not(.is-expanded)[data-active-tab="materiales"] .product-info__description,
  .product-info:not(.is-expanded)[data-active-tab="medidas"] .product-info__description {
    display: none;
  }

  .product-info:not(.is-expanded)[data-active-tab="tapizado"] [data-product-section="tapizado"],
  .product-info:not(.is-expanded)[data-active-tab="materiales"] [data-product-section="materiales"],
  .product-info:not(.is-expanded)[data-active-tab="medidas"] [data-product-section="medidas"] {
    display: block;
    margin-bottom: 0;
  }

  .product-info:not(.is-expanded) .product-quote {
    margin-top: 26px;
  }

  .product-info.is-expanded .product-mobile-tabs {
    display: none;
  }

  .product-info.is-expanded .product-info__description {
    display: block;
    margin-bottom: 17px;
  }

  .product-info.is-expanded .product-option,
  .product-info.is-expanded .product-spec {
    display: block;
  }
}

/* v16: robust mobile bottom sheet override */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    z-index: 1000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100vw !important;
    max-width: none !important;
    max-height: min(310px, 58svh) !important;
    margin: 0 !important;
    padding: 24px 25px max(22px, env(safe-area-inset-bottom)) !important;
    background: #ffffff !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    transform: translate3d(0, 0, 0) !important;
    transition: transform 420ms cubic-bezier(.22, 1, .36, 1), max-height 420ms cubic-bezier(.22, 1, .36, 1), box-shadow 260ms ease !important;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.04) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 28px), 0) !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    transform: translate3d(0, 0, 0) !important;
    max-height: calc(100svh - 65px) !important;
    box-shadow: 0 -20px 55px rgba(0, 0, 0, 0.06) !important;
    pointer-events: auto !important;
  }
}

/* v17: hard fix - mobile product bottom sheet must live on viewport, not inside gallery flow */
@media (max-width: 820px) {
  body.product-detail-page {
    padding-bottom: 0 !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    z-index: 2147483000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 0 !important;
    max-height: min(312px, 58svh) !important;
    margin: 0 !important;
    padding: 24px 25px max(22px, env(safe-area-inset-bottom)) !important;
    background: #fff !important;
    color: #1e1e1e !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    transform: translate3d(0, 0, 0) !important;
    translate: none !important;
    contain: none !important;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.045) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 32px), 0) !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    transform: translate3d(0, 0, 0) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    transform: translate3d(0, 0, 0) !important;
    max-height: calc(100svh - 65px) !important;
    box-shadow: 0 -20px 55px rgba(0, 0, 0, 0.06) !important;
    pointer-events: auto !important;
  }
}

/* v18: explicit mobile sheet chevron controls */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    padding-top: 54px !important;
    cursor: default !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    cursor: default !important;
  }

  .product-sheet-toggle {
    display: none;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle {
    appearance: none;
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    transform: translateX(-50%);
    cursor: pointer;
  }

  .product-sheet-toggle__icon {
    position: relative;
    display: block;
    width: 42px;
    height: 22px;
    margin: auto;
    transition: transform 240ms ease;
  }

  .product-sheet-toggle__icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='42' height='22' viewBox='0 0 42 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 15L21 7L38 15' stroke='%23050505' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .product-sheet-toggle__icon::after {
    content: none;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon {
    transform: rotate(180deg);
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet .product-sheet-toggle {
    pointer-events: none;
  }
}

@media (min-width: 821px) {
  .product-sheet-toggle {
    display: none !important;
  }
}


/* Floating WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 56px;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f1e1d;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #111111;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.whatsapp-float__icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}

.whatsapp-float__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  .whatsapp-float__label {
    display: none;
  }
}

/* v21: smoother mobile product sheet transitions + morphing chevron */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    transition:
      transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 820ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 620ms ease,
      opacity 520ms ease !important;
    will-change: transform, max-height !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 18px), 0) !important;
    opacity: 0.98 !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    opacity: 1 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle {
    top: 8px !important;
    width: 64px !important;
    height: 38px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon {
    position: relative !important;
    width: 48px !important;
    height: 24px !important;
    margin: auto !important;
    transition: none !important;
    transform: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::before,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::after {
    content: "" !important;
    position: absolute !important;
    top: 11px !important;
    width: 25px !important;
    height: 2.6px !important;
    background: #050505 !important;
    border-radius: 999px !important;
    background-image: none !important;
    transition:
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
      left 620ms cubic-bezier(0.16, 1, 0.3, 1),
      right 620ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::before {
    left: 1px !important;
    transform-origin: right center !important;
    transform: rotate(-23deg) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::after {
    right: 1px !important;
    transform-origin: left center !important;
    transform: rotate(23deg) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon {
    transform: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon::before {
    left: 1px !important;
    transform: rotate(23deg) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon::after {
    right: 1px !important;
    transform: rotate(-23deg) !important;
  }
}


/* v22: softer expansion for mobile product sheet + first product gallery polish */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, max-height, box-shadow, opacity !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    max-height: min(310px, 58svh) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    max-height: calc(100svh - 65px) !important;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 980ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: productSheetContentIn 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option { animation-delay: 70ms; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec { animation-delay: 120ms; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote { animation-delay: 170ms; }
}

@keyframes productSheetContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* v23: full-bleed product gallery images + calmer sheet expansion + clean chevron swap */
.product-detail-page .product-gallery__item img,
.product-detail-page .product-gallery__item--hero img,
.product-detail-page .product-gallery__item:nth-child(2) img,
.product-detail-page .product-gallery__item:nth-child(3) img,
.product-detail-page .product-gallery__item:nth-child(n + 4) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
}

@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    height: min(310px, 58svh) !important;
    max-height: none !important;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1320ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 860ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, height, box-shadow, opacity !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    height: min(310px, 58svh) !important;
    max-height: none !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: calc(100svh - 65px) !important;
    max-height: none !important;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 860ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: productSheetContentInV23 1180ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option { animation-delay: 120ms !important; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec { animation-delay: 190ms !important; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote { animation-delay: 260ms !important; }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon {
    position: relative !important;
    width: 52px !important;
    height: 24px !important;
    transform: none !important;
    transition: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::before,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    width: 52px !important;
    height: 24px !important;
    background-color: transparent !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 52px 24px !important;
    border-radius: 0 !important;
    transition:
      opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::before {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='24' viewBox='0 0 52 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15.5L26 9L40 15.5' stroke='%23050505' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle__icon::after {
    opacity: 0 !important;
    transform: translate3d(0, -2px, 0) scale(0.96) !important;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='24' viewBox='0 0 52 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8.5L26 15L40 8.5' stroke='%23050505' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon {
    transform: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon::before {
    opacity: 0 !important;
    transform: translate3d(0, 2px, 0) scale(0.96) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet-toggle__icon::after {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
}

@keyframes productSheetContentInV23 {
  from {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/* v24: lower expanded mobile sheet + keep smooth motion */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(720px, 78svh) !important;
    max-height: min(720px, 78svh) !important;
    transition:
      transform 1240ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1500ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1500ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1240ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 920ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
}

/* v25: keep expanded mobile sheet lower, aligned with product image reveal */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(540px, 54svh) !important;
    max-height: min(540px, 54svh) !important;
    overflow-y: auto !important;
    transition:
      transform 1240ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1500ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1500ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1240ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 920ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded h1 {
    margin-bottom: 22px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 31px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 30px !important;
  }
}


/* v26: product header logo, mobile product categories, WhatsApp label and desktop spacing */
.product-header .brand,
body.product-detail-page .product-header .brand {
  width: clamp(105px, 11vw, 145px) !important;
  max-width: 145px !important;
  min-height: 24px;
  align-items: center;
  overflow: visible !important;
}

.product-header .brand__svg,
body.product-detail-page .product-header .brand__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible !important;
}

@media (max-width: 820px) {
  body.product-detail-page .product-header .brand {
    width: clamp(112px, 31vw, 145px) !important;
    max-width: 145px !important;
  }
}

@media (min-width: 901px) {
  .products__actions {
    margin-top: clamp(58px, 5.4vw, 76px) !important;
  }
}

@media (max-width: 760px) {
  .products {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
    padding-bottom: 86px !important;
  }

  .products__motion {
    margin-top: 0 !important;
  }

  .products__grid {
    margin-top: 34px !important;
    gap: 20px 14px !important;
  }

  .products__actions {
    margin-top: 36px !important;
  }
}

@media (max-width: 420px) {
  .products {
    padding-bottom: 92px !important;
  }

  .products__grid {
    margin-top: 30px !important;
    gap: 18px 12px !important;
  }
}

/* v27: product image lightbox + smooth page entry transitions */
body.product-page .products-page__inner,
body.product-detail-page .product-breadcrumb,
body.product-detail-page .product-detail__layout {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  animation: cgPageEnterUp 1450ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.product-detail-page .product-breadcrumb {
  animation-delay: 80ms;
}

body.product-detail-page .product-detail__layout {
  animation-delay: 160ms;
}

body.is-page-leaving {
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cgPageEnterUp {
  from {
    opacity: 0;
    transform: translate3d(0, 44px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.product-gallery__item {
  cursor: zoom-in;
}

.product-gallery__item img {
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery__item:hover img {
  transform: scale(1.015);
  filter: contrast(1.02);
}

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(245, 244, 241, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-image-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 1280px);
  max-height: min(86svh, 860px);
  object-fit: contain;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox.is-open .product-image-lightbox__image {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.product-image-lightbox__close {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #2b2927;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 360ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox__close::before,
.product-image-lightbox__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1.6px;
  background: currentColor;
  border-radius: 999px;
}

.product-image-lightbox__close::before {
  transform: rotate(45deg);
}

.product-image-lightbox__close::after {
  transform: rotate(-45deg);
}

.product-image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.04);
}

body.has-product-lightbox {
  overflow: hidden;
}

@media (max-width: 820px) {
  body.product-detail-page .product-breadcrumb {
    animation: none;
  }

  body.product-detail-page .product-detail__layout {
    animation-duration: 1280ms;
    animation-delay: 70ms;
  }

  .product-image-lightbox {
    padding: 18px;
  }

  .product-image-lightbox__image {
    max-width: 94vw;
    max-height: 82svh;
  }

  .product-image-lightbox__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* v28: gallery lightbox navigation + mobile modal guard polish */
.product-image-lightbox__image {
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox.is-open .product-image-lightbox__image:not(.is-loaded) {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.992);
  filter: blur(3px);
}

.product-image-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: clamp(46px, 5vw, 60px);
  height: clamp(46px, 5vw, 60px);
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #2b2927;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translate3d(0, -50%, 0);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition:
    background 360ms ease,
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translate3d(0, -50%, 0) scale(1.045);
}

.product-image-lightbox__nav svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.product-image-lightbox__nav path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-image-lightbox__nav--prev {
  left: clamp(18px, 4vw, 52px);
}

.product-image-lightbox__nav--next {
  right: clamp(18px, 4vw, 52px);
}

body.has-product-lightbox [data-mobile-product-sheet] {
  pointer-events: none;
}

@media (max-width: 820px) {
  .product-image-lightbox__nav {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.78);
  }

  .product-image-lightbox__nav svg {
    width: 22px;
    height: 22px;
  }

  .product-image-lightbox__nav--prev {
    left: 12px;
  }

  .product-image-lightbox__nav--next {
    right: 12px;
  }
}

/* v29: unify mobile header logo scale across landing, products and product detail */
@media (max-width: 820px) {
  .hero__header .brand,
  body.product-page .hero__header .brand,
  body.product-detail-page .product-header .brand {
    width: clamp(112px, 31vw, 145px) !important;
    max-width: 145px !important;
    min-height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .hero__header .brand__svg,
  body.product-page .hero__header .brand__svg,
  body.product-detail-page .product-header .brand__svg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
}

/* v30: optional premium product price block */
.product-info__divider--price {
  margin: 34px 0 22px;
}

.product-price[hidden] {
  display: none !important;
}

.product-price {
  margin: 0 0 22px;
}

.product-price__main {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.product-price__amount {
  color: #050505;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-price__stock {
  color: rgba(44, 44, 44, 0.42);
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .product-info__divider--price {
    display: block !important;
    margin: 20px 0 12px !important;
    background: rgba(44, 44, 44, 0.18) !important;
  }

  .product-price {
    margin: 0 0 16px !important;
  }

  .product-price__main {
    gap: 12px;
  }

  .product-price__amount {
    font-size: clamp(29px, 10vw, 39px);
    line-height: 0.95;
  }

  .product-price__stock {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .product-info:not(.is-expanded) .product-info__divider--price,
  .product-info:not(.is-expanded) .product-price {
    display: block !important;
  }

  .product-info:not(.is-expanded)[data-active-tab="tapizado"] .product-info__divider--price,
  .product-info:not(.is-expanded)[data-active-tab="tapizado"] .product-price,
  .product-info:not(.is-expanded)[data-active-tab="materiales"] .product-info__divider--price,
  .product-info:not(.is-expanded)[data-active-tab="materiales"] .product-price,
  .product-info:not(.is-expanded)[data-active-tab="medidas"] .product-info__divider--price,
  .product-info:not(.is-expanded)[data-active-tab="medidas"] .product-price {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price {
    animation: productSheetContentInV23 1180ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
    animation-delay: 250ms !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation-delay: 330ms !important;
  }
}

/* v31: fixed-height mobile sheet with anchored purchase area */
.product-sheet__content,
.product-sheet__purchase {
  display: contents;
}

@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    display: flex !important;
    flex-direction: column !important;
    height: min(410px, 50svh) !important;
    max-height: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 50px 22px max(18px, env(safe-area-inset-bottom)) !important;
    transition:
      transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1080ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 880ms ease !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(440px, 53svh) !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 36px), 0) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 2px 16px 0 !important;
    overscroll-behavior: contain !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content::-webkit-scrollbar {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    display: block !important;
    flex: 0 0 auto !important;
    margin-top: 0 !important;
    background: #fff !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] h1 {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-mobile-tabs {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__description {
    margin-bottom: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-spec {
    margin-bottom: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 26px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price {
    display: block !important;
    margin: 0 0 13px !important;
    flex: 0 0 auto !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    display: block !important;
    margin: 0 0 15px !important;
    flex: 0 0 auto !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 !important;
  }

  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="tapizado"] .product-info__divider--price,
  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="materiales"] .product-info__divider--price,
  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="medidas"] .product-info__divider--price {
    display: block !important;
  }

  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="tapizado"] .product-price:not([hidden]),
  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="materiales"] .product-price:not([hidden]),
  body.product-detail-page .product-info:not(.is-expanded)[data-active-tab="medidas"] .product-price:not([hidden]) {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: none !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    height: min(392px, 50svh) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(424px, 53svh) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__amount {
    font-size: clamp(28px, 9vw, 35px) !important;
  }
}

@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.has-product-price) .product-info__divider--price,
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.has-product-price) .product-price {
    display: none !important;
  }
}

/* v32: no internal scroll in mobile product sheet + smoother scroll hide */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    height: auto !important;
    min-height: min(430px, calc(100svh - 84px)) !important;
    max-height: calc(100svh - 62px) !important;
    overflow: hidden !important;
    padding: 48px 22px max(18px, env(safe-area-inset-bottom)) !important;
    transition:
      transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 880ms cubic-bezier(0.16, 1, 0.3, 1),
      min-height 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 980ms ease !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: auto !important;
    min-height: min(520px, calc(100svh - 62px)) !important;
    max-height: calc(100svh - 62px) !important;
    overflow: hidden !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 44px), 0) !important;
    opacity: 0.985 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    display: block !important;
    flex: 0 0 auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    overscroll-behavior: auto !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    display: block !important;
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding-top: 0 !important;
    background: #fff !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] h1 {
    margin-bottom: 16px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-mobile-tabs {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__description {
    margin-bottom: 22px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider:not(.product-info__divider--price) {
    margin: 0 0 19px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 22px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price {
    margin: 1px 0 13px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    margin: 0 0 15px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    min-height: 50px !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    min-height: min(422px, calc(100svh - 78px)) !important;
    padding: 46px 22px max(18px, env(safe-area-inset-bottom)) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    min-height: min(504px, calc(100svh - 62px)) !important;
    max-height: calc(100svh - 62px) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] h1 {
    font-size: clamp(40px, 12vw, 58px) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__description {
    margin-bottom: 20px !important;
  }
}

/* v32b: keep mobile sheet tabbed in every state, no internal scroll, anchored CTA */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-mobile-tabs {
    display: flex !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="tapizado"] .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="materiales"] .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="medidas"] .product-info__description {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="tapizado"] [data-product-section="tapizado"],
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="materiales"] [data-product-section="materiales"],
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="medidas"] [data-product-section="medidas"] {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-info__description {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not([data-active-tab="description"]) .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-info__divider:not(.product-info__divider--price) {
    display: block !important;
    margin: 0 0 23px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-info__description {
    margin-bottom: 25px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    min-width: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    margin-top: auto !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: none !important;
  }
}

/* v33: repair mobile product sheet structure after price block */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    z-index: 2147483000 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100vw !important;
    max-width: none !important;
    height: min(398px, 52svh) !important;
    min-height: 0 !important;
    max-height: calc(100svh - 64px) !important;
    margin: 0 !important;
    padding: 46px 22px max(18px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.045) !important;
    transform: translate3d(0, 0, 0) !important;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 880ms ease !important;
    pointer-events: auto !important;
    cursor: default !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 44px), 0) !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    height: min(398px, 52svh) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(585px, calc(100svh - 64px)) !important;
    max-height: calc(100svh - 64px) !important;
    overflow: hidden !important;
    box-shadow: 0 -22px 60px rgba(0, 0, 0, 0.065) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet-toggle {
    cursor: pointer !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(44, 44, 44, 0.18) !important;
    background: #fff !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] h1 {
    margin: 0 0 17px !important;
    font-size: clamp(40px, 12vw, 57px) !important;
    line-height: 0.9 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-mobile-tabs {
    display: flex !important;
    margin: 0 0 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-mobile-section-title,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-mobile-section-title--description,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__description {
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 9.2px !important;
    line-height: 1.48 !important;
    letter-spacing: 0.12em !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-spec {
    display: none !important;
    margin: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="tapizado"] .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="materiales"] .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="medidas"] .product-info__description {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="tapizado"] [data-product-section="tapizado"],
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="materiales"] [data-product-section="materiales"],
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="medidas"] [data-product-section="medidas"] {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-spec h2 {
    margin: 0 0 15px !important;
    font-size: 9px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-spec p {
    margin: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.55 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    display: block !important;
    margin: 0 0 15px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__main {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__amount {
    font-size: clamp(29px, 9.4vw, 38px) !important;
    line-height: 0.95 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__stock {
    font-size: 8px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    width: 100% !important;
    min-height: 50px !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  /* Expanded state: true full information panel, no tabs and no duplicate lines. */
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-mobile-tabs {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 25px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 23px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin-bottom: 14px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__purchase {
    padding-top: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: none !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    height: min(384px, 51svh) !important;
    padding: 44px 22px max(18px, env(safe-area-inset-bottom)) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(548px, calc(100svh - 64px)) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] h1 {
    font-size: clamp(38px, 12vw, 53px) !important;
    margin-bottom: 15px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__description {
    font-size: 8.7px !important;
    line-height: 1.42 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 20px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 19px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__amount {
    font-size: clamp(28px, 8.7vw, 34px) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    min-height: 49px !important;
  }
}

/* v34: repair mobile price layout spacing + keep expanded sheet stable on page scroll */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100svh - 64px) !important;
    overflow: hidden !important;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 980ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 880ms ease !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    flex: 0 0 auto !important;
    overflow: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    flex: 0 0 auto !important;
    margin-top: 16px !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-info__divider:not(.product-info__divider--price) {
    display: block !important;
    margin: 18px 0 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not([data-active-tab="description"]) .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    margin: 0 0 14px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    padding-top: 46px !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__purchase {
    margin-top: 8px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__divider--price {
    display: block !important;
    margin: 0 0 13px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 10px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100svh - 64px) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 16px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option {
    margin-bottom: 16px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 8px !important;
  }
}


/* v35: product code, two swatches and restored premium mobile sheet motion */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    height: min(384px, 51svh) !important;
    max-height: none !important;
    min-height: 0 !important;
    padding: 44px 22px max(18px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translate3d(0, 0, 0) !important;
    transition:
      transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1280ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 1080ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 960ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, height, padding, box-shadow, opacity !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 26px), 0) !important;
    opacity: 0.98 !important;
    pointer-events: none !important;
    box-shadow: none !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(540px, calc(100svh - 65px)) !important;
    max-height: none !important;
    padding-top: 46px !important;
    padding-bottom: max(18px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    transform: translate3d(0, 0, 0) !important;
    transition:
      transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1080ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    margin: 0 0 23px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    margin: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: productSheetContentInV35 980ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option { animation-delay: 45ms !important; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec { animation-delay: 75ms !important; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price { animation-delay: 105ms !important; }
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote { animation-delay: 135ms !important; }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(535px, calc(100svh - 65px)) !important;
  }
}

@keyframes productSheetContentInV35 {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* v36: consistent mobile price divider + more premium expanded spacing */
@media (max-width: 820px) {
  /* Keep the price divider anchored in the purchase block for every tab, so it never jumps in Descripción. */
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    flex: 0 0 auto !important;
    margin-top: auto !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__divider--price {
    display: block !important;
    margin: 0 0 18px !important;
    width: 100% !important;
    height: 1px !important;
    background: rgba(44, 44, 44, 0.18) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    margin: 0 0 24px !important;
  }

  /* Expanded mode: show all sections with more breathing room, but keep the CTA area fixed. */
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__content {
    padding-bottom: 22px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 17px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 34px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec:last-of-type {
    margin-bottom: 28px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content {
    padding-bottom: 16px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 30px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 30px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec:last-of-type {
    margin-bottom: 24px !important;
  }
}

/* v37: remove duplicated mobile divider and duplicated tab labels */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet] > .product-info__divider:not(.product-info__divider--price),
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__content > .product-info__divider:not(.product-info__divider--price),
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-sheet__content > .product-info__divider:not(.product-info__divider--price),
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-sheet__content > .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-spec h2 {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    display: block !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-info__divider--price {
    margin-top: 0 !important;
  }
}

/* v38: mobile product sheet spacing refinements + one-line products filters */
.products-filter {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important;
  white-space: nowrap !important;
  -webkit-overflow-scrolling: touch;
}

.products-filter::-webkit-scrollbar {
  display: none !important;
}

.products-filter__item {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

@media (max-width: 980px) {
  .products-filter {
    gap: 14px clamp(14px, 2.3vw, 24px) !important;
  }

  .products-filter__item {
    font-size: clamp(7.6px, 1.05vw, 9.5px) !important;
    letter-spacing: clamp(0.18em, 0.9vw, 0.28em) !important;
  }
}

@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-mobile-tabs {
    margin-bottom: 22px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-spec {
    margin-top: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-swatches {
    padding-top: 2px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    display: block !important;
    overflow: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option p,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec p,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded [data-product-measures],
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded [data-product-materials] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 38px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 38px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin-bottom: 17px !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-mobile-tabs {
    margin-bottom: 20px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 32px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin-bottom: 15px !important;
  }
}

/* v39: repair expanded mobile sheet and responsive products filter scale */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    height: min(585px, calc(100svh - 64px)) !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-mobile-tabs {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__content {
    display: block !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option p,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec p,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-swatches,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded [data-product-materials],
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded [data-product-measures] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-swatches {
    display: flex !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-mobile-section-title,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-mobile-section-title--description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__divider:not(.product-info__divider--price) {
    display: none !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin: 0 0 34px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin: 0 0 34px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec[data-product-section="medidas"] {
    margin-bottom: 18px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option h2,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec h2 {
    margin: 0 0 14px !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-option,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec {
    margin-bottom: 30px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-spec[data-product-section="medidas"] {
    margin-bottom: 14px !important;
  }
}

.products-filter {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: clamp(14px, 2.2vw, 34px) !important;
  overflow-x: visible !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
}

.products-filter__item {
  flex: 0 1 auto !important;
  white-space: nowrap !important;
  font-size: clamp(8.6px, 1.04vw, 11px) !important;
  letter-spacing: clamp(0.2em, 0.72vw, 0.34em) !important;
  min-width: 0 !important;
}

@media (max-width: 900px) {
  .products-filter {
    gap: clamp(11px, 1.8vw, 20px) !important;
    justify-content: space-between !important;
    overflow-x: visible !important;
  }

  .products-filter__item {
    font-size: clamp(8px, 1.35vw, 9.8px) !important;
    letter-spacing: clamp(0.16em, 0.64vw, 0.28em) !important;
  }
}

@media (max-width: 640px) {
  .products-filter {
    justify-content: flex-start !important;
    gap: 20px !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
  }

  .products-filter__item {
    flex: 0 0 auto !important;
    font-size: 8.5px !important;
    letter-spacing: 0.28em !important;
  }
}

/* v40: reduce mobile expanded description spacing before price divider */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 17px !important;
  }
}

/* v41: mobile description divider spacing + menu always top layer */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet][data-active-tab="description"] .product-info__divider:not(.product-info__divider--price) {
    margin: 9px 0 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 9px !important;
  }

  body.menu-open .hero__header,
  body.menu-open .product-header,
  body.menu-open .product-info[data-mobile-product-sheet] {
    filter: blur(7px) brightness(0.96) !important;
    transform: scale(0.992) !important;
    pointer-events: none !important;
  }

  body.menu-open .product-info[data-mobile-product-sheet] {
    z-index: 2147482000 !important;
  }
}

.site-menu {
  z-index: 2147483600 !important;
}

.site-menu__panel {
  z-index: 2147483601 !important;
}

body.menu-open .site-menu {
  z-index: 2147483600 !important;
  pointer-events: auto !important;
}

body.menu-open .site-menu__panel {
  z-index: 2147483601 !important;
}

body.menu-open .hero__header,
body.menu-open .product-header {
  filter: blur(7px) brightness(0.96) !important;
  transform: scale(0.992) !important;
}

/* v42: real mobile description-to-price divider spacing + menu stacking fix */
@media (max-width: 820px) {
  /* The visible divider in the compact product sheet is the price divider inside
     .product-sheet__purchase, not the hidden divider after the description.
     Reduce the compact sheet height and remove extra content padding so the
     divider sits closer to the active tab content. */
  body.product-detail-page > .product-info[data-mobile-product-sheet]:not(.is-expanded),
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded),
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking:not(.is-expanded),
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking:not(.is-expanded) {
    height: min(350px, 47svh) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-sheet__content {
    padding-bottom: 0 !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-sheet__purchase {
    margin-top: auto !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded) .product-info__divider--price {
    margin: 0 0 18px !important;
  }

  /* The menu lives inside the fixed header, so the header must become the top
     stacking context when the menu opens. Blur only the visual header controls,
     never the menu itself. */
  body.menu-open .hero__header,
  body.menu-open .product-header {
    z-index: 2147483600 !important;
    filter: none !important;
    transform: none !important;
  }

  body.menu-open .hero__header .brand,
  body.menu-open .hero__header .menu-toggle,
  body.menu-open .product-header .brand,
  body.menu-open .product-header .menu-toggle {
    filter: blur(7px) brightness(0.96) !important;
    transform: scale(0.992) !important;
  }

  body.menu-open .hero__header .site-menu,
  body.menu-open .product-header .site-menu,
  body.menu-open .hero__header .site-menu__panel,
  body.menu-open .product-header .site-menu__panel {
    filter: none !important;
    transform: none;
  }

  body.menu-open .site-menu__panel {
    transform: translate3d(0, 0, 0) !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet]:not(.is-expanded),
  body.product-detail-page .product-info[data-mobile-product-sheet]:not(.is-expanded),
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking:not(.is-expanded),
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking:not(.is-expanded) {
    height: min(338px, 46svh) !important;
  }
}

/* v43: expanded section spacing + restore menu close icon */
@media (max-width: 820px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 34px !important;
  }

  body.menu-open .hero__header .menu-toggle,
  body.menu-open .product-header .menu-toggle {
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2147483700 !important;
  }

  body.menu-open .hero__header .menu-toggle span,
  body.menu-open .product-header .menu-toggle span {
    filter: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 420px) {
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__description {
    margin-bottom: 30px !important;
  }
}

/* v44: menu close button always visible and clickable above side menu */
@media (max-width: 820px) {
  body.menu-open .hero__header,
  body.menu-open .product-header {
    z-index: 2147483800 !important;
    filter: none !important;
    transform: none !important;
    pointer-events: none !important;
  }

  body.menu-open .hero__header .brand,
  body.menu-open .product-header .brand {
    filter: blur(7px) brightness(0.96) !important;
    transform: scale(0.992) !important;
    pointer-events: none !important;
  }

  body.menu-open .hero__header .menu-toggle,
  body.menu-open .product-header .menu-toggle,
  body.menu-open .menu-toggle {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    z-index: 2147483900 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    color: #2c2c2c !important;
  }

  body.menu-open .hero__header .menu-toggle span,
  body.menu-open .product-header .menu-toggle span,
  body.menu-open .menu-toggle span {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    background: currentColor !important;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    width: 100% !important;
    transform: translateY(5.5px) rotate(45deg) !important;
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    width: 100% !important;
    transform: translateY(-5.5px) rotate(-45deg) !important;
  }

  body.menu-open .site-menu {
    z-index: 2147483600 !important;
  }

  body.menu-open .site-menu__panel {
    z-index: 2147483601 !important;
  }
}

/* v45: side menu close control belongs to sidebar, not header */
.site-menu__close {
  position: absolute;
  top: clamp(24px, 3vw, 36px);
  right: clamp(24px, 3vw, 36px);
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate3d(10px, 0, 0);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-menu__close span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
}

.site-menu__close span:first-child {
  transform: rotate(45deg);
}

.site-menu__close span:last-child {
  transform: rotate(-45deg);
}

body.menu-open .site-menu__close {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.site-menu__close:hover {
  color: #c38f43;
}

/* keep the original header hamburger as part of the blurred page layer */
body.menu-open .hero__header .menu-toggle,
body.menu-open .product-header .menu-toggle,
body.menu-open .menu-toggle {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  z-index: auto !important;
  pointer-events: none !important;
  color: inherit !important;
}

body.menu-open .hero__header .menu-toggle span:nth-child(1),
body.menu-open .product-header .menu-toggle span:nth-child(1),
body.menu-open .menu-toggle span:nth-child(1),
body.menu-open .hero__header .menu-toggle span:nth-child(3),
body.menu-open .product-header .menu-toggle span:nth-child(3),
body.menu-open .menu-toggle span:nth-child(3) {
  transform: none !important;
}

body.menu-open .hero__header .menu-toggle span:nth-child(2),
body.menu-open .product-header .menu-toggle span:nth-child(2),
body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 1 !important;
}

body.menu-open .hero__header .brand,
body.menu-open .hero__header .menu-toggle,
body.menu-open .product-header .brand,
body.menu-open .product-header .menu-toggle {
  filter: blur(7px) brightness(0.96) !important;
  transform: scale(0.992) !important;
}

body.menu-open .site-menu,
body.menu-open .site-menu__panel,
body.menu-open .site-menu__close {
  filter: none !important;
  transform-style: flat;
}

@media (max-width: 820px) {
  .site-menu__close {
    top: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
  }

  .site-menu__close span {
    width: 22px;
  }
}

/* v46: menu close is the same hamburger control morphing into an X */
.site-menu__close {
  display: none !important;
}

.menu-toggle {
  position: fixed !important;
  right: clamp(24px, 4vw, 54px) !important;
  top: clamp(24px, 3.2vw, 34px) !important;
  width: 21px !important;
  height: 16px !important;
  z-index: 260 !important;
  pointer-events: auto !important;
  filter: none !important;
  transform: none !important;
  color: var(--ink) !important;
}

body.menu-open .menu-toggle,
body.menu-open .hero__header .menu-toggle,
body.menu-open .product-header .menu-toggle {
  position: fixed !important;
  right: clamp(24px, 4vw, 54px) !important;
  top: clamp(24px, 3.2vw, 34px) !important;
  width: 21px !important;
  height: 16px !important;
  z-index: 260 !important;
  pointer-events: auto !important;
  filter: none !important;
  transform: none !important;
  color: var(--ink) !important;
}

body.menu-open .menu-toggle span,
body.menu-open .hero__header .menu-toggle span,
body.menu-open .product-header .menu-toggle span {
  opacity: 1 !important;
  filter: none !important;
}

body.menu-open .menu-toggle span:nth-child(1),
body.menu-open .hero__header .menu-toggle span:nth-child(1),
body.menu-open .product-header .menu-toggle span:nth-child(1) {
  width: 100% !important;
  transform: translateY(7px) rotate(45deg) !important;
}

body.menu-open .menu-toggle span:nth-child(2),
body.menu-open .hero__header .menu-toggle span:nth-child(2),
body.menu-open .product-header .menu-toggle span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0.2) !important;
}

body.menu-open .menu-toggle span:nth-child(3),
body.menu-open .hero__header .menu-toggle span:nth-child(3),
body.menu-open .product-header .menu-toggle span:nth-child(3) {
  width: 100% !important;
  transform: translateY(-7px) rotate(-45deg) !important;
}

body.menu-open .hero__header .brand,
body.menu-open .product-header .brand {
  filter: blur(7px) brightness(0.96) !important;
  transform: scale(0.992) !important;
}

body.menu-open .site-menu {
  z-index: 230 !important;
}

body.menu-open .site-menu__panel {
  z-index: 240 !important;
}

@media (max-width: 820px) {
  .menu-toggle,
  body.menu-open .menu-toggle,
  body.menu-open .hero__header .menu-toggle,
  body.menu-open .product-header .menu-toggle {
    top: 22px !important;
    right: 22px !important;
    width: 21px !important;
    height: 16px !important;
  }
}

/* v47: menu trigger detached from headers to avoid header blur/stacking bugs */
.menu-toggle--global {
  position: fixed !important;
  top: clamp(24px, 3.2vw, 34px) !important;
  right: clamp(24px, 4vw, 54px) !important;
  width: 21px !important;
  height: 16px !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
  filter: none !important;
  transform: none !important;
  isolation: isolate;
}

body.menu-open .menu-toggle--global {
  position: fixed !important;
  top: clamp(24px, 3.2vw, 34px) !important;
  right: clamp(24px, 4vw, 54px) !important;
  width: 21px !important;
  height: 16px !important;
  z-index: 1000 !important;
  pointer-events: auto !important;
  filter: none !important;
  transform: none !important;
}

body.menu-open .menu-toggle--global span:nth-child(1) {
  width: 100% !important;
  transform: translateY(7px) rotate(45deg) !important;
}

body.menu-open .menu-toggle--global span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0.2) !important;
}

body.menu-open .menu-toggle--global span:nth-child(3) {
  width: 100% !important;
  transform: translateY(-7px) rotate(-45deg) !important;
}

body.menu-open .site-menu {
  z-index: 900 !important;
}

body.menu-open .site-menu__panel {
  z-index: 920 !important;
}

body.menu-open .hero__header,
body.menu-open .product-header {
  z-index: 120 !important;
}

body.menu-open .hero__header .brand,
body.menu-open .product-header .brand {
  filter: blur(7px) brightness(0.96) !important;
  transform: scale(0.992) !important;
}

@media (max-width: 820px) {
  .menu-toggle--global,
  body.menu-open .menu-toggle--global {
    top: 22px !important;
    right: 22px !important;
    width: 21px !important;
    height: 16px !important;
    display: inline-flex !important;
  }
}

/* v48: remove header rectangle while menu is open */
body.menu-open .hero__header,
body.menu-open .product-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  pointer-events: none !important;
}

body.menu-open .hero__header .brand,
body.menu-open .product-header .brand {
  filter: blur(7px) brightness(0.96) !important;
  transform: scale(0.992) !important;
}

body.menu-open .menu-toggle--global {
  filter: none !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* v49: side menu must always be the top layer, above product bottom sheet */
body.menu-open .site-menu {
  z-index: 2147483600 !important;
  pointer-events: auto !important;
}

body.menu-open .site-menu__panel {
  z-index: 2147483610 !important;
  pointer-events: auto !important;
}

body.menu-open .menu-toggle--global {
  z-index: 2147483620 !important;
  pointer-events: auto !important;
}

body.menu-open .product-info[data-mobile-product-sheet] {
  z-index: 2147482500 !important;
  filter: blur(7px) brightness(0.96) !important;
  pointer-events: none !important;
}

body.menu-open .product-image-lightbox {
  z-index: 2147482550 !important;
}

/* v51: restore compact desktop product filters; keep adaptive one-line only on mobile */
@media (min-width: 641px) {
  .products-filter {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: clamp(24px, 2.8vw, 36px) !important;
    overflow: visible !important;
    overflow-x: visible !important;
    padding-bottom: 0 !important;
    white-space: nowrap !important;
  }

  .products-filter__item {
    flex: 0 0 auto !important;
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: 0.34em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 640px) {
  .products-filter {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .products-filter::-webkit-scrollbar {
    display: none !important;
  }

  .products-filter__item {
    flex: 0 0 auto !important;
    font-size: 8.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.28em !important;
    white-space: nowrap !important;
  }
}


/* v52: lightbox close moved left, zoom-in detail mode, and page-entry excludes headers */
.product-image-lightbox__close {
  left: clamp(18px, 3vw, 34px) !important;
  right: auto !important;
}

.product-image-lightbox__image {
  cursor: zoom-in;
  will-change: transform, width, height, opacity;
}

.product-image-lightbox.is-zoomed {
  overflow: auto;
  place-items: start center;
  padding-top: clamp(74px, 8vw, 104px);
  cursor: zoom-out;
}

.product-image-lightbox.is-zoomed .product-image-lightbox__image {
  max-width: none;
  max-height: none;
  width: min(168vw, 1800px);
  height: auto;
  cursor: zoom-out;
  transform: translate3d(0, 0, 0) scale(1) !important;
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    width 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-lightbox.is-zoomed .product-image-lightbox__nav {
  opacity: 0.42;
}

@media (max-width: 820px) {
  .product-image-lightbox__close {
    left: 16px !important;
    right: auto !important;
  }

  .product-image-lightbox.is-zoomed {
    padding-top: 74px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-image-lightbox.is-zoomed .product-image-lightbox__image {
    width: 190vw;
  }
}

body.product-page .product-header,
body.product-detail-page .product-header {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

body.product-page.is-page-leaving,
body.product-detail-page.is-page-leaving {
  opacity: 1 !important;
  transform: none !important;
}

body.product-page.is-page-leaving .products-page__inner,
body.product-detail-page.is-page-leaving .product-breadcrumb,
body.product-detail-page.is-page-leaving .product-detail__layout {
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* v53: landing -> products transition excludes fixed/global header */
body:not(.product-page):not(.product-detail-page).is-page-leaving {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body:not(.product-page):not(.product-detail-page).is-page-leaving .hero__header,
body:not(.product-page):not(.product-detail-page).is-page-leaving .global-menu-toggle {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  animation: none !important;
}

body:not(.product-page):not(.product-detail-page).is-page-leaving main {
  opacity: 0 !important;
  transform: translate3d(0, -18px, 0) !important;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* v54: do not render empty product placeholders */
.products-list .product-card--empty {
  display: none !important;
}

/* Showroom section - Phase 1 style */
.showroom {
  min-height: 100svh;
  padding: clamp(94px, 8.5vw, 128px) 0 clamp(64px, 6vw, 88px);
  background: #f4f3f0;
  color: #2c2c2c;
  overflow: hidden;
  scroll-snap-align: start;
}

.showroom__motion {
  min-height: calc(100svh - clamp(158px, 14.5vw, 216px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showroom__intro {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  text-align: center;
}

.showroom__eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.52em;
  font-size: 12px;
  font-weight: 600;
  color: #1c1a1a;
}

.showroom__intro h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.96;
  font-weight: 600;
  color: #1f1e1c;
}

.showroom__copy {
  max-width: 650px;
  margin: 24px auto 0;
  color: rgba(44, 44, 44, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

.showroom__location {
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(44, 44, 44, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.showroom__location-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180, 132, 94, 0.52);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a56f48;
  flex: 0 0 auto;
}

.showroom__location-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showroom__location-icon circle {
  fill: none;
}

.showroom__gallery {
  margin-top: clamp(70px, 7vw, 98px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.35vw, 20px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 clamp(22px, 3.2vw, 48px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.showroom__gallery::-webkit-scrollbar {
  display: none;
}

.showroom__item {
  margin: 0;
  flex: 0 0 clamp(350px, 27.5vw, 488px);
  height: clamp(205px, 16vw, 278px);
  background: #e9e7e3;
  overflow: hidden;
  scroll-snap-align: center;
}

.showroom__item--narrow {
  flex-basis: clamp(220px, 17vw, 302px);
}

.showroom__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.94) saturate(0.9) brightness(0.88);
}

.showroom__actions {
  margin-top: clamp(42px, 4.7vw, 62px);
  display: flex;
  justify-content: center;
}

.showroom__button {
  min-width: min(360px, calc(100vw - 48px));
  min-height: 54px;
  padding: 18px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 12px;
  font-weight: 600;
  transition: transform 260ms ease, background 260ms ease;
}

.showroom__button:hover,
.showroom__button:focus-visible {
  background: #2c2925;
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .showroom {
    min-height: auto;
    padding: 86px 0 66px;
  }

  .showroom__motion {
    min-height: 0;
  }

  .showroom__intro {
    width: calc(100% - 36px);
    text-align: left;
    margin: 0 18px;
  }

  .showroom__eyebrow {
    margin-bottom: 16px;
    letter-spacing: 0.45em;
    font-size: 10px;
  }

  .showroom__intro h2 {
    max-width: 330px;
    font-size: clamp(42px, 15vw, 58px);
    line-height: 0.92;
  }

  .showroom__copy {
    margin-top: 28px;
    max-width: 330px;
    font-size: 13px;
    line-height: 1.7;
  }

  .showroom__location {
    margin: 30px 0 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .showroom__location-icon {
    width: 38px;
    height: 38px;
  }

  .showroom__gallery {
    margin-top: 48px;
    padding: 0 18px;
    gap: 12px;
  }

  .showroom__item,
  .showroom__item--narrow {
    flex-basis: 76vw;
    height: 56vw;
    max-height: 320px;
  }

  .showroom__actions {
    justify-content: flex-start;
    margin: 36px 18px 0;
  }

  .showroom__button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
}

/* v56: showroom moving carousel + zoom lightbox */
.showroom__gallery {
  cursor: grab;
  scroll-behavior: auto;
}

.showroom__gallery.is-paused {
  cursor: default;
}

.showroom__gallery.is-dragging {
  cursor: grabbing;
}

.showroom__item {
  cursor: zoom-in;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.showroom__item:hover {
  transform: translateY(-3px);
}

.showroom__gallery-copy {
  scroll-snap-align: none;
}

.showroom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 26000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 56px);
  background: rgba(244, 243, 240, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.showroom-lightbox__close {
  position: fixed;
  top: clamp(18px, 2.7vw, 34px);
  left: clamp(18px, 2.7vw, 34px);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.showroom-lightbox__close::before,
.showroom-lightbox__close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 21px;
  width: 22px;
  height: 1.6px;
  background: #1c1a1a;
  transform-origin: center;
}

.showroom-lightbox__close::before {
  transform: rotate(45deg);
}

.showroom-lightbox__close::after {
  transform: rotate(-45deg);
}

.showroom-lightbox__image {
  display: block;
  max-width: min(1180px, 92vw);
  max-height: 86svh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(28, 26, 26, 0.18);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showroom-lightbox.is-open .showroom-lightbox__image.is-loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body.has-showroom-lightbox {
  overflow: hidden;
}

@media (max-width: 760px) {
  .showroom__item:hover {
    transform: none;
  }

  .showroom-lightbox {
    padding: 18px;
  }

  .showroom-lightbox__close {
    top: 14px;
    left: 14px;
  }

  .showroom-lightbox__image {
    max-width: 94vw;
    max-height: 82svh;
  }
}

/* v58: showroom phase 1 style - continuous moving strip */
.showroom__gallery {
  margin-top: clamp(70px, 7vw, 98px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 0;
  cursor: default;
  scroll-snap-type: none;
}

.showroom__gallery-track {
  --showroom-gap: clamp(14px, 1.35vw, 20px);
  display: flex;
  align-items: stretch;
  gap: var(--showroom-gap);
  width: max-content;
  will-change: transform;
  animation: showroomMarquee 34s linear infinite;
}

.showroom__gallery-track:hover,
.showroom__gallery-track.is-paused {
  animation-play-state: paused;
}

.showroom__item,
.showroom__item--narrow {
  flex: 0 0 clamp(360px, 26.8vw, 488px);
  width: clamp(360px, 26.8vw, 488px);
  height: clamp(205px, 16vw, 278px);
  margin: 0;
  background: #e9e7e3;
  overflow: hidden;
  scroll-snap-align: none;
  cursor: zoom-in;
  transform: translateZ(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.showroom__item--narrow {
  flex-basis: clamp(250px, 17vw, 310px);
  width: clamp(250px, 17vw, 310px);
}

.showroom__item:hover {
  transform: translate3d(0, -3px, 0);
}

.showroom__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.94) saturate(0.9) brightness(0.88);
}

@keyframes showroomMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--showroom-track-distance, 50%)), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .showroom__gallery-track {
    animation: none;
  }
}

@media (max-width: 760px) {
  .showroom__gallery {
    margin-top: 48px;
    padding: 0;
  }

  .showroom__gallery-track {
    --showroom-gap: 12px;
    animation-duration: 28s;
  }

  .showroom__item,
  .showroom__item--narrow {
    flex-basis: 76vw;
    width: 76vw;
    height: 56vw;
    max-height: 320px;
  }
}


/* v59: showroom background + square carousel images */
.showroom {
  background: var(--bg);
}

.showroom__item,
.showroom__item--narrow {
  flex: 0 0 clamp(250px, 18vw, 340px);
  width: clamp(250px, 18vw, 340px);
  height: clamp(250px, 18vw, 340px);
  aspect-ratio: 1 / 1;
}

.showroom__item img {
  object-fit: cover;
}

@media (max-width: 760px) {
  .showroom__item,
  .showroom__item--narrow {
    flex-basis: 72vw;
    width: 72vw;
    height: 72vw;
    max-height: none;
  }
}


/* v60: showroom refinements */
.showroom__location {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(44, 44, 44, 0.42);
}

.showroom__location:hover,
.showroom__location:focus-visible {
  color: #1c1a1a;
  text-decoration-color: #1c1a1a;
}

.showroom__button {
  min-height: 58px;
  border: 1px solid #282725;
  background: #282725;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.24em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.showroom__button:hover,
.showroom__button:focus-visible {
  background: transparent;
  color: #282725;
  border-color: #282725;
  transform: none;
}

.showroom__gallery-track {
  animation-duration: 49s;
}

.showroom__intro h2 span {
  display: inline;
}

@media (max-width: 760px) {
  .showroom {
    padding: 76px 0 25px;
  }

  .showroom__intro {
    width: calc(100% - 32px);
    margin: 0 auto;
    text-align: center;
  }

  .showroom__intro h2 {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(39px, 12.4vw, 54px);
    line-height: 0.96;
  }

  .showroom__intro h2 span {
    display: block;
  }

  .showroom__copy {
    margin: 22px auto 0;
    max-width: 360px;
    text-align: center;
    font-size: 13px;
    line-height: 1.68;
  }

  .showroom__location {
    margin: 28px auto 0;
    justify-content: center;
    text-align: center;
  }

  .showroom__gallery {
    margin-top: 36px;
  }

  .showroom__gallery-track {
    animation-duration: 40s;
  }

  .showroom__item,
  .showroom__item--narrow {
    flex-basis: min(58vw, 270px);
    width: min(58vw, 270px);
    height: min(58vw, 270px);
  }

  .showroom__actions {
    margin: 26px 16px 0;
    justify-content: center;
  }

  .showroom__button {
    min-height: 56px;
    font-size: 13px;
    letter-spacing: 0.24em;
  }
}

/* v61: Match Showroom title/copy typography to Categories */
.showroom__intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(32px, 3.2vw, 42px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}

.showroom__copy {
  max-width: 540px !important;
  margin: 24px auto 0 !important;
  color: rgba(44, 44, 44, 0.48) !important;
  line-height: 1.55 !important;
  font-size: 14px !important;
}

@media (max-width: 760px) {
  .showroom__intro h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.05 !important;
  }

  .showroom__copy {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    margin-top: 16px !important;
    max-width: 540px !important;
  }
}


/* v62: showroom mobile spacing and smoother handoff from inspiration */
@media (max-width: 760px) {
  .showroom {
    padding-top: 76px !important;
    padding-bottom: 25px !important;
  }

  .showroom__motion {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .showroom__intro {
    width: calc(100% - 32px) !important;
    max-width: 540px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .showroom__copy {
    margin: 16px auto 0 !important;
    text-align: center !important;
  }

  .showroom__location {
    margin: 45px auto 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .showroom__gallery {
    margin-top: 45px !important;
  }

  .showroom__actions {
    margin: 45px auto 0 !important;
    padding-bottom: 25px !important;
    width: calc(100% - 32px) !important;
    justify-content: center !important;
  }
}

/* v63: requested Showroom mobile rhythm + correct handoff from Inspiration */
@media (max-width: 760px) {
  .showroom__motion,
  .showroom__intro,
  .showroom__copy,
  .showroom__location,
  .showroom__gallery,
  .showroom__actions {
    text-align: center !important;
  }

  .showroom__location {
    margin-top: 50px !important;
  }

  .showroom__gallery {
    margin-top: 100px !important;
  }

  .showroom__actions {
    margin-top: 100px !important;
    padding-bottom: 25px !important;
  }
}

/* v64: stable mobile sheet scroll behavior + no purchase flicker on expansion */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transition:
      transform 1280ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 1080ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 840ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__purchase,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-info__divider--price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__main,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__amount,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__stock,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition:
      background 220ms ease,
      color 220ms ease,
      border-color 220ms ease !important;
    backface-visibility: hidden !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__purchase {
    will-change: auto !important;
    contain: layout paint !important;
  }
}


/* v65: mobile product back chevron */
.product-mobile-back {
  display: none;
}

@media (max-width: 820px) {
  body.product-detail-page .product-mobile-back {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(44, 44, 44, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #1c1a1a;
    text-decoration: none;
    z-index: 880;
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  }

  body.product-detail-page .product-mobile-back span {
    width: 10px;
    height: 10px;
    border-left: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: translateX(2px) rotate(45deg);
    display: block;
  }

  body.menu-open .product-mobile-back {
    filter: blur(7px) brightness(0.96) !important;
    pointer-events: none !important;
  }
}

/* v66: clean mobile product back chevron + mobile products picker/list view */
.products-picker {
  display: none;
}

.product-card__meta {
  display: none;
}

@media (max-width: 820px) {
  body.product-detail-page .product-mobile-back {
    top: 18px;
    left: 18px;
    width: 34px;
    height: 34px;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #1c1a1a;
  }

  body.product-detail-page .product-mobile-back span {
    width: 13px;
    height: 13px;
    border-left-width: 1.8px;
    border-bottom-width: 1.8px;
  }
}

@media (max-width: 640px) {
  body.product-page .products-page {
    padding: 106px 18px 38px;
  }

  body.product-page .products-filter {
    display: none !important;
  }

  body.product-page .products-picker {
    width: 100%;
    max-width: 420px;
    margin: 34px auto 0;
    display: block;
  }

  body.product-page .products-picker__label {
    display: block;
    margin: 0 0 10px;
    color: rgba(44, 44, 44, 0.42);
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  body.product-page .products-picker__control {
    position: relative;
  }

  body.product-page .products-picker__select {
    width: 100%;
    min-height: 52px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(44, 44, 44, 0.14);
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    padding: 0 48px 0 18px;
    font-family: inherit;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  body.product-page .products-picker__chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid #111111;
    border-bottom: 1.5px solid #111111;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }

  body.product-page .products-list {
    width: 100%;
    max-width: 420px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  body.product-page .product-card {
    width: 100%;
    min-height: 108px;
    aspect-ratio: auto;
    background: transparent;
    border-bottom: 1px solid rgba(44, 44, 44, 0.10);
    overflow: visible;
  }

  body.product-page .product-card__link {
    width: 100%;
    min-height: 108px;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
  }

  body.product-page .product-card img {
    width: 94px;
    height: 94px;
    padding: 12px;
    object-fit: contain;
    background: #fafafa;
  }

  body.product-page .product-card:hover img {
    transform: none;
  }

  body.product-page .product-card__meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  body.product-page .product-card__meta strong {
    display: block;
    color: #111111;
    font-size: 14px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  body.product-page .product-card__meta small {
    display: block;
    color: rgba(44, 44, 44, 0.46);
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }
}

/* v67: mobile products keep picker, restore grid cards */
@media (max-width: 640px) {
  body.product-page .products-page {
    padding: 106px 18px 44px;
  }

  body.product-page .products-page__inner {
    width: min(100%, 680px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
  }

  body.product-page .products-page h1 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  body.product-page .products-filter {
    display: none !important;
  }

  body.product-page .products-picker {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  body.product-page .products-picker__label {
    display: none !important;
  }

  body.product-page .products-picker__control {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  body.product-page .products-picker__select {
    width: auto;
    min-width: 132px;
    min-height: 32px;
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #111111;
    padding: 0 20px 0 0;
    font-family: inherit;
    font-size: 9px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: right;
    text-align-last: right;
  }

  body.product-page .products-picker__chevron {
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1.4px solid #111111;
    border-bottom: 1.4px solid #111111;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }

  body.product-page .products-list {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 42px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  body.product-page .product-card {
    width: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-bottom: 0;
    overflow: hidden;
  }

  body.product-page .product-card__link {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: inherit;
    text-decoration: none;
  }

  body.product-page .product-card img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    background: transparent;
  }

  body.product-page .product-card__meta {
    display: none !important;
  }
}

/* v68: mobile picker below title + showroom CTA exact product Comprar style */
.showroom__actions {
  width: min(360px, calc(100vw - 48px));
  margin-left: auto !important;
  margin-right: auto !important;
}

.showroom__button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 58px !important;
  margin-top: 0 !important;
  border: 1px solid #282725 !important;
  background: #282725 !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: inherit !important;
  letter-spacing: 0.24em !important;
  text-transform: none !important;
  text-decoration: none !important;
  transition: background 220ms ease, color 220ms ease !important;
  transform: none !important;
}

.showroom__button:hover,
.showroom__button:focus-visible {
  background: transparent !important;
  color: #282725 !important;
  border-color: #282725 !important;
  transform: none !important;
}

@media (max-width: 640px) {
  body.product-page .products-page__inner {
    width: min(100%, 680px) !important;
    display: block !important;
  }

  body.product-page .products-page h1 {
    display: block !important;
    margin: 0 !important;
  }

  body.product-page .products-picker {
    width: 100% !important;
    max-width: none !important;
    margin: 22px 0 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  body.product-page .products-picker__label {
    display: none !important;
  }

  body.product-page .products-picker__control {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  body.product-page .products-picker__select {
    width: auto !important;
    min-width: 150px !important;
    min-height: 36px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 24px 0 0 !important;
    color: #111111 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.24em !important;
    text-transform: uppercase !important;
    text-align: right !important;
    text-align-last: right !important;
  }

  body.product-page .products-picker__chevron {
    right: 0 !important;
    width: 8px !important;
    height: 8px !important;
  }

  body.product-page .products-list {
    margin-top: 40px !important;
  }

  .showroom__actions {
    width: calc(100% - 32px) !important;
  }
}


/* v69: mobile products picker underline + showroom title spacing fix */
.showroom__intro h2 span + span {
  margin-left: 0.18em;
}

@media (max-width: 760px) {
  .showroom__intro h2 span + span {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  body.product-page .products-picker {
    width: 100% !important;
    margin: 24px 0 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    text-align: right !important;
  }

  body.product-page .products-picker__control {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    min-width: 168px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.36) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.product-page .products-picker__select {
    width: auto !important;
    min-width: 168px !important;
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 28px 0 0 !important;
    color: #111111 !important;
    font-size: 14px !important;
    line-height: 42px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    text-align: right !important;
    text-align-last: right !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  body.product-page .products-picker__chevron {
    position: absolute !important;
    top: 50% !important;
    right: 2px !important;
    width: 9px !important;
    height: 9px !important;
    margin-top: -6px !important;
    transform: rotate(45deg) !important;
    border-right: 1px solid rgba(17, 17, 17, 0.78) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.78) !important;
    pointer-events: none !important;
  }
}

/* v70: mobile picker left underline + showroom CTA text scale */
.showroom__button {
  font-size: 12px !important;
}

@media (max-width: 640px) {
  body.product-page .products-picker {
    width: 100% !important;
    margin: 24px 0 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
  }

  body.product-page .products-picker__control {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.36) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.product-page .products-picker__select {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 34px 0 0 !important;
    color: #111111 !important;
    font-size: 14px !important;
    line-height: 42px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    text-align: left !important;
    text-align-last: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  body.product-page .products-picker__chevron {
    position: absolute !important;
    top: 50% !important;
    right: 2px !important;
    width: 9px !important;
    height: 9px !important;
    margin-top: -6px !important;
    transform: rotate(45deg) !important;
    border-right: 1px solid rgba(17, 17, 17, 0.78) !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.78) !important;
    pointer-events: none !important;
  }
}

/* v71: mobile picker filter visibility + chevron padding + product zoom above sheet */
body.product-page .product-card.is-hidden,
body.product-page .product-card[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  body.product-page .products-picker__select {
    padding-right: 46px !important;
  }

  body.product-page .products-picker__chevron {
    right: 14px !important;
  }
}

.product-image-lightbox {
  z-index: 2147483500 !important;
}

body.menu-open .product-image-lightbox {
  z-index: 2147482550 !important;
}

.product-image-lightbox__close {
  display: none !important;
}


/* v72: premium custom mobile products picker */
@media (max-width: 640px) {
  body.product-page .products-picker {
    width: 100% !important;
    margin: 24px 0 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    position: relative !important;
    z-index: 30 !important;
  }

  body.product-page .products-picker__label {
    display: none !important;
  }

  body.product-page .products-picker__control {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 17, 17, 0.36) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.product-page .products-picker__select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body.product-page .products-picker__button {
    width: 100% !important;
    min-height: 46px !important;
    padding: 0 48px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 0 !important;
    background: transparent !important;
    color: #111111 !important;
    font: inherit !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.product-page .products-picker__value {
    display: block !important;
    color: #111111 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
  }

  body.product-page .products-picker__chevron {
    position: absolute !important;
    top: 50% !important;
    right: 18px !important;
    width: 9px !important;
    height: 9px !important;
    margin-top: -7px !important;
    transform: rotate(45deg) !important;
    border-right: 1.3px solid rgba(17, 17, 17, 0.82) !important;
    border-bottom: 1.3px solid rgba(17, 17, 17, 0.82) !important;
    pointer-events: none !important;
    transition: transform 240ms ease, margin 240ms ease !important;
  }

  body.product-page .products-picker.is-open .products-picker__chevron {
    margin-top: -2px !important;
    transform: rotate(225deg) !important;
  }

  body.product-page .products-picker__menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 60 !important;
    padding: 8px !important;
    display: grid !important;
    gap: 2px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12) !important;
    opacity: 0 !important;
    transform: translateY(-8px) scale(0.985) !important;
    transform-origin: top center !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition: opacity 240ms ease, transform 240ms ease, visibility 0ms linear 240ms !important;
  }

  body.product-page .products-picker.is-open .products-picker__menu {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    visibility: visible !important;
    transition-delay: 0ms !important;
  }

  body.product-page .products-picker__option {
    width: 100% !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(17, 17, 17, 0.58) !important;
    font: inherit !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: background 180ms ease, color 180ms ease, padding 180ms ease !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.product-page .products-picker__option:hover,
  body.product-page .products-picker__option:focus-visible {
    background: rgba(17, 17, 17, 0.045) !important;
    color: rgba(17, 17, 17, 0.9) !important;
    outline: none !important;
  }

  body.product-page .products-picker__option.is-selected {
    background: rgba(17, 17, 17, 0.07) !important;
    color: #111111 !important;
    padding-left: 18px !important;
  }
}

/* v73: keep tablet products tabview inside page margins */
@media (min-width: 641px) and (max-width: 1024px) {
  body.product-page .products-page__inner {
    width: 100% !important;
    max-width: 680px !important;
    overflow: hidden !important;
  }

  body.product-page .products-filter {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 38px !important;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: clamp(18px, 3.4vw, 28px) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.product-page .products-filter::-webkit-scrollbar {
    display: none !important;
  }

  body.product-page .products-filter__item {
    flex: 0 0 auto !important;
    font-size: clamp(8.4px, 1.25vw, 10px) !important;
    letter-spacing: clamp(0.18em, 0.52vw, 0.28em) !important;
    white-space: nowrap !important;
  }
}

/* v74: adaptive tablet category tabview aligned to product grid edges */
@media (min-width: 641px) and (max-width: 1024px) {
  body.product-page .products-filter {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: space-between !important;
    gap: 0 !important;
    overflow: hidden !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  body.product-page .products-filter__item {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    font-size: clamp(7.8px, 1.12vw, 10px) !important;
    letter-spacing: clamp(0.14em, 0.42vw, 0.26em) !important;
  }
}

/* v75: faster mobile product sheet hide response */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    transition:
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
      height 560ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 320ms ease,
      opacity 220ms ease !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transition:
      transform 220ms cubic-bezier(0.45, 0, 0.55, 1),
      box-shadow 180ms ease,
      opacity 160ms ease !important;
  }
}

/* v76: immediate mobile product sheet hide, smooth return only on upward scroll */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    transition:
      transform 240ms cubic-bezier(0.45, 0, 0.2, 1),
      height 520ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 220ms ease,
      opacity 180ms ease !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transition:
      transform 160ms cubic-bezier(0.45, 0, 0.55, 1),
      box-shadow 140ms ease,
      opacity 120ms ease !important;
  }
}

/* v77: stable mobile product sheet scroll behavior */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    will-change: transform;
    transition:
      transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 760ms ease !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 42px), 0) !important;
    opacity: 1 !important;
  }
}

/* v78: softer mobile product sheet hide animation */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transition:
      transform 1040ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 1040ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 940ms ease !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 28px), 0) !important;
    opacity: 1 !important;
  }
}

/* v79: restore purchase block + smoother stable mobile sheet motion */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet] {
    transition:
      transform 960ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 980ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 880ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking {
    min-height: min(326px, 58svh) !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded {
    transition:
      transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 980ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 860ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 42px), 0) !important;
    opacity: 1 !important;
    transition:
      transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 620ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 620ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-sheet__purchase {
    display: flex !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    margin-top: auto !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price:not([hidden]) {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    margin: 0 0 23px !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__main,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__amount,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-price__stock,
  body.product-detail-page .product-info[data-mobile-product-sheet] .product-quote {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-sheet__purchase,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__main,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__amount,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-price__stock,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded .product-quote {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* v80: match mobile product sheet close transition to open transition */
@media (max-width: 820px) {
  body.product-detail-page > .product-info[data-mobile-product-sheet],
  body.product-detail-page .product-info[data-mobile-product-sheet],
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-peeking,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-expanded,
  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transition:
      transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      max-height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      height 1380ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 1180ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 980ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 860ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  body.product-detail-page > .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet,
  body.product-detail-page .product-info[data-mobile-product-sheet].is-hidden-mobile-sheet {
    transform: translate3d(0, calc(100% + 42px), 0) !important;
    opacity: 1 !important;
  }
}


/* v67: API product images fill catalog cards; exact-count dynamic detail gallery */
body.product-page .product-card img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
}

.product-detail-page .product-gallery__item img,
.product-detail-page .product-gallery__item--hero img,
.product-detail-page .product-gallery__item:nth-child(2) img,
.product-detail-page .product-gallery__item:nth-child(3) img,
.product-detail-page .product-gallery__item:nth-child(n + 4) img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
}

@media (max-width: 640px) {
  body.product-page .product-card img {
    padding: 0 !important;
    object-fit: cover !important;
  }
}

/* Cart v14 */
.product-quote{font-size:12px!important}.product-quote.is-added{background:#4f6654;border-color:#4f6654;color:#fff}
.cart-shortcut{position:fixed;top:31px;right:92px;z-index:6100;width:42px;height:42px;display:grid;place-items:center;color:#252422;text-decoration:none}.cart-shortcut svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round}.cart-shortcut__count{position:absolute;top:1px;right:0;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:#252422;color:#fff;font:600 9px/17px "Montserrat",sans-serif;text-align:center}.cart-page{min-height:100vh;background:#f6f4ef;color:#252422}.cart-brand-image{display:block;width:100%;height:auto}.cart-main{padding:150px clamp(24px,6vw,92px) 90px}.cart-heading{margin-bottom:45px}.cart-heading p{margin:0 0 10px;font:500 10px "Montserrat",sans-serif;letter-spacing:.22em;text-transform:uppercase;color:#8a867f}.cart-heading h1{margin:0;font:500 clamp(48px,7vw,86px)/.9 "Cormorant Garamond",serif}.cart-heading span{display:block;margin-top:16px;color:#77736d;font:400 11px "Montserrat",sans-serif}.cart-layout{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(300px,.65fr);gap:42px;align-items:start}.cart-items{border-top:1px solid #d9d5cd}.cart-item{display:grid;grid-template-columns:150px minmax(0,1fr) auto;gap:24px;padding:24px 0;border-bottom:1px solid #d9d5cd;align-items:center}.cart-item__image{display:block;aspect-ratio:1;background:#ece9e2;overflow:hidden}.cart-item__image img{width:100%;height:100%;object-fit:cover;display:block}.cart-item__info>span{font:500 9px "Montserrat",sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#918d86}.cart-item__info h2{margin:7px 0 9px;font:500 30px/1 "Cormorant Garamond",serif}.cart-item__info>strong{font:500 12px "Montserrat",sans-serif}.cart-item__actions{display:flex;align-items:center;gap:22px;margin-top:21px}.cart-quantity{height:34px;display:flex;align-items:center;border:1px solid #d6d2ca}.cart-quantity button{width:34px;height:100%;border:0;background:transparent;cursor:pointer;font-size:17px}.cart-quantity span{min-width:28px;text-align:center;font:500 11px "Montserrat",sans-serif}.cart-remove{border:0;background:transparent;padding:0;color:#77736d;text-decoration:underline;text-underline-offset:4px;font:400 10px "Montserrat",sans-serif;cursor:pointer}.cart-item__total{align-self:start;padding-top:23px;font:500 14px "Montserrat",sans-serif}.cart-summary-card{position:sticky;top:120px;padding:30px;background:#fff;border:1px solid #dfdcd5}.cart-summary-card h2{margin:0 0 28px;font:500 34px "Cormorant Garamond",serif}.cart-summary-row,.cart-summary-total{display:flex;justify-content:space-between;gap:20px;font:400 11px "Montserrat",sans-serif}.cart-summary-row{padding:13px 0;border-bottom:1px solid #ece9e3}.cart-summary-row--muted{color:#8b8780}.cart-summary-total{padding:24px 0;font-weight:600}.cart-checkout,.cart-continue{display:flex;align-items:center;justify-content:center;text-decoration:none}.cart-checkout{min-height:54px;background:#252422;color:#fff;font:500 10px "Montserrat",sans-serif;letter-spacing:.14em;text-transform:uppercase}.cart-checkout.is-disabled{opacity:.4;pointer-events:none}.cart-continue{margin-top:17px;color:#252422;font:500 9px "Montserrat",sans-serif;letter-spacing:.1em;text-transform:uppercase}.cart-empty{padding:90px 20px;text-align:center}.cart-empty h2{margin:0;font:500 42px "Cormorant Garamond",serif}.cart-empty p{margin:12px 0 26px;color:#77736d;font:400 11px/1.7 "Montserrat",sans-serif}.cart-empty a{color:#252422;font:600 10px "Montserrat",sans-serif;letter-spacing:.12em;text-transform:uppercase}
@media(max-width:820px){.cart-shortcut{top:18px;right:72px;width:38px;height:38px}.cart-shortcut svg{width:21px;height:21px}.cart-main{padding:112px 18px 70px}.cart-layout{grid-template-columns:1fr;gap:28px}.cart-item{grid-template-columns:92px minmax(0,1fr);gap:16px}.cart-item__total{display:none}.cart-item__info h2{font-size:25px}.cart-item__actions{gap:14px}.cart-summary-card{position:static}.cart-heading{margin-bottom:28px}.cart-heading h1{font-size:52px}}

/* v16: Lucide cart shortcut, bounded independently from header/logo SVG rules */
.cart-shortcut > svg,.cart-shortcut > i{display:block!important;width:23px!important;height:23px!important;max-width:23px!important;max-height:23px!important;min-width:23px!important;min-height:23px!important;overflow:visible!important;fill:none!important;stroke:currentColor!important;stroke-width:1.7!important;}
@media(max-width:820px){.cart-shortcut > svg,.cart-shortcut > i{width:21px!important;height:21px!important;max-width:21px!important;max-height:21px!important;min-width:21px!important;min-height:21px!important;}}
#field-category-api[readonly]{background:#f4f2ed;color:#5f5b55;cursor:default;}

/* v17: bolsa header alignment and naming */
.bag-page .product-header {
  height: clamp(72px, 7vw, 92px);
  min-height: 72px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #252422;
}

.bag-page .product-header .brand {
  width: clamp(105px, 11vw, 145px) !important;
  max-width: 145px !important;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bag-page .cart-brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.bag-page .bag-back {
  position: fixed;
  top: clamp(24px, 3.2vw, 34px);
  left: clamp(24px, 4vw, 54px);
  z-index: 1000;
  width: 21px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #252422;
  text-decoration: none;
}

.bag-page .bag-back span {
  display: block;
  width: 12px;
  height: 12px;
  border-left: 1.55px solid currentColor;
  border-bottom: 1.55px solid currentColor;
  transform: translateX(3px) rotate(45deg);
}

/* Keep bag and menu controls on the same baseline and visual weight. */
.cart-shortcut,
.bag-page .cart-shortcut {
  top: clamp(24px, 3.2vw, 34px) !important;
  right: calc(clamp(24px, 4vw, 54px) + 42px) !important;
  width: 21px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.cart-shortcut > svg,
.cart-shortcut > i,
.bag-page .cart-shortcut > svg,
.bag-page .cart-shortcut > i {
  width: 19px !important;
  height: 19px !important;
  min-width: 19px !important;
  min-height: 19px !important;
  max-width: 19px !important;
  max-height: 19px !important;
  stroke-width: 1.45 !important;
}

.bag-page .cart-heading h1 {
  margin-top: 0;
}

@media (max-width: 820px) {
  .bag-page .product-header {
    height: 65px;
    min-height: 65px;
  }

  .bag-page .product-header .brand {
    width: clamp(112px, 31vw, 145px) !important;
    max-width: 145px !important;
  }

  .bag-page .bag-back {
    top: 22px;
    left: 18px;
    width: 21px;
    height: 16px;
  }

  .bag-page .bag-back span {
    width: 13px;
    height: 13px;
    border-left-width: 1.8px;
    border-bottom-width: 1.8px;
  }

  .cart-shortcut,
  .bag-page .cart-shortcut {
    top: 22px !important;
    right: 63px !important;
    width: 21px !important;
    height: 16px !important;
  }

  .cart-shortcut > svg,
  .cart-shortcut > i,
  .bag-page .cart-shortcut > svg,
  .bag-page .cart-shortcut > i {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    stroke-width: 1.4 !important;
  }

  .bag-page .cart-main {
    padding-top: 108px;
  }
}


/* v18: exact products logo, aligned Lucide bag and outlined empty-state action */
.bag-page .product-header .brand {
  width: clamp(105px, 11vw, 145px) !important;
  max-width: 145px !important;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
}
.bag-page .product-header .brand__svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  overflow: visible !important;
}
.cart-shortcut > svg,
.bag-page .cart-shortcut > svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  stroke-width: 1.55 !important;
  transform: translateY(-2px) !important;
}
.cart-empty a {
  min-width: 150px;
  min-height: 42px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252422;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}
.cart-empty a:hover {
  background: #252422;
  color: #fff;
}
@media (max-width: 820px) {
  .bag-page .product-header .brand {
    width: clamp(112px, 31vw, 145px) !important;
    max-width: 145px !important;
  }
}


/* v19: one definitive bag icon across every public page */
.cart-shortcut,
.bag-page .cart-shortcut {
  top: clamp(24px, 3.2vw, 34px) !important;
  right: calc(clamp(24px, 4vw, 54px) + 42px) !important;
  width: 21px !important;
  height: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  transform: none !important;
}
.cart-shortcut .bag-icon,
.bag-page .cart-shortcut .bag-icon {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.6 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transform: none !important;
  overflow: visible !important;
}
@media (max-width: 820px) {
  .cart-shortcut,
  .bag-page .cart-shortcut {
    top: 22px !important;
    right: 63px !important;
    width: 21px !important;
    height: 16px !important;
  }
  .cart-shortcut .bag-icon,
  .bag-page .cart-shortcut .bag-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    stroke-width: 1.6 !important;
  }
}


/* v25: product catalog loading skeleton, single surface */
body.product-page .product-skeleton {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f4f1;
}

body.product-page .product-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.72) 48%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: casa-glick-product-skeleton 1.45s ease-in-out infinite;
}


@keyframes casa-glick-product-skeleton {
  100% { transform: translateX(100%); }
}

@media (max-width: 640px) {
  body.product-page .product-skeleton:nth-child(n + 7) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.product-page .product-skeleton::after {
    animation: none;
    display: none;
  }
}
.checkout-page{min-height:100vh;background:#f6f4ef;color:#252422}.checkout-back{position:fixed;top:24px;left:30px;color:#252422;text-decoration:none;font:300 42px/1 serif;z-index:2}.checkout-shell{min-height:100vh;display:grid;grid-template-columns:minmax(280px,.8fr) minmax(420px,1.2fr);gap:70px;align-items:center;padding:100px clamp(24px,7vw,110px)}.checkout-copy p,.checkout-success p{font:500 10px Montserrat,sans-serif;letter-spacing:.2em}.checkout-copy h1{margin:12px 0;font:500 clamp(54px,7vw,92px)/.9 'Cormorant Garamond',serif}.checkout-copy span,.checkout-success span{font:400 12px/1.8 Montserrat,sans-serif;color:#77736d}.checkout-card{background:#fff;border:1px solid #dedbd4;padding:38px}.checkout-card form,.checkout-card label{display:grid;gap:9px}.checkout-card form{gap:22px}.checkout-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}.checkout-card label span{font:500 10px Montserrat,sans-serif}.checkout-card input,.checkout-card select,.checkout-card textarea{width:100%;border:1px solid #d8d4cc;background:#fff;padding:14px;font:400 12px Montserrat,sans-serif}.checkout-order-summary{display:flex;justify-content:space-between;padding:18px 0;border-top:1px solid #e8e4dd;border-bottom:1px solid #e8e4dd;font:500 11px Montserrat,sans-serif}.checkout-submit,.checkout-success a:first-of-type{min-height:54px;border:0;background:#252422;color:#fff;display:flex;align-items:center;justify-content:center;text-decoration:none;font:500 10px Montserrat,sans-serif;letter-spacing:.12em;text-transform:uppercase;cursor:pointer}.checkout-error{color:#a44335;font:500 10px Montserrat,sans-serif}.checkout-success{text-align:center}.checkout-success h2{font:500 42px 'Cormorant Garamond',serif}.checkout-success a:last-child{display:block;margin-top:18px;color:#252422;font:500 10px Montserrat,sans-serif}.checkout-success a:first-of-type{margin-top:28px}@media(max-width:800px){.checkout-shell{grid-template-columns:1fr;padding:95px 18px 50px;gap:34px}.checkout-grid{grid-template-columns:1fr}.checkout-card{padding:24px}.checkout-copy h1{font-size:54px}}

/* v27: unified back controls, checkout select, phone and bag counter */
.shared-back,
.checkout-back,
body.product-detail-page .product-mobile-back,
.bag-page .bag-back {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #252422 !important;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.shared-back > span,
.checkout-back > span,
body.product-detail-page .product-mobile-back > span,
.bag-page .bag-back > span {
  display: block !important;
  width: 12px !important;
  height: 12px !important;
  border-left: 1.55px solid currentColor !important;
  border-bottom: 1.55px solid currentColor !important;
  transform: translateX(2px) rotate(45deg) !important;
}
.checkout-back {
  position: fixed;
  top: clamp(24px,3.2vw,34px);
  left: clamp(24px,4vw,54px);
  z-index: 20;
}
body.product-detail-page .product-mobile-back {
  position: fixed !important;
  top: clamp(24px,3.2vw,34px) !important;
  left: clamp(24px,4vw,54px) !important;
  z-index: 1000 !important;
}
.checkout-select-control { position: relative; display: block; }
.checkout-select-control select {
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(44,44,44,.14) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111;
  padding: 0 48px 0 18px !important;
  font: 500 11px/1 Montserrat,sans-serif !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.checkout-select-control i {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.cart-shortcut__count {
  top: 20px !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  min-width: 13px !important;
  height: 13px !important;
  padding: 0 3px !important;
  font-size: 7px !important;
  line-height: 13px !important;
  z-index: -1;
}
@media (max-width:820px){
  .checkout-back,
  body.product-detail-page .product-mobile-back,
  .bag-page .bag-back {
    top: 21px !important;
    left: 18px !important;
  }
  body.product-detail-page .product-mobile-back { display: inline-flex !important; }
}


/* Checkout v30 */
.checkout-header{position:fixed;inset:0 0 auto;height:76px;z-index:20;display:flex;align-items:center;justify-content:center;background:#f6f4ef;border-bottom:1px solid rgba(37,36,34,.08)}
.checkout-header .product-header__brand{position:static;display:block;width:150px;height:auto;margin:0}
.checkout-header .brand__svg{display:block;width:100%;height:auto;overflow:visible}
.checkout-header .checkout-back{position:absolute;top:50%;left:30px;transform:translateY(-50%)}
.checkout-shell{padding-top:140px}
.checkout-order-summary{display:block;padding:0;border-top:1px solid #e8e4dd;border-bottom:1px solid #e8e4dd}
.checkout-summary-list{display:grid}
.checkout-summary-item{display:grid;grid-template-columns:64px minmax(0,1fr) auto;gap:14px;align-items:center;padding:14px 0;border-bottom:1px solid #eeeae3}
.checkout-summary-item:last-child{border-bottom:0}
.checkout-summary-item img{width:64px;height:64px;display:block;object-fit:cover;background:#f4f2ee}
.checkout-summary-item__copy{min-width:0;display:grid;gap:6px}
.checkout-summary-item__copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font:500 12px Montserrat,sans-serif}
.checkout-summary-item__copy span{color:#8a867f;font:400 10px Montserrat,sans-serif}
.checkout-summary-item>b{font:600 11px Montserrat,sans-serif;white-space:nowrap}
.checkout-summary-total{display:flex;align-items:center;justify-content:space-between;padding:18px 0;font:500 11px Montserrat,sans-serif}
.checkout-summary-total strong{font-weight:600}
@media(max-width:800px){.checkout-header{height:64px}.checkout-header .product-header__brand{width:132px}.checkout-header .checkout-back{left:18px}.checkout-shell{padding-top:100px}.checkout-summary-item{grid-template-columns:52px minmax(0,1fr) auto;gap:10px}.checkout-summary-item img{width:52px;height:52px}.checkout-summary-item>b{font-size:10px}}

/* v31: checkout header limpio y sin eyebrow */
.checkout-header{
  background:transparent;
  border-bottom:0;
  box-shadow:none;
}
.checkout-copy>p{display:none!important;}

/* Confirmation page */
.confirmation-page {
  min-height: 100vh;
  margin: 0;
  background: #f6f4ef;
  color: #252422;
}

.confirmation-header .product-header__brand {
  display: flex;
  width: 150px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.confirmation-header .product-header__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.confirmation-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 118px 20px 48px;
}

.confirmation-card {
  width: min(900px, 100%);
  text-align: center;
}

.confirmation-eyebrow {
  margin: 0 0 38px;
  font: 500 10px/1 Montserrat, sans-serif;
  letter-spacing: .28em;
}

.confirmation-card h1 {
  margin: 0;
  font: 500 clamp(48px, 7vw, 78px)/1 "Cormorant Garamond", serif;
  overflow-wrap: anywhere;
}

.confirmation-copy {
  margin: 34px auto 30px;
  max-width: 620px;
  color: #77736d;
  font: 400 12px/1.8 Montserrat, sans-serif;
}

.confirmation-whatsapp {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #252422;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font: 500 10px/1 Montserrat, sans-serif;
  letter-spacing: .12em;
}

.confirmation-products {
  display: inline-block;
  margin-top: 20px;
  color: #252422;
  text-decoration: none;
  font: 500 10px/1 Montserrat, sans-serif;
}

@media (max-width: 800px) {
  .confirmation-header .product-header__brand {
    width: 132px;
    height: 22px;
  }

  .confirmation-shell {
    padding-top: 100px;
  }

  .confirmation-eyebrow {
    margin-bottom: 28px;
  }
}
