:root {
  --ink: #191716;
  --muted: #6f6862;
  --paper: #f7f3ee;
  --soft: #ebe2d8;
  --cream: #fffaf4;
  --wine: #6d1f2f;
  --forest: #17372b;
  --gold: #b8945f;
  --line: rgba(25, 23, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

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

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

.promo-bar {
  min-height: 36px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 0 16px;
  text-align: center;
  text-transform: uppercase;
}

.promo-rotator {
  height: 36px;
}

.promo-rotator p {
  height: 36px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  line-height: 1;
  animation: promoSlide 7s ease-in-out infinite;
}

.promo-rotator:has(p:nth-child(3)) p {
  animation-name: promoSlideThree;
  animation-duration: 10.5s;
}

.promo-rotator a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes promoSlide {
  0%, 42% {
    transform: translateY(0);
  }
  50%, 92% {
    transform: translateY(-36px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes promoSlideThree {
  0%, 27% {
    transform: translateY(0);
  }
  34%, 60% {
    transform: translateY(-36px);
  }
  67%, 93% {
    transform: translateY(-72px);
  }
  100% {
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(247, 243, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.main-nav a:hover,
.feature-card a:hover {
  color: var(--wine);
}

.header-actions,
.slider-controls {
  display: flex;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
}

.icon-button img,
.product-header-actions img,
.related-bag-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  pointer-events: none;
}

.icon-button:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 112px));
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.06));
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 680px;
  padding: 0 32px 96px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}

p {
  line-height: 1.65;
}

.hero-content p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  margin-top: 14px;
  background: white;
  color: var(--ink);
  border-color: white;
}

.feature-grid,
.brand-showcase,
.brand-catalog,
.products,
.story,
.benefits,
.site-footer {
  padding: 84px 32px;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 36px;
}

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  max-width: 1244px;
  margin: 0 auto;
}

.feature-grid .section-heading {
  grid-column: 1 / -1;
  width: 100%;
}

