/* ============================================
   LUXE WAVE — Premium Bikini Shop
   Design: Luxury/Refined · Noir Editorial
   Fonts: Cormorant Garamond + Outfit
   Palette: Deep sand, gold, ivory, noir
============================================ */

:root {
  --noir: #0F0F0F;
  --dark: #1A1A1A;
  --mid: #2A2A2A;
  --gold: #C9A87C;
  --gold-light: #E6C07B;
  --ivory: #F4ECD8;
  --cream: #FAF7F2;
  --sand: #E8E0D0;
  --rose: #7D3C50;
  --text: #2C2C2C;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 600;
}

em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--noir);
  color: var(--ivory);
  border: 1.5px solid var(--noir);
}
.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,124,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--noir);
  border: 1.5px solid var(--noir);
}
.btn--outline:hover {
  background: var(--noir);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--ivory);
  background: rgba(255,255,255,0.1);
}

.btn--white {
  background: var(--white);
  color: var(--noir);
  border: 1.5px solid var(--white);
  font-size: 0.72rem;
}
.btn--white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Age Gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.age-gate.hidden { display: none; }

.age-gate__box {
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.age-gate__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--noir);
  margin-bottom: 1.5rem;
}

.age-gate__title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--noir);
}

.age-gate__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--noir); }

.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold); }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a:hover { color: var(--gold); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__icon {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav__icon:hover { color: var(--gold); }
.nav.scrolled .nav__icon { color: var(--text); }
.nav.scrolled .nav__icon:hover { color: var(--gold); }

.nav__cart {
  position: relative;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.nav__cart:hover { color: var(--gold); }
.nav.scrolled .nav__cart { color: var(--text); }

.nav__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--noir);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--noir); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--noir);
  border-bottom: 1px solid var(--sand);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.72) 0%,
    rgba(10,10,10,0.35) 60%,
    rgba(10,10,10,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 600;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--noir);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Collections ── */
.collections {
  padding: 7rem 0;
  background: var(--cream);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-card {
  cursor: pointer;
}

.collection-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.collection-card__img-wrap img {
  transition: transform 0.7s ease;
}
.collection-card:hover .collection-card__img-wrap img {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.collection-card:hover .collection-card__overlay { opacity: 1; }

.collection-card__info {
  padding: 1.2rem 0 0;
}
.collection-card__info h3 {
  font-size: 1.4rem;
  color: var(--noir);
  margin-bottom: 0.2rem;
}
.collection-card__info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Video Section ── */
.video-section {
  background: var(--noir);
  padding: 7rem 0;
}

.video-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.video-section__text .section-eyebrow { color: var(--gold); }
.video-section__text .section-title { color: var(--ivory); }
.video-section__text p {
  color: rgba(244,236,216,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.video-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}
.video-player__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-player:hover .video-player__thumb { transform: scale(1.04); }

.video-player__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.video-player:hover .video-player__play { background: rgba(0,0,0,0.5); }

.video-player__play svg {
  width: 64px;
  height: 64px;
  color: var(--white);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform var(--transition);
}
.video-player:hover .video-player__play svg { transform: scale(1.1); }

.video-player__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.video-modal.open { display: flex; }

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.video-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.video-modal__close:hover { opacity: 1; }

.video-modal__frame {
  aspect-ratio: 16/9;
  background: var(--noir);
  border-radius: 4px;
  overflow: hidden;
}
.video-modal__frame iframe { width: 100%; height: 100%; }

.video-modal__note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ── Products ── */
.products {
  padding: 7rem 0;
  background: var(--cream);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

.filter-tab {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  color: var(--text-muted);
  transition: var(--transition);
  background: transparent;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--noir);
  border-color: var(--noir);
  color: var(--ivory);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  cursor: pointer;
}
.product-card.hidden { display: none; }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.product-card__img-wrap img {
  transition: transform 0.7s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 2;
}

.badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.badge--new { background: var(--noir); color: var(--ivory); }
.badge--hot { background: var(--rose); color: var(--white); }
.badge--sale { background: var(--gold); color: var(--noir); }

.product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  transform: translateY(100%);
  transition: transform var(--transition);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.product-card:hover .product-card__actions { transform: translateY(0); }

.product-card__wish {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.product-card__wish:hover { background: var(--rose); color: var(--white); }

.product-card__quick {
  flex: 1;
  padding: 0.6rem 1rem;
  background: var(--white);
  color: var(--noir);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.product-card__quick:hover { background: var(--gold); color: var(--noir); }

.product-card__info {
  padding: 1rem 0 0;
}

.product-card__colors {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover { transform: scale(1.3); }

.product-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 0.2rem;
}

.product-card__collection {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--noir);
}
.price--old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.products__load-more {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── Lookbook ── */
.lookbook {
  padding: 7rem 0;
  background: var(--ivory);
}

.lookbook__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lookbook__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lookbook__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
}
.lookbook__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.lookbook__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.lookbook__item img {
  transition: transform 0.7s ease;
}
.lookbook__item:hover img { transform: scale(1.06); }

.lookbook__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.35);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.lookbook__item:hover .lookbook__item-overlay { opacity: 1; }
.lookbook__item-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  font-weight: 300;
}

/* ── Features ── */
.features {
  padding: 5rem 0;
  background: var(--sand);
}

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

.feature {
  text-align: center;
  padding: 2rem 1rem;
}
.feature__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--noir);
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About ── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about__img::before {
  content: '';
  position: absolute;
  inset: -1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.about__text .section-title { margin-bottom: 1.5rem; }
.about__text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

/* ── Testimonials ── */
.testimonials {
  padding: 7rem 0;
  background: var(--ivory);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 3px solid var(--gold);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial__author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--noir);
}
.testimonial__author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Newsletter ── */
.newsletter {
  background: var(--noir);
  padding: 6rem 2rem;
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter .section-eyebrow { color: var(--gold); }
.newsletter h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}
.newsletter p {
  color: rgba(244,236,216,0.65);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1rem;
  border: 1.5px solid rgba(201,168,124,0.4);
  border-radius: 2px;
  overflow: hidden;
}
.newsletter__form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--ivory);
  font-size: 0.85rem;
  outline: none;
}
.newsletter__form input::placeholder { color: rgba(244,236,216,0.4); }
.newsletter__form .btn {
  border-radius: 0;
  border: none;
  border-left: 1.5px solid rgba(201,168,124,0.4);
}

