: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);
}



.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);
  }

  

  .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 */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  will-change: opacity, transform;
}



.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) {
  .reveal,
.section-reveal,
.scroll-section {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }
}



.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);
}



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

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





/* 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-image {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero__background-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  background: transparent;
}

.hero__background-video[hidden] {
  display: none !important;
}

.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 v22 */
.lifestyle {
  position: relative;
  min-height: 100svh !important;
  overflow: hidden !important;
  background: #fff !important;
  scroll-snap-align: start;
}

.lifestyle__motion {
  --lifestyle-gap: clamp(16px, 1.55vw, 22px);
  --lifestyle-tile: clamp(230px, 22vw, 310px);
  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(100%, calc(100vw - 56px));
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 auto;
  cursor: grab;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}


.lifestyle__carousel::-webkit-scrollbar { display: none; }
.lifestyle__carousel.is-dragging { cursor: grabbing; }
.lifestyle__carousel.is-dragging img { pointer-events: none; }

.lifestyle__track {
  display: flex;
  align-items: stretch;
  gap: var(--lifestyle-gap);
  width: max-content;
  min-width: max-content;
  padding: 0 1px 8px;
}

.lifestyle-group {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, var(--lifestyle-tile));
  grid-template-rows: repeat(2, var(--lifestyle-tile));
  gap: var(--lifestyle-gap);
  width: calc((var(--lifestyle-tile) * 3) + (var(--lifestyle-gap) * 2));
  scroll-snap-align: start;
}

.lifestyle-item {
  margin: 0;
  overflow: hidden;
  background: #d9d9d9;
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.lifestyle-group > .lifestyle-item:nth-child(1) {
  grid-row: 1 / span 2;
  grid-column: 1 / span 2;
}
.lifestyle-group > .lifestyle-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.lifestyle-group > .lifestyle-item:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

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

@media (max-width: 700px) {
  .lifestyle {
    height: auto !important;
    min-height: 100svh !important;
    overflow: hidden !important;
  }

  .lifestyle__motion {
    --lifestyle-gap: 10px;
    --lifestyle-mobile-size: min(calc(100vw - 32px), calc((100svh - 126px) / 2));
    height: auto !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    padding: 76px 0 24px 16px !important;
  }

  .lifestyle__carousel {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    overflow-x: auto !important;
  }

  .lifestyle__track {
    gap: 12px;
    padding: 0 16px 0 0;
  }

  .lifestyle-group {
    display: flex;
    flex-direction: column;
    gap: var(--lifestyle-gap);
    flex: 0 0 var(--lifestyle-mobile-size);
    width: var(--lifestyle-mobile-size);
    max-width: calc(100vw - 32px);
    height: auto;
    scroll-snap-align: start;
  }

  .lifestyle-group > .lifestyle-item:nth-child(n) {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    grid-column: auto;
    grid-row: auto;
  }
}

/* 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 .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__svg,
body.product-detail-page .product-header .brand__svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible !important;
}

@media (max-width: 820px) {
  
}

@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__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 .menu-toggle,
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 .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 .menu-toggle,
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 .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;
}



@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 .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 .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 .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__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) {
  
}


/* 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;
  }
}


/* Shop v2: category empty state and mobile type weights. */
.products-filter-empty {
  margin: clamp(72px, 7vw, 96px) 0 0;
  color: rgba(17, 17, 17, 0.48);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
}

.products-filter-empty[hidden] {
  display: none !important;
}

@media (max-width: 640px) {
  body.product-page .products-page h1 {
    font-weight: 400 !important;
  }

  body.product-page .products-picker__button,
body.product-page .products-picker__value,
body.product-page .products-picker__option {
    font-weight: 300 !important;
  }

  .products-filter-empty {
    margin-top: 52px;
    font-size: 12px;
    font-weight: 300;
  }
}

/* Shop v3: aligned header controls, grouped departments and product detail states. */
body.product-page .product-header,
body.product-detail-page .product-header {
  display: flex;
  align-items: center;
  justify-content: center;
}



body.product-page .cart-shortcut,
body.product-detail-page .cart-shortcut,
body.product-page .menu-toggle--global,
body.product-detail-page .menu-toggle--global {
  top: calc(clamp(72px, 7vw, 92px) / 2) !important;
  transform: translateY(-50%) !important;
}

.product-code-eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(37, 36, 34, .48);
}

.product-info h1,
body.product-detail-page [data-product-title] {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.product-stock-badge {
  width: fit-content;
  margin-top: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(37, 36, 34, .2);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 8px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

/* WhatsApp is circular while inactive and expands on hover/focus. */
.whatsapp-float {
  width: 56px;
  min-width: 56px;
  padding: 0;
  gap: 0;
  overflow: hidden;
  justify-content: flex-start;
  transition: width 320ms cubic-bezier(.16,1,.3,1), min-width 320ms cubic-bezier(.16,1,.3,1), padding 320ms cubic-bezier(.16,1,.3,1), gap 320ms cubic-bezier(.16,1,.3,1), transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}
.whatsapp-float__icon { margin-left: 17px; }
.whatsapp-float__label {
  max-width: 0;
  opacity: 0;
  transform: translateX(8px);
  transition: max-width 320ms cubic-bezier(.16,1,.3,1), opacity 180ms ease, transform 320ms cubic-bezier(.16,1,.3,1);
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 248px;
  min-width: 248px;
  padding-right: 20px;
  gap: 10px;
}
.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
  max-width: 194px;
  opacity: 1;
  transform: translateX(0);
}

/* Product detail skeleton while inventory and gallery data load. */
body.product-detail-page .product-detail-skeleton {
  position: relative;
  overflow: hidden;
}
body.product-detail-page .product-gallery.product-detail-skeleton .product-gallery__item,
body.product-detail-page .product-info.product-detail-skeleton {
  background: #f2f0eb;
}
body.product-detail-page .product-info.product-detail-skeleton > * { visibility: hidden; }
body.product-detail-page .product-detail-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  transform: translateX(-100%);
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);
  animation: casa-glick-product-skeleton 1.45s ease-in-out infinite;
  pointer-events: none;
}

@media (max-width: 820px) {
  body.product-page .cart-shortcut,
body.product-detail-page .cart-shortcut,
body.product-page .menu-toggle--global,
body.product-detail-page .menu-toggle--global {
    top: 32.5px !important;
  }
  .product-info h1,
body.product-detail-page [data-product-title] {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .product-code-eyebrow { margin-bottom: 7px; }
  .product-stock-badge { margin-top: 10px; }
  .whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    width: 54px;
    min-width: 54px;
    padding: 0;
    gap: 0;
  }
  .whatsapp-float__icon { margin-left: 16px; }
  .whatsapp-float__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  body.product-detail-page .product-detail-skeleton::after { animation: none; }
}


