/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #111111;
  --white:    #ffffff;
  --off:      #f5f4f0;
  --stone:    #b0a898;
  --gold:     #c4a882;
  --zegna-orange: #C97D4A;     /* matches the orange bars in the brand mark */
  --font:     'Space Grotesk', Helvetica, Arial, sans-serif;
  --header-h: 84px;
  --promo-h:  34px;
  --top-h:    118px; /* promo + header combined */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--top-h);
}

/* ─── PROMO BAR ─────────────────────────────────────────────── */
#promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--promo-h);
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#promo-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.promo-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ─── HEADER ────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: var(--promo-h);
  left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

#header.scrolled {
  box-shadow: 0 1px 14px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--header-h);
}

.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.header-logo-img {
  width: auto;
  height: 50px;
  object-fit: contain;
  display: block;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  opacity: 0.78;
  text-decoration: none;
}

.nav-link:hover { opacity: 1; }

/* Only the New Arrivals link gets the Zegna sienna orange */
.nav-link-arrivals {
  color: var(--zegna-orange);
  opacity: 0.95;
}

.nav-link-arrivals:hover { color: var(--zegna-orange); opacity: 1; }

.icon-btn { line-height: 0; }

/* Search bar */
#search-bar {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
}

#search-bar.open { display: block; }

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  color: rgba(0,0,0,0.4);
}

#search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.04em;
}

#search-input::placeholder { color: rgba(0,0,0,0.3); }

#search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.4);
  line-height: 0;
  padding: 0;
  transition: color 0.2s;
}

#search-close:hover { color: var(--black); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100svh - var(--top-h));
  min-height: 540px;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 8s ease;
}

.hero-panel:hover img {
  transform: scale(1.04);
}

.hero-panel + .hero-panel {
  border-left: 1px solid rgba(0,0,0,0.2);
}

.hero-panel-center img {
  object-position: center 18%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.7) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 14px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta {
  width: fit-content;
}

.hero-location:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero-location svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  transition: border-color 0.2s, opacity 0.2s;
}

.hero-cta:hover {
  border-color: var(--white);
  opacity: 0.85;
}

.hero-category {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
  padding: 8px 18px;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  20% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── STATEMENT ─────────────────────────────────────────────── */
.statement {
  position: relative;
  /* Section keeps the painting's own proportions (1920x1293) so the
     entire artwork is visible, never cropped */
  aspect-ratio: 1920 / 1293;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background:
    linear-gradient(rgba(12, 10, 8, 0.5), rgba(12, 10, 8, 0.5)),
    url('images/lanificio.jpg') center / cover no-repeat;
}

.statement-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.statement-text {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 24px rgba(0,0,0,0.45);
}

.statement-caption {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── CATEGORY STRIP ────────────────────────────────────────── */
.cat-strip {
  background: var(--white);
  padding: 60px 40px;
}

.cat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.cat-block {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.cat-block-img-wrap {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-block:hover .cat-block-img-wrap {
  transform: scale(1.04);
}

.cat-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

.cat-block-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}

/* ─── CATALOG ───────────────────────────────────────────────── */
.catalog {
  padding: 80px 40px;
  background: var(--white);
}

.catalog-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 24px;
}

.catalog-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-count {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.06em;
}

/* Collection pills */
.collection-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.collection-pill {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.collection-pill:hover {
  border-color: var(--black);
  color: var(--black);
}

.collection-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* Tier banner — shown when a collection tier is active */
.tier-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 28px;
  margin: 20px 0 28px;
  background: var(--off);
  border-left: 3px solid var(--black);
}

.tier-banner.couture {
  background: var(--black);
  color: var(--white);
  border-left-color: var(--gold);
}

.tier-banner-mark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.tier-banner.couture .tier-banner-mark { color: var(--gold); }

.tier-banner-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.7);
  max-width: 640px;
}

.tier-banner.couture .tier-banner-text { color: rgba(255,255,255,0.75); }

.tier-banner-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
}

.tier-banner-cta:hover { opacity: 0.65; }

.tier-banner.couture .tier-banner-cta {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 720px) {
  .tier-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .tier-banner-cta { justify-self: flex-start; }
}

/* Category filter */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: none;
  border: 1px solid transparent;
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}

