/* Lustre — Main Stylesheet */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap');

/* ── Variables ── */
:root {
  --bg: #FAF7F2;
  --surface: #F3EEE8;
  --text: #111111;
  --text-muted: #7a7068;
  --accent: #D4929A;
  --accent-dark: #b8787f;
  --gold: #C8A96E;
  --gold-light: rgba(200,169,110,0.15);
  --border: rgba(200,169,110,0.18);
  --shadow-soft: 0 4px 24px rgba(200,169,110,0.08);
  --shadow-hover: 0 12px 40px rgba(200,169,110,0.16);
  --radius: 12px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: white; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(200,169,110,0.1); }
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--gold); }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; font-weight: 500; }
.nav__links a:hover { color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  border-radius: var(--radius-sm);
}
.nav__cart-btn:hover { color: var(--gold); }
.nav__cart-btn svg { width: 22px; height: 22px; }
.nav__cart-count {
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 4px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0);
}
.nav__cart-count.visible { transform: scale(1); }
.nav__cart-count.bump { transform: scale(1.3); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 32px 40px;
  margin-top: 80px;
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer__brand p { color: var(--text-muted); font-size: 0.9rem; margin: 12px 0 0; max-width: 260px; line-height: 1.65; }
.footer__col h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin: 0 0 16px; font-weight: 600; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.trust-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_152577/85554736-06ac-446b-afb7-378f6f883eba.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.1);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.2) 0%, rgba(17,17,17,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 32px 100px;
  max-width: 640px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -1px;
  color: white;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn-primary {
  background: var(--gold);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.25s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(200,169,110,0.3);
}
.btn-primary:hover {
  background: #b89555;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  display: inline-block;
  transition: border-color 0.25s, background 0.25s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-buy {
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  transition: background 0.25s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(212,146,154,0.25);
}
.btn-buy:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,146,154,0.35);
}
.btn-buy:active { transform: translateY(0); }
.btn-sm {
  background: var(--text);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-sm:hover { background: var(--gold); transform: scale(1.03); }

/* ── Section headers ── */
.section-header { text-align: center; padding: 0 32px 52px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; margin: 0 0 12px; letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); margin: 0; font-size: 1rem; }