/* shop5: promotional pricing */
.product-price__main {display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;column-gap:18px;row-gap:4px;}
.product-price__amount.is-discounted {color:#b52820;}
.product-price__original {display:block;grid-column:1 / -1;justify-self:end;text-align:right;color:#77736d;font-size:30%;line-height:1.15;text-decoration:line-through;text-decoration-thickness:1px;}
.product-price__original[hidden] {display:none!important;}
@media (max-width: 767px){.product-price__original {margin-top:3px;font-size:30%;}}

/* shop6: promotional price hierarchy and stock alignment */
.product-price__main {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "price stock"
    "original stock";
  align-items: end;
  column-gap: 18px;
  row-gap: 5px;
}
.product-price__amount {
  grid-area: price;
}
.product-price__original {
  grid-area: original;
  justify-self: start;
  text-align: left;
  font-size: 37.5%;
  margin-top: 0;
}
.product-price__stock {
  grid-area: stock;
  justify-self: end;
  align-self: center;
  text-align: right;
}
@media (max-width: 767px) {
  .product-price__original {
    font-size: 37.5%;
    margin-top: 0;
  }
}


/* shop8: inventory category lookup and compact price/stock layout */
.product-price__main {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-areas:
    "price stock"
    "original original";
  justify-content: start;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 5px;
}
.product-price__amount { grid-area: price; }
.product-price__stock {
  grid-area: stock;
  justify-self: start;
  align-self: baseline;
  text-align: left;
  white-space: nowrap;
}
.product-price__original {
  grid-area: original;
  justify-self: end;
  text-align: right;
  font-size: 50%;
  line-height: 1.1;
  margin-top: 0;
}
@media (max-width: 767px) {
  .product-price__main { column-gap: 8px; }
  .product-price__original { font-size: 50%; }
}


/* shop9: panel section is authoritative + corrected promotion hierarchy */
.product-price__main {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-areas:
    "price stock"
    "original .";
  justify-content: start;
  align-items: baseline;
  column-gap: 35px;
  row-gap: 7px;
}
.product-price__amount { grid-area: price; }
.product-price__stock {
  grid-area: stock;
  justify-self: start;
  align-self: baseline;
  text-align: left;
  white-space: nowrap;
}
.product-price__original {
  grid-area: original;
  justify-self: start;
  text-align: left;
  font-size: 32px;
  line-height: 1;
  margin-top: 0;
}
@media (max-width: 767px) {
  .product-price__main { column-gap: 35px; }
  .product-price__original { font-size: 24px; }
}


/* shop10: inventory colors, balanced promo pricing and element-level detail skeleton */
.product-price__original {
  font-size: 24px;
}
@media (max-width: 767px) {
  .product-price__original { font-size: 12px; }
}

body.product-detail-page .product-info.product-detail-skeleton {
  background: transparent;
  overflow: visible;
}
body.product-detail-page .product-info.product-detail-skeleton > * {
  visibility: visible;
}
body.product-detail-page .product-info.product-detail-skeleton::after {
  display: none;
}
body.product-detail-page .product-info.product-detail-skeleton .product-sheet-toggle,
body.product-detail-page .product-info.product-detail-skeleton .product-mobile-tabs,
body.product-detail-page .product-info.product-detail-skeleton .product-mobile-section-title {
  visibility: hidden;
}
body.product-detail-page .product-info.product-detail-skeleton .product-code-eyebrow,
body.product-detail-page .product-info.product-detail-skeleton [data-product-title],
body.product-detail-page .product-info.product-detail-skeleton [data-product-description],
body.product-detail-page .product-info.product-detail-skeleton .product-option h2,
body.product-detail-page .product-info.product-detail-skeleton .product-spec h2,
body.product-detail-page .product-info.product-detail-skeleton [data-product-materials],
body.product-detail-page .product-info.product-detail-skeleton [data-product-measures],
body.product-detail-page .product-info.product-detail-skeleton .product-info__divider,
body.product-detail-page .product-info.product-detail-skeleton .product-price,
body.product-detail-page .product-info.product-detail-skeleton .product-quote {
  position: relative;
  color: transparent !important;
  border-color: transparent !important;
  background: #ece9e3 !important;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: none !important;
  pointer-events: none;
}
body.product-detail-page .product-info.product-detail-skeleton .product-code-eyebrow { width: 88px; height: 10px; }
body.product-detail-page .product-info.product-detail-skeleton [data-product-title] { width: min(92%, 470px); height: 72px; }
body.product-detail-page .product-info.product-detail-skeleton [data-product-description] { width: 100%; min-height: 86px; }
body.product-detail-page .product-info.product-detail-skeleton .product-info__divider { width: 100%; height: 1px; }
body.product-detail-page .product-info.product-detail-skeleton .product-option h2,
body.product-detail-page .product-info.product-detail-skeleton .product-spec h2 { width: 86px; height: 16px; }
body.product-detail-page .product-info.product-detail-skeleton [data-product-materials] { width: 76%; height: 18px; }
body.product-detail-page .product-info.product-detail-skeleton [data-product-measures] { width: 64%; height: 18px; }
body.product-detail-page .product-info.product-detail-skeleton .product-swatches { gap: 10px; }
body.product-detail-page .product-info.product-detail-skeleton .product-swatch {
  width: 38px;
  height: 38px;
  border: 0;
  background: #ece9e3;
  pointer-events: none;
}
body.product-detail-page .product-info.product-detail-skeleton .product-swatch::before { display: none; }
body.product-detail-page .product-info.product-detail-skeleton .product-price { width: 245px; height: 48px; display: block !important; }
body.product-detail-page .product-info.product-detail-skeleton .product-quote { width: 100%; min-height: 54px; }
body.product-detail-page .product-info.product-detail-skeleton .product-code-eyebrow::after,
body.product-detail-page .product-info.product-detail-skeleton [data-product-title]::after,
body.product-detail-page .product-info.product-detail-skeleton [data-product-description]::after,
body.product-detail-page .product-info.product-detail-skeleton .product-option h2::after,
body.product-detail-page .product-info.product-detail-skeleton .product-spec h2::after,
body.product-detail-page .product-info.product-detail-skeleton [data-product-materials]::after,
body.product-detail-page .product-info.product-detail-skeleton [data-product-measures]::after,
body.product-detail-page .product-info.product-detail-skeleton .product-price::after,
body.product-detail-page .product-info.product-detail-skeleton .product-quote::after,
body.product-detail-page .product-gallery.product-detail-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: casa-glick-product-skeleton 1.45s ease-in-out infinite;
}
@media (max-width: 767px) {
  body.product-detail-page .product-info.product-detail-skeleton [data-product-title] { height: 38px; width: 88%; }
  body.product-detail-page .product-info.product-detail-skeleton [data-product-description] { min-height: 68px; }
  body.product-detail-page .product-info.product-detail-skeleton .product-price { width: 200px; height: 42px; }
}

/* shop11: reduce previous promotional price by 50% */
.product-price__original {
  font-size: 12px;
}
@media (max-width: 767px) {
  .product-price__original { font-size: 6px; }
}

/* shop18: Contact block matching casaglick.com */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 548px;
  background: #f2f1ef;
  overflow: hidden;
}

.contact-section__form-panel {
  display: flex;
  align-items: center;
  padding: clamp(58px, 6.6vw, 94px) clamp(52px, 7.2vw, 96px);
}

.contact-section__content {
  width: min(100%, 410px);
}

.contact-section__eyebrow {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #161616;
}

.contact-section h2 {
  margin: 0 0 41px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #121212;
}

.contact-form {
  display: grid;
  gap: 17px;
}

.contact-form__field {
  display: grid;
  gap: 9px;
  margin: 0;
}

.contact-form__field span {
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.31em;
  text-transform: uppercase;
  color: #111;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.48);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: 400 14px/1.4 "Montserrat", sans-serif;
  padding: 0 0 8px;
  transition: border-color 180ms ease;
}

.contact-form input {
  height: 23px;
}

.contact-form textarea {
  min-height: 68px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
}

.contact-form__submit {
  width: 175px;
  min-height: 37px;
  margin-top: 10px;
  border: 1px solid #171717;
  border-radius: 0;
  background: #171717;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: transparent;
  color: #171717;
}

.contact-section__media {
  min-width: 0;
  min-height: 548px;
  margin: 0;
  overflow: hidden;
}

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

@media (max-width: 760px) {
  .contact-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-section__form-panel {
    padding: 64px 24px 58px;
  }

  .contact-section__content {
    width: 100%;
  }

  .contact-section__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .contact-section h2 {
    margin-bottom: 34px;
    font-size: 36px;
  }

  .contact-form {
    gap: 19px;
  }

  .contact-form__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 7px;
  }

  .contact-section__media {
    min-height: 430px;
    aspect-ratio: 4 / 5;
  }

  .contact-section__media img {
    object-position: center center;
  }
}

/* shop19: white contact panel and Casa Glick footer */
.contact-section {
  background: #ffffff;
}

.contact-section__form-panel {
  background: #ffffff;
}

.site-footer {
  background: #171616;
  color: #ffffff;
}

.site-footer__inner {
  min-height: 422px;
  padding: 74px clamp(48px, 6.8vw, 92px) 30px;
  display: flex;
  flex-direction: column;
}