.feature-card {
  display: grid;
  min-height: 430px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.feature-card div {
  padding: 28px;
}

.feature-card a {
  display: inline-block;
  margin-top: 6px;
  color: var(--forest);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-catalog {
  background: var(--paper);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 118px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-sidebar h3 {
  margin: 0 0 18px;
  font-size: 20px;
  text-transform: uppercase;
}

.catalog-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.catalog-sidebar a::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--muted);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.catalog-sidebar a:hover::before,
.catalog-sidebar a:focus-visible::before {
  background: var(--ink);
  border-color: var(--ink);
}

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

.brand-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.brand-tile {
  min-height: 116px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #f5f2ee 100%);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand-tile:hover,
.brand-tile:focus-visible {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.brand-tile span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.brand-tile small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-tile.is-coming {
  background: var(--cream);
}

.brand-sheet {
  scroll-margin-top: 126px;
  margin-top: 0;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.brand-sheet-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.brand-wordmark {
  width: min(100%, 520px);
  max-height: 118px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.28);
  transform-origin: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-sheet h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
}

.catalog-product {
  position: relative;
  padding-bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-product:hover,
.catalog-product:focus-within,
.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.32);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
}

.product-badge {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-product img,
.catalog-placeholder {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: contain;
  padding: 24px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f0ee 68%, #e9e7e4 100%);
}

.catalog-product img[src*="valentino"],
.catalog-product img[src*="jean-paul-gaultier"],
.catalog-product img[src*="scandal"],
.catalog-product img[src*="miss-dior"] {
  object-fit: contain;
}

.catalog-placeholder {
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 104px);
  letter-spacing: 0.08em;
}

.catalog-product h4,
.catalog-product p,
.catalog-product strong {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.catalog-product h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.catalog-product p {
  min-height: 44px;
  margin-top: 0;
  color: var(--muted);
}

.catalog-product strong {
  margin-top: 12px;
  font-size: 18px;
}

.brand-coming {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
}

.brand-coming p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(24px, 4vw, 54px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.products {
  background: var(--cream);
}

.product-track {
  display: grid;
  grid-auto-columns: minmax(330px, 390px);
  grid-auto-flow: column;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.product-card {
  position: relative;
  scroll-snap-align: start;
  padding-bottom: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: contain;
  padding: 24px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f0ee 68%, #e9e7e4 100%);
}

.product-card img[src*="hawas-ice"],
.product-card img[src*="9-pm-elixir"],
.product-card img[src*="miss-dior-edp"],
.product-card img[src*="yara"] {
  object-fit: contain;
}

.product-card h3,
.product-card p,
.product-card strong {
  display: block;
  margin-left: 18px;
  margin-right: 18px;
}

.product-card h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
}

.product-card p {
  min-height: 44px;
  margin-top: 0;
  color: var(--muted);
}

.product-card strong {
  margin-top: 12px;
  font-size: 18px;
}

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

.product-card,
.catalog-product {
  cursor: pointer;
}

.product-card:focus-visible,
.catalog-product:focus-visible {
  outline: 2px solid #1c6ee8;
  outline-offset: 4px;
}

.product-page {
  background: #ffffff;
}

.product-page.is-product-dragging,
.product-page.is-product-dragging * {
  -webkit-user-select: none;
  user-select: none;
}

.product-page .promo-bar {
  position: relative;
  z-index: 8;
  min-height: 74px;
  background: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.product-page .promo-rotator,
.product-page .promo-rotator p {
  height: 74px;
}

.product-page .promo-rotator:has(p:nth-child(3)) p {
  animation-name: productPromoSlideThree;
}

@keyframes productPromoSlideThree {
  0%, 27% {
    transform: translateY(0);
  }
  34%, 60% {
    transform: translateY(-74px);
  }
  67%, 93% {
    transform: translateY(-148px);
  }
  100% {
    transform: translateY(0);
  }
}

.product-page-header {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 7;
  min-height: 112px;
  padding: 0 12px;
  border-bottom: 0;
  background: transparent;
  pointer-events: none;
}

.product-page-brand {
  justify-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.2vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
}

.product-header-actions button {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #42484a;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  pointer-events: auto;
}

.product-header-actions img {
  width: 23px;
  height: 23px;
}

.product-header-actions {
  position: absolute;
  top: 50%;
  right: 12px;
  display: flex;
  gap: 12px;
  pointer-events: auto;
  transform: translateY(-50%);
}

.product-buy-section {
  display: grid;
  grid-template-columns: 31.6vw 37vw 31.4vw;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 74px);
  margin: 0;
  padding: 0;
  background: #ffffff;
  -webkit-user-select: none;
  user-select: none;
}

.product-editorial-image,
.product-showcase-panel,
.product-buy-info {
  min-height: calc(100vh - 74px);
}

.product-editorial-image {
  display: grid;
  place-items: center;
  padding: 112px clamp(42px, 6vw, 148px) 72px;
  background: #ffffff;
  overflow: hidden;
}

.product-editorial-viewport {
  width: min(100%, 330px);
  overflow: hidden;
  user-select: none;
}

.product-editorial-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.product-editorial-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
}

.product-editorial-slide img {
  width: min(100%, 314px);
  max-height: 49vh;
  object-fit: contain;
  pointer-events: none;
}

.product-showcase-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 132px 28px 58px;
  background: #f6f6f7;
}

.product-panel-brand {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 112px;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  width: 100%;
  padding: 0 24px;
  font-size: clamp(28px, 2.9vw, 50px);
  letter-spacing: 0.18em;
  line-height: 1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(25, 23, 22, 0.08);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.product-bestseller {
  position: absolute;
  top: 126px;
  left: 32px;
  padding: 7px 13px;
  color: #8b9496;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
}

.product-main-image {
  position: relative;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  width: 100%;
  overflow: hidden;
}

.product-main-viewport {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.product-main-viewport.is-dragging {
  cursor: grabbing;
}

.product-main-track {
  display: flex;
  width: 100%;
  will-change: transform;
}

.product-main-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
}

.product-main-slide img {
  width: min(108%, 840px);
  max-height: 84vh;
  object-fit: contain;
  pointer-events: none;
}

.product-drag-line {
  position: absolute;
  top: 17%;
  bottom: 13%;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: rgba(52, 57, 59, 0.44);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 180ms ease, left 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-drag-line.is-visible {
  opacity: 1;
}

.product-drag-line.is-settling {
  opacity: 0;
}

.product-panel-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}

.product-panel-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #9fa6a8;
}

.product-panel-dots span.is-active {
  background: #34393b;
}

.product-buy-info {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 136px clamp(36px, 4vw, 84px) 74px;
  background: #ffffff;
  text-align: center;
}

.product-category {
  margin: 0 0 28px;
  color: #7f898c;
  font-size: 19px;
}

.product-buy-info h1 {
  margin: 0 0 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.product-view-description {
  max-width: 480px;
  margin: 0 auto 18px;
  color: #7f898c;
  font-size: 18px;
  line-height: 1.45;
}

.product-intensity {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #7f898c;
  font-size: 18px;
}

.product-intensity > span {
  line-height: 1;
}

.intensity-bars {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  height: 24px;
  padding-bottom: 1px;
}

.intensity-bars span {
  width: 2px;
  background: rgba(52, 57, 59, 0.24);
  border-radius: 999px;
}

.intensity-bars span:nth-child(1) {
  height: 9px;
}

.intensity-bars span:nth-child(2) {
  height: 12px;
}

.intensity-bars span:nth-child(3) {
  height: 16px;
}

.intensity-bars span:nth-child(4) {
  height: 20px;
}

.intensity-bars span:nth-child(5) {
  height: 24px;
}

.intensity-bars span.is-active {
  background: #171717;
}

.product-like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  margin: 0 0 64px;
  padding: 0;
  color: #7f898c;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  line-height: 1;
}

.product-like-button span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.product-like-button span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.product-like-button strong {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-like-button em {
  font-style: normal;
}

.product-like-button.is-liked span {
  transform: translateY(-1px) scale(1.08);
}

.size-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.size-option {
  min-width: 86px;
  min-height: 40px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #b9c0c3;
  border-radius: 7px;
  color: #34393b;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.size-option.is-selected {
  border-color: #34393b;
  color: #34393b;
  box-shadow: inset 0 0 0 1px #34393b;
}

.add-cart-button {
  width: min(100%, 482px);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  background: #1f2426;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(31, 36, 38, 0.16);
}

.add-cart-button strong {
  font-size: inherit;
  font-weight: 700;
  white-space: nowrap;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(25, 23, 22, 0.28);
  backdrop-filter: blur(8px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  width: min(440px, 100vw);
  padding: 34px 28px;
  background: #ffffff;
  box-shadow: -24px 0 60px rgba(25, 23, 22, 0.16);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #34393b;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.cart-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cart-drawer h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.cart-empty {
  margin: 28px 0;
  color: #7f898c;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(25, 23, 22, 0.12);
}

.cart-item img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #f6f6f7;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.15;
}

.cart-item p,
.cart-item small {
  margin: 0;
  color: #7f898c;
  font-size: 13px;
  line-height: 1.35;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: #34393b;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-auth-box {
  margin-top: 32px;
  padding: 20px;
  background: #f6f6f7;
  color: #6f777a;
}

.cart-auth-box p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
}

.cart-auth-box div {
  display: flex;
  gap: 10px;
}

.cart-auth-form {
  display: grid;
  gap: 10px;
}

.cart-auth-form input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #c6c9ca;
  background: #ffffff;
  color: #34393b;
  font: inherit;
  font-size: 14px;
}

.cart-auth-box button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #34393b;
  background: #ffffff;
  color: #34393b;
  cursor: pointer;
  font-weight: 700;
}

.cart-auth-box button:first-child {
  background: #34393b;
  color: #ffffff;
}

.cart-signout {
  width: 100%;
  margin-top: 4px;
  background: #34393b;
  color: #ffffff;
}

.related-products {
  padding: 72px 0 86px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

.related-eyebrow {
  margin: 0 0 14px;
  color: #7f898c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.related-products h2 {
  margin: 0 0 54px;
  color: #34393b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.related-products-grid {
  display: grid;
  grid-auto-columns: minmax(320px, 23.5vw);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 32px;
  width: 100%;
  margin: 0;
  padding: 0 44px 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.related-products-grid[data-count="3"] {
  grid-auto-columns: minmax(320px, 30vw);
}

.related-products-grid[data-count="2"] {
  grid-auto-columns: minmax(320px, 38vw);
}

.related-empty {
  grid-column: 1;
  margin: 0;
  padding: 48px 0;
  color: #7f898c;
  font-size: 16px;
  text-align: left;
}

.related-product-card {
  min-width: 0;
  cursor: pointer;
  outline: 0;
  scroll-snap-align: start;
}

.related-product-card:focus-visible .related-product-image,
.related-product-card:hover .related-product-image {
  box-shadow: inset 0 0 0 1px rgba(52, 57, 59, 0.18);
}

.related-product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 32vw, 520px);
  padding: 38px;
  background: #f6f6f7;
}

.related-product-image img {
  width: min(100%, 360px);
  max-height: 430px;
  object-fit: contain;
}

.related-badge {
  position: absolute;
  top: 28px;
  left: 32px;
  color: #7f898c;
  font-size: 15px;
}

.related-bag-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #34393b;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(52, 57, 59, 0.06);
}

