/* The Archive Room — editorial storefront styles */

:root {
  --paper: #ececea;
  --ink: #181818;
  --signal: #4a4a4a;
  --line: rgba(24, 24, 24, .35);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; }
html.lenis,
html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
button, a { font: inherit; color: inherit; }
a { text-decoration: none; }
button { cursor: pointer; }
img { max-width: 100%; }
.storefront { overflow: hidden; }
h1, h2, h3, p { margin-top: 0; }

/* Prevent a flash before GSAP applies the whole-title fade. */
.fade-reveal-pending .fade-reveal,
.fade-reveal-pending .fade-up-reveal { visibility: hidden; }

/* Monochrome treatment for photography */
.hero-portrait img,
.editorial-image img,
.product-photo img {
  filter: grayscale(1) contrast(1.05);
}

/* Header */
.site-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 73px;
  padding: 0 2.3vw;
  position: relative;
  z-index: 2;
}
.brand {
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  width: max-content;
}
.brand span {
  font-size: .27em;
  letter-spacing: 0;
  margin-left: .25em;
  vertical-align: top;
}
nav { display: flex; gap: 2rem; }
nav a, .bag-button, .account-link, .section-label, figcaption, .hero-side-note, footer {
  font-size: 10px;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
nav a:hover, .bag-button:hover, .account-link:hover, footer a:hover { color: var(--signal); }
.header-actions { align-items: center; display: flex; gap: 1.4rem; justify-self: end; }
.bag-button, .account-link {
  background: transparent;
  border: 0;
  padding: 8px 0;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 721px) {
  .site-header {
    background: #1d1d1d;
    border-bottom: 0;
    border-radius: 0 0 16px 16px;
    color: #fff;
    min-height: 86px;
    overflow: hidden;
  }

  .site-header .brand {
    font-size: clamp(1.35rem, 2.05vw, 2rem);
    letter-spacing: -.035em;
  }
  .site-header nav.primary-nav {
    align-self: stretch;
    gap: 0;
    height: 86px;
  }
  .site-header nav.primary-nav > li {
    display: flex;
    height: 100%;
    list-style: none;
  }
  .site-header nav.primary-nav a,
  .site-header .bag-button,
  .site-header .account-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.01em;
  }
  .site-header nav.primary-nav a,
  .site-header .header-actions a {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    transition: background-color .25s ease, color .25s ease;
  }
  .site-header nav.primary-nav a {
    height: 100%;
    min-width: clamp(120px, 9vw, 172px);
    padding: 0 clamp(30px, 3vw, 58px);
  }
  .site-header nav.primary-nav a:hover,
  .site-header nav.primary-nav a:focus-visible,
  .site-header .header-actions a:hover,
  .site-header .header-actions a:focus-visible {
    background: #fff;
    color: #1d1d1d;
    outline: none;
  }
  .site-header .header-actions {
    align-self: stretch;
    gap: 0;
    height: 86px;
  }
  .site-header .header-actions a {
    height: 100%;
    min-width: clamp(120px, 9vw, 172px);
    padding: 0 clamp(30px, 3vw, 58px);
  }
}

/* Generic hero (kept for potential secondary pages) */
.hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 18% 42% 40%;
  min-height: 680px;
  padding: 2.3vw 2.3vw 0;
  position: relative;
}
.section-label { margin: 0; }
h1, h2 { font-weight: 800; letter-spacing: -.105em; line-height: .78; margin-bottom: 2.5rem; }
h1 em { color: var(--signal); font-style: normal; }
.arrow-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: 1.5rem;
  min-width: 210px;
  padding-bottom: .45rem;
  text-transform: uppercase;
}
.arrow-link:hover { border-color: var(--signal); color: var(--signal); }
.arrow-link span { font-size: 1.3em; }
figcaption { background: var(--paper); bottom: 0; padding: 9px 11px; position: absolute; right: 0; }

/* NOMA-style full hero — a flex column so the bottom ribbon is always
   in-flow and guaranteed visible, never dependent on exact vh math. */
