/* ============================================================
   LENI — Global Stylesheet
   Marni-inspired editorial fashion aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-alt:      #F5F2EF;
  --accent:      #EF233C;
  --text:        #0A0A0A;
  --text-mid:    #444444;
  --text-light:  #999999;
  --border:      #E0E0E0;
  --border-light:#EEEEEE;
  --transition:  all 0.25s ease;
  --max-w:       1360px;
  --announce-h:  40px;
  --nav-h:       80px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Offset anchor/scroll-to-top by the fixed header height */
  scroll-padding-top: calc(var(--announce-h) + var(--nav-h));
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; }
h4 { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
p  { color: var(--text-mid); font-weight: 300; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section    { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
  display: block;
}

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--text);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 1001;
  transition: var(--transition);
}
.announcement-bar.hidden { transform: translateY(-100%); }
.announcement-bar__close {
  position: absolute;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}
.announcement-bar__close:hover { color: #fff; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: top 0.22s ease;
}
.nav.bar-hidden { top: 0; }
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}
.nav__logo-svg {
  height: 48px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 52px;
  justify-self: center;
}
.nav__links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}
.nav__cta {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--text);
  transition: var(--transition);
}
.nav__cta:hover { color: var(--accent); border-color: var(--accent); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: var(--transition);
}
/* Toggle → X when menu open */
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.bar-hidden .nav { top: 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1px solid var(--text);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-family: 'Jost', sans-serif;
}
.btn:hover { background: var(--text); color: #fff; }
.btn--primary { background: var(--text); color: #fff; }
.btn--primary:hover { background: transparent; color: var(--text); }
.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent:hover { background: transparent; color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #D9D4CC;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.06) 55%, transparent 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__tag {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 18px;
  font-weight: 300;
}
.hero__title {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 200;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 680px;
}
.hero__title em { font-style: italic; font-weight: 200; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn { border-color: rgba(255,255,255,0.65); color: #fff; }
.hero__actions .btn:hover { background: #fff; color: var(--text); border-color: #fff; }
.hero__actions .btn--primary { background: #fff; color: var(--text); border-color: #fff; }
.hero__actions .btn--primary:hover { background: transparent; color: #fff; }

/* ── Editorial Intro ─────────────────────────────────────────── */
.editorial-intro {
  padding: 40px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.editorial-intro p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.editorial-intro__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.editorial-intro__links a {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.editorial-intro__links a:hover { color: var(--text-mid); }

/* ── Product Grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  cursor: pointer;
  display: block;
  position: relative;
}
.product-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  position: absolute;
  inset: 0;
}
.product-card__placeholder svg { width: 36px; height: 36px; stroke: #ccc; }
.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  padding: 15px 20px;
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
  color: var(--text);
  width: 100%;
  font-family: 'Jost', sans-serif;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add.is-in-cart {
  transform: translateY(0);
  background: var(--text);
  color: #fff;
}
.product-card__quick-add.is-sold {
  transform: translateY(0);
  background: rgba(200,200,200,0.95);
  color: #999;
  cursor: default;
}
.product-card__badge--sold {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
}
.product-card__info { padding: 14px 14px 12px; }
.product-card__name {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card__price {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
}
.product-card__badge {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--text);
  color: #fff;
}
.product-card__badge--preorder {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

/* ── Editorial Split ─────────────────────────────────────────── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.editorial-split__img {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  min-height: 580px;
}
.editorial-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.editorial-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
  background: var(--bg-alt);
}
.editorial-split__text h2 { font-weight: 200; margin-bottom: 28px; }
.editorial-split__text p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 18px; max-width: 400px; }
.editorial-split__text .btn { margin-top: 16px; }

/* ── Full-Width Banner ────────────────────────────────────────── */
.banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--text);
}
.banner__bg { position: absolute; inset: 0; }
.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  display: block;
}
.banner__content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.banner__content .section-label { color: rgba(255,255,255,0.45); }
.banner__content h2 { color: #fff; font-weight: 200; margin-bottom: 20px; }
.banner__content p { color: rgba(255,255,255,0.55); max-width: 460px; margin: 0 auto 36px; font-size: 0.95rem; }
.banner__content .btn { border-color: rgba(255,255,255,0.5); color: #fff; }
.banner__content .btn:hover { background: #fff; color: var(--text); border-color: #fff; }

/* ── Features Strip ──────────────────────────────────────────── */
.features {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}
.features__inner {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.feature-item svg { width: 15px; height: 15px; stroke: var(--text); }

/* ── Editorial 3-Column Grid (Marni-style) ───────────────────── */
.ed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px 5px 0 5px; /* no bottom — ed-duo's top padding provides the gap between sections */
  height: 82vh;
  min-height: 480px;
  background: #fff; /* shows as gap colour */
}
.ed-grid__item {
  position: relative;
  overflow: hidden;
}
.ed-grid__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.ed-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.7s ease;
}
.ed-grid__item:hover img { transform: scale(1.04); }
.ed-grid__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.ed-grid__label {
  position: absolute;
  bottom: 120px;
  left: 24px;
  z-index: 2;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  pointer-events: none;
  line-height: 1;
}

/* ── Editorial 2-Column Duo (Marni-style) ────────────────────── */
.ed-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  height: 90vh;
  min-height: 500px;
  background: #fff;
}
.ed-duo__item {
  position: relative;
  overflow: hidden;
}
.ed-duo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.ed-duo__item:hover img { transform: scale(1.04); }
.ed-duo__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.ed-duo__content {
  position: absolute;
  bottom: 120px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.ed-duo__tag {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  font-weight: 300;
}
.ed-duo__title {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.ed-duo__link {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.6);
  transition: text-decoration-color 0.2s;
}
.ed-duo__link:hover { text-decoration-color: #fff; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand .nav__logo-svg {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}
.footer__brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: 220px;
  line-height: 1.8;
  font-weight: 400;
}
.footer__col h5 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
  font-weight: 600;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ── Cart ────────────────────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 950;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 28px;
  height: 64px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px; /* large tap target on mobile */
  padding: 0;
  flex-shrink: 0;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  padding: 60px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-item__img {
  width: 72px;
  height: 88px;
  overflow: hidden;
  background: var(--bg-alt);
}
.cart-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item__name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.cart-item__price {
  font-size: 0.8rem;
  color: var(--text-mid);
}
.cart-item__one-off {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.cart-item__remove {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
}
.cart-item__remove:hover { color: var(--text); }

.cart-drawer__footer {
  padding: 20px 28px 32px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.cart-shipping-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Cart icon in nav */
.nav__cart {
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--text);
}
.cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--text);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer__header { height: 72px; } /* taller header on mobile = easier to find close */
}

/* ── Feature Carousel (Marni centred swiper style) ──────────── */
.feature-carousel {
  background: #111;
  padding: 48px 0 64px;
}
.feature-carousel__header {
  padding: 0 0 20px;
  /* Align heading with the left edge of the centred active slide */
  text-align: center;
}
.feature-carousel__heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.feature-carousel__swiper {
  width: 100%;
  overflow: hidden;
}
.feature-carousel__slide {
  position: relative;
  overflow: hidden;
}
.feature-carousel__slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.feature-carousel__slide img {
  width: 100%;
  height: 62vh;
  min-height: 380px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.7s ease;
}
.feature-carousel__slide:hover img { transform: scale(1.03); }
.feature-carousel__slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.feature-carousel__text {
  position: absolute;
  bottom: 45px;
  left: 24px;
  z-index: 2;
  pointer-events: none;
}
.feature-carousel__title {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
}
/* Override Swiper default arrow colours */
.feature-carousel__swiper .swiper-button-prev,
.feature-carousel__swiper .swiper-button-next {
  color: #fff;
  background: rgba(255,255,255,0.15);
  width: 44px;
  height: 44px;
  border-radius: 0;
}
.feature-carousel__swiper .swiper-button-prev::after,
.feature-carousel__swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}
.feature-carousel__swiper .swiper-button-prev:hover,
.feature-carousel__swiper .swiper-button-next:hover {
  background: rgba(255,255,255,0.3);
}

/* Carousel mobile */
@media (max-width: 768px) {
  .feature-carousel { padding: 36px 0 48px; }
  .feature-carousel__slide img { height: 70vw; min-height: 260px; }
  .feature-carousel__title { font-size: 1.4rem; }
  .feature-carousel__text { bottom: 32px; left: 16px; }
}

/* ── Product Detail Page ─────────────────────────────────────── */
.page-top { padding-top: calc(var(--announce-h) + var(--nav-h)); }
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}
.pdp__gallery {
  position: sticky;
  top: calc(var(--announce-h) + var(--nav-h));
  height: calc(100vh - var(--announce-h) - var(--nav-h));
}
.pdp__gallery-main {
  height: calc(100% - 112px);
  background: var(--bg-alt);
  overflow: hidden;
}
.pdp__gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.pdp__gallery-thumbs {
  display: flex;
  gap: 4px;
  padding: 4px 0;
  height: 108px;
}
.pdp__gallery-thumb {
  width: 80px;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pdp__gallery-thumb.active { border-color: var(--text); }
.pdp__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.pdp__info {
  padding: 64px 80px;
  overflow-y: auto;
  max-height: calc(100vh - var(--announce-h) - var(--nav-h));
}
.pdp__brand {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.pdp__name { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 200; margin-bottom: 16px; }
.pdp__price { font-size: 1.1rem; font-weight: 300; margin-bottom: 36px; letter-spacing: 0.04em; }
.pdp__divider { height: 1px; background: var(--border-light); margin: 28px 0; }
.pdp__label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.pdp__select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 0.88rem;
  background: #fff;
  cursor: pointer;
  appearance: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
}
.pdp__one-off {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.pdp__buy {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--text);
  color: #fff;
  border: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
  margin-bottom: 12px;
  text-align: center;
  text-decoration: none;
}
.pdp__buy:hover { background: var(--accent); color: #fff; }
.pdp__accordion { border-top: 1px solid var(--border-light); margin-top: 36px; }
.pdp__accordion-item { border-bottom: 1px solid var(--border-light); }
.pdp__accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  font-family: 'Jost', sans-serif;
}
.pdp__accordion-icon { font-size: 1.1rem; font-weight: 200; transition: transform 0.3s; line-height: 1; }
.pdp__accordion-item.open .pdp__accordion-icon { transform: rotate(45deg); }
.pdp__accordion-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.pdp__accordion-body p, .pdp__accordion-body li {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.85; font-weight: 300;
}
.pdp__accordion-body ul { padding-left: 16px; list-style: disc; margin: 8px 0; }
.pdp__accordion-body.open { max-height: 400px; }
.pdp__accordion-content { padding-bottom: 20px; }

/* ── Shop Page ───────────────────────────────────────────────── */
.shop-header {
  padding: calc(var(--announce-h) + var(--nav-h) + 64px) 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.shop-header h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); font-weight: 200; }
.shop-filters {
  padding: calc(var(--announce-h) + var(--nav-h) + 24px) 0 24px;
  border-bottom: 1px solid var(--border-light);
}
.shop-filters__inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.shop-filters__inner button {
  background: none;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-light);
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.shop-filters__inner button.active,
.shop-filters__inner button:hover { color: var(--text); border-bottom-color: var(--text); }
.shop-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

/* ── Form Pages ──────────────────────────────────────────────── */
.form-page { padding-top: calc(var(--announce-h) + var(--nav-h)); }
.form-hero {
  background: var(--bg-alt);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-hero__bg { position: absolute; inset: 0; }
.form-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; display: block; }
.form-hero__content { position: relative; z-index: 2; }
.form-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 200; margin-bottom: 14px; }
.form-hero p { font-size: 1rem; max-width: 500px; color: var(--text-mid); }
.form-section { padding: 80px 48px; max-width: 720px; margin: 0 auto; }
.form-section h2 { font-size: 1.4rem; font-weight: 300; margin-bottom: 8px; }
.form-section .form-intro { font-size: 0.88rem; color: var(--text-light); margin-bottom: 40px; font-weight: 300; }
.field-group { margin-bottom: 24px; }
.field-group label {
  display: block;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--text); }
.field-group textarea { resize: vertical; min-height: 100px; }
.fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.78rem; color: var(--text-light); margin-top: 8px; font-weight: 300; }
.btn--full { width: 100%; text-align: center; padding: 16px; }

/* ── About Page ──────────────────────────────────────────────── */
.about-hero {
  height: 70vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--announce-h) + var(--nav-h));
}
.about-hero__bg { position: absolute; inset: 0; background: var(--bg-alt); }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48), transparent 60%);
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.about-hero__content h1 { color: #fff; font-weight: 200; }

/* ── Terms / Text Page ───────────────────────────────────────── */
.text-page {
  padding-top: calc(var(--announce-h) + var(--nav-h) + 80px);
  padding-bottom: 120px;
}
.text-page h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 200; margin-bottom: 64px; }
.text-page h2 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 48px 0 16px;
}
.text-page p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.text-page ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.text-page ul li { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 6px; font-weight: 300; }