.related-bag-button img {
  width: 22px;
  height: 22px;
}

.related-product-copy {
  padding: 28px 24px 0;
  color: #34393b;
}

.related-product-copy h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.related-product-copy p {
  max-width: 300px;
  min-height: 52px;
  margin: 0 auto 14px;
  color: #7f898c;
  font-size: 18px;
  line-height: 1.25;
}

.related-intensity {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #7f898c;
  font-size: 16px;
}

.related-intensity:empty {
  display: none;
}

.related-intensity-bars {
  display: inline-flex;
  align-items: end;
  gap: 6px;
  height: 16px;
}

.related-intensity-bars i {
  display: block;
  width: 9px;
  height: 9px;
  background: rgba(52, 57, 59, 0.24);
}

.related-intensity-bars i.is-active {
  background: #7f898c;
}

.related-product-copy strong {
  display: block;
  color: #34393b;
  font-size: 18px;
  font-weight: 400;
}

.product-reviews {
  padding: 78px 44px 70px;
  background: #ffffff;
  color: #34393b;
}

.product-reviews h2 {
  margin: 0 auto 58px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.product-reviews-layout {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.reviews-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #d9dcdd;
  border-bottom: 1px solid #d9dcdd;
  font-size: 13px;
}

.reviews-toolbar p {
  margin: 0;
}

.reviews-toolbar label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 26px;
}

.reviews-toolbar label::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 50%;
  color: #34393b;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-52%);
  pointer-events: none;
}

.reviews-sort {
  min-width: 42px;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font: inherit;
}

.review-form {
  padding: 24px 0 4px;
  border-bottom: 1px solid #e5e5e5;
}

.review-auth-message,
.reviews-empty {
  margin: 0;
  color: #7f898c;
  font-size: 14px;
  line-height: 1.45;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 180px minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.review-form-grid[hidden] {
  display: none;
}

.review-form-grid label {
  display: grid;
  gap: 7px;
  color: #7f898c;
  font-size: 12px;
}

.review-form-grid input,
.review-form-grid select,
.review-form-grid textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #c6c9ca;
  background: #ffffff;
  color: #34393b;
  font: inherit;
  font-size: 14px;
}

.review-form-grid textarea {
  min-height: 78px;
  padding-top: 10px;
  resize: vertical;
}

.review-body-field {
  grid-column: 1 / 3;
}

.review-form-grid button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  background: #34393b;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.review-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 54px;
  padding: 34px 0;
  border-bottom: 1px solid #e5e5e5;
}

.review-author {
  display: grid;
  align-content: start;
  gap: 6px;
  color: #161616;
  font-size: 13px;
}

.review-author strong {
  font-weight: 400;
}

.review-author em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.review-stars img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.review-meta small,
.review-verified {
  color: #7f898c;
  font-size: 13px;
}