.hero.hero-noma { display: flex; flex-direction: column; margin-bottom: 16px; min-height: 560px; padding: 0; position: relative; }
.hero-stage { flex: 1 1 auto; min-height: 0; position: relative; }
.hero-stage > .section-label { left: 50%; position: absolute; top: 16px; transform: translateX(-50%); white-space: nowrap; }
.hero-portrait { margin: 0; overflow: hidden; position: absolute; }
.hero-portrait img { height: 100%; object-fit: cover; width: 100%; }
.hero-portrait figcaption { bottom: 0; font-size: 9px; left: 0; right: auto; }
.portrait-one { border-radius: 26px; height: 400px; left: 9%; opacity: .94; top: 27%; width: 33%; z-index: 3; }
.portrait-two { border-radius: 26px; height: 290px; right: 2.3vw; top: 15%; width: 38%; }
.hero-year { font-size: 10px; margin: 0; position: absolute; right: 2.3vw; text-transform: uppercase; top: 16%; transform: translateY(-18px); }
.hero-noma h1 {
  bottom: 20px;
  color: var(--signal);
  font-size: clamp(2.2rem, 8.2vw, 9rem);
  left: 0;
  letter-spacing: -.02em;
  line-height: .95;
  margin: 0;
  max-width: 96%;
  position: absolute;
  white-space: nowrap;
  z-index: 1;
}
.hero-noma .hero-marquee {
  align-items: center;
  background: var(--signal);
  border: 0;
  color: var(--paper);
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 700;
  height: 42px;
  letter-spacing: -.015em;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.hero-marquee-track { display: flex; flex: 0 0 auto; width: max-content; will-change: transform; }
.hero-marquee-track > span { display: block; padding-right: 2.2em; white-space: nowrap; }
.hero-portrait, .editorial-image, .product-photo { border-radius: 22px; }
.product-photo button { border-radius: 0 0 22px 22px; }
.hero-noma + .editorial-break { border-top: 0; }
@media (min-width: 721px) {
  .hero.hero-noma { margin-bottom: 24px; min-height: max(680px, calc(100vh - 73px - 24px)); }
  .hero-noma h1 { bottom: 28px; }
  .hero-noma .hero-marquee { height: 46px; }
  .hero-noma + .editorial-break { padding-top: 3.8vw; }
}

/* Editorial break / carousel */
.editorial-break {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 18% 45% 37%;
  min-height: 700px;
  padding: 3.8vw 2.3vw;
  position: relative;
}
.editorial-break h2 {
  align-self: end;
  font-size: clamp(3.2rem, 9vw, 9rem);
  grid-column: 1/3;
  margin: 0;
  position: relative;
  z-index: 1;
}
.editorial-break h2 span { color: var(--signal); }
.editorial-text {
  align-self: end;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  grid-column: 3;
  line-height: 1.05;
  max-width: 330px;
}
.editorial-carousel { align-self: start; grid-column: 3; grid-row: 1/3; justify-self: end; width: min(100%, 460px); }
.editorial-carousel .editorial-image { border-radius: 28px; height: 560px; overflow: hidden; position: relative; width: 100%; }
.editorial-carousel .editorial-image img { border-radius: inherit; display: block; height: 100%; object-fit: cover; width: 100%; }
.slide-label {
  background: var(--paper);
  font-size: 10px;
  font-weight: 700;
  left: 16px;
  letter-spacing: .03em;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
  z-index: 2;
}
.carousel-dots {
  background: rgba(236, 236, 234, .86);
  border-radius: 999px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  left: 50%;
  padding: 8px 10px;
  position: absolute;
  transform: translateX(-50%);
}
.carousel-dots button {
  background: rgba(74, 74, 74, .38);
  border: 0;
  border-radius: 50%;
  height: 9px;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
  width: 9px;
}
.carousel-dots button.is-active, .carousel-dots button:hover { background: var(--signal); transform: scale(1.18); }
.carousel-dots button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
@media (max-width: 720px) {
  .editorial-break { grid-template-columns: 1fr 1fr; min-height: 600px; padding: 35px 16px; row-gap: 32px; }
  .editorial-break > .section-label { grid-column: 1/3; }
  .editorial-break h2 { font-size: 15vw; grid-column: 1/3; grid-row: 2; }
  .editorial-carousel { grid-column: 2; grid-row: 3; justify-self: stretch; width: 100%; }
  .editorial-carousel .editorial-image { border-radius: 20px; height: 280px; }
  .editorial-text { font-size: 1.1rem; grid-column: 1; grid-row: 3; margin: 30px 10px 0 0; }
}

/* Shop / product grid */
.product-section { padding: 8vw 2.3vw 6vw; }
.shop-section { padding-top: 7vw; }
.shop-heading { align-items: end; display: grid; grid-template-columns: 18% 52% 30%; }
.shop-heading h2 { font-size: clamp(4rem, 8.7vw, 10rem); grid-column: 2; margin: 0; }
.shop-heading h2 span { color: var(--signal); }
.shop-heading > p:last-child { font-size: clamp(1rem, 1.35vw, 1.45rem); line-height: 1.1; margin: 0 0 .65rem; }
.shop-toolbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 18% 1fr auto;
  margin: 5vw 0 3vw;
  min-height: 53px;
}
.shop-toolbar > p, .shop-sort { font-size: 10px; margin: 0; text-transform: uppercase; }
.shop-categories { display: flex; flex-wrap: wrap; gap: 18px; }
.shop-categories button, .shop-sort { background: transparent; border: 0; padding: 4px 0; }
.shop-categories button { font-size: 11px; text-transform: uppercase; }
.shop-categories button.is-active { border-bottom: 2px solid var(--signal); color: var(--signal); }
.shop-sort { border-left: 1px solid var(--line); padding-left: 18px; text-align: left; }
.shop-sort span { display: block; font-size: 11px; margin-top: 3px; }
.product-grid { display: grid; gap: 1.5vw; grid-template-columns: repeat(3, 1fr); }
.shop-grid { gap: 2.2vw 1.5vw; }
.shop-grid .product-card { margin: 0; }
.product-photo {
  aspect-ratio: .76;
  background: #ccc;
  overflow: hidden;
  position: relative;
}
.product-photo img { height: 100%; object-fit: cover; width: 100%; }
.product-tag { background: var(--paper); font-size: 9px; left: 9px; padding: 6px 7px; position: absolute; text-transform: uppercase; top: 9px; z-index: 1; }
.product-photo button {
  background: var(--paper);
  border: 0;
  bottom: 0;
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  left: 0;
  padding: 10px 12px;
  position: absolute;
  right: 0;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.product-card:hover .product-photo button, .product-photo button:focus-visible { transform: translateY(0); }
.product-info { border-bottom: 1px solid var(--line); display: flex; gap: 10px; justify-content: space-between; padding: 10px 0 13px; }
.product-info h3, .product-info strong { font-size: 13px; margin: 0; font-weight: 400; }
.product-info p { font-size: 11px; margin: 4px 0 0; }
.product-info strong { white-space: nowrap; }
.all-products {
  border-bottom: 1px solid var(--ink);
  display: block;
  font-size: 12px;
  margin: 7vw auto 0;
  padding: 0 0 8px;
  text-align: center;
  text-transform: uppercase;
  width: min(100%, 300px);
}
.all-products span { float: right; }
@media (max-width: 720px) {
  .product-section { padding: 70px 16px; }
  .shop-heading { display: block; }
  .shop-heading h2 { font-size: 19vw; margin: 28px 0; }
  .shop-heading > p:last-child { font-size: 1.15rem; max-width: 250px; }
  .shop-toolbar { grid-template-columns: 1fr; gap: 13px; padding: 13px 0; }
  .shop-categories {
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 0 8px;
    scrollbar-width: none;
    touch-action: pan-x;
    width: 100%;
  }
  .shop-categories::-webkit-scrollbar { display: none; }
  .shop-categories button { flex: 0 0 auto; }
  .shop-sort { border-left: 0; border-top: 1px solid var(--line); padding: 10px 0 0; }
  .product-section .product-grid { gap: 32px; grid-template-columns: 1fr; }
}

/* Manifesto */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 18% 52% 30%;
  min-height: 590px;
  padding: 4vw 2.3vw;
}
.manifesto h2 { align-self: center; font-size: clamp(4rem, 8vw, 9.5rem); grid-column: 2/4; margin: 0; }
.manifesto h2 span { color: #bdbdbd; }
.manifesto-detail { align-self: end; grid-column: 3; }
.manifesto-detail p { font-size: clamp(1.05rem, 1.45vw, 1.45rem); line-height: 1.1; }
.manifesto .arrow-link { border-color: var(--paper); }
@media (max-width: 720px) {
  .manifesto { grid-template-columns: 1fr; min-height: 560px; padding: 35px 16px; }
  .manifesto h2 { align-self: center; font-size: 16.5vw; grid-column: 1; }
  .manifesto-detail { grid-column: 1; }
  .manifesto-detail p { font-size: 1.2rem; }
}

/* Footer */
footer.site-footer {
  align-items: end;
  background: #1d1d1d;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  min-height: 205px;
  padding: 2.3vw;
}
footer.site-footer .brand { font-size: clamp(1.5rem, 2.6vw, 2.4rem); }
footer.site-footer p { line-height: 1.3; margin: 0; }
footer.site-footer a { text-transform: lowercase; }
footer.site-footer a:hover { color: rgba(255, 255, 255, .72); }
.footer-legal { background: #1d1d1d; border-top: 1px solid rgba(255, 255, 255, .18); padding: 16px 2.3vw; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; }
.footer-legal a { color: #fff; font-size: 10px; letter-spacing: -.03em; text-transform: uppercase; }
.footer-legal a:hover { color: rgba(255, 255, 255, .72); }
@media (max-width: 720px) {
  .storefront { overflow-x: hidden; overflow-x: clip; }
  .editorial-break > *, .manifesto > *, footer.site-footer > * { min-width: 0; }
  footer.site-footer { grid-template-columns: 1fr 1fr; gap: 32px 12px; min-height: 265px; padding: 24px 16px; }
  footer.site-footer .brand { max-width: 100%; white-space: normal; width: auto; }
  footer.site-footer a { overflow-wrap: anywhere; }
  .footer-legal nav { gap: 10px 18px; justify-content: flex-start; }
}

/* Cart notice toast */
.cart-notice {
  background: #1d1d1d;
  bottom: 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: -.01em;
  left: 50%;
  margin: 0;
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 18px);
  transition: .25s ease;
  z-index: 50;
}
.cart-notice.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Mobile menu */
.menu-toggle, .mobile-menu, .mobile-header-bag { display: none; }
@media (max-width: 720px) {
  .site-header { column-gap: 14px; grid-template-columns: minmax(0, 1fr) auto auto; min-height: 60px; }
  .site-header nav.primary-nav, .header-actions { display: none; }
  body.menu-is-open { overflow: hidden; }
  .mobile-header-bag { align-items: center; display: inline-flex; gap: 4px; justify-self: end; padding: 8px 0; white-space: nowrap; }
  .mobile-header-bag-icon { fill: none; height: 21px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; width: 21px; }
  .mobile-header-bag .bag-count { align-items: center; background: var(--ink); border-radius: 50%; color: var(--paper); display: inline-flex; font-size: 9px; font-weight: 700; height: 16px; justify-content: center; line-height: 1; min-width: 16px; padding: 0 3px; }
  .menu-toggle { background: transparent; border: 0; display: grid; gap: 4px; justify-self: end; padding: 8px 0; width: 20px; }
  .menu-toggle i { background: var(--ink); display: block; height: 1px; width: 20px; }
  .mobile-menu {
    background: var(--ink);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    height: 100svh;
    left: 0;
    padding: 18px 18px 28px;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: transform .42s cubic-bezier(.77, 0, .18, 1);
    width: 100vw;
    z-index: 20;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu-top { align-items: center; display: flex; justify-content: space-between; }
  .mobile-menu .brand { color: var(--paper); }
  .menu-close { background: transparent; border: 1px solid rgba(236, 236, 234, .5); border-radius: 50%; color: var(--paper); font-size: 13px; height: 34px; width: 34px; }
  .mobile-menu nav { display: block; margin: auto 0; }
  .mobile-menu nav a { border-bottom: 1px solid rgba(236, 236, 234, .35); color: var(--paper); display: flex; font-size: clamp(3.6rem, 15vw, 6rem); font-weight: 800; justify-content: space-between; letter-spacing: -.1em; line-height: .86; padding: 15px 0; text-transform: uppercase; }
  .mobile-menu nav span { font-size: 10px; font-weight: 400; letter-spacing: 0; }
  .mobile-menu-actions { display: flex; gap: 10px; margin-bottom: 24px; }
  .mobile-menu-actions .account-link, .mobile-menu-actions .bag-button {
    border: 1px solid rgba(236, 236, 234, .5);
    border-radius: 999px;
    color: var(--paper);
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 15px 10px;
    text-align: center;
  }
  .mobile-menu-actions .bag-button { background: var(--paper); border-color: var(--paper); color: var(--ink); }
  .mobile-menu > p { font-size: 10px; line-height: 1.3; margin: 0; text-transform: uppercase; }
}
@media (max-width: 720px) {
  .hero.hero-noma { margin-bottom: 14px; min-height: max(560px, calc(100svh - 60px - 14px)); }
  .hero-stage > .section-label { font-size: 8px; top: 14px; }
  .portrait-one { border-radius: 0; bottom: 0; height: auto; left: 0; opacity: 1; right: 0; top: 0; width: auto; }
  .portrait-one img { object-position: center; }
  .portrait-two { display: none; }
  .hero-year { font-size: 8px; right: 16px; top: 18%; }
  .hero-noma h1 { bottom: 12px; }
  .hero-noma .hero-marquee { font-size: 12px; height: 38px; }
}
@media (max-width: 400px) {
  .hero-noma h1 { line-height: 1; max-width: 94%; white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .product-photo button, .cart-notice { transition: none; }
}

/* ---------------------------------------------------
   Shop archive (Tienda) — sidebar filter + infinite scroll
--------------------------------------------------- */
.archive-room-shop { margin: 0 auto; max-width: 1600px; overflow-x: hidden; overflow-x: clip; padding: 6vw 2.3vw 8vw; width: 100%; }
.shop-archive-heading { margin-bottom: 3vw; }
.shop-archive-heading h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; letter-spacing: -.04em; margin: .5rem 0 0; text-transform: uppercase; }
.shop-archive-layout { display: grid; gap: 3vw; grid-template-columns: 220px minmax(0, 1fr); max-width: 100%; min-width: 0; width: 100%; }
.shop-archive-main, .shop-archive-grid { max-width: 100%; min-width: 0; width: 100%; }
.shop-filters-label { font-size: 10px; letter-spacing: -.03em; margin: 0 0 1rem; text-transform: uppercase; }
.shop-filters ul { list-style: none; margin: 0; padding: 0; }
.shop-filters li { border-bottom: 1px solid var(--line); }
.shop-filters a { display: flex; font-size: 13px; gap: 10px; justify-content: space-between; padding: 10px 0; text-transform: uppercase; }
.shop-filters a span { color: var(--signal); font-size: 11px; }
.shop-filters a:hover, .shop-filters a.is-active { color: var(--signal); }
.shop-archive-grid { display: grid; gap: 1.5vw; grid-template-columns: repeat(3, 1fr); }
.shop-archive-loading { font-size: 11px; margin: 2rem 0 0; text-align: center; text-transform: uppercase; }
.shop-archive-sentinel { height: 1px; }
@media (max-width: 900px) {
  .shop-archive-layout { grid-template-columns: 1fr; }
  .shop-filters ul { display: flex; flex-wrap: wrap; gap: 0 20px; }
  .shop-filters li { border-bottom: 0; }
  .shop-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .shop-filters { max-width: 100%; min-width: 0; overflow: hidden; width: 100%; }
  .shop-filters ul {
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 2px 0 8px;
    scrollbar-width: none;
    touch-action: pan-x;
    width: 100%;
  }
  .shop-filters ul::-webkit-scrollbar { display: none; }
  .shop-filters li { flex: 0 0 auto; }
  .shop-filters a { padding: 6px 0; white-space: nowrap; }
  .shop-archive-grid { gap: 32px; grid-template-columns: 1fr; }
  .shop-archive-grid .product-card { justify-self: center; max-width: 100%; width: 95%; }
}

/* ---------------------------------------------------
   Marcas — brand picker in front of the shop
--------------------------------------------------- */
.archive-room-marcas { margin: 0 auto; max-width: 1600px; padding: 6vw 2.3vw 8vw; }
.marcas-heading { margin-bottom: 3vw; max-width: 640px; }
.marcas-heading h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 800; letter-spacing: -.04em; line-height: .92; margin: .5rem 0 1rem; text-transform: uppercase; }
.marcas-heading h1 span { color: var(--signal); }
.marcas-heading p { font-size: 1rem; line-height: 1.3; }
.marcas-grid { display: grid; gap: 1.5vw; grid-template-columns: repeat(3, 1fr); }
.marca-card { display: block; }
.marca-photo { aspect-ratio: .76; border-radius: 22px; overflow: hidden; }
.marca-photo img { filter: grayscale(1) contrast(1.05); height: 100%; object-fit: cover; width: 100%; }
.marca-info { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 10px 0 13px; }
.marca-info h2 { font-size: 15px; font-weight: 700; margin: 0; text-transform: uppercase; }
.marca-info span { font-size: 11px; }
.marca-card:hover .marca-info h2 { color: var(--signal); }
@media (max-width: 720px) {
  .marcas-grid { gap: 24px 12px; grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------
   WooCommerce alignment with the editorial palette
--------------------------------------------------- */
.woocommerce-page main,
.archive-room-wc-wrap {
  margin: 0 auto;
  max-width: 1400px;
  padding: 6vw 2.3vw;
}
.woocommerce-page h1.entry-title,
.woocommerce-page h1.page-title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .9;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
.woocommerce ul.products { display: grid; gap: 1.5vw; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0; }
.woocommerce ul.products li.product { margin: 0; }
.woocommerce ul.products li.product img { aspect-ratio: .76; border-radius: 22px; filter: grayscale(1) contrast(1.05); object-fit: cover; width: 100%; }
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 13px; font-weight: 400; margin: 10px 0 4px; }
.woocommerce ul.products li.product .price { color: var(--signal); font-size: 13px; }
.woocommerce ul.products li.product .price del { color: var(--ink); opacity: .45; }
.woocommerce ul.products li.product .button {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .02em;
  margin-top: 8px;
  padding: 10px 18px;
  text-transform: uppercase;
}
.woocommerce ul.products li.product .button:hover { background: var(--signal); }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { border: 1px solid var(--line); color: var(--ink); }
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--ink); color: var(--paper); }

.woocommerce div.product .woocommerce-product-gallery img { border-radius: 22px; filter: grayscale(1) contrast(1.05); }
.woocommerce div.product .summary .price { color: var(--signal); font-size: 1.6rem; }
.woocommerce div.product .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  font-size: 12px;
  letter-spacing: .02em;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: background .2s ease;
}
.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--signal); color: var(--paper); }

