:root {
  --noir: #090706;
  --ink: #181312;
  --burgundy: #5d1025;
  --burgundy-deep: #320815;
  --champagne: #d7bd86;
  --gold: #b99145;
  --ivory: #fbf8f1;
  --porcelain: #f3efe7;
  --stone: #ded7ca;
  --muted: #746b61;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(9, 7, 6, 0.18);
  --serif: "Playfair Display", Didot, "Bodoni 72", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 108px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

main,
section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  max-width: 100%;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.site-header > * {
  min-width: 0;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(251, 248, 241, 0.94);
  color: var(--noir);
  box-shadow: 0 12px 40px rgba(9, 7, 6, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.brand img {
  width: clamp(82px, 8vw, 112px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
  transition: width 220ms ease, filter 220ms ease;
}

.site-header.scrolled .brand img,
.site-header.nav-open .brand img {
  width: clamp(76px, 7vw, 96px);
  filter: drop-shadow(0 6px 14px rgba(9, 7, 6, 0.16));
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.icon-button,
.menu-toggle,
.close-dialog {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(215, 189, 134, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.08);
  color: currentColor;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.icon-button:hover,
.menu-toggle:hover,
.close-dialog:hover {
  border-color: var(--champagne);
  background: rgba(215, 189, 134, 0.16);
  transform: translateY(-1px);
}

.icon-button svg,
.close-dialog svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--noir);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.1), rgba(9, 7, 6, 0.2) 38%, rgba(9, 7, 6, 0.78)),
    linear-gradient(90deg, rgba(50, 8, 21, 0.42), transparent 52%, rgba(9, 7, 6, 0.22));
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 1600ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide picture,
.hero-slide img {
  height: 100%;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04) sepia(0.04);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(74px, 11vh, 126px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
}

.hero-content p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--burgundy);
  color: var(--white);
}

.button.primary:hover {
  background: var(--burgundy-deep);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.62);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--champagne);
  background: rgba(255, 253, 248, 0.1);
}

.hero-controls {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(24px, 5vw, 46px);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 38px;
  height: 2px;
  border: 0;
  background: rgba(255, 253, 248, 0.36);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--champagne);
}

.category-band,
.shop-section,
.experience,
.brand-story,
.prive {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.category-band,
.shop-section {
  padding-right: clamp(16px, 2.6vw, 44px);
  padding-left: clamp(16px, 2.6vw, 44px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 0 auto 34px;
  max-width: min(1760px, 100%);
  text-align: center;
}

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

.section-heading h2,
.experience-copy h2,
.prive-form h2 {
  margin-bottom: 0;
  color: var(--noir);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(18px, 2.2vw, 30px);
  width: 100%;
  max-width: min(1760px, 100%);
  margin: 0 auto;
}

.category-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 16px;
  overflow: visible;
  background: transparent;
  color: var(--ink);
}

.category-tile.large {
  grid-row: span 1;
}

.category-tile::after {
  content: none;
}

.category-tile img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.055);
}

.category-tile span {
  position: static;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1;
  text-align: center;
}

.category-tile p {
  position: static;
  max-width: 34ch;
  margin: -6px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-section {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  width: 100%;
  max-width: min(1760px, 100%);
  margin: 0 auto clamp(34px, 6vw, 70px);
}

.shop-intro-copy h2 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--noir);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.6vw, 6.2rem);
  line-height: 0.92;
}

.shop-intro-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.shop-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.shop-promises span {
  border: 0;
  border-bottom: 1px solid rgba(185, 145, 69, 0.5);
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drop-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--noir);
  color: var(--white);
  box-shadow: none;
}

.drop-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 7, 6, 0.76), rgba(9, 7, 6, 0.12) 62%);
  content: "";
}

.drop-feature img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06);
}