/* ── Collections grid ── */
.collections-section { padding: 80px 0; }
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.collection-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.collection-card.visible { opacity: 1; transform: translateY(0); }
.collection-card:hover { box-shadow: var(--shadow-hover); }
.collection-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover .collection-card__image { transform: scale(1.04); }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.1) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.collection-card:hover .collection-card__overlay { background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.2) 55%, transparent 100%); }
.collection-card__name { color: white; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin: 0; }
.collection-card__desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin: 6px 0 0; }
.collection-card__tag {
  display: inline-block;
  background: rgba(200,169,110,0.25);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Products grid ── */
.products-section { padding: 60px 0 80px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  display: block;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
}
.product-card.visible { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card__image-wrap { aspect-ratio: 1; overflow: hidden; background: var(--surface); }
.product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__image { transform: scale(1.06); }
.product-card__body { padding: 20px 22px 22px; }
.product-card__collection { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin: 0 0 6px; font-weight: 600; }
.product-card__name { font-size: 1rem; font-weight: 600; margin: 0 0 6px; color: var(--text); }
.product-card__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; margin-top: 8px; }
.product-card__tag { font-size: 0.65rem; padding: 3px 10px; border-radius: 100px; background: var(--gold-light); color: var(--gold); font-weight: 500; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.product-card__price { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.product-card__buy {
  background: var(--text);
  color: white;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.product-card__buy:hover { background: var(--gold); transform: scale(1.03); }

/* ── Product detail ── */
.product-detail { padding: 60px 32px; }
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail__image { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.product-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__eyebrow { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin: 0 0 12px; font-weight: 600; }
.product-detail__title { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; margin: 0 0 16px; line-height: 1.1; letter-spacing: -0.5px; }
.product-detail__price { font-size: 1.75rem; font-weight: 700; color: var(--accent); margin: 0 0 28px; }
.product-detail__price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.product-detail__description { color: var(--text-muted); line-height: 1.8; margin: 0 0 32px; font-size: 0.95rem; }
.product-detail__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.product-detail__tag { font-size: 0.7rem; padding: 4px 14px; border-radius: 100px; background: var(--gold-light); color: var(--gold); font-weight: 500; border: 1px solid rgba(200,169,110,0.2); }

/* ── Quantity selector ── */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 16px;
}
.qty-selector button {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.qty-selector button:hover { background: var(--gold-light); color: var(--gold); }
.qty-selector span {
  min-width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 8px 0;
}

/* ── Bundle upsell ── */
.bundle-upsell {
  background: linear-gradient(135deg, #fdf8f3, var(--surface));
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  display: none;
  animation: fadeSlideIn 0.4s ease;
}
.bundle-upsell.active { display: block; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.bundle-upsell__title { font-size: 0.875rem; font-weight: 700; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.bundle-upsell__title svg { color: var(--gold); }
.bundle-upsell__desc { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ── Collection page ── */
.collection-hero { padding: 56px 32px 0; }
.collection-hero__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin: 0 0 14px; font-weight: 600; }
.collection-hero__label a { color: var(--gold); transition: color 0.2s; }
.collection-hero__label a:hover { color: var(--text); }
.collection-hero__name { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 700; margin: 0 0 14px; letter-spacing: -0.5px; }
.collection-hero__desc { font-size: 1rem; color: var(--text-muted); margin: 0 0 56px; max-width: 540px; line-height: 1.7; }
.collection-hero__image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 56px;
}

/* ── Cart banner ── */
.cart-banner {
  background: linear-gradient(135deg, #fdf8f3, #f5ece0);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0;
  display: none;
  animation: fadeSlideIn 0.4s ease;
}
.cart-banner.active { display: block; }
.cart-banner__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.cart-banner__text { font-size: 1rem; font-weight: 700; margin: 0 0 4px; }
.cart-banner__sub { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: white;
  z-index: 501;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
  border-radius: 6px;
  display: flex;
}
.cart-drawer__close:hover { color: var(--text); transform: rotate(90deg); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-drawer__empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}
.cart-drawer__empty svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.3; }
.cart-drawer__empty p { font-size: 0.9rem; margin: 4px 0 0; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  animation: fadeSlideIn 0.3s ease;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 0.9rem; font-weight: 600; margin: 0 0 4px; }
.cart-item__meta { font-size: 0.75rem; color: var(--text-muted); margin: 0 0 10px; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item__price { font-weight: 700; font-size: 0.95rem; }
.cart-item__qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 100px; overflow: hidden; }
.cart-item__qty button {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item__qty button:hover { background: var(--gold-light); color: var(--gold); }
.cart-item__qty span { min-width: 28px; text-align: center; font-size: 0.8rem; font-weight: 600; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  display: flex;
}
.cart-item__remove:hover { color: var(--accent); }
.cart-drawer__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: white;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-total span:last-child { font-size: 1.3rem; color: var(--text); }
.cart-bundle-note {
  font-size: 0.78rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cart-drawer__checkout {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(212,146,154,0.3);
}
.cart-drawer__checkout:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,146,154,0.4);
}
.cart-drawer__continue {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
  font-family: inherit;
  width: 100%;
  padding: 4px;
}
.cart-drawer__continue:hover { color: var(--text); }

/* ── Email capture ── */
.email-capture {
  background: linear-gradient(135deg, var(--surface), #f7f0e8);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 80px 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.email-capture::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.email-capture h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; margin: 0 0 8px; }
.email-capture p { color: var(--text-muted); margin: 0 0 28px; font-size: 0.9rem; }
.email-form { display: flex; gap: 10px; justify-content: center; }
.email-form input {
  padding: 14px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: white;
  font-size: 0.9rem;
  min-width: 280px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.email-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.1); }
.email-form button {
  background: var(--gold);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(200,169,110,0.25);
}
.email-form button:hover { background: #b89555; transform: translateY(-1px); }
.email-success { display: none; color: var(--accent); font-weight: 600; margin-top: 16px; font-size: 0.95rem; }
.email-success.visible { display: block; animation: fadeSlideIn 0.4s ease; }

/* ── Related products ── */
.related-products { padding: 60px 32px; border-top: 1px solid var(--border); }

/* ── 404 ── */
.not-found { text-align: center; padding: 120px 32px; }
.not-found h1 { font-size: 5rem; font-weight: 700; color: var(--border); margin: 0 0 16px; }
.not-found h2 { font-size: 1.5rem; margin: 0 0 12px; }
.not-found p { color: var(--text-muted); margin: 0 0 28px; }

/* ── Added to cart toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--text);
  color: white;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--gold); width: 18px; height: 18px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .email-form { flex-direction: column; align-items: center; }
  .email-form input { min-width: 0; width: 100%; max-width: 340px; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 60px 24px 80px; }
  .product-detail { padding: 40px 24px; }
  .collection-hero { padding: 40px 24px 0; }
  .collection-hero__name { font-size: 2.2rem; }
  .email-capture { padding: 36px 24px; }
}

/* ── Checkout banners ── */
.checkout-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.checkout-banner--success {
  background: #1a5c3a;
  color: white;
}
.checkout-banner--success svg { color: #5dd491; width: 18px; height: 18px; }
.checkout-banner--cancelled {
  background: var(--text);
  color: white;
}
.checkout-banner--cancelled svg { color: rgba(255,255,255,0.6); width: 18px; height: 18px; }
@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Stagger animations ── */
.collection-card:nth-child(1) { transition-delay: 0s; }
.collection-card:nth-child(2) { transition-delay: 0.1s; }
.collection-card:nth-child(3) { transition-delay: 0.2s; }
.collection-card:nth-child(4) { transition-delay: 0.3s; }

.product-card:nth-child(1) { transition-delay: 0s; }
.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4) { transition-delay: 0.24s; }
.product-card:nth-child(5) { transition-delay: 0.32s; }
.product-card:nth-child(6) { transition-delay: 0.40s; }