.site-footer__brand {
  margin: 0 0 40px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(27px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.015em;
}

.site-footer__contact {
  display: grid;
  gap: 25px;
  width: max-content;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.site-footer__contact a,
.site-footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.32);
}

.site-footer__copyright {
  margin: 52px 0 0;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 760px) {
  .site-footer__inner {
    min-height: 390px;
    padding: 58px 24px 28px;
  }

  .site-footer__brand {
    margin-bottom: 36px;
    font-size: 26px;
  }

  .site-footer__contact {
    gap: 22px;
    font-size: 10px;
  }

  .site-footer__copyright {
    margin-top: 32px;
    font-size: 8px;
  }
}


/* Shop v24: progressive catalog loading */
.product-card--progressive {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.product-card--progressive.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.products-load-more {
  width: 100%;
  height: 1px;
  pointer-events: none;
}
.products-load-more[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .product-card--progressive {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* shop25: Firestore contact form states. */
.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
}

.contact-form__status {
  min-height: 18px;
  margin: 1px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #171717;
}

.contact-form__status:empty {
  min-height: 0;
}

.contact-form__status.is-error {
  color: #a12b25;
}

.contact-form__status.is-success {
  color: #2d6b45;
}


/* v27: four centered landing categories with wider desktop spacing */
@media (min-width: 901px) {
  .products__grid {
    width: min(100%, 1240px) !important;
    max-width: 1240px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(48px, 5vw, 72px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }
}

/* Checkout mode + Stripe result pages */
.checkout-mode-note {margin:-10px 0 0;text-align:center;color:#77736d;font:500 9px/1.5 Montserrat,sans-serif;letter-spacing:.06em;text-transform:uppercase}
.checkout-submit:disabled {cursor:wait;opacity:.62}
.stripe-result-card {max-width:620px;margin:auto;text-align:center}
.stripe-result-details {display:grid;gap:8px;margin:22px 0 6px;font-family:Montserrat,sans-serif}
.stripe-result-details strong {font-size:15px}
.stripe-result-details span {font-size:11px;color:#77736d}
.stripe-retry,
.stripe-result-primary {width:100%;margin-top:26px}
.stripe-result-link {display:inline-block;margin-top:20px;color:#252422;font:500 10px Montserrat,sans-serif;text-decoration:none;text-transform:uppercase;letter-spacing:.1em}

/* v30: four landing categories in a clean 2 x 2 mobile grid */
@media (max-width: 760px) {
  .products__grid .product-category:last-child {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
}


/* Web Design visibility override */
[hidden],
.is-shop-content-disabled {
  display: none !important;
}


/* Web Design visibility guard */
[data-section].is-shop-content-disabled,
[data-section][hidden].is-shop-content-disabled {
  display: none !important;
}

/* shop36: corrected header logo and About modal */




body.has-about-modal {
  overflow: hidden;
}

.about-modal[hidden] {
  display: none !important;
}

.about-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

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

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #f2f1ed;
  color: #252422;
  transform: translateY(34px);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.about-modal.is-open .about-modal__panel {
  transform: translateY(0);
}

.about-modal__close {
  position: fixed;
  top: clamp(24px, 3vw, 42px);
  right: clamp(24px, 4vw, 58px);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.about-modal__close span {
  position: absolute;
  left: 9px;
  top: 20px;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.about-modal__close span:first-child { transform: rotate(45deg); }
.about-modal__close span:last-child { transform: rotate(-45deg); }

.about-modal__inner {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(90px, 11vw, 148px) 0 clamp(72px, 9vw, 120px);
}

.about-modal__header {
  width: min(820px, 100%);
  margin-bottom: clamp(68px, 8vw, 112px);
}

.about-modal__eyebrow {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 600;
}

.about-modal__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.about-modal__intro {
  width: min(700px, 100%);
  margin: 34px 0 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  color: #565551;
}

.about-modal__cta {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
}

.about-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(37, 36, 34, 0.2);
}

.about-modal__item {
  min-height: 300px;
  padding: 38px clamp(30px, 4vw, 58px) 48px 0;
  border-bottom: 1px solid rgba(37, 36, 34, 0.2);
}

.about-modal__item:nth-child(odd) {
  border-right: 1px solid rgba(37, 36, 34, 0.2);
}

.about-modal__item:nth-child(even) {
  padding-left: clamp(30px, 4vw, 58px);
}

.about-modal__number {
  display: block;
  margin-bottom: 42px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.about-modal__item h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 500;
  line-height: 1;
}

.about-modal__item p {
  max-width: 470px;
  margin: 0;
  color: #5c5a56;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 820px) {
  

  

  .about-modal__inner {
    width: calc(100% - 44px);
    padding-top: 92px;
  }

  .about-modal__header {
    margin-bottom: 62px;
  }

  .about-modal__header h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .about-modal__grid {
    grid-template-columns: 1fr;
  }

  .about-modal__item,
.about-modal__item:nth-child(even) {
    min-height: 0;
    padding: 30px 0 38px;
    border-right: 0;
  }

  .about-modal__number {
    margin-bottom: 25px;
  }
}

/* shop37: color-adaptive header logo and exact casaglick.com About modal */


.product-header__brand,
.checkout-header .product-header__brand,
.confirmation-header .product-header__brand {
  color: #292928;
}

body.menu-open .product-header__brand {
  color: #292928;
}

body.has-project-modal,
body.has-about-modal {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 612;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: clamp(18px, 3vw, 44px) clamp(18px, 3vw, 44px) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.22,.61,.36,1), visibility .42s cubic-bezier(.22,.61,.36,1);
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 11, .48);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.project-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  max-height: min(90svh, 920px);
  overflow: auto;
  background: #fff;
  color: #1c1a1a;
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
  transform: translateY(22px) scale(.985);
  opacity: 0;
  transition: transform .48s cubic-bezier(.22,.61,.36,1), opacity .48s cubic-bezier(.22,.61,.36,1);
  scrollbar-width: none;
}

.project-modal__panel::-webkit-scrollbar {
  display: none;
}

.project-modal.is-open .project-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.project-modal__close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 3;
  width: 68px;
  height: 68px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #1c1a1a;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background .28s ease, opacity .28s ease;
}

.project-modal__close:hover {
  background: rgba(255,255,255,.96);
}

.project-modal__eyebrow {
  margin: 0 auto 24px;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(28,26,26,.72);
}

.project-modal__rule {
  display: block;
  width: 68px;
  height: 1px;
  margin: 0 auto 28px;
  background: #b09154;
}

.about-modal {
  z-index: 614;
}

.about-modal__panel {
  width: min(100%, 1120px);
  max-height: min(86svh, 820px);
  background: #fff;
}

.about-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: min(86svh, 760px);
}

.about-modal__intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 7vw, 108px) clamp(42px, 5.8vw, 82px);
  border-right: 1px solid rgba(28,26,26,.1);
}

.about-modal__eyebrow,
.about-modal__rule {
  margin-left: 0;
  margin-right: 0;
}

.about-modal__title {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(38px, 4.1vw, 64px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.035em;
  color: #1c1a1a;
}

.about-modal__lead {
  max-width: 500px;
  margin: clamp(26px, 3svh, 36px) 0 0;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.78;
  color: rgba(28,26,26,.68);
}

.about-modal__cta {
  width: fit-content;
  min-width: 190px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(34px, 4svh, 52px);
  padding: 0 28px;
  border: 1px solid #1c1a1a;
  background: #1c1a1a;
  color: #fff;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: transform .28s ease, background .28s ease;
}

.about-modal__cta:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.about-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 6.4vw, 96px) clamp(34px, 5vw, 72px);
}

.about-modal__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 0;
  padding: clamp(24px, 3.2svh, 36px) 0;
  border-top: 1px solid rgba(28,26,26,.11);
  border-right: 0;
  border-bottom: 0;
}

.about-modal__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-modal__item:last-child {
  padding-bottom: 0;
}

.about-modal__number {
  display: block;
  margin: 0;
  padding-top: 8px;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .18em;
  color: #b09154;
}