/* ── Toast ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: max(32px, calc(env(safe-area-inset-bottom) + 16px));
  left: 50%;
  /* extra 120px guarantees it clears the iOS Safari toolbar */
  transform: translateX(-50%) translateY(calc(100% + 120px));
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.35s ease;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 16px; height: 16px; stroke: #fff; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split__img { min-height: 480px; position: relative; }
  .editorial-split__img img { position: relative; height: 480px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
/* ── Hero — centred modifier (Marni style) ───────────────────── */
.hero__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 72px;
}
.hero__content--center .hero__title { max-width: 820px; }
.hero__shop-link {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.5);
  transition: var(--transition);
  margin-top: 4px;
}
.hero__shop-link:hover { color: #fff; text-decoration-color: #fff; }

/* ── Home Products Section ───────────────────────────────────── */
.home-products { padding: 96px 0; }
.home-products__header {
  padding: 0 48px;
  margin-bottom: 40px;
}
.home-products .products-grid {
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
}
.home-products__footer {
  padding: 52px 48px 0;
  text-align: center;
}
.home-view-all {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 3px;
  transition: var(--transition);
}
.home-view-all:hover { color: var(--text-light); border-color: var(--text-light); }

@media (max-width: 768px) {
  :root { --nav-h: 64px; --announce-h: 56px; }
  .container { padding: 0 20px; }

  /* Logo on left, toggle on far right — no centering */
  .nav__inner {
    padding: 0 20px;
    grid-template-columns: auto 1fr auto;
  }

  /* Hide desktop nav links and pre-order CTA on mobile — menu handled by .mobile-menu */
  .nav__links { display: none !important; }
  .nav__cta    { display: none; }

  /* Mobile logo — 10% larger */
  .nav__logo-svg { height: 40px; }
  .nav__toggle   { display: flex; }
  .hero__content { padding: 0 20px 56px; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .shop-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; height: auto; }
  .pdp__gallery-main { height: 125vw; }
  .pdp__info { padding: 40px 20px; max-height: none; }
  .editorial-split__text { padding: 48px 32px; }

  /* Editorial grid — stack vertically on mobile */
  .ed-grid { grid-template-columns: 1fr; height: auto; gap: 5px; padding: 5px 5px 0 5px; }
  .ed-grid__item { height: 80vw; min-height: 280px; }
  .ed-grid__label { font-size: 1.5rem; bottom: 80px; }

  /* Editorial duo — stack vertically on mobile */
  .ed-duo { grid-template-columns: 1fr; height: auto; gap: 5px; padding: 5px; }
  .ed-duo__item { height: 90vw; min-height: 320px; }
  .ed-duo__content { bottom: 80px; left: 24px; right: 24px; }
  .ed-duo__title { font-size: 1.5rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand .nav__logo-svg { height: 48px; }
  .features__inner { gap: 28px; }
  .section { padding: 64px 0; }
  .editorial-intro { padding: 36px 20px; max-width: 100%; }
  .form-section { padding: 60px 20px; }
  .fields-row { grid-template-columns: 1fr; }
  .editorial-intro__links { gap: 28px; }
  .about-hero__content { padding: 0 20px 56px; }
  .banner__content { padding: 60px 20px; }
  .form-hero { padding: 60px 20px; }

  /* Announcement bar — two lines, centred on mobile */
  .announcement-bar {
    height: auto;
    padding: 10px 40px 10px 16px;
    text-align: center;
    font-size: 0.58rem;
    line-height: 1.6;
  }
  .announcement-bar span {
    text-align: center;
    display: block;
    white-space: normal;
  }

  /* Home products — 2 columns on mobile */
  .home-products__header { padding: 0 20px; }
  .home-products__footer { padding: 40px 20px 0; }
  .home-products .products-grid { grid-template-columns: repeat(2, 1fr); }
  .home-products { padding: 64px 0; }

  /* Hero centred modifier — smaller bottom padding on mobile */
  .hero__content--center { padding-bottom: 52px; }
}

/* ── Mobile Menu Overlay ─────────────────────────────────────────
   Lives outside <nav> so it is never clipped by a CSS containing
   block. Slides in from the right exactly like Marni's menu.
   ──────────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  display: block;
  animation: menuSlideIn 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.mobile-menu.closing {
  display: block;
  animation: menuSlideOut 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes menuSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes menuSlideOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* X close button — top right, identical weight to nav toggle */
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.mobile-menu__close span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  position: absolute;
}
.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }

/* Navigation links */
.mobile-menu__nav { padding: 80px 32px 60px; }
.mobile-menu__nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu__nav li { border-bottom: 1px solid var(--border-light); }
.mobile-menu__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.18s;
}
.mobile-menu__nav a::after {
  content: '›';
  font-size: 1.6rem;
  font-weight: 200;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.18s, color 0.18s;
  line-height: 1;
}
.mobile-menu__nav a:active { color: var(--text-mid); }

/* Only show on mobile — hide on desktop */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
