
/* ------------ reset & base ------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 500; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
em { font-style: italic; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 100%;
}
.link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.link:hover { opacity: 0.6; }

/* ------------ buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #111;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { background: #fff; color: #111; }
.btn-ghost { background: transparent; color: #111; }
.btn-ghost:hover { background: #111; color: #fff; }
.btn-light { background: #fff; color: #111; border-color: #fff; }
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.2rem 2rem; }

/* ------------ header ------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.announcement {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #888;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #111;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}
.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: opacity 0.2s;
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { opacity: 0.6; }
.cart-count {
  position: absolute;
  top: 6px;
  right: 4px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  min-width: 16px;
  height: 16px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-weight: 600;
}
.mobile-toggle { display: none; }
.mobile-nav { display: none; }

/* ------------ hero landscape (user-provided local image) ------------ */
.hero-landscape .hero-media {
  background-size: cover !important;
  background-position: center 40% !important;
  filter: none !important;
  transform: none !important;
}
.hero-landscape .hero-media-fg { display: none !important; }
@media (min-width: 1100px) {
  .hero-landscape .hero-media { background-position: center 45% !important; }
}

/* ------------ hero (full-bleed) ------------ */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: calc(100vh - 130px);
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* Wide desktops: image is portrait, keep a tall-ish hero so we see it well */
@media (min-width: 1100px) {
  .hero {
    height: 82vh;
    min-height: 640px;
    max-height: 860px;
  }
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% 20%;
  z-index: 0;
}
/* Foreground <img> — hidden on mobile (cover bg is enough). On desktop we reveal it so the
   full portrait photo is visible, with a blurred copy of itself (.hero-media) as ambient fill. */
.hero-media-fg {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 72% center;
  z-index: 1;
}
@media (min-width: 1100px) {
  .hero-media {
    background-position: center;
    filter: blur(38px) brightness(0.78) saturate(1.05);
    transform: scale(1.12);
  }
  .hero-media-fg { display: block; }
}
@media (min-width: 1500px) {
  .hero-media-fg { object-position: 74% center; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 38%, rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.35) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  color: #fff;
}
.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 12ch;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.hero .eyebrow {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  max-width: 32ch;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-ghost {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hero .btn-ghost:hover { background: #fff; color: #111; }

/* ------------ collections grid (home) ------------ */
.collections-section .section-head { margin-bottom: 3.5rem; }
.collections-section .section-head h2 { margin-top: 0.5rem; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4.5;
  overflow: hidden;
  display: block;
  color: #fff;
}
.collection-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.collection-card:hover .collection-image { transform: scale(1.06); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.55) 100%);
  transition: background 0.4s;
}
.collection-card:hover .collection-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
}
.collection-title {
  position: absolute;
  top: 1.75rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Allura', 'Cormorant Garamond', cursive;
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  z-index: 2;
}
.collection-tagline {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
  z-index: 2;
}