.about-modal__item h3 {
  margin: 0 0 10px;
  font-family: var(--serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  color: #1c1a1a;
}

.about-modal__item p {
  max-width: 520px;
  margin: 0;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(28,26,26,.64);
}

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

  .about-modal__panel {
    width: 100%;
    height: 100svh;
    max-height: none;
  }

  .about-modal__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-modal__intro-panel {
    padding: 86px clamp(26px, 7vw, 58px) 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(28,26,26,.1);
  }

  .about-modal__content {
    padding: 34px clamp(26px, 7vw, 58px) 62px;
  }
}

@media (max-width: 620px) {
  .about-modal__intro-panel {
    padding: 82px 22px 40px;
  }

  .about-modal__title {
    font-size: clamp(36px, 12vw, 48px);
  }

  .about-modal__lead {
    font-size: 13px;
  }

  .about-modal__content {
    padding: 24px 22px 56px;
  }

  .about-modal__item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .about-modal__item h3 {
    font-size: 26px;
  }
}


/* shop38: reliable SVG logo and viewport-safe About modal */


.project-modal {
  align-items: center !important;
  padding: 16px !important;
}

.about-modal__panel {
  width: min(calc(100vw - 32px), 1120px) !important;
  height: min(calc(100svh - 32px), 760px) !important;
  max-height: calc(100svh - 32px) !important;
  overflow: hidden !important;
}

.about-modal__layout {
  height: 100% !important;
  min-height: 0 !important;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
}

.about-modal__intro-panel,
.about-modal__content {
  min-height: 0 !important;
  overflow: hidden !important;
}

.about-modal__intro-panel {
  padding: clamp(34px, 5.2vh, 62px) clamp(32px, 4.5vw, 62px) !important;
}

.about-modal__title {
  font-size: clamp(36px, min(4.2vw, 6.2vh), 58px) !important;
  line-height: .96 !important;
}

.about-modal__lead {
  margin-top: clamp(18px, 2.5vh, 28px) !important;
  font-size: clamp(12px, 1.45vh, 14px) !important;
  line-height: 1.65 !important;
}

.about-modal__cta {
  margin-top: clamp(22px, 3vh, 34px) !important;
}

.about-modal__content {
  justify-content: center !important;
  padding: clamp(28px, 4.4vh, 50px) clamp(28px, 4vw, 54px) !important;
}

.about-modal__item {
  grid-template-columns: 38px minmax(0, 1fr) !important;
  gap: clamp(14px, 1.8vw, 24px) !important;
  padding: clamp(14px, 2.1vh, 22px) 0 !important;
}

.about-modal__number {
  padding-top: 5px !important;
}

.about-modal__item h3 {
  margin-bottom: 7px !important;
  font-size: clamp(23px, min(2vw, 3.4vh), 31px) !important;
}

.about-modal__item p {
  font-size: clamp(10.5px, 1.35vh, 12px) !important;
  line-height: 1.58 !important;
}

.project-modal__close {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  float: none !important;
  width: 56px !important;
  height: 56px !important;
}