.drop-feature div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.drop-feature span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop-feature h3 {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.drop-feature .button {
  width: max-content;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  width: 100%;
  max-width: min(1760px, 100%);
  margin: 0 auto;
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 0;
  border-top: 1px solid var(--stone);
  background: transparent;
  padding: 20px 0;
  backdrop-filter: none;
}

.filter-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.filter-top h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.filter-top button {
  border: 0;
  background: none;
  color: var(--burgundy);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

label {
  display: flex;
  min-height: 34px;
  align-items: center;
  color: var(--ink);
  font-size: 0.92rem;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 9px 0 0;
  accent-color: var(--burgundy);
  vertical-align: middle;
}

.feed-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  border-top: 1px solid var(--stone);
  padding: 16px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

select,
input[type="email"] {
  min-height: 46px;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.product-card {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 0;
  background: #e8e0d3;
  cursor: zoom-in;
}

.product-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: opacity 320ms ease, transform 500ms ease;
}

.product-media img:nth-child(2) {
  opacity: 0;
}

.product-card:hover .product-media img:first-child {
  opacity: 0;
  transform: scale(1.02);
}

.product-card:hover .product-media img:nth-child(2) {
  opacity: 1;
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(9, 7, 6, 0.82);
  color: var(--champagne);
  padding: 7px 10px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quick-view {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 248, 0.48);
  background: rgba(9, 7, 6, 0.64);
  color: var(--white);
  padding: 8px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-card:hover .quick-view,
.product-card:focus-within .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  display: grid;
  gap: 9px;
}

.product-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.05;
}

.product-info p {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-meta {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price {
  color: var(--burgundy);
  font-weight: 800;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags span {
  border: 1px solid rgba(185, 145, 69, 0.28);
  color: var(--muted);
  padding: 6px 8px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-action {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.product-action:hover,
.product-action:focus-visible {
  border-color: var(--burgundy);
  background: transparent;
  color: var(--burgundy);
}

.featured-product {
  grid-column: span 2;
}

.featured-product .product-media {
  aspect-ratio: 16 / 11;
}

.featured-product .product-info {
  max-width: 680px;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--porcelain);
}

.experience-copy p:not(.eyebrow),
.prive-form p {
  max-width: 560px;
  color: var(--muted);
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 30px;
}

.experience-metrics span {
  border-top: 1px solid var(--gold);
  padding-top: 13px;
}

.experience-metrics strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.experience-metrics small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--noir);
  box-shadow: none;
}

.experience-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 7, 6, 0.68), transparent 52%),
    linear-gradient(110deg, rgba(93, 16, 37, 0.32), transparent 58%);
  content: "";
  pointer-events: none;
}

.experience-visual img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05) sepia(0.06);
}

.experience-panel {
  position: absolute;
  right: clamp(18px, 4vw, 40px);
  bottom: clamp(18px, 4vw, 40px);
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(215, 189, 134, 0.38);
  background: rgba(9, 7, 6, 0.72);
  color: var(--white);
  padding: 22px;
  backdrop-filter: blur(14px);
}

.experience-panel span {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-panel strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
}

.experience-panel .button {
  width: max-content;
}

.experience-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.experience-flow article {
  min-height: 210px;
  background: rgba(255, 253, 248, 0.72);
  padding: clamp(20px, 3vw, 30px);
}

.experience-flow span {
  color: var(--gold);
  display: block;
  font-weight: 800;
  margin-bottom: 42px;
}

.experience-flow h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.experience-flow p {
  margin-bottom: 0;
  color: var(--muted);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--ivory);
}

.story-copy h2 {
  margin-bottom: 18px;
  color: var(--noir);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.story-copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}

.trust-grid article {
  min-height: 190px;
  background: rgba(255, 253, 248, 0.72);
  padding: clamp(20px, 3vw, 30px);
}

.trust-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.prive {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--noir);
  color: var(--white);
}

.prive-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.prive-media :is(img, video) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prive-form h2 {
  color: var(--white);
}

.prive-form p {
  color: rgba(255, 253, 248, 0.72);
}

.prive-form {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.prive-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
}

.prive-form input[type="email"] {
  border-color: rgba(215, 189, 134, 0.42);
  background: rgba(255, 253, 248, 0.06);
  color: var(--white);
}

.prive-form input::placeholder {
  color: rgba(255, 253, 248, 0.46);
}

.prive-form .button {
  width: max-content;
}

.prive-form small {
  color: rgba(255, 253, 248, 0.52);
}

.product-dialog {
  width: min(1120px, calc(100% - 24px));
  max-height: min(860px, calc(100vh - 24px));
  border: 0;
  background: var(--ivory);
  color: var(--ink);
  padding: 0;
  box-shadow: var(--shadow);
}

.product-dialog::backdrop {
  background: rgba(9, 7, 6, 0.72);
  backdrop-filter: blur(8px);
}