.newsletter__disclaimer {
  font-size: 0.72rem;
  color: rgba(244,236,216,0.35);
}

/* ── Contact ── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact__item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 0.2rem;
}
.contact__item p { font-size: 0.9rem; color: var(--text-muted); }

.contact__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.contact__socials a {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.contact__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--gold);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--ivory);
}

.footer__top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(244,236,216,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.85rem;
  color: rgba(244,236,216,0.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(244,236,216,0.35);
}
.footer__bottom a {
  color: rgba(244,236,216,0.5);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--gold); }
.footer__age {
  font-size: 0.72rem !important;
  color: rgba(201,168,124,0.5) !important;
}

/* ── Cart Sidebar ── */
.cart-sidebar {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}
.cart-sidebar.open { pointer-events: all; }

.cart-sidebar__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-sidebar.open .cart-sidebar__backdrop { opacity: 1; }

.cart-sidebar__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 95vw);
  height: 100%;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.open .cart-sidebar__panel { transform: translateX(0); }

.cart-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--sand);
}
.cart-sidebar__header h3 {
  font-size: 1.2rem;
  color: var(--noir);
}
.cart-sidebar__header button {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.cart-sidebar__header button:hover { color: var(--noir); }

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  text-align: center;
  color: var(--text-muted);
}
.cart-empty span { font-size: 3rem; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
}
.cart-item__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 0.3rem;
}
.cart-item__price {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.cart-item__remove {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  align-self: flex-start;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: var(--rose); }

.cart-sidebar__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--sand);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 1rem;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--noir);
  color: var(--ivory);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .video-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .lookbook__grid { grid-template-columns: 1fr 1fr; }
  .lookbook__item--tall { grid-row: span 1; aspect-ratio: 1; }
  .lookbook__item--wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .collections__grid { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .newsletter__form { flex-direction: column; border: none; gap: 0.75rem; }
  .newsletter__form input { border: 1.5px solid rgba(201,168,124,0.4); border-radius: 2px; }
  .lookbook__grid { grid-template-columns: 1fr; }
  .lookbook__item--tall, .lookbook__item--wide { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}