@media (max-height: 700px) and (min-width: 981px) {
  .about-modal__panel {
    height: calc(100svh - 24px) !important;
    max-height: calc(100svh - 24px) !important;
  }
  .about-modal__intro-panel {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .about-modal__eyebrow { margin-bottom: 14px !important; }
  .about-modal__rule { margin-bottom: 18px !important; }
  .about-modal__title { font-size: clamp(32px, 5.4vh, 46px) !important; }
  .about-modal__lead { margin-top: 15px !important; line-height: 1.5 !important; }
  .about-modal__cta { margin-top: 18px !important; height: 38px !important; }
  .about-modal__content { padding-top: 24px !important; padding-bottom: 24px !important; }
  .about-modal__item { padding: 11px 0 !important; }
  .about-modal__item h3 { font-size: clamp(21px, 3.6vh, 27px) !important; }
  .about-modal__item p { line-height: 1.48 !important; }
}

@media (max-width: 980px) {
  .project-modal { padding: 0 !important; }
  .about-modal__panel {
    width: 100% !important;
    height: 100svh !important;
    max-height: 100svh !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }
  .about-modal__layout {
    display: block !important;
    height: auto !important;
  }
  .about-modal__intro-panel,
.about-modal__content {
    overflow: visible !important;
  }
  .about-modal__intro-panel {
    padding: 76px clamp(24px, 7vw, 54px) 38px !important;
  }
  .about-modal__content {
    padding: 28px clamp(24px, 7vw, 54px) 54px !important;
  }
  .about-modal__title {
    font-size: clamp(35px, 8vw, 50px) !important;
  }
  .about-modal__item {
    padding: 22px 0 !important;
  }
}

@media (max-width: 620px) {
  .about-modal__intro-panel { padding: 68px 20px 32px !important; }
  .about-modal__content { padding: 20px 20px 44px !important; }
  .about-modal__item { grid-template-columns: 30px minmax(0, 1fr) !important; gap: 12px !important; }
  .about-modal__item h3 { font-size: 25px !important; }
  .about-modal__item p { font-size: 12px !important; line-height: 1.6 !important; }
  .project-modal__close { width: 50px !important; height: 50px !important; }
}

/* shop39: exact line-only About details and smaller header logo */


.about-modal__item,
.about-modal__item:first-child,
.about-modal__item:last-child {
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.about-modal__item {
  border-top: 1px solid rgba(28, 26, 26, 0.11) !important;
}

.about-modal__item:first-child {
  border-top: 0 !important;
}

/* shop40: preserve the SVG's native aspect ratio at every header size */




@media (max-width: 820px) {
  
}

/* shop43: header logo PNG test — simplified responsive sizing for index, productos y producto */
.brand,
.product-header__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(112px, 9.5vw, 148px);
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 148px;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  overflow: visible;
}

@media (max-width: 820px) {
  .brand,
  .product-header__brand {
    width: clamp(102px, 27vw, 116px);
    max-width: 116px;
  }
}

/* shop42: isolated header logo for index, productos and producto.
   No inherited .brand or .product-header__brand sizing rules apply. */
/* unused after shop43 test */
.cg-header-logo {
  display: block;
  width: clamp(112px, 9.5vw, 148px);
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: 148px;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  flex: 0 0 auto;
  line-height: 0;
  text-decoration: none;
}

.cg-header-logo__image {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  overflow: visible;
  transform: none;
}

@media (max-width: 820px) {
  /* unused after shop43 test */
.cg-header-logo {
    width: clamp(102px, 27vw, 116px);
    max-width: 116px;
    height: auto;
  }

  .cg-header-logo__image {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
  }
}


/* shop44: footer brand logo png */
.site-footer__brand-logo {
  display: block;
  width: min(100%, 312px);
  height: auto;
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer__brand-logo {
    width: min(100%, 236px);
  }
}

/* shop45 beta: hierarchical catalog filters */
.catalog-filter-beta { position: relative; z-index: 8; }
.products-filter--desktop { overflow: visible !important; }
.products-filter__group { position: relative; display: flex; align-items: center; }
.products-filter__flyout {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: max-content;
  max-width: min(720px, 86vw);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(44,44,44,.13);
  box-shadow: 0 18px 45px rgba(35,31,27,.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.products-filter__group:hover .products-filter__flyout,
.products-filter__group:focus-within .products-filter__flyout {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.products-filter__flyout button {
  appearance: none;
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: #56534f;
  font: 500 10px/1.2 "Montserrat", sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.products-filter__flyout button:hover,
.products-filter__flyout button:focus-visible,
.products-filter__flyout button.is-active { color: #171616; border-bottom-color: #171616; outline: none; }
.products-filter__group.has-no-subcategories .products-filter__flyout { display: none; }
.catalog-mobile-filter { display: none; }

@media (max-width: 820px) {
  .products-filter--desktop { display: none !important; }
  .catalog-mobile-filter { display: block; margin: 22px 0 30px; }
  .catalog-mobile-filter__trigger {
    width: 100%; min-height: 60px; padding: 12px 46px 12px 0;
    display: grid; gap: 5px; position: relative; text-align: left;
    border: 0; border-top: 1px solid rgba(44,44,44,.24); border-bottom: 1px solid rgba(44,44,44,.24);
    background: transparent; color: #292928; cursor: pointer;
  }
  .catalog-mobile-filter__caption { font: 500 9px/1 "Montserrat",sans-serif; letter-spacing:.2em; text-transform:uppercase; color:#85817c; }
  .catalog-mobile-filter__trigger strong { font: 400 13px/1.25 "Montserrat",sans-serif; letter-spacing:.1em; text-transform:uppercase; }
  .catalog-mobile-filter__chevron { position:absolute; right:5px; top:50%; width:9px; height:9px; border-right:1px solid currentColor; border-bottom:1px solid currentColor; transform:translateY(-68%) rotate(45deg); transition:transform .25s ease; }
  .catalog-mobile-filter.is-open .catalog-mobile-filter__chevron { transform:translateY(-30%) rotate(225deg); }
  .catalog-mobile-filter__panel { padding: 20px 0 6px; border-bottom:1px solid rgba(44,44,44,.18); }
  .catalog-mobile-filter__categories { display:flex; gap:20px; padding:0 0 15px; overflow-x:auto; scrollbar-width:none; }
  .catalog-mobile-filter__categories::-webkit-scrollbar { display:none; }
  .catalog-mobile-filter__categories button { flex:0 0 auto; appearance:none; border:0; border-bottom:1px solid transparent; padding:5px 0 8px; background:transparent; color:#77736e; font:500 10px/1 "Montserrat",sans-serif; letter-spacing:.14em; text-transform:uppercase; }
  .catalog-mobile-filter__categories button.is-active { color:#171616; border-bottom-color:#171616; }
  .catalog-mobile-filter__subcategories { display:grid; grid-template-columns:1fr 1fr; gap:0 20px; }
  .catalog-mobile-filter__subcategories button { appearance:none; border:0; border-top:1px solid rgba(44,44,44,.11); padding:15px 0; background:transparent; color:#5e5a56; text-align:left; font:400 11px/1.3 "Montserrat",sans-serif; }
  .catalog-mobile-filter__subcategories button.is-active { color:#171616; font-weight:600; }
  .catalog-mobile-filter__subcategories p { grid-column:1/-1; margin:3px 0 14px; color:#8a8680; font:400 11px/1.5 "Montserrat",sans-serif; }
}


/* shop46 beta: dependent mobile category and subcategory pickers */
.catalog-mobile-pickers { display: none; }

@media (max-width: 820px) {
  .catalog-mobile-filter { display: none !important; }
  .catalog-mobile-pickers {
    display: grid;
    gap: 14px;
    margin: 22px 0 30px;
  }

  .catalog-mobile-picker {
    display: grid;
    gap: 8px;
  }

  .catalog-mobile-picker[hidden] {
    display: none !important;
  }

  .catalog-mobile-picker__label {
    color: #85817c;
    font: 500 9px/1 "Montserrat", sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .catalog-mobile-picker__control {
    position: relative;
    display: block;
    border-top: 1px solid rgba(44,44,44,.24);
    border-bottom: 1px solid rgba(44,44,44,.24);
  }

  .catalog-mobile-picker__select {
    width: 100%;
    min-height: 56px;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    padding: 0 42px 0 0;
    background: transparent;
    color: #292928;
    outline: none;
    font: 400 13px/1.25 "Montserrat", sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .catalog-mobile-picker__control i {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1px solid #292928;
    border-bottom: 1px solid #292928;
    transform: translateY(-68%) rotate(45deg);
    pointer-events: none;
  }
}

/* shop47 beta: reuse the original premium mobile picker visual language */
@media (max-width: 820px) {
  .catalog-mobile-pickers {
    display: grid;
    gap: 18px;
    margin: 22px 0 30px;
  }

  .catalog-premium-picker {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    z-index: 35;
    border-bottom: 1px solid rgba(17, 17, 17, 0.36);
  }

  .catalog-premium-picker--subcategory {
    z-index: 34;
  }

  .catalog-premium-picker[hidden] {
    display: none !important;
  }

  .catalog-premium-picker__select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    border: 0;
  }

  .catalog-premium-picker__button {
    width: 100%;
    min-height: 46px;
    padding: 0 48px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #111111;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .catalog-premium-picker__value {
    display: block;
    color: #111111;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .catalog-premium-picker__chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    margin-top: -7px;
    transform: rotate(45deg);
    border-right: 1.3px solid rgba(17, 17, 17, 0.82);
    border-bottom: 1.3px solid rgba(17, 17, 17, 0.82);
    pointer-events: none;
    transition: transform 240ms ease, margin 240ms ease;
  }

  .catalog-premium-picker.is-open .catalog-premium-picker__chevron {
    margin-top: -2px;
    transform: rotate(225deg);
  }

  .catalog-premium-picker__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 60;
    padding: 8px;
    display: grid;
    gap: 2px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 240ms ease, transform 240ms ease, visibility 0ms linear 240ms;
  }

  .catalog-premium-picker.is-open .catalog-premium-picker__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0ms;
  }

  .catalog-premium-picker__option {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    background: transparent;
    color: rgba(17, 17, 17, 0.58);
    font: inherit;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, padding 180ms ease;
  }

  .catalog-premium-picker__option:hover,
  .catalog-premium-picker__option:focus-visible {
    background: rgba(17, 17, 17, 0.045);
    color: rgba(17, 17, 17, 0.9);
    outline: none;
  }

  .catalog-premium-picker__option.is-selected {
    background: rgba(17, 17, 17, 0.07);
    color: #111111;
    padding-left: 18px;
  }
}


/* shop48 beta: vertical desktop flyouts and a single hierarchical mobile picker */
@media (min-width: 821px) {
  .products-filter__flyout {
    min-width: 230px;
    width: max-content;
    max-width: 300px;
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .products-filter__flyout button {
    width: 100%;
    min-height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(44,44,44,.10);
    text-align: left;
  }

  .products-filter__flyout button:last-child {
    border-bottom: 0;
  }

  .products-filter__flyout button:hover,
  .products-filter__flyout button:focus-visible,
  .products-filter__flyout button.is-active {
    border-bottom-color: rgba(44,44,44,.10);
    padding-left: 6px;
  }
}

.catalog-hierarchical-picker { display: none; }

@media (max-width: 820px) {
  .catalog-premium-picker { display: none !important; }
  .catalog-mobile-pickers {
    display: block;
    margin: 22px 0 30px;
  }

  .catalog-hierarchical-picker {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(17,17,17,.36);
    z-index: 38;
  }

  .catalog-hierarchical-picker__button {
    width: 100%;
    min-height: 46px;
    padding: 0 48px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .catalog-hierarchical-picker__value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #111;
    font: 400 15px/1 "Montserrat",sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .catalog-hierarchical-picker__chevron {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    margin-top: -7px;
    transform: rotate(45deg);
    border-right: 1.3px solid rgba(17,17,17,.82);
    border-bottom: 1.3px solid rgba(17,17,17,.82);
    pointer-events: none;
    transition: transform 240ms ease, margin 240ms ease;
  }

  .catalog-hierarchical-picker.is-open .catalog-hierarchical-picker__chevron {
    margin-top: -2px;
    transform: rotate(225deg);
  }

  .catalog-hierarchical-picker__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 60;
    max-height: min(62vh, 430px);
    overflow-y: auto;
    padding: 8px;
    display: grid;
    gap: 2px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(17,17,17,.08);
    box-shadow: 0 24px 60px rgba(17,17,17,.12);
    opacity: 0;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 240ms ease,transform 240ms ease,visibility 0ms linear 240ms;
  }

  .catalog-hierarchical-picker.is-open .catalog-hierarchical-picker__menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0ms;
  }

  .catalog-hierarchical-picker__option,
  .catalog-hierarchical-picker__back {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    background: transparent;
    color: rgba(17,17,17,.62);
    font: 500 12px/1 "Montserrat",sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
  }

  .catalog-hierarchical-picker__option + .catalog-hierarchical-picker__option {
    border-top: 1px solid rgba(17,17,17,.06);
  }

  .catalog-hierarchical-picker__option i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }

  .catalog-hierarchical-picker__back {
    justify-content: flex-start;
    color: #111;
    border-bottom: 1px solid rgba(17,17,17,.10);
    font-size: 10px;
  }

  .catalog-hierarchical-picker__back span {
    font-size: 16px;
    line-height: 1;
  }

  .catalog-hierarchical-picker__option:hover,
  .catalog-hierarchical-picker__option:focus-visible,
  .catalog-hierarchical-picker__back:hover,
  .catalog-hierarchical-picker__back:focus-visible {
    background: rgba(17,17,17,.045);
    color: #111;
    outline: none;
  }

  .catalog-hierarchical-picker__option.is-selected {
    background: rgba(17,17,17,.07);
    color: #111;
    padding-left: 18px;
  }
}


/* shop49: stable desktop flyout hover zone and mobile second-level navigation */
@media (min-width: 821px) {
  .products-filter__group {
    position: relative;
    align-self: stretch;
  }

  .products-filter__flyout {
    top: calc(100% - 1px) !important;
    left: 0 !important;
    right: auto !important;
    min-width: 230px;
    margin: 0 !important;
    padding: 10px 16px !important;
    align-items: stretch !important;
    transform: translateY(-5px) !important;
    transform-origin: top left !important;
    z-index: 90;
  }

  .products-filter__group:hover .products-filter__flyout,
  .products-filter__group:focus-within .products-filter__flyout,
  .products-filter__group.is-flyout-open .products-filter__flyout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) !important;
  }

  .products-filter__flyout::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 10px;
  }

  .products-filter__flyout button {
    justify-content: flex-start !important;
    text-align: left !important;
  }
}

@media (max-width: 820px) {
  .catalog-hierarchical-picker__menu {
    touch-action: manipulation;
  }

  .catalog-hierarchical-picker__option,
  .catalog-hierarchical-picker__back {
    touch-action: manipulation;
  }
}


/* shop50: contacto final persistente, móvil sin imagen y consentimiento de cookies */
@media (max-width: 760px) {
  .contact-section__media {
    display: none !important;
  }

  .contact-section {
    display: block;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 24px 24px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__content {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 24px 28px 24px 30px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(23, 22, 22, 0.14);
  box-shadow: 0 24px 70px rgba(23, 22, 22, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner__body {
  margin: 0;
  max-width: 820px;
  font: 400 11px/1.7 "Montserrat", sans-serif;
  color: #5f5b55;
}

.cookie-banner__policy {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #171616;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-banner__policy:hover,
.cookie-banner__policy:focus-visible {
  color: #7d6543;
}

.cookie-banner__button {
  min-width: 128px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #171616;
  border-radius: 0;
  font: 500 9px/1 "Montserrat", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__button--primary {
  background: #171616;
  color: #fff;
}

.cookie-banner__button--primary:hover,
.cookie-banner__button--primary:focus-visible {
  background: #2b2928;
}

@media (max-width: 760px) {
  .cookie-banner {
    inset: auto 12px 12px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .cookie-banner__body {
    font-size: 10px;
    line-height: 1.65;
  }

  .cookie-banner__button {
    width: 100%;
    min-height: 44px;
  }
}


/* shop52: Cookie Policy page */
.cookie-policy-page {
  min-height: 100vh;
  background: #f7f6f2;
  color: #292928;
}

.cookie-policy-page .hero__header {
  background: rgba(247, 246, 242, 0.9);
}

.cookie-policy-back {
  position: fixed;
  top: clamp(27px, 3.1vw, 35px);
  left: clamp(20px, 4vw, 54px);
  z-index: 150;
}

.cookie-policy-main {
  padding: clamp(138px, 13vw, 176px) clamp(22px, 7vw, 96px) clamp(80px, 9vw, 128px);
}

.cookie-policy-article {
  width: min(100%, 900px);
  margin: 0 auto;
}

.cookie-policy-hero {
  margin-bottom: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(41, 41, 40, 0.22);
}

.cookie-policy-eyebrow {
  margin: 0 0 18px;
  font: 500 9px/1 "Montserrat", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cookie-policy-hero h1 {
  margin: 0;
  font: 500 clamp(44px, 7vw, 82px)/0.95 "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
}

.cookie-policy-updated {
  margin: 22px 0 0;
  font: 400 10px/1.5 "Montserrat", sans-serif;
  color: #78746e;
}

.cookie-policy-article section {
  padding: 0 0 clamp(34px, 4vw, 52px);
  margin: 0 0 clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(41, 41, 40, 0.16);
}

.cookie-policy-article section:last-child {
  margin-bottom: 0;
}

.cookie-policy-article h2 {
  margin: 0 0 18px;
  font: 500 clamp(21px, 2.2vw, 28px)/1.15 "Cormorant Garamond", serif;
}

.cookie-policy-article h3 {
  margin: 28px 0 10px;
  font: 500 11px/1.4 "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-policy-article p {
  margin: 0;
  max-width: 780px;
  font: 400 13px/1.9 "Montserrat", sans-serif;
  color: #5e5a55;
}

.cookie-policy-article p + p {
  margin-top: 16px;
}

.cookie-policy-article a {
  color: #292928;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .cookie-policy-main {
    padding: 112px 22px 72px;
  }

  .cookie-policy-back {
    top: 25px;
    left: 18px;
  }

  .cookie-policy-hero {
    margin-bottom: 48px;
  }

  .cookie-policy-article p {
    font-size: 12px;
    line-height: 1.85;
  }
}

/* v58: bloque Hospitality con la misma composicion editorial de About */
.hospitality {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
}

.hospitality__motion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
  min-height: 100svh;
}

.hospitality__media {
  height: 100svh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
}

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

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

.hospitality__text {
  width: min(100%, 410px);
}

.hospitality__text h2 {
  margin: 0 0 26px;
  color: #1c1a1a;
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hospitality__text p {
  margin: 0 0 15px;
  max-width: 410px;
  color: #1c1a1a;
  font-size: clamp(10px, 0.82vw, 11.5px);
  line-height: 1.56;
}

.hospitality__link {
  width: fit-content;
  margin-top: 60px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(28, 26, 26, 0.48);
  color: #1c1a1a;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 260ms ease;
}

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

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

.hospitality__link:hover {
  gap: 22px;
}

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

  .hospitality__media,
  .hospitality__content {
    height: 50svh;
    min-height: 50svh;
  }

  .hospitality__content {
    padding: 32px 24px 40px;
  }

  .hospitality__text {
    width: min(100%, 420px);
  }

  .hospitality__text h2 {
    margin-bottom: 18px;
    font-size: 35px;
  }

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

  .hospitality__link {
    margin-top: 32px;
  }
}

/* shop60: mantener visible la imagen de Hospitality en móvil */
@media (max-width: 900px) {
  .hospitality__media {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 46svh !important;
    height: 46svh !important;
  }

  .hospitality__media img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .hospitality__motion {
    grid-template-rows: 46svh 54svh;
  }

  .hospitality__content {
    min-height: 54svh;
    height: 54svh;
  }
}


/* shop67: product titles use the largest size that fits in a maximum of two lines. */
body.product-detail-page [data-product-title] {
  display: block !important;
  overflow: hidden !important;
  white-space: normal !important;
  text-overflow: clip !important;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  max-height: none;
}

body.product-detail-page [data-product-title].is-fitting-title {
  transition: font-size 160ms ease;
}


/* shop72: checkout by postal code + order status */
.checkout-postal small {
  display: block;
  margin-top: 8px;
  color: #77736d;
  font: 400 9px/1.5 Montserrat, sans-serif;
}
.checkout-address[hidden], .checkout-shipping-note[hidden] { display: none !important; }
.checkout-shipping-note {
  margin: -2px 0 4px;
  color: #2f8f46;
  font: 600 10px/1.5 Montserrat, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.checkout-stripe-banner[hidden] { display: none !important; }
.checkout-stripe-banner { margin-top: 14px; }
.stripe-result-card > h1 {
  font-size: clamp(28px, 3.3vw, 46px) !important;
  line-height: 1 !important;
}
.order-status-card { max-width: 680px; }
.order-status-intro { margin: 18px auto 30px; max-width: 480px; color: #77736d; font: 400 12px/1.75 Montserrat, sans-serif; }
.order-status-form { display: grid; gap: 20px; text-align: left; }
.order-status-form label { display: grid; gap: 9px; }
.order-status-form label span { font: 500 10px Montserrat, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.order-status-form input { width: 100%; border: 1px solid #d8d4cc; background: #fff; padding: 15px; font: 500 13px Montserrat, sans-serif; text-transform: uppercase; }
.order-status-result { margin-top: 38px; padding-top: 34px; border-top: 1px solid rgba(37,36,34,.16); text-align: left; }
.order-status-result__label { color: #77736d; font: 500 9px Montserrat, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.order-status-result h2 { margin: 10px 0 12px; font: 500 clamp(34px,5vw,54px)/1 "Cormorant Garamond",serif; }
.order-status-result > p { margin: 0; color: #66625d; font: 400 12px/1.8 Montserrat,sans-serif; }
.order-status-meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 28px 0 0; border-top: 1px solid rgba(37,36,34,.14); border-bottom: 1px solid rgba(37,36,34,.14); }
.order-status-meta div { padding: 18px 16px 18px 0; }
.order-status-meta div + div { padding-left: 16px; border-left: 1px solid rgba(37,36,34,.14); }
.order-status-meta dt { color: #8a867f; font: 500 8px Montserrat,sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.order-status-meta dd { margin: 7px 0 0; font: 500 11px/1.5 Montserrat,sans-serif; }
.order-whatsapp { margin-top: 26px; text-decoration: none; }
@media(max-width:620px){.order-status-meta{grid-template-columns:1fr}.order-status-meta div,.order-status-meta div+div{padding:14px 0;border-left:0}.order-status-meta div+div{border-top:1px solid rgba(37,36,34,.14)}}


/* shop73: checkout layout refinement + expanded lifestyle */
.checkout-grid { align-items: start; }
.checkout-grid--details > label { align-self: start; }
.checkout-grid--details .checkout-postal,
.checkout-grid--details .checkout-delivery { align-content: start; }
.checkout-field--full { display: grid; gap: 9px; }
.checkout-comments { margin-top: 2px; }
.checkout-postal-message { min-height: 28px; }
@media (min-width: 801px) {
  .checkout-grid--details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .checkout-postal-message { min-height: 0; }
}


/* shop74: lifestyle autoplay, equal checkout controls, global header logo */
.checkout-grid--details input,
.checkout-grid--details .checkout-select-control select {
  box-sizing: border-box !important;
  height: 52px !important;
  min-height: 52px !important;
}
.checkout-grid--details input {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.checkout-header .brand__logo,
.confirmation-header .brand__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  overflow: visible;
}


/* shop78: reliable lifestyle scrolling */
.lifestyle__track { overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; }
.lifestyle__track img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
@media (min-width: 701px) {
  .lifestyle__carousel { cursor: grab; }
  .lifestyle__carousel:active { cursor: grabbing; }
}


/* shop81: reliable lifestyle desktop interaction */
@media (min-width: 701px) {
  .lifestyle__carousel {
    overflow-x: scroll !important;
    cursor: grab !important;
  }
  .lifestyle__carousel.is-dragging {
    cursor: grabbing !important;
  }
}


/* shop82: lifestyle desktop drag + hover and image lightbox */
.lifestyle-item {
  cursor: pointer;
}
.lifestyle__carousel.is-hover-ready {
  cursor: ew-resize;
}
.lifestyle__carousel.is-dragging,
.lifestyle__carousel.is-dragging .lifestyle-item {
  cursor: grabbing !important;
}
.lifestyle__carousel.is-dragging .lifestyle-item,
.lifestyle__carousel.is-dragging img {
  pointer-events: none;
}

.lifestyle-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.lifestyle-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lifestyle-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(2px);
}
.lifestyle-lightbox__panel {
  position: relative;
  margin: 0;
  max-width: min(92vw, 1240px);
  max-height: 88vh;
  width: auto;
  z-index: 1;
}
.lifestyle-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}
.lifestyle-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
body.has-lifestyle-lightbox {
  overflow: hidden;
}

@media (max-width: 700px) {
  .lifestyle-lightbox {
    padding: 16px;
  }
  .lifestyle-lightbox__panel,
  .lifestyle-lightbox__image {
    max-width: 100%;
    max-height: 84vh;
  }
}


/* shop83: visible desktop lifestyle scrollbar + reliable desktop zoom */
@media (min-width: 701px) {
  .lifestyle__carousel {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scrollbar-width: thin !important;
    scrollbar-color: rgba(37, 36, 34, .58) rgba(37, 36, 34, .12) !important;
    padding-bottom: 14px !important;
  }
  .lifestyle__carousel::-webkit-scrollbar {
    display: block !important;
    height: 8px !important;
  }
  .lifestyle__carousel::-webkit-scrollbar-track {
    background: rgba(37, 36, 34, .12) !important;
    border-radius: 999px !important;
  }
  .lifestyle__carousel::-webkit-scrollbar-thumb {
    background: rgba(37, 36, 34, .58) !important;
    border-radius: 999px !important;
  }
  .lifestyle__carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(37, 36, 34, .82) !important;
  }
  .lifestyle-item {
    position: relative;
  }
  .lifestyle-item::after {
    content: '↗';
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #252422;
    font: 500 15px/1 Montserrat, sans-serif;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
  }
  .lifestyle-item:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}


/* shop84: Womo-style infinite lifestyle carousel on desktop */
@media (min-width: 701px) {
  .lifestyle__carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    padding-bottom: 0 !important;
    cursor: ew-resize !important;
    scroll-snap-type: none !important;
  }
  .lifestyle__carousel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .lifestyle__track {
    scroll-snap-type: none !important;
  }
  .lifestyle-group {
    scroll-snap-align: none !important;
  }
  .lifestyle__carousel.is-dragging,
  .lifestyle__carousel.is-dragging .lifestyle-item {
    cursor: grabbing !important;
  }
}

/* shop86: center active lifestyle column on mobile */
@media (max-width: 700px) {
  .lifestyle__motion {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .lifestyle__carousel {
    padding-left: 0 !important;
    padding-right: 0 !important;
    scroll-padding-inline: calc((100vw - var(--lifestyle-mobile-size)) / 2);
  }

  .lifestyle__track {
    padding-left: calc((100vw - var(--lifestyle-mobile-size)) / 2) !important;
    padding-right: calc((100vw - var(--lifestyle-mobile-size)) / 2) !important;
  }
}


/* shop88: semantic SEO captions without altering visual layouts */
.seo-image-caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* shop91: order detail and confirmation actions */
.order-status-purchase { margin-top: 28px; border-top: 1px solid rgba(37,36,34,.14); }
.order-status-purchase__heading { display:flex; justify-content:space-between; gap:20px; padding:16px 0 12px; color:#8a867f; font:500 8px Montserrat,sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.order-status-items { display:grid; border-top:1px solid rgba(37,36,34,.1); }
.order-status-item { display:grid; grid-template-columns:minmax(0,1fr) auto; align-items:center; gap:22px; padding:17px 0; border-bottom:1px solid rgba(37,36,34,.1); }
.order-status-item > div { display:grid; gap:6px; min-width:0; }
.order-status-item strong { font:500 11px/1.45 Montserrat,sans-serif; }
.order-status-item > div strong { overflow-wrap:anywhere; }
.order-status-item span { color:#8a867f; font:400 9px/1.5 Montserrat,sans-serif; letter-spacing:.04em; text-transform:uppercase; }
.order-status-items__empty { margin:0; padding:18px 0; color:#77736d; font:400 11px/1.7 Montserrat,sans-serif; }
.order-status-total { display:flex; justify-content:space-between; align-items:baseline; gap:24px; padding:20px 0 2px; }
.order-status-total span { font:500 9px Montserrat,sans-serif; letter-spacing:.12em; text-transform:uppercase; }
.order-status-total strong { font:500 25px/1.1 "Cormorant Garamond",serif; }
.confirmation-view-order { width:100%; margin-top:26px; background:transparent !important; color:#252422 !important; border:1px solid #252422 !important; }
.confirmation-view-order:hover { background:#252422 !important; color:#fff !important; }
.confirmation-view-order + .confirmation-products { margin-top:28px; }
@media(max-width:620px){
  .order-status-purchase__heading strong{display:none}
  .order-status-item{gap:14px}
  .order-status-total strong{font-size:22px}
}

/* shop92: allow vertical page scroll while Lifestyle remains horizontally swipeable */
@media (max-width:700px){
  .lifestyle,.lifestyle__motion{touch-action:pan-y pinch-zoom;}
  .lifestyle__carousel{touch-action:pan-x pan-y pinch-zoom;overscroll-behavior-x:contain;overscroll-behavior-y:auto;}
}


/* shop110: payment method selector + crisp Stripe secure card */
.checkout-payment {
  border: 0;
  margin: 8px 0 6px;
  padding: 0;
}
.checkout-payment legend {
  margin: 0 0 12px;
  padding: 0;
  font: 500 10px Montserrat, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #252422;
}
.checkout-payment-options { display: grid; gap: 10px; }
.checkout-payment-placeholder { margin: 0; color: #77736d; font: 400 10px/1.55 Montserrat, sans-serif; }
.checkout-payment-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid #d8d4cc;
  cursor: pointer;
  background: #fff;
}
.checkout-payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.checkout-payment-option__control {
  width: 16px; height: 16px; border: 1px solid #8e8b85; border-radius: 50%; position: relative;
}
.checkout-payment-option input:checked + .checkout-payment-option__control { border-color: #252422; }
.checkout-payment-option input:checked + .checkout-payment-option__control::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #252422;
}
.checkout-payment-option__copy { display: grid; gap: 3px; }
.checkout-payment-option__copy strong { font: 500 12px/1.35 Montserrat, sans-serif; color: #252422; }
.checkout-payment-option__copy small { font: 400 9px/1.45 Montserrat, sans-serif; color: #77736d; }

.stripe-secure-card {
  width: 70%; max-width: 420px; min-width: 300px;
  border: 1px solid #d7d9df; border-radius: 9px;
  padding: 14px 16px 15px; background: #fff;
}
.stripe-secure-card__head { display: grid; grid-template-columns: 22px 1fr auto; gap: 9px; align-items: center; }
.stripe-secure-card__lock { width: 18px; height: 20px; border-radius: 3px; display: grid; place-items: center; background: #30354c; color: #fff; font-size: 10px; }
.stripe-secure-card__head strong { color: #30354c; font: 600 11px/1.25 Montserrat, sans-serif; }
.stripe-secure-card__powered { background: #30354c; color: #fff; border-radius: 4px; padding: 6px 9px; white-space: nowrap; font: 500 7px/1 Montserrat, sans-serif; }
.stripe-secure-card__powered b { font-size: 14px; letter-spacing: -.04em; }
.stripe-secure-card__divider { height: 1px; background: #e1e2e5; margin: 13px 0; }
.stripe-secure-card__brands { display: grid; grid-template-columns: repeat(7,minmax(0,1fr)); gap: 8px; align-items: center; }
.pay-brand { height: 30px; display: grid; place-items: center; border: 1px solid #cfd2d8; border-radius: 4px; background: #fff; overflow: hidden; font: 700 9px/1 Arial,sans-serif; }
.pay-brand--visa { color:#1261a0; font-style: italic; font-size:12px; }
.pay-brand--amex { background:#1789c3; color:#fff; font-size:9px; }
.pay-brand--jcb { color:#0a5597; font-size:10px; }
.pay-brand--discover { color:#222; font-size:7px; }
.pay-brand--diners { color:#1886bd; font-size:14px; }
.pay-brand--union { background:#d8263f; color:#fff; font-size:7px; transform:skew(-8deg); }
.pay-brand--mc { position:relative; display:block; }
.pay-brand--mc i { position:absolute; top:7px; width:16px; height:16px; border-radius:50%; }
.pay-brand--mc i:first-child { left:calc(50% - 13px); background:#eb001b; }
.pay-brand--mc i:last-child { left:calc(50% - 3px); background:#f79e1b; opacity:.92; }
.checkout-terms { width:70%; max-width:420px; margin: 11px 0 0; color:#77736d; font:400 9px/1.55 Montserrat,sans-serif; }
.checkout-terms span, .checkout-terms a { color:#55524d; text-decoration:underline; text-underline-offset:2px; }
.checkout-mode-note { display:none !important; }
@media (max-width: 640px) {
  .stripe-secure-card, .checkout-terms { width: 100%; max-width: none; min-width: 0; }
  .stripe-secure-card__head { grid-template-columns: 20px 1fr; }
  .stripe-secure-card__powered { grid-column: 2; justify-self:start; }
  .stripe-secure-card__brands { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

/* shop111: restored automatic checkout mode + exact Stripe trust banner image */
.checkout-stripe-banner[hidden] { display: none !important; }
.checkout-stripe-banner {
  margin-top: 14px;
  text-align: left;
}
.checkout-stripe-banner > img {
  display: block;
  width: min(58%, 430px);
  height: auto;
  margin: 0;
}
.checkout-terms {
  margin: 14px 0 0;
  color: #77736d;
  font: 400 10px/1.6 Montserrat, sans-serif;
  text-align: left;
}
.checkout-terms a,
.checkout-terms span {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 680px) {
  .checkout-stripe-banner > img { width: min(82%, 390px); }
  .checkout-terms { font-size: 9px; }
}

/* shop113: fixed checkout split layout + solid header + full-bleed category images */
.checkout-page {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #f6f4ef;
}
.checkout-header {
  background: #f6f4ef !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.checkout-shell {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0 !important;
  overflow: hidden;
  align-items: stretch !important;
  padding-top: 100px !important;
  padding-bottom: 24px !important;
}
.checkout-copy {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
.checkout-card {
  box-sizing: border-box;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-self: stretch;
}
.checkout-card::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* Index categories: Firebase/local image fills the square card without inner padding. */
.products__grid .product-category__media {
  overflow: hidden !important;
  padding: 0 !important;
}
.products__grid .product-category__media img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 800px) {
  .checkout-shell {
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(150px, 30vh) minmax(0, 1fr);
    gap: 18px !important;
    padding: 76px 18px 14px !important;
  }
  .checkout-copy {
    justify-content: center;
  }
  .checkout-copy h1 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .checkout-card {
    height: 100%;
    max-height: none;
  }
}

/* shop116: square showroom media on mobile (manual swipe, consistent cards) */
@media (max-width: 760px) {
  .showroom__gallery {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 16px !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
  }

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

  .showroom__gallery-track {
    animation: none !important;
    width: max-content !important;
    align-items: stretch !important;
    gap: 12px !important;
    transform: none !important;
    will-change: auto !important;
  }

  .showroom__item,
  .showroom__item--narrow {
    box-sizing: border-box;
    flex: 0 0 min(72vw, 280px) !important;
    width: min(72vw, 280px) !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    scroll-snap-align: center !important;
    background: #e9e7e3;
  }

  .showroom__item img,
  .showroom__item--narrow img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin: 0 !important;
  }
}

/* shop117: global WhatsApp number from shopContent/home.globalSettings.whatsappNumber */
a.is-whatsapp-disabled[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.55;
}


/* shop118: dynamic Firebase video background for the main Hero. */
.hero__background-image {
  position: relative;
  z-index: 0;
}

/* v122 Firebase App Check disclosure */
.firebase-protection-note{margin:4px 0 0;color:#8a867f;font:400 9px/1.55 Montserrat,sans-serif;letter-spacing:.01em;text-align:left;}
.checkout-card .firebase-protection-note{text-align:center;}