.close-dialog {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  background: rgba(251, 248, 241, 0.88);
  color: var(--noir);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.detail-gallery {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: min(860px, calc(100vh - 24px));
  min-width: 0;
  background: #e8e0d3;
}

.zoom-stage {
  position: relative;
  height: auto;
  overflow: hidden;
  background: #e8e0d3;
  cursor: zoom-in;
}

.zoom-stage img {
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 36px);
  transform-origin: center;
  transition: transform 140ms ease;
}

.gallery-strip {
  display: grid;
  grid-auto-columns: minmax(72px, 96px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 14px;
  background: rgba(255, 253, 248, 0.72);
  scrollbar-width: thin;
}

.gallery-thumb {
  aspect-ratio: 1;
  border: 1px solid rgba(24, 19, 18, 0.12);
  background: var(--white);
  cursor: pointer;
  padding: 4px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.active {
  border-color: var(--gold);
  transform: translateY(-1px);
}

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

.detail-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(28px, 5vw, 62px);
  overflow: auto;
}

.detail-copy h2 {
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.product-sku {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-lede {
  color: var(--muted);
}

.product-film {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(185, 145, 69, 0.28);
  background: var(--noir);
  color: var(--white);
  padding: clamp(14px, 2vw, 18px);
}

.product-film video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #090706;
  object-fit: cover;
}

.film-copy {
  display: grid;
  gap: 6px;
}

.film-copy span {
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.film-copy p {
  margin: 0;
  color: rgba(251, 248, 241, 0.72);
  font-size: 0.86rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec-list div,
.size-guide,
.look-item {
  border: 1px solid var(--stone);
  background: rgba(255, 253, 248, 0.56);
}

.spec-list div {
  padding: 14px;
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.size-guide {
  padding: 16px;
}

.size-guide h3,
.complement h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.size-options button {
  min-width: 46px;
  min-height: 42px;
  border: 1px solid var(--stone);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.size-options button.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.size-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.look-item {
  overflow: hidden;
}

.look-item img {
  aspect-ratio: 1;
  object-fit: cover;
}

.look-item span {
  display: block;
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: var(--ivory);
  border-top: 1px solid var(--stone);
}

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

.footer-brand img {
  width: clamp(150px, 18vw, 230px);
  filter: drop-shadow(0 8px 16px rgba(9, 7, 6, 0.16));
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

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

  .featured-product {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 0;
    justify-self: stretch;
    background: rgba(251, 248, 241, 0.98);
    color: var(--noir);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 54px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--stone);
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: grid;
    gap: 0;
    justify-self: stretch;
    background: rgba(251, 248, 241, 0.98);
    color: var(--noir);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 54px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--stone);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: 100%;
    padding: 0 18px 78px;
  }

  .hero-controls {
    right: 18px;
    bottom: 28px;
  }

  .category-grid,
  .shop-layout,
  .shop-intro,
  .experience,
  .brand-story,
  .prive,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    min-height: 520px;
  }

  .experience-visual img {
    min-height: 520px;
  }

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

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

  .category-grid {
    grid-auto-rows: auto;
  }

  .category-tile.large {
    grid-row: span 1;
  }

  .filters {
    position: static;
  }

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

  .drop-feature,
  .drop-feature img {
    min-height: 360px;
  }

  .filters {
    position: static;
  }

  .detail-gallery {
    position: relative;
    height: auto;
  }

  .zoom-stage {
    height: 58vh;
  }

  .detail-copy {
    overflow: visible;
  }

  .site-footer {
    display: grid;
  }
}

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

  .brand img,
  .site-header.scrolled .brand img,
  .site-header.nav-open .brand img {
    width: 76px;
  }

  .footer-brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  .hero-cta,
  .feed-toolbar,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .prive-form .button {
    width: 100%;
  }

  .category-band,
  .shop-section,
  .experience,
  .prive {
    padding: 58px 16px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .experience-copy h2,
  .prive-form h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .experience-metrics,
  .experience-flow,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .category-tile span {
    bottom: auto;
  }

  .category-tile p {
    font-size: 0.84rem;
  }

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

  .experience-visual {
    min-height: 560px;
  }

  .experience-visual img {
    min-height: 560px;
  }

  .experience-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .experience-flow article {
    min-height: auto;
  }

  .experience-flow span {
    margin-bottom: 24px;
  }

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

  .featured-product {
    grid-column: auto;
  }

  .featured-product .product-media,
  .product-media {
    aspect-ratio: 4 / 5;
  }

  .product-info p {
    min-height: auto;
  }

  .product-kicker {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .product-info h3 {
    font-size: 1.12rem;
  }

  .product-action {
    min-height: 48px;
  }

  .spec-list,
  .look-grid {
    grid-template-columns: 1fr;
  }
}

/* Maison visual refresh inspired by the approved Soleil Boutique mockup. */
.site-header {
  padding-top: clamp(14px, 2.2vw, 28px);
  padding-bottom: clamp(14px, 2.2vw, 28px);
}

.brand img {
  width: clamp(92px, 7.5vw, 132px);
}

.hero {
  min-height: min(94svh, 840px);
  align-items: center;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(48vw, 720px);
  background: linear-gradient(90deg, rgba(9, 7, 6, 0.88), rgba(9, 7, 6, 0.64) 54%, transparent);
  content: "";
  pointer-events: none;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.06), rgba(9, 7, 6, 0.16) 58%, rgba(9, 7, 6, 0.52)),
    linear-gradient(90deg, rgba(9, 7, 6, 0.72), transparent 58%);
}

.hero-slide img {
  object-position: 62% center;
  filter: saturate(0.78) contrast(1.08) sepia(0.08);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(560px, calc(100% - clamp(36px, 12vw, 180px)));
  margin: 0 auto 0 clamp(24px, 8vw, 120px);
  padding: clamp(138px, 18vh, 190px) 0 clamp(42px, 6vh, 76px);
  text-align: left;
}

.hero-content .eyebrow {
  color: rgba(255, 253, 248, 0.86);
}

.hero-content h1 {
  max-width: 590px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 4.8vw, 5.35rem);
  line-height: 0.94;
}

.hero-content p:not(.eyebrow) {
  margin-right: 0;
  margin-left: 0;
  max-width: 470px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.98rem;
}

.hero-cta {
  justify-content: flex-start;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: clamp(22px, 3.5vw, 44px);
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signature span:first-child {
  color: var(--champagne);
}

.hero-signature span:first-child::after {
  display: inline-block;
  width: 72px;
  height: 1px;
  margin: 0 8px 3px 12px;
  background: var(--champagne);
  content: "";
}

.hero-controls {
  right: auto;
  bottom: clamp(38px, 5vw, 76px);
  left: clamp(24px, 8vw, 120px);
}

.hero-dot {
  width: 54px;
}

.button {
  min-height: 52px;
  padding: 15px 28px;
}

.button.primary {
  background: linear-gradient(180deg, #e0c184, #bd914c);
  color: var(--noir);
}

.button.primary:hover {
  background: linear-gradient(180deg, #e8cd92, #ad7d37);
}

.category-band {
  --category-offset: clamp(64px, 7vw, 96px);
  position: relative;
  margin-top: var(--category-offset);
  padding: 0;
  background: var(--noir);
}

.category-band::before {
  position: absolute;
  top: calc(var(--category-offset) / -2);
  left: 50%;
  width: min(132px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 145, 69, 0.72), transparent);
  content: "";
  transform: translateX(-50%);
}

.category-band .section-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.category-band .section-heading h2 {
  display: none;
}

.category-grid {
  max-width: none;
  gap: 0;
}

.category-tile {
  min-height: clamp(320px, 32vw, 450px);
  overflow: hidden;
  background: var(--noir);
  color: var(--white);
}

.category-tile::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 7, 6, 0.82));
  content: "";
  pointer-events: none;
}