.woocommerce table.shop_table { border: 1px solid var(--line); }
.woocommerce table.shop_table th { border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: 11px; }
.woocommerce table.shop_table td { border-top: 1px solid var(--line); }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: #1d1d1d;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: -.01em;
  padding: 16px 18px;
}
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { color: #fff; }
.woocommerce-message .button, .woocommerce-info .button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  color: #fff;
  padding: 7px 12px;
}
.woocommerce-message .button:hover, .woocommerce-info .button:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.archive-room-pdp .woocommerce-message { display: none; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { border: 1px solid var(--line); border-radius: 4px; }
.woocommerce-checkout #payment { background: var(--paper); }
.star-rating span::before { color: var(--signal); }

/* Cart blocks — a quiet editorial list with a distinct checkout panel. */
.woocommerce-cart .archive-room-wc-wrap { max-width: 1520px; }
.woocommerce-cart .wc-block-cart { margin-top: 3vw; }
.woocommerce-cart .wc-block-cart__main { padding-right: clamp(1.5rem, 4vw, 5rem); }
.woocommerce-cart .wc-block-cart-items { border-top: 1px solid var(--line); }
.woocommerce-cart .wc-block-cart-items__header { border-bottom: 1px solid var(--line); color: var(--signal); font-size: 10px; letter-spacing: .04em; padding: 0 0 12px; text-transform: uppercase; }
.woocommerce-cart .wc-block-cart-items__row { border-bottom: 1px solid var(--line); padding: 22px 0; }
.woocommerce-cart .wc-block-cart-item__image img { border-radius: 14px; filter: grayscale(1) contrast(1.05); }
.woocommerce-cart .wc-block-cart-item__product { padding-left: clamp(14px, 2vw, 26px); }
.woocommerce-cart .wc-block-components-product-name { color: var(--ink); font-size: clamp(1rem, 1.45vw, 1.35rem); font-weight: 700; letter-spacing: -.035em; line-height: 1; text-transform: uppercase; }
.woocommerce-cart .wc-block-components-product-metadata { color: var(--signal); font-size: 11px; margin-top: 10px; text-transform: uppercase; }
.woocommerce-cart .wc-block-cart-item__prices { color: var(--ink); font-size: 14px; font-weight: 700; }
.woocommerce-cart .wc-block-components-quantity-selector {
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
  height: 42px;
  padding: 0 4px;
}
.woocommerce-cart .wc-block-components-quantity-selector::after { border: 0; }
.woocommerce-cart .wc-block-components-quantity-selector__button { color: var(--ink); width: 34px; }
.woocommerce-cart .wc-block-components-quantity-selector__input { color: var(--ink); font-size: 13px; }
.woocommerce-cart .wc-block-cart-item__remove-link { color: var(--signal); font-size: 10px; letter-spacing: .03em; margin-top: 10px; text-decoration: underline; text-underline-offset: 3px; text-transform: uppercase; }
.woocommerce-cart .wc-block-components-sidebar {
  background: #1d1d1d;
  border-radius: 16px;
  color: #fff;
  padding: clamp(22px, 2.5vw, 34px);
  top: 24px;
}
.woocommerce-cart .wc-block-components-sidebar .wc-block-cart__totals-title,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-item__label,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-item__value,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-footer-item,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-footer-item .wc-block-formatted-money-amount { color: #fff; }
.woocommerce-cart .wc-block-components-sidebar .wc-block-cart__totals-title { font-size: 11px; letter-spacing: .04em; margin-bottom: 22px; text-transform: uppercase; }
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-item { border-color: rgba(255, 255, 255, .2); font-size: 12px; padding: 13px 0; }
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-footer-item { font-size: 17px; font-weight: 700; letter-spacing: -.03em; padding-top: 20px; }
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-button {
  background: #fff !important;
  border-radius: 999px !important;
  color: #1d1d1d !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  min-height: 54px;
  text-transform: uppercase;
}
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-button:hover { background: rgba(255, 255, 255, .78) !important; }
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-coupon-link,
.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-shipping .wc-block-components-totals-item__description { color: rgba(255, 255, 255, .68); font-size: 11px; }
.woocommerce-cart .wc-block-components-sidebar input.wc-block-components-text-input__input { background: transparent; border-color: rgba(255, 255, 255, .4); color: #fff; }
.woocommerce-cart .wc-block-cart__empty-cart__title { font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.06em; text-transform: uppercase; }
.woocommerce-cart .wc-block-cart__empty-cart__title::before { color: var(--ink); }

/* Checkout blocks — restrained forms and a high-contrast order summary. */
.woocommerce-checkout .archive-room-wc-wrap { max-width: 1520px; }
.woocommerce-checkout .wc-block-checkout { align-items: start; margin-top: 3vw; }
.woocommerce-checkout .wc-block-checkout__main { padding-right: clamp(1.5rem, 4vw, 5rem); }
.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: clamp(22px, 3vw, 38px) 0;
}
.woocommerce-checkout .wc-block-components-checkout-step__heading { margin-bottom: 22px; }
.woocommerce-checkout .wc-block-components-checkout-step__title {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.65vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}
.woocommerce-checkout .wc-block-components-checkout-step__description,
.woocommerce-checkout .wc-block-components-checkout-step__container,
.woocommerce-checkout .wc-block-components-address-card__address-section { color: var(--signal); }
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-textarea {
  background: rgba(255, 255, 255, .28) !important;
  border: 1px solid rgba(24, 24, 24, .42) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-family: inherit;
  font-size: 15px !important;
  min-height: 56px;
  outline: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.woocommerce-checkout .wc-block-components-textarea { min-height: 112px; padding: 18px !important; }
.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-combobox-control input:focus,
.woocommerce-checkout .wc-block-components-textarea:focus {
  background: #fff !important;
  border-color: var(--ink) !important;
  box-shadow: 0 0 0 1px var(--ink) !important;
}
.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox-control label {
  color: var(--signal) !important;
  font-size: 11px !important;
  letter-spacing: .015em;
}
.woocommerce-checkout .wc-block-components-checkbox label,
.woocommerce-checkout .wc-block-components-radio-control__label {
  color: var(--ink);
  font-size: 13px;
}
.woocommerce-checkout .wc-block-components-checkbox__input,
.woocommerce-checkout .wc-block-components-radio-control__input { accent-color: var(--ink); }
.woocommerce-checkout .wc-block-components-radio-control-accordion-option,
.woocommerce-checkout .wc-block-components-address-card {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  margin-bottom: 10px;
}
.woocommerce-checkout .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.woocommerce-checkout .wc-block-components-address-card--edit { border-color: var(--ink) !important; }
.woocommerce-checkout .wc-block-components-validation-error { color: #9e2626; font-size: 11px; margin-top: 6px; }
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  color: var(--ink);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: var(--ink) !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  min-height: 58px;
  text-transform: uppercase;
  transition: background-color .2s ease, transform .2s ease;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { background: var(--signal) !important; transform: translateY(-2px); }
.woocommerce-checkout .wc-block-components-checkout-place-order-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.woocommerce-checkout .wc-block-checkout__sidebar {
  background: #1d1d1d;
  border-radius: 16px;
  color: #fff;
  padding: clamp(22px, 2.5vw, 34px);
  position: sticky;
  top: 24px;
}
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar h2,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-name,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-price,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__label,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item__value,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-formatted-money-amount { color: #fff; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title {
  border-color: rgba(255, 255, 255, .22);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item { border-color: rgba(255, 255, 255, .18); padding: 18px 0; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__image img { border-radius: 8px; filter: grayscale(1) contrast(1.05); }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-name { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-product-metadata,
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary-item__quantity { color: rgba(255, 255, 255, .62); font-size: 10px; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-item { border-color: rgba(255, 255, 255, .18); padding: 18px 20px; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-footer-item { font-size: 17px; font-weight: 700; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon-link { color: rgba(255, 255, 255, .72); font-size: 11px; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-totals-coupon__form { border-color: rgba(255, 255, 255, .2); }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-text-input input { background: transparent !important; border-color: rgba(255, 255, 255, .42) !important; color: #fff !important; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-text-input label { color: rgba(255, 255, 255, .65) !important; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-button { border-color: rgba(255, 255, 255, .55) !important; border-radius: 8px !important; color: #fff !important; font-size: 11px; text-transform: uppercase; }
.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-button:hover { background: #fff !important; color: #1d1d1d !important; }

@media (max-width: 768px) {
  .woocommerce-cart .wc-block-cart { margin-top: 28px; }
  .woocommerce-cart .wc-block-cart__main { padding-right: 0; }
  .woocommerce-cart .wc-block-components-sidebar { border-radius: 12px; margin-top: 28px; position: static; }
  .woocommerce-cart .wc-block-cart-items__header { display: none; }
  .woocommerce-cart .wc-block-cart-items__row { padding: 16px 0; }
  .woocommerce-cart .wc-block-cart-item__product { padding-left: 12px; }
  .woocommerce-checkout .wc-block-checkout { margin-top: 28px; }
  .woocommerce-checkout .wc-block-checkout__main { padding-right: 0; }
  .woocommerce-checkout .wc-block-checkout__sidebar { border-radius: 12px; margin-top: 28px; position: static; }
  .woocommerce-checkout .wc-block-components-checkout-step__title { font-size: 1.15rem; }
  .woocommerce-checkout .wc-block-components-text-input input,
  .woocommerce-checkout .wc-block-components-combobox-control input { min-height: 54px; }
}

@media (max-width: 720px) {
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
}

/* ---------------------------------------------------
   Single product (PDP) — gallery rail + buy column
--------------------------------------------------- */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.archive-room-pdp { margin: 0 auto; max-width: 1500px; padding: 2.6vw 2.3vw 8vw; }
.pdp-breadcrumb { display: flex; flex-wrap: wrap; font-size: 13px; font-weight: 600; gap: 9px; letter-spacing: -.02em; margin-bottom: 2.4vw; }
.pdp-breadcrumb a:hover { color: var(--signal); }
.pdp-breadcrumb .is-current { opacity: .5; }

.pdp-layout { display: grid; gap: 3.4vw; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }

/* Gallery */
.pdp-gallery { position: sticky; top: 24px; }
.pdp-stage { aspect-ratio: .8; border-radius: 22px; margin: 0; }
.pdp-stage img { display: block; height: 100%; object-fit: cover; width: 100%; }
.pdp-badge { border: 1px solid var(--line); font-size: 10px; left: 14px; padding: 7px 10px; top: 14px; }
.pdp-thumbs { display: grid; gap: 10px; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 10px 0 0; padding: 0; }
.pdp-thumb {
  background: #ccc;
  border: 1px solid transparent;
  border-radius: 14px;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color .2s ease, opacity .2s ease;
  width: 100%;
}
.pdp-thumb img { aspect-ratio: .8; display: block; filter: grayscale(1) contrast(1.05); height: 100%; object-fit: cover; width: 100%; }
.pdp-thumb span {
  background: var(--paper);
  bottom: 6px;
  font-size: 9px;
  left: 6px;
  letter-spacing: -.03em;
  padding: 4px 6px;
  position: absolute;
  text-transform: uppercase;
}
.pdp-thumb:hover { opacity: .82; }
.pdp-thumb.is-active { border-color: var(--ink); }
.pdp-thumb:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

/* Buy column */
.pdp-summary { padding-top: .4rem; }
.pdp-head { align-items: baseline; display: flex; gap: 1.5rem; justify-content: space-between; }
.pdp-title {
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .92;
  margin: 0;
  text-transform: uppercase;
}
.pdp-price { font-size: clamp(1.1rem, 1.6vw, 1.5rem); letter-spacing: -.03em; margin: 0; white-space: nowrap; }
.pdp-price del { opacity: .45; margin-right: .4em; }
.pdp-price ins { text-decoration: none; }
.pdp-intro { color: var(--signal); font-size: 1rem; line-height: 1.42; margin-top: 1.4rem; max-width: 46ch; }
.pdp-intro p { margin: 0 0 .6rem; }

/* Swatches */
.pdp-swatches { display: grid; gap: 1.6rem; margin: 2.4rem 0; }
.pdp-swatch-head { align-items: baseline; display: flex; justify-content: space-between; margin-bottom: .8rem; }
.pdp-swatch-label { font-size: 11px; font-weight: 700; letter-spacing: -.02em; text-transform: uppercase; }
.pdp-swatch-value { font-size: 11px; opacity: .55; text-transform: uppercase; }
.pdp-swatch-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pdp-swatch {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  position: relative;
  transition: border-color .18s ease, transform .18s ease;
}
.pdp-swatch.is-color { border-radius: 50%; height: 40px; width: 40px; }
.pdp-swatch.is-color::after {
  background: var(--swatch, #ccc);
  border-radius: 50%;
  content: "";
  inset: 4px;
  position: absolute;
}
.pdp-swatch.is-text { border-radius: 999px; font-size: 12px; min-width: 46px; padding: 10px 15px; text-transform: uppercase; }
.pdp-swatch:hover { border-color: var(--ink); }
.pdp-swatch[aria-pressed="true"] { border-color: var(--ink); border-width: 2px; }
.pdp-swatch[aria-pressed="true"].is-text { background: var(--ink); color: var(--paper); }
.pdp-swatch:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* Spec table */
.pdp-specs { border-top: 1px solid var(--line); margin: 2.4rem 0; }
.pdp-spec { border-bottom: 1px solid var(--line); display: flex; gap: 1.5rem; justify-content: space-between; padding: 13px 0; }
.pdp-spec dt { font-size: 12px; opacity: .55; }
.pdp-spec dd { font-size: 12px; margin: 0; text-align: right; }

/* Quantity + add to bag */
.pdp-form { margin: 2.2rem 0 1.4rem; }
.pdp-buy-row { display: flex; gap: 12px; }
.pdp-qty {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  flex: 0 0 auto;
  height: 58px;
  padding: 0 6px;
}
.pdp-qty-step { background: transparent; border: 0; font-size: 17px; height: 44px; line-height: 1; width: 38px; }
.pdp-qty-step:hover { color: var(--signal); }
.pdp-qty-step:disabled { cursor: not-allowed; opacity: .3; }
.pdp-qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
  background: transparent;
  border: 0;
  font-size: 14px;
  text-align: center;
  width: 34px;
}
.pdp-qty-input::-webkit-inner-spin-button, .pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-qty-input:focus-visible, .pdp-qty-step:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.pdp-add {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 4px 10px;
  justify-content: center;
  letter-spacing: -.01em;
  min-height: 58px;
  padding: 10px 24px;
  text-transform: uppercase;
  transition: background .2s ease;
}
.pdp-add svg { height: 19px; width: 19px; }
.pdp-add:hover:not(:disabled) { background: var(--signal); }
.pdp-add:disabled { cursor: not-allowed; opacity: .45; }
.pdp-add-price { flex-basis: 100%; opacity: .7; text-align: center; }
.pdp-add-price .amount { white-space: nowrap; }

/* Assurance row */
.pdp-assurances { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; margin: 1.6rem 0 0; padding: 0; }
.pdp-assurances li { align-items: center; display: flex; font-size: 11px; gap: 7px; opacity: .7; text-transform: uppercase; }
.pdp-assurances svg { height: 17px; width: 17px; }
.pdp-sku { font-size: 10px; margin: 1.6rem 0 0; opacity: .45; text-transform: uppercase; }
.pdp-sku span { letter-spacing: .04em; }

/* Native WooCommerce variation form, dressed to match */
.pdp-buy-variable .variations { display: none; }
.pdp-buy-variable .woocommerce-variation-price { font-size: 1.2rem; margin-bottom: 1rem; }
.pdp-buy-variable .woocommerce-variation-availability p { font-size: 11px; text-transform: uppercase; }
.pdp-buy-variable form.cart { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin: 1.8rem 0 0; }
.pdp-buy-variable .woocommerce-variation { flex: 1 0 100%; }
.pdp-buy-variable .woocommerce-variation-add-to-cart {
  align-items: center;
  display: flex !important;
  gap: 12px;
  width: 100%;
}
.pdp-buy-variable .woocommerce-variation-add-to-cart .quantity {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  flex: 0 0 auto;
  height: 58px;
  justify-content: center;
  margin: 0 !important;
  padding: 0 6px;
}
.pdp-buy-variable .woocommerce-variation-add-to-cart .quantity input.qty {
  -moz-appearance: textfield;
  appearance: textfield;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  margin: 0;
  text-align: center;
  width: 34px;
}
.pdp-buy-variable .woocommerce-variation-add-to-cart .quantity input.qty::-webkit-inner-spin-button,
.pdp-buy-variable .woocommerce-variation-add-to-cart .quantity input.qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-buy-variable .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  align-items: center;
  background: var(--ink) !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  float: none !important;
  font-size: 13px;
  gap: 4px 10px;
  height: auto;
  justify-content: center;
  margin: 0 !important;
  min-height: 58px;
  padding: 10px 26px;
  width: 100%;
}
.pdp-buy-variable .woocommerce-variation-add-to-cart .single_add_to_cart_button[hidden] { display: none !important; }
.pdp-buy-variable .woocommerce-variation-add-to-cart .single_add_to_cart_button svg { height: 19px; width: 19px; }
.pdp-buy-variable .woocommerce-variation-add-to-cart .pdp-add-price { flex-basis: 100%; opacity: .7; text-align: center; }
.pdp-buy-variable .woocommerce-variation-add-to-cart .pdp-add-price .amount { white-space: nowrap; }
.pdp-buy-variable .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover:not(:disabled) { background: var(--signal) !important; }
.pdp-buy-variable .reset_variations { font-size: 10px; text-transform: uppercase; }

/* Story + related */
.pdp-story { border-top: 1px solid var(--line); display: grid; gap: 2vw; grid-template-columns: 18% 1fr; margin-top: 6vw; padding-top: 2.4vw; }
.pdp-story-body { font-size: clamp(1rem, 1.25vw, 1.25rem); line-height: 1.45; max-width: 70ch; }
.pdp-story-body p { margin: 0 0 1rem; }
.pdp-related { margin-top: 6vw; }
.pdp-related .section-label { margin-bottom: 1.6vw; }

@media (max-width: 980px) {
  .pdp-layout { gap: 32px; grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
}
@media (max-width: 720px) {
  .archive-room-pdp { padding: 20px 16px 70px; }
  .pdp-breadcrumb { font-size: 12px; margin-bottom: 18px; }
  .pdp-head { display: block; }
  .pdp-price { margin-top: .6rem; }
  .pdp-stage { border-radius: 18px; }
  .pdp-buy-row { flex-wrap: wrap; }
  .pdp-add { flex: 1 1 100%; }
  .pdp-qty { flex: 1 1 100%; justify-content: space-between; }
  .pdp-story { grid-template-columns: 1fr; }
  .pdp-related .product-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------
   Paginas de texto largo (legales, informativas)
   page.php no tenia estilos para .page-content, asi
   que el texto se estiraba a los 1400px del wrap.
--------------------------------------------------- */
.page-content {
  font-size: 15px;
  line-height: 1.7;
  max-width: 68ch;
}
.page-content > *:first-child { margin-top: 0; }
.page-content p { margin: 0 0 1.15rem; }
.page-content h2 {
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 3rem 0 1rem;
  padding-top: 1.2rem;
  text-transform: uppercase;
}
.page-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 2rem 0 .7rem;
}
.page-content ul { margin: 0 0 1.15rem; padding-left: 1.1rem; }
.page-content li { margin-bottom: .5rem; }
.page-content a {
  border-bottom: 1px solid var(--line);
  color: var(--signal);
}
.page-content a:hover { border-bottom-color: var(--ink); color: var(--ink); }
.page-content .legal-updated {
  font-size: 12px;
  letter-spacing: .06em;
  margin-bottom: 2.5rem;
  opacity: .6;
  text-transform: uppercase;
}
.page-content .wp-block-table { margin: 0 0 1.15rem; overflow-x: auto; }
.page-content table {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
}
.page-content th,
.page-content td {
  border-bottom: 1px solid var(--line);
  padding: .7rem .8rem .7rem 0;
  text-align: left;
  vertical-align: top;
}
.page-content th {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .page-content { font-size: 14px; }
  .page-content h2 { margin-top: 2.2rem; }
}
.page-content .wp-block-quote {
  border-left: 2px solid var(--line);
  font-size: 14px;
  margin: 0 0 1.15rem;
  padding: .2rem 0 .2rem 1.2rem;
}
.page-content .wp-block-quote p { margin: 0 0 .8rem; }
.page-content .wp-block-quote p:last-child { margin-bottom: 0; }
.page-content code {
  background: rgba(24, 24, 24, .06);
  border-radius: 4px;
  font-size: .92em;
  padding: .12em .4em;
  word-break: break-word;
}
.page-content ol { margin: 0 0 1.15rem; padding-left: 1.2rem; }
.page-content ol li { margin-bottom: .5rem; }
