:root {
  --surface: #f9f9f9;
  --surface-soft: #f2f2f2;
  --line: #e5e5e5;
  --ink: #1a1c1c;
  --muted: #5f6060;
  --soft-muted: #8a8a8a;
  --brand-blue: #012251;
  --brand-gray: #393634;
  --container: 1440px;
  --gutter: 26px;
  --outer: clamp(20px, 4.45vw, 64px);
  --section: clamp(72px, 9vw, 128px);
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

/* Sobre nosotros */
.about-page {
  padding-block: clamp(72px, 9vw, 132px);
}

.about-content {
  width: min(100%, 760px);
  margin-inline: auto;
}

.about-content h1 {
  margin: 14px 0 clamp(42px, 5vw, 68px);
  color: var(--brand-blue);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 300;
  line-height: 1;
}

.about-text p {
  margin: 0 0 1.4em;
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 300;
  line-height: 1.75;
}

.about-text p:first-child {
  color: var(--ink);
  font-size: clamp(21px, 1.6vw, 26px);
}

.about-link {
  display: inline-block;
  margin-top: clamp(20px, 3vw, 38px);
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.about-link:hover {
  opacity: 0.58;
}

@media (max-width: 720px) {
  .about-page {
    padding-block: 56px 76px;
  }

  .about-content h1 {
    margin-bottom: 36px;
    font-size: clamp(48px, 14vw, 64px);
  }

  .about-text p {
    font-size: 17px;
    line-height: 1.7;
  }

  .about-text p:first-child {
    font-size: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

img {
  display: block;
  width: 100%;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(calc(100% - (var(--outer) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: clamp(114px, 12vw, 174px);
  padding: clamp(23px, 3.35vw, 48px) var(--outer);
  border-bottom: 1px solid var(--line);
  background: rgba(249, 249, 249, 0.92);
  backdrop-filter: blur(14px);
  transition: min-height 260ms ease, padding 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  padding: 8px var(--outer);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.035);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(210px, 20vw, 320px);
  height: clamp(48px, 5vw, 76px);
  object-fit: contain;
  transition: width 260ms ease, height 260ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(176px, 15vw, 230px);
  height: 46px;
}

.brand-name,
.collection-card h2,
.feature-band h2,
.concierge h2,
.site-footer h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

.brand-name {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  white-space: nowrap;
  transition: font-size 260ms ease;
}

.site-header.is-scrolled .brand-name {
  font-size: clamp(30px, 2.4vw, 40px);
}

.brand-collab {
  margin-left: clamp(-16px, -1vw, -8px);
  color: #555;
  font-size: clamp(12px, 1.1vw, 19px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: font-size 260ms ease, margin 260ms ease;
}

.site-header.is-scrolled .brand-collab {
  margin-left: -8px;
  font-size: clamp(14px, 1.05vw, 18px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.8vw, 56px);
  margin-left: clamp(38px, 5vw, 72px);
}

.main-nav a,
.filter-button,
.view-options span,
.eyebrow,
.text-link,
.small-link,
.primary-button,
.site-footer nav p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav a {
  color: #505050;
  padding-block: 8px;
}

.main-nav a.active {
  color: #111;
  border-bottom: 1px solid #111;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-actions button {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-actions button:hover,
.text-link:hover,
.small-link:hover {
  opacity: 0.58;
}

.header-actions button:active {
  transform: scale(0.94);
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding-inline: 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}

.category-slider {
  padding-top: clamp(26px, 3.5vw, 50px);
}

.section-kicker,
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-kicker p,
.section-heading .eyebrow {
  margin: 0;
}

.section-kicker p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #555;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  transition: background 180ms ease, opacity 180ms ease;
}

.slider-button:hover {
  background: var(--surface-soft);
}

.slider-button svg {
  width: 20px;
  height: 20px;
}

.slider-frame {
  position: relative;
  min-height: clamp(390px, 38vw, 540px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.category-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 34px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.category-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-image {
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: clamp(330px, 32vw, 470px);
  background: var(--surface-soft);
}

.slide-image img {
  height: 100%;
  object-fit: cover;
}

.slide-copy {
  max-width: 560px;
}

.slide-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(44px, 4.6vw, 76px);
  font-weight: 300;
  line-height: 1;
}

.slide-copy p:not(.eyebrow) {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 300;
  line-height: 1.55;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
}

.slider-dots button {
  width: 34px;
  height: 2px;
  background: #cfcfcf;
  transition: background 180ms ease, width 180ms ease;
}

.slider-dots button.is-active {
  width: 52px;
  background: #111;
}

.best-sellers {
  padding-top: clamp(70px, 8vw, 116px);
}

.section-heading {
  align-items: flex-start;
  display: block;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(40px, 3.8vw, 64px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
}

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

.product-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.product-card h3 {
  margin: 18px 0 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 300;
  line-height: 1.05;
}

.product-card h3 a,
.catalog-product h2 a {
  color: var(--brand-blue);
  transition: opacity 180ms ease;
}

.product-card h3 a:hover,
.catalog-product h2 a:hover {
  opacity: 0.58;
}

.product-card p,
.product-card span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-card span {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 600;
}

.catalog-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(38px, 5vw, 68px);
}

.catalog-cta .primary-button {
  margin-top: 0;
}

.catalog-header {
  min-height: 64px;
  padding: 8px var(--outer);
}

.catalog-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding-block: clamp(42px, 5vw, 74px) var(--section);
}

.catalog-sidebar {
  position: sticky;
  top: 94px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 26px;
  border-right: 1px solid var(--line);
  scrollbar-width: thin;
}

.mobile-category-toggle {
  display: none;
}

.sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-block p {
  margin: 0 0 8px;
  color: #969696;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sidebar-block a,
.sidebar-block label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.sidebar-block a:hover,
.sidebar-block a.is-active {
  color: var(--ink);
}

.sidebar-block a.is-active {
  font-weight: 600;
}

#catalog-category-list a {
  color: var(--brand-blue);
}

#catalog-category-list > a.has-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

#catalog-category-list > a.has-subnav::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand-gray);
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

#catalog-category-list > a.has-subnav[aria-expanded="true"]::after {
  content: "−";
}

.sidebar-subnav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -4px 0 2px 14px;
}

.sidebar-subnav[hidden] {
  display: none;
}

.sidebar-subnav a {
  color: #8a8a8a;
  font-size: 13px;
}

.sidebar-block label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-block input {
  width: 14px;
  height: 14px;
  accent-color: #111;
}

.catalog-topbar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.catalog-topbar h1 {
  margin: 10px 0 10px;
  color: var(--brand-blue);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 300;
  line-height: 0.98;
}

.catalog-topbar span {
  color: var(--muted);
  font-size: 15px;
}

.mobile-category-toggle strong {
  color: var(--brand-blue);
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.sort-control select {
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 500 13px/1.2 Manrope, Arial, sans-serif;
  padding: 12px 34px 12px 14px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px) var(--gutter);
}

.catalog-product {
  min-width: 0;
}

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

.catalog-product-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.catalog-product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

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

.catalog-product div {
  padding-top: 16px;
}

.catalog-product p {
  margin: 0 0 8px;
  color: var(--brand-gray);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.catalog-product h2 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 300;
  line-height: 1.05;
}

.catalog-product span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.catalog-empty {
  margin: 46px 0 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.catalog-grid.is-changing .catalog-product {
  animation: catalogProductSlide 360ms ease both;
}

.catalog-grid.is-changing .catalog-product:nth-child(2),
.catalog-grid.is-changing .catalog-product:nth-child(5),
.catalog-grid.is-changing .catalog-product:nth-child(8) {
  animation-delay: 35ms;
}

.catalog-grid.is-changing .catalog-product:nth-child(3),
.catalog-grid.is-changing .catalog-product:nth-child(6),
.catalog-grid.is-changing .catalog-product:nth-child(9) {
  animation-delay: 70ms;
}

@keyframes catalogProductSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.product-page {
  padding-block: clamp(26px, 3vw, 44px) var(--section);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  overflow: hidden;
  aspect-ratio: 1 / 0.82;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.product-main-image img,
.product-thumbs img {
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.product-thumbs button {
  overflow: hidden;
  aspect-ratio: 1 / 0.72;
  border: 1px solid var(--line);
  opacity: 0.58;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.product-thumbs button.is-active,
.product-thumbs button:hover {
  border-color: #111;
  opacity: 1;
}

.mobile-buy-bar {
  display: none;
}

.product-summary {
  position: sticky;
  top: 94px;
  min-width: 0;
  padding-top: 8px;
}

.product-summary h1 {
  margin: 14px 0 18px;
  color: var(--brand-blue);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(52px, 5vw, 86px);
  font-weight: 300;
  line-height: 0.98;
}

.product-price {
  margin: 0 0 26px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
}

.product-intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 300;
  line-height: 1.65;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 28px 32px;
}

.product-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: #555;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.purchase-actions .primary-button {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  border: 1px solid #000;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 20px 32px;
  border: 1px solid #111;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.secondary-button:hover {
  background: #111;
  color: #fff;
}

.product-facts {
  margin: 30px 0 0;
}

.product-facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: #969696;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.product-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  margin-top: clamp(70px, 9vw, 128px);
  padding-top: clamp(38px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.product-details article {
  min-width: 0;
}

.product-details h2 {
  margin: 12px 0 18px;
  color: var(--brand-blue);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 300;
  line-height: 1.05;
}

.product-details p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.related-products {
  padding-top: clamp(70px, 8vw, 116px);
}

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

.feature-band p,
.concierge p,
.site-footer p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 24px);
  font-weight: 300;
  line-height: 1.65;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.filter-button,
.view-options {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}

.filter-button svg {
  width: 18px;
  height: 18px;
}

.view-options {
  gap: 14px;
}

.view-options span {
  color: #999;
}

.view-options button {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #7c7c7c;
}

.view-options button.active {
  color: #1b1b1b;
}

.view-options svg {
  width: 21px;
  height: 21px;
}

.collections {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  padding-top: clamp(28px, 3.4vw, 44px);
}

.collection-card {
  grid-column: span 4;
}

.collection-card.featured {
  grid-column: span 7;
}

.collection-card.tall {
  grid-column: span 5;
}

.image-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.collection-card.featured .image-link {
  aspect-ratio: 2.25 / 1;
}

.collection-card.tall .image-link {
  aspect-ratio: 1.28 / 1;
}

.collection-card:not(.featured):not(.tall) .image-link {
  aspect-ratio: 4 / 5;
}

.image-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.collection-card:hover .image-link img,
.feature-band:hover .image-link img {
  transform: scale(1.035);
}

.card-content {
  padding: 18px 8px 0;
}

.card-content.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-gray);
}

.collection-card h2,
.feature-band h2,
.concierge h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.05;
}

.collection-card:not(.featured):not(.tall) h2 {
  font-size: clamp(24px, 1.7vw, 32px);
}

.card-content p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 300;
  line-height: 1.45;
}

.collection-card:not(.featured):not(.tall) .card-content p {
  max-width: 480px;
  font-size: clamp(14px, 0.95vw, 16px);
}

.text-link {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid #111;
  white-space: nowrap;
}

.small-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  margin-top: clamp(36px, 4vw, 64px);
  padding: clamp(24px, 2.5vw, 40px);
  border: 1px solid var(--line);
}

.feature-band .image-link {
  aspect-ratio: 16 / 9;
}

.feature-band h2 {
  margin-bottom: 28px;
  font-size: clamp(48px, 4.6vw, 72px);
}

.feature-band .text-link {
  margin-top: 40px;
}

.concierge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: var(--section);
  text-align: center;
}

.concierge h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 3.2vw, 56px);
}