.category-tile img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.08) sepia(0.07);
}

.category-tile span,
.category-tile p {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 46px);
  margin: 0;
  text-align: left;
}

.category-tile span {
  bottom: 58px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.category-tile p {
  bottom: 28px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.category-tile p::after {
  margin-left: 12px;
  content: "→";
}

.shop-section {
  padding-top: clamp(74px, 8vw, 112px);
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 189, 134, 0.18), transparent 34%),
    var(--ivory);
}

.shop-intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  align-items: center;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.shop-intro-copy h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
}

.shop-promises span {
  color: var(--burgundy);
}

.drop-feature {
  min-height: 330px;
}

.drop-feature img {
  min-height: 330px;
}

.drop-feature .button {
  min-height: 42px;
  padding: 12px 18px;
}

.shop-layout {
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
}

.filters {
  border-top-color: rgba(24, 19, 18, 0.16);
}

.feed-toolbar {
  border-top-color: rgba(24, 19, 18, 0.16);
  margin-bottom: 18px;
}

.product-grid {
  gap: clamp(14px, 1.7vw, 24px);
}

.product-media {
  background: #f1ece4;
  border: 1px solid rgba(24, 19, 18, 0.1);
}

.product-badge {
  background: rgba(255, 253, 248, 0.82);
  color: var(--noir);
}