.review-content h3 {
  margin: 0 0 12px;
  color: #161616;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.review-content p {
  max-width: 680px;
  margin: 0 0 18px;
  color: #34393b;
  font-size: 15px;
  line-height: 1.42;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.review-origin {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid #c6c9ca;
  color: #34393b;
}

.review-origin strong {
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.review-origin em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.product-sticky-order {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 12;
  width: min(440px, calc(100vw - 36px));
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: rgba(31, 36, 38, 0.96);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 260ms ease, transform 260ms ease;
  box-shadow: 0 18px 42px rgba(31, 36, 38, 0.18);
}

.product-sticky-order.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
}

.product-sticky-order strong {
  font-weight: 600;
}

.product-service-footer {
  padding: 0 44px 80px;
  background: #ffffff;
  color: #34393b;
}

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 1780px);
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid #d9dcdd;
  border-bottom: 1px solid #d9dcdd;
  color: #7f898c;
  font-size: 18px;
}

.service-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.service-breadcrumbs strong {
  font-weight: 400;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1780px);
  margin: 0 auto;
  border-bottom: 1px solid #d9dcdd;
}

.service-highlights article {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 34px 24px 0;
}

.service-highlights article + article {
  padding-left: 34px;
  border-left: 1px solid #d9dcdd;
}

.service-highlights h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 700;
}

.service-highlights p {
  margin: 0;
  color: #7f898c;
  font-size: 17px;
  line-height: 1.3;
}

.service-highlights span {
  color: #34393b;
  font-size: 32px;
  font-weight: 200;
}

.product-footer-newsletter {
  width: min(100%, 760px);
  margin: 92px 0 36px;
}

.product-footer-newsletter label {
  display: block;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.product-footer-newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.product-footer-newsletter input {
  min-height: 68px;
  min-width: 0;
  padding: 0 20px;
  border: 1px solid #34393b;
  border-radius: 6px;
  background: #ffffff;
  color: #34393b;
  font: inherit;
}

.product-footer-newsletter button {
  min-height: 68px;
  padding: 0 28px;
  border: 1px solid #34393b;
  border-radius: 6px;
  background: #34393b;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.product-footer-code {
  min-height: 24px;
  margin: 14px 0 0;
  color: #7f898c;
}

.product-contrast-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 92px;
  font-size: 18px;
  font-weight: 700;
}

.product-contrast-row button {
  position: relative;
  width: 56px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #cfd2d3;
}

.product-contrast-row button::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
}

.product-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
}

.product-footer-columns h3 {
  margin: 0 0 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.product-footer-columns a {
  display: block;
  margin-bottom: 24px;
  color: #7f898c;
  font-size: 18px;
  text-decoration: none;
}

.no-results {
  display: none;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 18px 22px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.no-results.is-visible {
  display: block;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.story p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.we {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  padding: 84px 32px;
  background: var(--paper);
}

.we > * {
  max-width: 1180px;
}

.we h2 {
  max-width: 620px;
}

.we p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--cream);
}

.benefits article {
  min-height: 170px;
  padding: 36px;
  background: var(--forest);
}

.benefits p {
  color: rgba(255, 250, 244, 0.72);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--ink);
  color: var(--cream);
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer label {
  color: rgba(255, 250, 244, 0.72);
}

.newsletter {
  justify-self: end;
  width: min(100%, 520px);
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter input {
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 244, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.newsletter .button {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0 18px;
  }

  .menu-toggle {
    grid-column: 1;
    display: inline-grid;
    gap: 5px;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: fixed;
    inset: 112px 0 auto;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .brand {
    justify-self: center;
    font-size: 26px;
  }

  .site-header .brand {
    grid-column: 2;
    font-size: clamp(18px, 5vw, 26px);
    letter-spacing: 0.22em;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .header-actions .icon-button:first-child {
    display: none;
  }

  .hero-content {
    padding: 0 22px 68px;
  }

  .feature-grid,
  .story,
  .benefits,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .products,
  .story,
  .benefits,
  .site-footer {
    padding: 64px 18px;
  }

  .feature-card.large {
    grid-row: auto;
  }

  .section-heading.row {
    align-items: start;
  }

  .newsletter {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .promo-bar {
    font-size: 10px;
  }

  .site-header {
    min-height: 64px;
    gap: 10px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.66));
  }

  .section-heading.row,
  .newsletter div {
    display: grid;
  }
}


/* Canva-inspired hero with sequential perfume drop animation */
.promo-bar a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  min-height: 80px;
  column-gap: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.site-header .brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.45vw, 44px);
  letter-spacing: 0.38em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: clamp(36px, 4vw, 72px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:empty {
  display: none;
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-items: center;
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 42px;
  gap: 0;
  transition: width 380ms cubic-bezier(0.19, 1, 0.22, 1);
}

.site-search input {
  position: absolute;
  right: 0;
  width: 0;
  min-width: 0;
  height: 38px;
  padding: 0 42px 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  outline: 0;
  font: inherit;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: width 420ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 240ms ease, border-color 240ms ease, transform 420ms ease;
}

body.search-active.search-bar-open .site-search {
  width: min(27vw, 370px);
}

body.search-active.search-bar-open .site-search input {
  width: 100%;
  border-bottom-color: var(--ink);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.site-search input::placeholder {
  color: rgba(25, 23, 22, 0.48);
}

.search-submit {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.15fr);
  align-items: center;
  min-height: min(720px, calc(100vh - 96px));
  padding: clamp(34px, 5vw, 72px) clamp(24px, 7vw, 96px) 74px;
  background:
    radial-gradient(circle at 68% 52%, rgba(25, 23, 22, 0.08), transparent 30%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #f1f1f0 100%);
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-copy h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em;
  max-width: 720px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 86px);
  letter-spacing: 0.18em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy .amp {
  font-size: 0.55em;
  letter-spacing: 0;
  transform: translateY(-0.08em);
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 12px;
  color: #3f3d3a;
  font-size: clamp(14px, 1.2vw, 17px);
  letter-spacing: 0.07em;
}

.hero-buttons {
  display: grid;
  gap: 12px;
  width: min(100%, 310px);
  margin-top: 44px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 20px;
  color: white;
  background: #050505;
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-link:hover {
  transform: translateX(5px);
  background: #2c2926;
}

.hero-perfumes {
  position: relative;
  z-index: 2;
  align-self: end;
  height: clamp(340px, 39vw, 540px);
  min-width: 0;
  transform: translate(clamp(18px, 3vw, 56px), clamp(-82px, -4.8vw, -54px));
}

.perfume-drop {
  --drop-delay: 0s;
  position: absolute;
  bottom: 0;
  width: var(--perfume-width);
  height: var(--perfume-height);
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  animation: perfumeDrop 1.2s cubic-bezier(0.19, 0.85, 0.24, 1.08) var(--drop-delay) both;
}

.perfume-drop::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 22px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.24), transparent 68%);
  filter: blur(8px);
  opacity: 0;
  transform: scaleX(0.72);
  animation: perfumeShadow 1.2s ease-out var(--drop-delay) forwards;
}

.perfume-drop img,
.perfume-drop .trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.perfume-drop img {
  z-index: 3;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.16));
}