/* ------------ collection page hero ------------ */
.collection-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 68vh;
  max-height: 720px;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.collection-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
}
.collection-hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.collection-script {
  font-family: 'Allura', cursive;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin-bottom: 0.5rem;
}
.collection-sub {
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.collection-intro {
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #555;
}
.collection-intro strong { color: #111; font-weight: 500; }

/* ------------ category grid (legacy) ------------ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}
.category-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.category-card:hover .category-image { transform: scale(1.06); }
.category-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #fff;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.category-label .arrow { transition: transform 0.3s; }
.category-card:hover .arrow { transform: translateX(4px); }

/* ------------ product grid / cards ------------ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.5rem 1.25rem;
  width: 100%;
}
/* Homepage "Nouveautés" — force 4 columns so 8 products = 2 full rows */
.featured-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { display: block; }
.product-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f7f7f7;
  margin-bottom: 1rem;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.quick-label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(12px);
  background: #fff;
  color: #111;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  opacity: 0;
  transition: all 0.3s;
  font-weight: 500;
}
.product-card:hover .quick-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-info h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.product-price {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9rem;
}
.price { font-weight: 500; }
.price-compare {
  text-decoration: line-through;
  color: #999;
  font-size: 0.82rem;
}

/* ------------ product-line rows (home) ------------ */
.product-line-section { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.product-line-section .line-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1;
}
.product-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2.5rem;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.product-row::-webkit-scrollbar { height: 6px; }
.product-row::-webkit-scrollbar-track { background: transparent; }
.product-row::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.product-row::-webkit-scrollbar-thumb:hover { background: #bbb; }
.product-row .product-card { scroll-snap-align: start; }
/* On wide screens, show ~5 cards per row without scroll */
@media (min-width: 1400px) {
  .product-row { grid-auto-columns: minmax(0, 1fr); grid-template-columns: repeat(5, 1fr); grid-auto-flow: row; overflow: visible; }
}
@media (max-width: 640px) {
  .product-row { grid-auto-columns: 72%; gap: 0.9rem; }
}

/* ------------ values ------------ */
.values-section {
  background: #0a0a0a;
  color: #fff;
  padding: 5rem 0;
  margin: 4rem 0;
}
.values {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.value {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.value:last-child { border-right: 0; }
.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 38px; height: 38px; }
.value h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #fff;
}
.value p { font-size: 0.85rem; color: #aaa; line-height: 1.65; max-width: 28ch; margin: 0 auto; }

/* ------------ wide banner ------------ */
.wide-banner {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: 62vh;
  max-height: 720px;
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: center;
  padding: 4rem;
  color: #fff;
  margin: 4rem 0;
}
.wide-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
}
.wide-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.wide-banner .eyebrow { color: rgba(255,255,255,0.85); }
.wide-banner h2 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 2rem;
  max-width: 14ch;
}

/* ------------ marquee ------------ */
.marquee-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.marquee-section .section-head { padding: 0 2.5rem; }
.section-head.center { justify-content: center; text-align: center; }
.section-sub { color: #666; font-size: 0.95rem; margin-top: 0.5rem; }
.marquee {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 90s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: #f7f7f7;
  display: block;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.marquee-item:hover img { transform: scale(1.05); }
.marquee-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.marquee-item:hover .marquee-name { opacity: 1; transform: translateY(0); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ------------ newsletter ------------ */
.newsletter-section {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center 30%;
  margin-top: 5rem;
}
.newsletter-overlay {
  position: relative;
  min-height: 520px;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.newsletter-content {
  max-width: 560px;
  text-align: center;
  color: #fff;
}
.newsletter-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}
.newsletter-content p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.eyebrow.light { color: rgba(255,255,255,0.8); }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: background 0.2s, border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.75); }
.newsletter-form input:focus {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}
.newsletter-form button {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  padding: 0 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-form button:hover { opacity: 0.85; }
.newsletter-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.ns-ok {
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 0.85rem;
  margin: 0 !important;
}

/* ------------ editorial ------------ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: 4rem auto 0;
  gap: 0;
}
.editorial-media {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.editorial-content {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-content h2 { margin-bottom: 1.5rem; max-width: 18ch; }
.editorial-content p { color: #444; margin-bottom: 1.5rem; max-width: 48ch; }

/* ------------ shop ------------ */
.shop-hero {
  padding: 6rem 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.shop-hero p { color: #666; margin-top: 1rem; }
.shop-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.shop-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.6rem 1.25rem;
  border: 1px solid #ddd;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #fff;
  color: #444;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: #111; color: #111; }
.filter-btn.active { background: #111; color: #fff; border-color: #111; }

/* ------------ product page ------------ */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.78rem;
  color: #666;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.breadcrumb a:hover { border-color: #111; }
.product-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.product-gallery { position: sticky; top: 130px; align-self: start; }
.main-images {
  position: relative;
  aspect-ratio: 3/4;
  background: #f7f7f7;
  overflow: hidden;
}
.main-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.main-image.active { opacity: 1; }
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 4px;
}
.thumb {
  flex: 0 0 80px;
  aspect-ratio: 3/4;
  border: 1px solid transparent;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.2s;
  background: #f7f7f7;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: #111; }
.product-details { padding: 1rem 0; }
.product-details h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.product-details .product-price { font-size: 1.1rem; margin-bottom: 2rem; }
.product-desc { color: #444; margin-bottom: 2rem; max-width: 52ch; line-height: 1.75; }

.variant-picker { margin-bottom: 1.5rem; }
.variant-picker label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.size-guide {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  text-decoration: underline;
  color: #666;
  cursor: pointer;
  font-weight: 400;
}
.variant-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn {
  min-width: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  font-size: 0.85rem;
  transition: all 0.2s;
  background: #fff;
}
.variant-btn:hover { border-color: #111; }
.variant-btn.active { background: #111; color: #fff; border-color: #111; }

.qty-row { margin-bottom: 1rem; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
}
.qty button {
  width: 40px;
  height: 46px;
  font-size: 1.1rem;
  color: #555;
}
.qty button:hover { background: #f5f5f5; }
.qty input {
  width: 48px;
  height: 46px;
  border: 0;
  text-align: center;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.product-details .btn { margin-bottom: 0.75rem; }

.product-meta {
  list-style: none;
  margin: 2.5rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #555;
}

.accordion {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 0;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-right: 2rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
}
.accordion[open] summary::after { content: '−'; }
.accordion p { margin-top: 1rem; color: #555; font-size: 0.9rem; }

/* ------------ long read ------------ */
.page-hero {
  padding: 6rem 2rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 { margin: 1rem 0; }
.page-hero p { color: #555; max-width: 48ch; margin: 1rem auto 0; }
.long-read {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}
.long-read .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #222;
  font-family: 'Cormorant Garamond', serif;
}
.long-read h3 {
  margin: 2.5rem 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
}
.long-read p { color: #444; margin-bottom: 1rem; line-height: 1.8; }
.long-read.legal h3, .long-col.legal h3 { scroll-margin-top: 120px; }
.long-col.legal p { font-size: 0.95rem; line-height: 1.75; }
.footer-bottom a { color: inherit; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.footer-bottom a:hover { border-color: currentColor; }
.engagements {
  list-style: none;
  padding: 0;
}
.engagements li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  color: #444;
}

/* ------------ contact ------------ */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-form input, .contact-form textarea, .contact-form select {
  border: 1px solid #ddd;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: #111;
}
.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.info-block p { color: #555; font-size: 0.9rem; line-height: 1.7; }

/* ------------ footer ------------ */
.site-footer {
  background: #111;
  color: #fff;
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col p { color: #aaa; font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col a {
  display: block;
  color: #aaa;
  font-size: 0.88rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.newsletter { display: flex; margin-top: 1rem; }
.newsletter input {
  flex: 1;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-family: inherit;
}
.newsletter input:focus { outline: none; border-color: #fff; }
.newsletter button {
  background: #fff;
  color: #111;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #fff;
  transition: opacity 0.2s;
}
.newsletter button:hover { opacity: 0.85; }
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #777;
}

/* ------------ cart drawer ------------ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 90;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 0.9rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: #f7f7f7;
}
.cart-item-info h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.cart-item-variant { color: #888; font-size: 0.78rem; margin-bottom: 0.5rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.cart-item-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  color: #555;
  font-size: 0.9rem;
  line-height: 1;
}
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cart-item-price { font-weight: 500; font-size: 0.9rem; }
.cart-item-remove {
  color: #888;
  font-size: 0.72rem;
  text-decoration: underline;
  margin-top: 0.5rem;
}
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #eee;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ------------ search ------------ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 1.5rem; right: 1.5rem; }
.search-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
}
#searchInput {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #111;
  font-size: 2rem;
  padding: 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  background: transparent;
  outline: none;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ------------ responsive ------------ */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-content { padding: 3rem 2rem; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .value:nth-child(2) { border-right: 0; }
  .product-page { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { order: 2; padding: 3rem 2rem; }
  .hero-media { order: 1; min-height: 420px; }
  .wide-banner { padding: 3rem 2rem; min-height: 420px; aspect-ratio: auto; }
  .marquee-item { width: 220px; }
}
@media (max-width: 640px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 1rem; }
  .main-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #eee;
  }
  .menu-open .mobile-nav { display: flex; }
  .mobile-nav .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .category-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .collection-title { font-size: 2.2rem; top: 1.25rem; }
  .collection-tagline { font-size: 0.62rem; letter-spacing: 0.18em; bottom: 1rem; }
  .values-section { padding: 3rem 0; }
  .values { grid-template-columns: 1fr 1fr; padding: 0 1rem; gap: 1.5rem; }
  .section { padding: 4rem 1rem; }
  .hero-content { padding: 0 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .search-results { grid-template-columns: 1fr 1fr; }
  .product-details h1 { font-size: 2rem; }
}