.product-info {
  gap: 7px;
}

.product-info h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-info p,
.product-tags {
  display: none;
}

.product-price,
.product-meta {
  font-size: 0.78rem;
}

.product-action {
  min-height: 38px;
}

.experience {
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.04), transparent 52%),
    var(--porcelain);
}

.brand-story {
  padding-top: clamp(84px, 9vw, 122px);
  padding-bottom: clamp(84px, 9vw, 122px);
}

.prive {
  padding-top: clamp(74px, 8vw, 112px);
  padding-bottom: clamp(74px, 8vw, 112px);
  background:
    radial-gradient(circle at 78% 18%, rgba(93, 16, 37, 0.28), transparent 34%),
    var(--noir);
}

.prive-media {
  position: relative;
  aspect-ratio: 16 / 12;
  max-height: 720px;
}

.prive-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 7, 6, 0.18), rgba(9, 7, 6, 0.42));
  content: "";
  pointer-events: none;
}

.video-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(24px, 4vw, 50px);
  display: inline-grid;
  gap: 12px;
  justify-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.video-badge span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.78);
  border-radius: 50%;
  background: rgba(9, 7, 6, 0.26);
  backdrop-filter: blur(10px);
}

.video-badge span::before {
  display: block;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  content: "";
}

.video-badge strong {
  font: inherit;
}

.prive-form h2 {
  max-width: 720px;
}

.prive-form .button {
  width: min(420px, 100%);
}

.prive-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.74rem;
}

.prive-benefits span {
  border-top: 1px solid rgba(215, 189, 134, 0.42);
  padding-top: 10px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 72px);
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
}

.service-strip article {
  min-height: 92px;
  border-right: 1px solid rgba(185, 145, 69, 0.38);
  padding: 0 clamp(18px, 3vw, 34px);
}

.service-strip article:last-child {
  border-right: 0;
}

.service-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--noir);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-strip p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  background: linear-gradient(180deg, #0d0b0a, #050404);
  color: var(--white);
}

.site-footer p,
.footer-links {
  color: rgba(255, 253, 248, 0.68);
}

@media (max-width: 1080px) {
  .hero::before {
    width: 66vw;
  }

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

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

  .service-strip article:nth-child(2) {
    border-right: 0;
  }
}

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

  .hero::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 7, 6, 0.18), rgba(9, 7, 6, 0.86));
  }

  .hero-slide img {
    object-position: 66% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 140px 0 92px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-controls {
    left: 18px;
  }

  .category-grid,
  .shop-intro,
  .shop-layout,
  .prive {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 360px;
  }

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

  .prive-media {
    aspect-ratio: 4 / 5;
  }

  .prive-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .category-band {
    --category-offset: 46px;
  }

  .hero-signature {
    display: none;
  }

  .hero-content {
    padding-bottom: 78px;
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-controls {
    bottom: 24px;
  }

  .category-band .section-heading {
    top: 16px;
    left: 16px;
  }

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

  .service-strip article,
  .service-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 145, 69, 0.28);
    padding: 18px 0;
  }

  .service-strip article:last-child {
    border-bottom: 0;
  }
}

/* Novedades carousel */
.product-carousel {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.product-grid {
  display: grid;
  grid-auto-columns: clamp(190px, 16.8vw, 258px);
  grid-auto-flow: column;
  grid-template-columns: none;
  width: max-content;
  gap: clamp(12px, 1.6vw, 20px);
  align-items: start;
  padding-bottom: 4px;
}

.shop-layout > :not(.filters) {
  min-width: 0;
}

.product-card {
  scroll-snap-align: start;
}

.carousel-arrow {
  position: absolute;
  top: 38%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(185, 145, 69, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.86);
  color: var(--noir);
  cursor: pointer;
  opacity: 0.92;
  box-shadow: 0 14px 38px rgba(9, 7, 6, 0.14);
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--gold);
  background: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.34;
}

.carousel-arrow svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.carousel-arrow-prev {
  left: -23px;
}

