/* ============================================================
   SKARKA — Premium Fashion E-Commerce
   Noir profond + Or poli biseauté
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D48B;
  --gold-dark:   #9A7B2E;
  --gold-shine:  #F5E6A3;
  --gold-deep:   #7A5C1F;
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --black-card:  #141414;
  --black-line:  #222222;
  --charcoal:    #181818;
  --text:        #D8D0C4;
  --text-dim:    #8A847C;
  --text-bright: #F0ECE6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 300; background: var(--black); color: var(--text); line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Grain overlay subtil */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(90%, 1280px); margin: 0 auto; }

/* ---- Gold gradient text ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 30%, var(--gold-shine) 50%, var(--gold) 70%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.gold-line { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border: none; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 1.05rem 2.8rem; cursor: pointer; transition: all 0.45s var(--ease);
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-shine));
  transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.2);
}
.btn-outline {
  background: transparent; color: var(--gold); border: 1px solid rgba(201,168,76,0.5);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08); border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.4rem 0; transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 0.7rem 0; border-bottom: 1px solid rgba(201,168,76,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo-link { display: flex; align-items: center; gap: 0.7rem; }
.logo-img { height: 48px; width: auto; }
.site-header.scrolled .logo-img { height: 38px; }
.logo-wordmark {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
}

.main-nav ul { display: flex; gap: 2.4rem; align-items: center; }
.main-nav a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text); position: relative; padding: 0.3rem 0; transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s var(--ease-out);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.nav-icons { display: flex; gap: 1.2rem; align-items: center; }
.nav-icon { width: 19px; height: 19px; stroke: var(--text); fill: none; stroke-width: 1.5; cursor: pointer; transition: stroke 0.3s; }
.nav-icon:hover { stroke: var(--gold); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.menu-toggle span { width: 22px; height: 1px; background: var(--gold); transition: all 0.3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 90px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 80vh; }
.hero-content { z-index: 2; }
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 300;
  line-height: 1.1; color: var(--text-bright); margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; font-weight: 300; }
.hero-subtitle {
  font-size: 0.95rem; font-weight: 300; color: var(--text-dim); line-height: 1.85;
  max-width: 440px; margin-bottom: 3rem;
}
.hero-cta { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }

/* Hero image — photo placeholder élégant */
.hero-visual {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: linear-gradient(170deg, var(--charcoal) 0%, var(--black-card) 100%);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(201,168,76,0.12); pointer-events: none;
}
.hero-visual-label {
  position: absolute; bottom: 28px; left: 28px; font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--text-dim); opacity: 0.6;
}
/* Quand la vraie photo est là : */
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
.section-padding { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-eyebrow { font-size: 0.68rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 300; color: var(--text-bright); margin-bottom: 0.8rem; }
.section-subtitle { font-size: 0.92rem; color: var(--text-dim); max-width: 500px; margin: 0 auto; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--black-soft); }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.collection-card { position: relative; overflow: hidden; cursor: pointer; }
.collection-card-visual {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
  background: linear-gradient(170deg, var(--charcoal) 0%, #111 100%);
  transition: transform 0.7s var(--ease-out);
}
.collection-card:hover .collection-card-visual { transform: scale(1.02); }
.collection-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
}
.collection-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.collection-card-visual .card-label {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); opacity: 0.5;
}
.collection-card-content { padding: 1.3rem 0 0; text-align: center; }
.collection-card-title {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  color: var(--text-bright); margin-bottom: 0.25rem; transition: color 0.3s;
}
.collection-card:hover .collection-card-title { color: var(--gold); }
.collection-card-sub { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { text-align: center; padding: 7rem 0; position: relative; }
.manifesto::before, .manifesto::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: 70px; background: linear-gradient(to bottom, transparent, var(--gold-dark));
}
.manifesto::before { top: 0; }
.manifesto::after { bottom: 0; background: linear-gradient(to top, transparent, var(--gold-dark)); }
.manifesto-quote {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 300;
  font-style: italic; color: var(--text-bright); max-width: 750px; margin: 0 auto 1.5rem; line-height: 1.5;
}
.manifesto-author { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.ethique-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.ethique-item { padding: 2rem; }
.ethique-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 1.2rem; border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.ethique-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.ethique-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--text-bright); margin-bottom: 0.6rem; }
.ethique-text { font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--charcoal); border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line); text-align: center; padding: 5rem 0;
}
.newsletter-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 300; color: var(--text-bright); margin-bottom: 0.5rem; }
.newsletter-text { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 0.95rem 1.4rem; background: var(--black); border: 1px solid var(--black-line); border-right: none;
  color: var(--text); font-family: var(--font-body); font-size: 0.82rem; font-weight: 300; outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus { border-color: var(--gold-dark); }
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-btn {
  padding: 0.95rem 1.8rem; background: var(--gold); color: var(--black); border: none;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 5rem 0 2rem; border-top: 1px solid var(--black-line); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo-img { height: 32px; width: auto; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; }
.footer-brand-text { font-size: 0.82rem; color: var(--text-dim); line-height: 1.7; }
.footer-col-title { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.82rem; color: var(--text-dim); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--black-line); }
.footer-copy { font-size: 0.72rem; color: var(--text-dim); }
.footer-socials { display: flex; gap: 1rem; }
.footer-social-icon { width: 17px; height: 17px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; cursor: pointer; transition: stroke 0.3s; }
.footer-social-icon:hover { stroke: var(--gold); }

/* ============================================================
   PAGE HERO (histoire)
   ============================================================ */
.page-hero {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 110px; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 70px; background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4.2rem); font-weight: 300; color: var(--text-bright); margin-bottom: 0.6rem; }
.page-hero-sub { font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }

/* Story (magazine layout) */
.story-section { padding: 5rem 0; }
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 7rem; }
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-text h2 { font-family: var(--font-display); font-size: clamp(1.5rem,2.4vw,2.1rem); font-weight: 300; color: var(--text-bright); margin-bottom: 1rem; line-height: 1.3; }
.story-text p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.9; margin-bottom: 1.1rem; }
.story-text .highlight { color: var(--gold); font-weight: 400; }

.story-visual {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--charcoal) 0%, #0e0e0e 100%);
}
.story-visual::before {
  content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,168,76,0.08); pointer-events: none;
}
.story-visual .visual-label {
  position: absolute; bottom: 20px; left: 20px; font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-dim); opacity: 0.45;
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.story-fullquote {
  text-align: center; padding: 6rem 0; border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line); margin: 3rem 0;
}
.story-fullquote blockquote {
  font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 300;
  font-style: italic; color: var(--text-bright); max-width: 680px; margin: 0 auto; line-height: 1.5;
}
.story-fullquote cite {
  display: block; margin-top: 1.3rem; font-family: var(--font-body); font-size: 0.68rem;
  font-style: normal; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { text-align: center; padding: 2rem 1rem; border: 1px solid var(--black-line); transition: border-color 0.3s; }
.value-card:hover { border-color: rgba(201,168,76,0.25); }
.value-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; margin-bottom: 0.4rem; }
.value-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   PRODUIT
   ============================================================ */
.product-page { padding-top: 115px; padding-bottom: 5rem; }
.product-breadcrumb { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 2rem; }
.product-breadcrumb a { color: var(--text-dim); transition: color 0.3s; }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { margin: 0 0.5rem; opacity: 0.35; }

.product-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: start; }

.product-gallery { display: grid; gap: 0.8rem; }
.product-main-visual {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--charcoal) 0%, #0f0f0f 100%);
}
.product-main-visual::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,168,76,0.06); pointer-events: none; }
.product-main-visual .visual-label { position: absolute; bottom: 20px; left: 20px; font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-dim); opacity: 0.4; }
.product-main-visual img { width: 100%; height: 100%; object-fit: cover; }

.product-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.product-thumb {
  aspect-ratio: 1; background: var(--charcoal); border: 1px solid var(--black-line);
  cursor: pointer; transition: border-color 0.3s; overflow: hidden;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { position: sticky; top: 115px; }
.product-category { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.product-title { font-family: var(--font-display); font-size: clamp(1.7rem,2.4vw,2.3rem); font-weight: 300; color: var(--text-bright); margin-bottom: 0.7rem; line-height: 1.2; }
.product-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--gold); margin-bottom: 1.8rem; }
.product-description { font-size: 0.9rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--black-line); }

.product-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); margin-bottom: 0.7rem; display: flex; justify-content: space-between; align-items: center; }
.product-label a { color: var(--gold); font-size: 0.62rem; text-decoration: underline; text-underline-offset: 3px; }
.product-colors { margin-bottom: 1.8rem; }
.color-options { display: flex; gap: 0.7rem; }
.color-swatch {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.3s; position: relative;
}
.color-swatch:hover, .color-swatch.selected { border-color: var(--gold); }
.color-swatch.selected::after { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--gold); }

.product-sizes { margin-bottom: 1.8rem; }
.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-btn {
  min-width: 48px; padding: 0.65rem 0.9rem; background: transparent;
  border: 1px solid var(--black-line); color: var(--text); font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.08em; cursor: pointer; transition: all 0.3s; text-align: center;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.selected { background: var(--gold); color: var(--black); border-color: var(--gold); }

.product-actions { display: flex; gap: 0.8rem; margin-bottom: 2rem; }
.product-actions .btn { flex: 1; text-align: center; }
.btn-wishlist {
  width: 52px; flex: 0 0 52px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--black-line); cursor: pointer; transition: border-color 0.3s;
}
.btn-wishlist:hover { border-color: var(--gold); }
.btn-wishlist svg { width: 18px; height: 18px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.btn-wishlist:hover svg { stroke: var(--gold); }

.product-details-list { border-top: 1px solid var(--black-line); }
.detail-item { border-bottom: 1px solid var(--black-line); }
.detail-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 0;
  background: none; border: none; color: var(--text); font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: color 0.3s;
}
.detail-toggle:hover { color: var(--gold); }
.detail-toggle .toggle-icon { font-size: 1rem; color: var(--text-dim); transition: transform 0.3s; }
.detail-content { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.detail-content.open { max-height: 300px; }
.detail-content-inner { padding: 0 0 1.1rem; font-size: 0.85rem; color: var(--text-dim); line-height: 1.85; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(25px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin: 0 auto 3rem; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story-block, .story-block.reverse { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .story-visual { max-width: 480px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-info { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex; position: fixed; inset: 0; background: rgba(10,10,10,0.98);
    z-index: 999; align-items: center; justify-content: center;
  }
  .main-nav.open ul { flex-direction: column; gap: 2rem; text-align: center; }
  .main-nav.open a { font-size: 1.1rem; letter-spacing: 0.3em; }
  .collections-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .ethique-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--black-line); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-cta { flex-direction: column; gap: 0.8rem; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .size-btn { min-width: 42px; padding: 0.55rem 0.7rem; font-size: 0.7rem; }
}