.trail {
  z-index: 1;
  background-image: var(--perfume-src);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  animation: perfumeTrail 1.2s ease-out var(--drop-delay) forwards;
}

.trail-one {
  --trail-y: -58px;
  --trail-x: 22px;
  --trail-blur: 2px;
}

.trail-two {
  --trail-y: -112px;
  --trail-x: 42px;
  --trail-blur: 3.5px;
}

.trail-three {
  --trail-y: -172px;
  --trail-x: 62px;
  --trail-blur: 5px;
}

.valentino {
  --perfume-src: url("assets/valentino.png");
  --perfume-width: clamp(150px, 16vw, 230px);
  --perfume-height: clamp(270px, 31vw, 430px);
  left: 4%;
}

.jpg {
  --perfume-src: url("assets/jean-paul-gaultier.png");
  --perfume-width: clamp(170px, 18vw, 260px);
  --perfume-height: clamp(330px, 38vw, 520px);
  left: 34%;
  z-index: 4;
}

.scandal {
  --perfume-src: url("assets/scandal.png");
  --perfume-width: clamp(160px, 17vw, 245px);
  --perfume-height: clamp(295px, 34vw, 470px);
  right: 1%;
}

.hero-signature {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 1;
  width: min(100% - 48px, 880px);
  margin: 0;
  color: rgba(25, 23, 22, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.4vw, 48px);
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@keyframes perfumeDrop {
  0% {
    opacity: 0;
    transform: translate3d(0, -460px, 0) scale(0.98);
  }
  66% {
    opacity: 1;
    transform: translate3d(0, 14px, 0) scale(1.015);
  }
  82% {
    transform: translate3d(0, -8px, 0) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes perfumeTrail {
  0% {
    opacity: 0.34;
    filter: blur(var(--trail-blur));
    transform: translate3d(var(--trail-x), var(--trail-y), 0);
  }
  56% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    filter: blur(calc(var(--trail-blur) + 2px));
    transform: translate3d(0, 0, 0);
  }
}

@keyframes perfumeShadow {
  0%, 48% {
    opacity: 0;
    transform: scaleX(0.52);
  }
  76% {
    opacity: 0.34;
    transform: scaleX(1.08);
  }
  100% {
    opacity: 0.24;
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-perfumes {
    height: clamp(300px, 65vw, 470px);
    width: min(100%, 680px);
    justify-self: center;
    transform: none;
  }

  .hero-signature {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1;
    width: 100%;
    margin-top: -8px;
    transform: none;
  }
}

@media (max-width: 700px) {
  .site-header .brand {
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    display: block;
    font-size: clamp(40px, 13vw, 72px);
  }

  .hero-copy .amp {
    display: inline-block;
    margin-right: 0.16em;
  }

  .hero-buttons {
    margin-top: 30px;
  }

  .hero-perfumes {
    height: 380px;
  }

  .valentino {
    left: -4%;
  }

  .jpg {
    left: 28%;
  }

  .scandal {
    right: -7%;
  }

  .hero-signature {
    font-size: 22px;
    letter-spacing: 0.16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .perfume-drop,
  .perfume-drop::after,
  .trail {
    animation-duration: 1ms;
    animation-delay: 0s !important;
  }
}


.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
  padding: 8px 18px 8px 12px;
  color: #f9fff9;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.social-button {
  margin-top: 12px;
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.72);
}

.social-button:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: #e1306c;
}

.whatsapp-button img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 560px) {
  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }
}

body.search-active {
  overflow: hidden;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(25, 23, 22, 0.38);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

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

.subscribe-card {
  position: relative;
  width: min(100%, 520px);
  padding: 42px;
  background: #fffaf4;
  border: 1px solid rgba(25, 23, 22, 0.16);
  box-shadow: 0 28px 80px rgba(25, 23, 22, 0.22);
  text-align: center;
}

.subscribe-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.subscribe-card h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
}