.filter-btn.active {
  color: var(--black);
  border-color: var(--black);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

/* Product card */
.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--off);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.1) 45%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

.card-top-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 5px 10px 5px 12px;          /* extra right pad for letter-spacing */
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  z-index: 1;
  pointer-events: none;
}

.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 22px;
  color: var(--white);
}

.card-category {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}

.card-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 4px;
}

.card-color {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-price span {
  font-size: 12px;
  font-weight: 400;
  margin-left: 3px;
  opacity: 0.75;
}

.card-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.product-card:hover .card-arrow {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* No results */
.no-results {
  grid-column: 1/-1;
  padding: 100px 0;
  text-align: center;
  color: var(--stone);
}

.no-results p:first-child {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.no-results p:last-child {
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ─── BOUTIQUE ──────────────────────────────────────────────── */
.boutique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.boutique-img-wrap {
  overflow: hidden;
}

.boutique-img-wrap img {
  object-position: center;
  transition: transform 8s ease;
}

.boutique-img-wrap:hover img {
  transform: scale(1.04);
}

.boutique-info {
  background: var(--black);
  color: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boutique-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}

.boutique-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.boutique-detail {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  margin-bottom: 40px;
}

.boutique-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}

.boutique-meta-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

.boutique-meta-val {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.boutique-meta-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.boutique-meta-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.boutique-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 28px;
  transition: all 0.2s;
  align-self: flex-start;
}

.boutique-cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  line-height: 0;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ─── MODAL ─────────────────────────────────────────────────── */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

#modal-overlay.open {
  display: flex;
}

#modal-panel {
  position: relative;
  background: var(--white);
  width: min(92vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s;
}

#modal-close:hover { background: var(--white); }

#modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 82vh;
  object-fit: contain;
  object-position: center;
  background: #F2F0EC;
  cursor: zoom-in;
}

/* Full-screen image zoom (opened by clicking the modal photo) */
#img-zoom {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 8, 8, 0.93);
  cursor: zoom-out;
  padding: 28px;
}

#img-zoom.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

#img-zoom img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 12px 60px rgba(0,0,0,0.5);
}

#img-zoom .zoom-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.modal-details {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.modal-collection {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.modal-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 6px;
}

.modal-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal-color {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 20px;
}

.modal-price {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.modal-price-currency {
  font-size: 14px;
  font-weight: 400;
  color: var(--stone);
  margin-left: 4px;
}

.modal-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.modal-sizes-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.modal-size-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  min-width: 40px;
  padding: 6px 8px;
  background: none;
  border: 1px solid rgba(0,0,0,0.18);
  color: var(--black);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.modal-size-btn:hover { border-color: var(--black); }
.modal-size-btn.selected {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.modal-composition {
  font-size: 11px;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.modal-ref {
  font-size: 10px;
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.modal-cta {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
  width: 100%;
}

.modal-cta:hover {
  background: var(--white);
  color: var(--black);
}

.modal-cta-sub {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: none;
  color: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.modal-cta-sub:hover {
  border-color: var(--black);
  color: var(--black);
}

/* ─── STANDALONE "NEW ARRIVALS" PAGE ────────────────────────── */
.arrivals-page-hero {
  background: var(--off);
  padding: 96px 40px 56px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.arrivals-page-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.arrivals-page-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.arrivals-page-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

.arrivals-page-catalog {
  padding-top: 48px;
}

/* Active nav state (used on the standalone page so the current tab is marked) */
.nav-link-active {
  opacity: 1 !important;
  position: relative;
}

.nav-link-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--black);
}

@media (max-width: 768px) {
  .arrivals-page-hero { padding: 56px 20px 36px; }
}

/* ─── SHOP OVERLAY (Shop / New Arrivals full-page view) ────── */
.shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.shop-overlay.open {
  display: block;
  animation: shopFadeIn 0.32s cubic-bezier(0.32, 0.72, 0.36, 1);
}

@keyframes shopFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.shop-overlay-head {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 10;
}

.shop-overlay-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.shop-overlay-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-overlay-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 6px;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.shop-overlay-close:hover {
  opacity: 0.6;
  transform: rotate(90deg);
}

/* Inside overlay, the catalog drops its outer padding so the head + filter
   sit closer together */
.shop-overlay #catalog.catalog {
  padding-top: 32px;
}

@media (max-width: 768px) {
  .shop-overlay-head-inner { padding: 16px 20px; }
}

/* ─── CART BADGE ────────────────────────────────────────────── */
.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* ─── NEW ARRIVALS ──────────────────────────────────────────── */
.arrivals {
  padding: 100px 40px 60px;
  background: var(--white);
}

.arrivals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 24px;
}

.arrivals-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.arrivals-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.arrivals-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: gap 0.2s, opacity 0.2s;
}

.arrivals-link:hover {
  gap: 12px;
  opacity: 0.7;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.arrival-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--off);
}