.concierge p {
  max-width: 680px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 360px);
  margin-top: 54px;
  padding: 26px 42px;
  background: #000;
  color: #fff;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-button .whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto;
}

.whatsapp-button {
  background: #25d366;
}

.primary-button:hover {
  opacity: 0.86;
}

.primary-button:active {
  transform: scale(0.98);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(160px, 0.5fr) minmax(160px, 0.5fr);
  gap: clamp(46px, 8vw, 128px);
  padding: clamp(76px, 9vw, 132px) var(--outer);
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.site-footer h2 {
  margin: 0 0 42px;
  line-height: 1;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-brand-name {
  font-size: clamp(48px, 4vw, 70px);
}

.footer-brand-collab {
  color: #555;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1;
}

.site-footer p {
  max-width: 460px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.site-footer nav p {
  margin: 0 0 10px;
  color: var(--brand-blue);
}

.site-footer a {
  color: var(--muted);
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 300;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 100px;
  }

  .main-nav {
    display: none;
  }

  .slider-frame {
    min-height: auto;
  }

  .category-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-slide.is-active {
    display: grid;
  }

  .slide-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

  .catalog-page {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
    display: block;
    max-height: none;
    overflow: visible;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-block {
    display: none;
  }

  #catalog-category-list {
    display: flex;
    flex-flow: row nowrap;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  #catalog-category-list p {
    display: none;
  }

  .sidebar-subnav {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    gap: 10px;
    margin: 0 10px 0 -8px;
    padding-left: 10px;
    border-left: 1px solid var(--line);
  }

  #catalog-category-list a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

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

  .product-summary {
    position: static;
  }

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

  .related-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card,
  .collection-card.featured,
  .collection-card.tall {
    grid-column: 1 / -1;
  }

  .collection-card.tall .image-link,
  .collection-card:not(.featured):not(.tall) .image-link {
    aspect-ratio: 16 / 10;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body:has(.mobile-buy-bar) {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 82px;
    padding-block: 15px;
  }

  .site-header.is-scrolled {
    min-height: 60px;
    padding-block: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 144px;
    height: 34px;
  }

  .site-header.is-scrolled .brand img {
    width: 140px;
    height: 34px;
  }

  .brand-name {
    font-size: clamp(28px, 7vw, 34px);
  }

  .site-header.is-scrolled .brand-name {
    font-size: 26px;
  }

  .brand-collab {
    display: none;
  }

  .site-header.is-scrolled .brand-collab {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions button {
    width: 28px;
    height: 28px;
  }

  .header-actions button:nth-child(2) {
    display: none;
  }

  .category-slider {
    padding-top: 18px;
  }

  .section-kicker {
    align-items: center;
  }

  .slider-button {
    width: 34px;
    height: 34px;
  }

  .category-slide {
    padding: 14px;
  }

  .slide-image {
    aspect-ratio: 1.35 / 1;
  }

  .slide-copy h2,
  .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .slide-copy p:not(.eyebrow) {
    margin: 14px 0 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .slider-dots {
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .slider-dots button {
    width: 28px;
    height: 3px;
  }

  .slider-dots button.is-active {
    width: 42px;
  }

  .best-sellers {
    padding-top: 54px;
  }

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

  .catalog-page {
    width: 100%;
    padding: 0 16px 72px;
  }

  .catalog-content {
    display: contents;
  }

  .catalog-header.site-header {
    min-height: 60px;
    padding: 8px 16px;
  }

  .catalog-header .brand {
    min-width: 0;
  }

  .catalog-header .brand img {
    width: 132px;
    height: 32px;
  }

  .catalog-header .brand-name {
    font-size: 25px;
  }

  .catalog-header .header-actions {
    gap: 8px;
  }

  .catalog-header .header-actions button {
    width: 26px;
    height: 26px;
  }

  .catalog-sidebar {
    position: sticky;
    top: 60px;
    z-index: 5;
    order: 2;
    max-height: none;
    overflow: visible;
    margin: 0 -16px;
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--line);
    background: rgba(249, 249, 249, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-category-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    text-align: left;
  }

  .mobile-category-toggle span {
    color: #969696;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .mobile-category-toggle strong {
    flex: 1;
    overflow: hidden;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-category-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
  }

  .catalog-sidebar.is-compact .mobile-category-toggle {
    display: flex;
  }

  .catalog-sidebar.is-expanded .mobile-category-toggle svg {
    transform: rotate(180deg);
  }

  #catalog-category-list {
    gap: 10px;
    flex-flow: column nowrap;
    overflow-x: visible;
    padding-inline: 16px;
    padding-bottom: 0;
    max-height: min(62vh, 520px);
    opacity: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(0);
    transition:
      max-height 280ms ease,
      opacity 220ms ease,
      padding-top 280ms ease,
      transform 280ms ease;
  }

  .catalog-sidebar.is-compact #catalog-category-list {
    padding-top: 10px;
  }

  .catalog-sidebar.is-compact:not(.is-expanded) #catalog-category-list {
    max-height: 0;
    opacity: 0;
    overflow-y: hidden;
    padding-top: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .catalog-sidebar.is-compact.is-expanded #catalog-category-list {
    max-height: min(62vh, 520px);
    opacity: 1;
    overflow-y: auto;
    transform: translateY(0);
  }

  #catalog-category-list .sidebar-subnav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: -2px 0 4px 16px;
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }

  #catalog-category-list .sidebar-subnav[hidden] {
    display: none;
  }

  .sidebar-block:first-child a {
    width: fit-content;
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 13px;
  }

  #catalog-category-list > a.has-subnav {
    width: 100%;
  }

  .sidebar-block:first-child a.is-active {
    border-color: #111;
  }

  .catalog-topbar {
    display: block;
    order: 1;
    margin: 0 -16px 22px;
    padding: 26px 16px 20px;
    background: var(--surface);
  }

  .catalog-topbar h1 {
    margin: 8px 0 8px;
    font-size: clamp(40px, 12vw, 56px);
  }

  .catalog-topbar span {
    font-size: 13px;
  }

  .sort-control {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    justify-content: space-between;
  }

  .sort-control select {
    min-width: 0;
    width: 100%;
    padding-block: 13px;
  }

  .catalog-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalog-product {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .catalog-product-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .catalog-product div {
    padding-top: 12px;
  }

  .catalog-product p {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .catalog-product h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .catalog-product span {
    margin-top: 8px;
    font-size: 15px;
  }

  .product-page {
    padding-block: 24px 72px;
  }

  .product-main-image {
    aspect-ratio: 1.18 / 1;
  }

  .product-thumbs {
    display: none;
  }

  .product-summary {
    padding-top: 0;
  }

  .product-summary h1 {
    margin-top: 10px;
    font-size: clamp(40px, 11vw, 56px);
  }

  .product-price {
    margin-bottom: 18px;
  }

  .product-intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .product-badges {
    margin-block: 22px 24px;
  }

  .purchase-actions {
    display: none;
  }

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .mobile-buy-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    background: rgba(249, 249, 249, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-buy-bar div {
    min-width: 0;
  }

  .mobile-buy-bar span,
  .mobile-buy-bar strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buy-bar span {
    color: var(--muted);
    font-size: 12px;
  }

  .mobile-buy-bar strong {
    margin-top: 2px;
    font-size: 14px;
  }

  .mobile-buy-bar button {
    flex: 0 0 auto;
    padding: 14px 18px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
  }

  .collection-toolbar {
    align-items: flex-start;
    padding-bottom: 28px;
  }

  .view-options {
    display: none;
  }

  .collections {
    gap: 52px;
    padding-top: 52px;
  }

  .card-content,
  .card-content.split {
    display: block;
    padding: 20px 0 0;
  }

  .card-content .text-link {
    margin-top: 24px;
  }

  .feature-band {
    gap: 28px;
    padding: 18px;
  }

  .feature-band h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .primary-button {
    min-width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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