.carousel-arrow-next {
  right: -23px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 16px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(185, 145, 69, 0.28);
  cursor: pointer;
  padding: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-dots button.active {
  background: var(--gold);
  transform: scale(1.18);
}

@media (max-width: 1080px) {
  .product-grid {
    grid-auto-columns: minmax(190px, 28vw);
    grid-template-columns: none;
  }
}

@media (max-width: 860px) {
  .product-grid {
    grid-auto-columns: minmax(210px, 42vw);
    grid-template-columns: none;
  }

  .carousel-arrow {
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-auto-columns: minmax(238px, 82vw);
    grid-template-columns: none;
  }

  .carousel-arrow {
    top: 35%;
    width: 42px;
    height: 42px;
  }

  .carousel-arrow-prev {
    left: 8px;
  }

  .carousel-arrow-next {
    right: 8px;
  }
}

/* Novedades premium refresh */
.collection-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
}

.collection-feed {
  min-width: 0;
}

.featured-shop-card {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  min-width: 0;
  border: 1px solid rgba(185, 145, 69, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(243, 239, 231, 0.7)),
    var(--white);
  box-shadow: 0 24px 80px rgba(9, 7, 6, 0.08);
}

.featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  background: #eee7dd;
  cursor: zoom-in;
  padding: 0;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 2.6vw, 32px);
  transition: transform 520ms ease;
}

.featured-shop-card:hover .featured-media img {
  transform: scale(1.035);
}

.featured-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 7, 6, 0.84);
  color: var(--champagne);
  padding: 7px 10px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-copy {
  display: grid;
  gap: 13px;
  padding: clamp(18px, 2.4vw, 28px);
}

.featured-kicker,
.card-sku {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.featured-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(185, 145, 69, 0.34);
  padding-top: 13px;
}

.featured-meta span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-meta strong {
  color: var(--burgundy);
  font-size: 0.95rem;
}

.featured-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.featured-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 19, 18, 0.1);
  background: #f1ece4;
  object-fit: contain;
  padding: 6px;
}

.featured-empty {
  display: grid;
  min-height: 520px;
  align-content: center;
  gap: 12px;
  padding: 28px;
}

.featured-empty span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-empty strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.featured-empty p {
  margin: 0;
  color: var(--muted);
}

.brand-rail {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.brand-rail::-webkit-scrollbar {
  display: none;
}

.brand-rail button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(185, 145, 69, 0.34);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
  padding: 0 13px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.brand-rail button:hover,
.brand-rail button:focus-visible,
.brand-rail button.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
}

.collection-feed .feed-toolbar {
  margin-bottom: 16px;
  border-top: 0;
  border-bottom: 1px solid rgba(24, 19, 18, 0.12);
  padding: 0 0 14px;
}

.collection-feed .product-grid {
  grid-auto-columns: clamp(210px, 18vw, 286px);
  gap: clamp(14px, 1.7vw, 22px);
}

.collection-feed .product-card {
  border: 1px solid rgba(24, 19, 18, 0.08);
  background: rgba(255, 253, 248, 0.55);
  padding: 10px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.collection-feed .product-card:hover,
.collection-feed .product-card:focus-within {
  border-color: rgba(185, 145, 69, 0.46);
  background: var(--white);
  transform: translateY(-3px);
}

.collection-feed .product-media {
  border: 0;
}

.collection-feed .product-info h3 {
  min-height: 2.5em;
}

.card-sku {
  color: rgba(116, 107, 97, 0.82);
  font-size: 0.62rem;
}

.shop-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(185, 145, 69, 0.3);
  background: rgba(185, 145, 69, 0.3);
}

.shop-trust-strip span {
  background: rgba(255, 253, 248, 0.8);
  color: var(--muted);
  padding: 13px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .collection-stage {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  }
}

@media (max-width: 980px) {
  .collection-stage {
    grid-template-columns: 1fr;
  }

  .featured-shop-card {
    position: static;
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1fr);
  }

  .featured-media {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 680px) {
  .featured-shop-card,
  .shop-trust-strip {
    grid-template-columns: 1fr;
  }

  .featured-media {
    aspect-ratio: 4 / 3;
  }

  .featured-copy .button {
    width: 100%;
  }

  .collection-feed .product-grid {
    grid-auto-columns: minmax(238px, 82vw);
  }
}