.arrival-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.arrival-card:hover .card-img {
  transform: scale(1.06);
}

.arrival-new-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 9px;
  z-index: 2;
}

.arrival-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.arrival-card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  color: var(--white);
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding: 120px 40px;
  background: var(--off);
  color: var(--black);
}

.about-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-est {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(0,0,0,0.4);
}

.about-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 80px;
  max-width: 1100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.about-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--black);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-text {
  max-width: 460px;
}

.about-lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.about-text p:not(.about-lead) {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding: 48px 0;
  margin-bottom: 100px;
}

.about-stat {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding: 0 16px;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-num span {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 2px;
}

.about-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.about-value {
  border-top: 2px solid var(--black);
  padding-top: 28px;
}

.about-value-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}

.about-value-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-value p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(0,0,0,0.6);
}

/* ─── SIDE OVERLAY (Cart + Profile) ─────────────────────────── */
.side-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  justify-content: flex-end;
}

.side-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.side-panel {
  background: var(--white);
  width: min(96vw, 460px);
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.34s cubic-bezier(0.32, 0.72, 0.36, 1);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.side-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.side-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

.side-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.side-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  line-height: 0;
  padding: 4px;
  transition: opacity 0.2s;
}

.side-close:hover { opacity: 0.55; }

.side-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px;
}

.side-foot {
  padding: 24px 32px 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--off);
}

.side-cta {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.side-cta:hover {
  background: var(--white);
  color: var(--black);
}

.side-cta-sub {
  display: block;
  width: 100%;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: none;
  color: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.18);
  cursor: pointer;
  transition: all 0.2s;
}

.side-cta-sub:hover {
  border-color: var(--black);
  color: var(--black);
}

.side-note {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--stone);
  text-align: center;
}

/* Cart items */
.cart-empty {
  text-align: center;
  padding: 64px 16px;
  color: var(--stone);
}

.cart-empty-icon {
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0.4;
}

.cart-empty-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.cart-empty-msg {
  font-size: 12px;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto 24px;
}

.cart-empty-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 3px;
  cursor: pointer;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}

.cart-item:first-child { padding-top: 0; }

.cart-item-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: center top;
  background: var(--off);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}

.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 11px;
  color: var(--stone);
  margin-bottom: 8px;
  line-height: 1.5;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
}

.cart-item-price span {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 2px;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(0,0,0,0.4);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--black); }

.cart-totals {
  margin-bottom: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.04em;
}

.cart-grand {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
  letter-spacing: 0.02em;
}

/* Modal "Add to Cart" button */
.modal-cta-cart {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
  width: 100%;
}

.modal-cta-cart:hover {
  background: var(--black);
  color: var(--white);
}

.modal-cta-cart.added {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── AUTH / SIGN-IN FLOW ──────────────────────────────────── */
.auth-subtitle {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0,0,0,0.6);
  margin-bottom: 22px;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.18);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.05s;
  margin-bottom: 10px;
  border-radius: 0;
  line-height: 1;
}

.oauth-btn:hover {
  background: #f7f7f5;
  border-color: rgba(0,0,0,0.4);
}

.oauth-btn:active {
  transform: scale(0.99);
}

.oauth-btn svg {
  flex-shrink: 0;
}

.oauth-apple {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.oauth-apple:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 18px;
  color: rgba(0,0,0,0.4);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

.auth-switch a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  margin-left: 4px;
}

.auth-switch a:hover { opacity: 0.6; }