.subscribe-card p:not(.eyebrow):not(.subscribe-code) {
  max-width: 380px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.subscribe-form {
  display: grid;
  gap: 12px;
}

.subscribe-form input {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-align: center;
}

.subscribe-code {
  margin: 18px 0 0;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-overlay {
  position: fixed;
  inset: var(--search-overlay-top, 58px) 0 0;
  z-index: 18;
  display: block;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0) 520px,
    rgba(25, 23, 22, 0.36) 520px,
    rgba(25, 23, 22, 0.36) 100%
  );
  backdrop-filter: blur(15px) saturate(0.74);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

body.search-active .search-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel {
  width: 100%;
  min-height: 520px;
  padding: 38px 56px 48px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(25, 23, 22, 0.06);
  border-bottom: 1px solid rgba(25, 23, 22, 0.12);
  box-shadow: 0 18px 40px rgba(25, 23, 22, 0.08);
  transform: translateY(-18px);
  transition: transform 300ms ease;
}

body.search-active .search-panel {
  transform: translateY(0);
}

.search-panel-title {
  margin: 0 0 26px;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
}

.search-panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1040px) minmax(220px, 1fr);
  gap: 52px;
  align-items: start;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 500px));
  gap: 20px 54px;
  max-height: none;
  overflow: visible;
  padding: 0;
}

.search-result {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.search-result:hover,
.search-result:focus-visible {
  background: transparent;
  outline: 0;
}

.search-result:hover strong,
.search-result:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-result img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: #f2f2f2;
}

.search-result span {
  display: grid;
  gap: 3px;
}