.auth-fine {
  margin-top: 24px;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(0,0,0,0.4);
  text-align: center;
  letter-spacing: 0.02em;
}

.auth-fine a {
  color: rgba(0,0,0,0.55);
  text-decoration: underline;
}

.auth-error {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecec;
  border-left: 3px solid #c0392b;
  color: #962d20;
  font-size: 12px;
  line-height: 1.4;
}

/* Signed-in profile card (avatar + name + email) */
.profile-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: var(--off);
  margin-bottom: 24px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.profile-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.profile-email {
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  line-height: 1.3;
}

.profile-provider {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zegna-orange);
  margin-top: 4px;
}

/* Profile form */
.profile-form {
  display: flex;
  flex-direction: column;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.field-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

.field input,
.field select {
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%23111' stroke-width='1.2' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.field input:focus,
.field select:focus {
  border-color: var(--black);
}

.field input::placeholder {
  color: rgba(0,0,0,0.3);
}

.field-row {
  display: flex;
  gap: 10px;
}

.field-half {
  flex: 1;
}

.field-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 14px 0 18px;
}

.field-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.pref-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pref-chip {
  cursor: pointer;
}

.pref-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pref-chip span {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(0,0,0,0.18);
  color: rgba(0,0,0,0.55);
  transition: all 0.15s;
}

.pref-chip input:checked + span {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0,0,0,0.7);
}

.checkbox-row input {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: var(--black);
  flex-shrink: 0;
}

.profile-saved-msg {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .boutique {
    grid-template-columns: 1fr;
  }
  .boutique-img-wrap {
    height: 420px;
  }
  .boutique-info {
    padding: 56px 40px;
  }

  #modal-inner {
    grid-template-columns: 1fr;
  }
  .modal-img { min-height: 300px; height: 55vh; }

  .arrivals-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { max-width: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .about-stat:nth-child(2) { border-right: none; }
  .about-values { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --top-h: 98px; }

  .header-inner { padding: 0 20px; }
  .header-left { gap: 16px; }
  .header-left .nav-link:nth-child(2),
  .header-left .nav-link:nth-child(4) { display: none; }
  .header-right { gap: 16px; }
  .header-logo-img { height: 36px; }

  .hero-panels { grid-template-columns: 1fr; }
  .hero-panel:not(.hero-panel-center) { display: none; }
  .hero-location { font-size: 11px; }

  .arrivals { padding: 64px 20px 40px; }
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }

  .about { padding: 72px 24px; }
  .about-stats { padding: 32px 0; margin-bottom: 64px; }
  .about-stat { padding: 0 8px; }

  .hero-content { bottom: 80px; left: 24px; }
  .hero-scroll-hint { right: 20px; bottom: 24px; }

  .statement { padding: 56px 24px; }
  .cat-strip { padding: 40px 0; }
  .cat-strip-grid { grid-template-columns: repeat(2, 1fr); }

  .catalog { padding: 56px 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }

  .boutique-info { padding: 48px 24px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .search-bar-inner { padding: 12px 20px; }
}

@media (max-width: 480px) {
  .cat-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .modal-details { padding: 32px 24px; }
}

/* ── Legal / Privacy page ─────────────────────────────────────── */
.legal-page {
  background: var(--cream, #F6F3EE);
  color: #1a1a1a;
  font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
}
.legal-header {
  padding: 28px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.legal-logo { height: 44px; width: auto; display: block; }
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  line-height: 1.75;
  font-size: 15px;
}
.legal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9a8f80;
  margin-bottom: 10px;
}
.legal h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 6px;
}
.legal-updated { font-size: 13px; color: #8a8378; margin-bottom: 40px; }
.legal h2 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 36px 0 10px;
  color: #3d3a35;
}
.legal p { margin-bottom: 14px; }
.legal a { color: #B0653A; text-decoration: underline; text-underline-offset: 3px; }
.legal code {
  background: rgba(0,0,0,0.06);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
}
.legal-back { margin-top: 48px; }
.legal-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8378;
}

/* Placeholder blanks awaiting real company details */
.fill-in {
  background: #F5E5B8;
  border-bottom: 2px dotted #B0653A;
  padding: 0 4px;
  font-weight: 500;
  white-space: nowrap;
}