.search-result strong {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.search-result small {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.search-result em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.search-side-link {
  justify-self: end;
  margin-top: 4px;
  color: var(--muted);
  font-size: 16px;
  white-space: nowrap;
}

.search-side-link span {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-empty {
  margin: 0;
  padding: 38px 18px;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-align: center;
}

.search-empty strong {
  color: var(--ink);
  font-weight: 500;
}

.product-card.is-highlighted,
.catalog-product.is-highlighted {
  animation: productPulse 1.4s ease;
}

@keyframes productPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(184, 148, 95, 0);
  }
  35% {
    box-shadow: 0 0 0 4px rgba(184, 148, 95, 0.34);
  }
}

@media (max-width: 620px) {
  .product-page .promo-bar,
  .product-page .promo-rotator,
  .product-page .promo-rotator p {
    min-height: 54px;
    height: 54px;
    font-size: 12px;
    line-height: 1.25;
  }

  .product-page-header {
    position: absolute;
    top: 54px;
    grid-template-columns: 42px 1fr;
    min-height: 76px;
    padding: 0 8px 0 14px;
    background: transparent;
  }

  .product-header-actions {
    top: 41px;
    right: 8px;
    gap: 2px;
  }

  .product-header-actions button {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .product-header-actions img {
    width: 20px;
    height: 20px;
  }

  .product-buy-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .product-editorial-image {
    display: none;
  }

  .product-showcase-panel,
  .product-buy-info {
    min-height: auto;
  }

  .product-showcase-panel {
    padding: 104px 18px 48px;
  }

  .product-panel-brand {
    height: 82px;
    place-items: center start;
    padding: 0 132px 0 16px;
    font-size: clamp(17px, 5.2vw, 24px);
    letter-spacing: 0.06em;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
  }

  .product-bestseller {
    top: 92px;
    left: 18px;
  }

  .product-main-viewport {
    max-width: 520px;
  }

  .product-main-slide img {
    width: min(108%, 500px);
    max-height: 500px;
  }

  .product-buy-info {
    padding: 46px 18px 58px;
  }

  .product-buy-info h1 {
    margin-bottom: 26px;
    font-size: 34px;
  }

  .product-view-description {
    font-size: 16px;
  }

  .product-like-button {
    margin-bottom: 38px;
  }

  .size-option {
    flex: 1 1 86px;
  }

  .add-cart-button {
    width: 100%;
  }

  .cart-drawer {
    width: 100vw;
    padding: 28px 18px;
  }

  .cart-auth-box div,
  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .review-body-field {
    grid-column: auto;
  }

  .cart-item {
    grid-template-columns: 70px 1fr;
  }

  .cart-item button {
    grid-column: 2;
    justify-self: start;
  }

  .related-products {
    padding: 54px 0 64px;
  }

  .related-products h2 {
    margin-bottom: 34px;
    font-size: 36px;
  }

  .related-products-grid {
    grid-auto-columns: minmax(280px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-snap-type: x mandatory;
  }

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

  .related-product-image {
    min-height: 340px;
  }

  .related-product-copy p {
    font-size: 16px;
  }

  .product-reviews {
    padding: 62px 18px 54px;
  }

  .product-reviews h2 {
    margin-bottom: 38px;
    font-size: 25px;
  }

  .review-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews-toolbar {
    min-height: 96px;
    display: grid;
    align-content: center;
    font-size: 15px;
  }

  .review-content p {
    font-size: 15px;
  }

  .review-origin {
    display: grid;
    gap: 6px;
  }

  .product-service-footer {
    padding: 0 18px 56px;
  }

  .service-breadcrumbs {
    padding: 24px 0;
    font-size: 15px;
  }

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

  .service-highlights article,
  .service-highlights article + article {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid #d9dcdd;
  }

  .service-highlights p {
    font-size: 15px;
  }

  .service-highlights h3 {
    font-size: 16px;
  }

  .product-footer-newsletter {
    margin-top: 54px;
  }

  .product-footer-newsletter div {
    grid-template-columns: 1fr;
  }

  .product-contrast-row {
    margin-bottom: 52px;
  }

  .product-footer-columns {
    gap: 28px;
  }

  .product-footer-columns h3 {
    margin-bottom: 18px;
  }

  body.search-active.search-bar-open .site-header .brand {
    opacity: 0;
    pointer-events: none;
  }

  body.search-active.search-bar-open .header-actions {
    position: absolute;
    right: 14px;
    left: 76px;
    justify-content: flex-end;
  }

  body.search-active.search-bar-open .site-search {
    width: calc(100vw - 104px);
  }

  body.search-active.search-bar-open .header-actions > .icon-button {
    display: none;
  }

  .search-overlay {
    inset: 58px 0 0;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.96);
  }

  .search-panel {
    min-height: calc(100vh - 58px);
    padding: 28px 18px 40px;
  }

  .search-panel-layout,
  .search-results {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .search-side-link {
    justify-self: start;
    white-space: normal;
  }

  .search-result {
    grid-template-columns: 92px 1fr;
  }
  
  .search-result img {
    width: 92px;
    height: 92px;
  }

  .search-result strong {
    font-size: 17px;
  }

  .search-result small {
    font-size: 16px;
  }
}

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

  .catalog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .catalog-sidebar h3 {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .brand-index,
  .catalog-product-grid,
  .catalog-sidebar {
    grid-template-columns: 1fr;
  }

  .brand-sheet-heading {
    display: block;
  }

  .catalog-product img,
  .catalog-placeholder {
    aspect-ratio: 1 / 1;
  }
}

.section-heading.centered {
  text-align: center;
}

.section-note {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--muted);
}

.brand-showcase {
  background: var(--paper);
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.brand-logo-card {
  min-height: 176px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px 18px;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.brand-logo-card:hover,
.brand-logo-card:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.brand-monogram {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.brand-logo-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.brand-logo-card small {
  color: currentColor;
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.62;
  text-transform: uppercase;
}

.brand-logo-card.is-coming {
  background: var(--cream);
}

.brand-page {
  background: var(--paper);
}

.collection-hero {
  display: none;
}

.collection-hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 118px);
  letter-spacing: 0.08em;
  line-height: 0.92;
  text-transform: uppercase;
}

.collection-hero p:last-child {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
}

.collection-page-catalog {
  padding-top: 24px;
}

.catalog-layout.single {
  max-width: 1360px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.collection-page-catalog .catalog-sidebar,
.collection-page-catalog .brand-sheet {
  border-top: 0;
}

.collection-page-catalog .catalog-sidebar {
  padding-top: 0;
}

.collection-page-catalog .brand-sheet {
  padding-top: 0;
}

.main-nav.compact {
  gap: 16px;
  min-width: 0;
  width: 100%;
  justify-self: stretch;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav.compact a {
  white-space: nowrap;
}

.back-home {
  position: relative;
  z-index: 2;
  justify-self: end;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-page .site-header {
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  min-height: 80px;
}

.brand-page .site-header .brand {
  grid-column: 2;
  justify-self: center;
  white-space: nowrap;
}

.brand-page .back-home {
  grid-column: 3;
  justify-self: end;
}

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

  .brand-logo-card {
    min-height: 144px;
  }

  .main-nav.compact {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-logo-grid {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    padding: 72px 18px 36px;
  }
}


.brand-logo-img {
  width: min(260px, 92%);
  height: 120px;
  object-fit: contain;
  display: block;
  transition: filter 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.brand-logo-img[src*="logo-tambien-solo-letras-prada"],
.brand-logo-img[src*="logo-tambien-solo-letras-yves-saint-laurent"] {
  width: min(340px, 96%);
  height: 132px;
  transform: scale(1.18);
}

.brand-logo-card.has-logo {
  gap: 16px;
}

.brand-logo-card.has-logo .brand-monogram {
  display: none;
}

.brand-logo-card.has-logo strong {
  display: none;
}

.brand-logo-card.has-logo:hover .brand-logo-img,
.brand-logo-card.has-logo:focus-visible .brand-logo-img {
  filter: invert(1);
  opacity: 0.96;
  transform: translateY(-2px);
}

.brand-logo-card.has-logo:hover .brand-logo-img[src*="logo-tambien-solo-letras-prada"],
.brand-logo-card.has-logo:focus-visible .brand-logo-img[src*="logo-tambien-solo-letras-prada"],
.brand-logo-card.has-logo:hover .brand-logo-img[src*="logo-tambien-solo-letras-yves-saint-laurent"],
.brand-logo-card.has-logo:focus-visible .brand-logo-img[src*="logo-tambien-solo-letras-yves-saint-laurent"] {
  transform: translateY(-2px) scale(1.18);
}

@media (max-width: 560px) {
  .brand-logo-img {
    height: 96px;
  }
}

/* Final mobile pass: keep the header and hero inside the viewport. */
@media (max-width: 860px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .brand-page .site-header {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 64px;
    gap: 10px;
    padding: 0 14px;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: inline-grid;
    gap: 5px;
    justify-self: start;
  }

  .site-header .brand,
  .brand-page .site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(17px, 5.2vw, 24px);
    letter-spacing: clamp(0.08em, 1.7vw, 0.16em);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: fixed;
    inset: 100px 0 auto;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 22px 18px;
    background: rgba(247, 243, 238, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(25, 23, 22, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }

  .header-actions > .icon-button:not(.search-submit) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 38px 18px 54px;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    letter-spacing: clamp(0.08em, 2.4vw, 0.14em);
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero-buttons {
    width: min(100%, 320px);
  }

  .hero-link {
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    letter-spacing: 0.14em;
    text-align: center;
    white-space: normal;
  }

  .hero-perfumes {
    width: min(100%, 560px);
    max-width: 100%;
    justify-self: center;
    transform: none;
  }

  .product-track {
    grid-auto-columns: minmax(260px, 82vw);
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .promo-bar {
    padding: 0 10px;
  }

  .promo-rotator p {
    gap: 0.25em;
    white-space: normal;
    line-height: 1.2;
  }

  .site-header,
  .brand-page .site-header {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    padding: 0 10px;
  }

  .site-search {
    width: 38px;
  }

  body.search-active.search-bar-open .header-actions {
    left: 58px;
    right: 10px;
  }

  body.search-active.search-bar-open .site-search {
    width: calc(100vw - 78px);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.98;
  }

  .hero-perfumes {
    height: clamp(285px, 82vw, 360px);
    margin-top: 8px;
  }

  .valentino {
    --perfume-width: clamp(112px, 32vw, 142px);
    --perfume-height: clamp(210px, 62vw, 275px);
    left: 0;
  }

  .jpg {
    --perfume-width: clamp(126px, 36vw, 162px);
    --perfume-height: clamp(244px, 72vw, 324px);
    left: 30%;
  }

  .scandal {
    --perfume-width: clamp(118px, 34vw, 154px);
    --perfume-height: clamp(224px, 66vw, 296px);
    right: 0;
  }

  .hero-signature {
    max-width: 100%;
    font-size: clamp(18px, 5.6vw, 24px);
    letter-spacing: 0.12em;
  }

  .brand-showcase,
  .products,
  .story,
  .benefits,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading.row {
    gap: 18px;
  }
}

/* Phone layout reset: make the homepage read as a real mobile page. */
@media (max-width: 700px) {
  .site-header,
  .brand-page .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    min-height: 62px;
    padding: 0 12px;
    column-gap: 8px;
  }

  .site-header .brand,
  .brand-page .site-header .brand {
    font-size: clamp(16px, 4.8vw, 21px);
    letter-spacing: 0.1em;
  }

  .main-nav {
    inset: 98px 0 auto;
    padding: 20px 18px 22px;
    text-align: center;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 34px 18px 42px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f4f2 100%);
  }

  .hero-copy {
    display: grid;
    justify-items: start;
  }

  .hero-copy h1 {
    display: grid;
    gap: 0;
    margin-bottom: 18px;
    font-size: clamp(38px, 13vw, 58px);
    letter-spacing: 0.08em;
    line-height: 0.98;
  }

  .hero-copy .amp {
    margin: 0;
    font-size: 0.58em;
    transform: none;
  }

  .hero-copy p {
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.55;
  }

  .hero-buttons {
    width: 100%;
    max-width: 340px;
    margin-top: 22px;
  }

  .hero-perfumes {
    order: 2;
    width: min(100%, 430px);
    height: clamp(245px, 70vw, 330px);
    margin: 0 auto;
  }

  .valentino {
    --perfume-width: clamp(96px, 27vw, 128px);
    --perfume-height: clamp(178px, 51vw, 250px);
    left: 2%;
  }

  .jpg {
    --perfume-width: clamp(110px, 31vw, 148px);
    --perfume-height: clamp(214px, 62vw, 300px);
    left: 31%;
  }

  .scandal {
    --perfume-width: clamp(104px, 29vw, 140px);
    --perfume-height: clamp(194px, 56vw, 272px);
    right: 2%;
  }

  .hero-signature {
    order: 3;
    margin-top: -8px;
    font-size: clamp(18px, 6vw, 24px);
    letter-spacing: 0.1em;
  }

  .brand-showcase,
  .products,
  .we,
  .benefits,
  .site-footer {
    padding: 56px 16px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading.row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .brand-logo-card {
    min-height: 128px;
    padding: 18px 12px;
  }

  .brand-logo-img {
    width: min(180px, 92%);
    height: 76px;
  }

  .brand-logo-img[src*="logo-tambien-solo-letras-prada"],
  .brand-logo-img[src*="logo-tambien-solo-letras-yves-saint-laurent"] {
    width: min(210px, 96%);
    height: 88px;
    transform: none;
  }

  .product-track {
    grid-auto-columns: minmax(248px, 78vw);
    gap: 14px;
    padding-bottom: 8px;
  }

  .product-card h3,
  .product-card p,
  .product-card strong {
    margin-left: 14px;
    margin-right: 14px;
  }

  .we {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .we p:last-child {
    font-size: 16px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 1px;
    padding-left: 0;
    padding-right: 0;
  }

  .benefits article {
    min-height: auto;
    padding: 26px 18px;
  }

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

  .newsletter {
    justify-self: stretch;
  }

  .newsletter div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter .button {
    min-height: 46px;
  }

  .subscribe-modal {
    padding: 14px;
    align-items: end;
  }

  .subscribe-card {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 34px 20px 24px;
    overflow-y: auto;
  }

  .subscribe-card h2 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 0.98;
  }

  .subscribe-form input,
  .subscribe-form .button {
    min-height: 48px;
  }
}

@media (max-width: 390px) {
  .site-header .brand,
  .brand-page .site-header .brand {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero-perfumes {
    height: 238px;
  }

  .brand-logo-grid {
    grid-template-columns: 1fr;
  }

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

  .product-header-actions img {
    width: 18px;
    height: 18px;
  }

  .product-panel-brand {
    padding-right: 116px;
    font-size: 16px;
    letter-spacing: 0.035em;
  }
}
