/* ============================================
   GUYVELINE - Charte graphique luxe
   Noir / Blanc / Doré
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --gv-black: #0a0a0a;
  --gv-noir-doux: #181818;
  --gv-charbon: #2a2a2a;
  --gv-blanc: #ffffff;
  --gv-creme: #faf7f2;
  --gv-ivoire: #f5f0e8;
  --gv-or: #c9a961;
  --gv-or-clair: #e0c47d;
  --gv-or-fonce: #a68843;
  --gv-or-doux: rgba(201, 169, 97, 0.15);
  --gv-gris: #6b6b6b;
  --gv-gris-clair: #d9d4cc;
  --gv-shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
  --gv-shadow-strong: 0 30px 80px rgba(10, 10, 10, 0.15);

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-logo: 'Playfair Display', serif;
  --font-body: 'Jost', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gv-noir-doux);
  background: var(--gv-creme);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease, opacity .3s ease; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--gv-black);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.section { padding: 100px 0; }
.container { width: 92%; max-width: 1280px; margin: 0 auto; }
.container-tight { width: 92%; max-width: 1080px; margin: 0 auto; }
.container-narrow { width: 92%; max-width: 820px; margin: 0 auto; }

/* ============================================
   TYPOGRAPHIE & UTILITAIRES
   ============================================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gv-or);
  display: inline-block;
  margin-bottom: 1.2rem;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gv-or);
  vertical-align: middle;
  margin: 0 12px;
}

.eyebrow-simple {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gv-or);
}

.lead {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: var(--gv-charbon);
  line-height: 1.6;
}

.gold { color: var(--gv-or); }
.center { text-align: center; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}

.divider::before, .divider::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: var(--gv-or);
}

.divider-symbol {
  color: var(--gv-or);
  font-size: 1.2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.top-bar {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  font-weight: 300;
}

.top-bar .gold { color: var(--gv-or-clair); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gv-gris-clair);
  transition: all .4s ease;
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 4%;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--gv-black);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gv-or);
  transition: all .3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gv-or-fonce); }

.brand {
  font-family: var(--font-logo);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gv-black);
  text-align: center;
  white-space: nowrap;
}

.brand .gold { color: var(--gv-or); }

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  align-items: center;
}

.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s ease;
  color: var(--gv-black);
  position: relative;
}

.icon-btn:hover { background: var(--gv-or-doux); color: var(--gv-or-fonce); }
.icon-btn svg { width: 19px; height: 19px; }

.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gv-or);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.cart-count.hidden { display: none; }

.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gv-black);
  margin: 5px auto;
  transition: all .3s;
}

/* ============================================
   BOUTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .35s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  border-color: var(--gv-black);
}

.btn-primary:hover {
  background: var(--gv-or);
  border-color: var(--gv-or);
  color: var(--gv-black);
}

.btn-gold {
  background: var(--gv-or);
  color: var(--gv-black);
  border-color: var(--gv-or);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gv-or);
}

.btn-outline {
  background: transparent;
  color: var(--gv-black);
  border-color: var(--gv-black);
}

.btn-outline:hover {
  background: var(--gv-black);
  color: var(--gv-ivoire);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gv-or-fonce);
  border-color: var(--gv-or);
}

.btn-outline-gold:hover {
  background: var(--gv-or);
  color: var(--gv-black);
}

.btn-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-black);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gv-or);
  transition: all .3s;
  display: inline-block;
}

.btn-text:hover { color: var(--gv-or-fonce); letter-spacing: 0.35em; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 92vh;
  background: var(--gv-black);
  color: var(--gv-ivoire);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 97, 0.08), transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-text { max-width: 620px; }

.hero h1 {
  color: var(--gv-ivoire);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin: 1.5rem 0 1.8rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gv-or-clair);
  font-weight: 400;
}

.hero .lead {
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-eyebrow {
  color: var(--gv-or-clair);
  letter-spacing: 0.4em;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gv-or);
  vertical-align: middle;
  margin-right: 12px;
}

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

.hero-cta .btn-primary {
  background: var(--gv-or);
  color: var(--gv-black);
  border-color: var(--gv-or);
}

.hero-cta .btn-primary:hover {
  background: transparent;
  color: var(--gv-or-clair);
  border-color: var(--gv-or);
}

.hero-cta .btn-outline {
  color: var(--gv-ivoire);
  border-color: rgba(245, 240, 232, 0.4);
}

.hero-cta .btn-outline:hover {
  background: var(--gv-ivoire);
  color: var(--gv-black);
}

.hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .product-display {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 97, 0.4);
  transform: translate(20px, 20px);
}

.hero-frame-inner {
  position: absolute;
  inset: 30px;
  background: linear-gradient(160deg, var(--gv-noir-doux), var(--gv-charbon));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-jar {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a2a2a, var(--gv-black) 70%);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset -10px -10px 30px rgba(0,0,0,0.5);
  border: 2px solid rgba(201, 169, 97, 0.2);
}

.hero-jar::after {
  content: 'GUYVELINE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-logo);
  color: var(--gv-or);
  font-size: 14px;
  letter-spacing: 0.25em;
}

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(245, 240, 232, 0.6);
  text-transform: uppercase;
  z-index: 3;
}

.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gv-or), transparent);
  margin: 12px auto 0;
}

/* ============================================
   GAMMES (collections)
   ============================================ */

.collections {
  background: var(--gv-creme);
  padding: 120px 0 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  margin: 1rem 0 1.5rem;
}

.section-header .lead { max-width: 620px; margin: 0 auto; }

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.collection-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--gv-black);
}

.collection-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.collection-card:hover .collection-card-bg { transform: scale(1.05); }

.collection-card .content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  color: var(--gv-ivoire);
  z-index: 2;
}

.collection-card h3 {
  color: var(--gv-ivoire);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 1rem 0;
}

.collection-card p {
  max-width: 360px;
  margin-bottom: 1.8rem;
  color: rgba(245, 240, 232, 0.85);
}

.collection-card .col-tag {
  color: var(--gv-or-clair);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.collection-card-1 .collection-card-bg {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2418 50%, #0a0a0a 100%);
}
.collection-card-2 .collection-card-bg {
  background: linear-gradient(145deg, #2a2516 0%, #1a1a1a 50%, #322a18 100%);
}

.collection-card .ornament {
  width: 60px; height: 60px;
  border: 1px solid var(--gv-or);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gv-or);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: normal;
}

/* ============================================
   PRODUITS — CARDS
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 30px;
}

.product-card {
  background: var(--gv-blanc);
  position: relative;
  transition: all .4s ease;
  border: 1px solid transparent;
}

.product-card:hover {
  box-shadow: var(--gv-shadow);
  border-color: var(--gv-or-doux);
  transform: translateY(-4px);
}

.product-card .visual {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--gv-ivoire);
}

.product-card .visual-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .info {
  padding: 22px 24px 28px;
}

.product-card .gamme-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-or);
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 8px 0;
  font-weight: 500;
}

.product-card .desc {
  font-size: 13px;
  color: var(--gv-gris);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 38px;
}

.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gv-black);
}

.product-card .price small {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gv-gris);
  font-weight: 400;
  margin-left: 4px;
}

.product-card .add-btn {
  width: 38px; height: 38px;
  background: var(--gv-black);
  color: var(--gv-ivoire);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.product-card .add-btn:hover {
  background: var(--gv-or);
  color: var(--gv-black);
  transform: rotate(90deg);
}

.product-card .add-btn svg { width: 16px; height: 16px; }

/* Product Visuals (CSS art) */
.bottle {
  width: 140px;
  height: 220px;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}

.bottle-cap {
  width: 60px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gv-or-clair), var(--gv-or-fonce));
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 2;
}

.bottle-body {
  width: 140px;
  height: 192px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a, #0a0a0a);
  border-radius: 6px;
  position: relative;
  box-shadow: inset 5px 0 15px rgba(0,0,0,0.6), inset -5px 0 15px rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-label {
  width: 80%;
  text-align: center;
  color: var(--gv-or-clair);
  font-family: var(--font-logo);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.bottle-label .name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.jar {
  width: 160px;
  height: 130px;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}

.jar-lid {
  width: 160px;
  height: 26px;
  background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
  border-radius: 50% / 100% 100% 0 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.jar-body {
  width: 160px;
  height: 110px;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 4px;
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 8px 0 15px rgba(0,0,0,0.5), inset -8px 0 15px rgba(255,255,255,0.04);
}

.jar-label {
  text-align: center;
  color: var(--gv-or-clair);
  font-family: var(--font-logo);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.jar-label .name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tube {
  width: 80px;
  height: 230px;
  position: relative;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tube-cap {
  width: 60px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gv-or-clair), var(--gv-or-fonce));
  border-radius: 4px 4px 0 0;
}

.tube-body {
  width: 80px;
  height: 190px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 4px 4px 40px 40px / 4px 4px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: inset 5px 0 12px rgba(0,0,0,0.5);
}

.tube-label {
  color: var(--gv-or-clair);
  font-family: var(--font-logo);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1.8;
}

/* ============================================
   BRAND STORY
   ============================================ */

.brand-story {
  background: var(--gv-blanc);
  padding: 120px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--gv-charbon), var(--gv-black));
  position: relative;
  overflow: hidden;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gv-or);
}

.story-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gv-or);
  font-family: var(--font-logo);
  text-align: center;
}

.story-image-inner .big-G {
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gv-or);
  font-family: var(--font-display);
  font-style: normal;
}

.story-image-inner .caption {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--gv-or-clair);
}

.story-text h2 { margin: 1rem 0 1.5rem; }
.story-text p { color: var(--gv-charbon); margin-bottom: 1.5rem; font-size: 15px; }

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gv-or-doux);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gv-or);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-gris);
  margin-top: 8px;
  display: block;
}

/* ============================================
   ENGAGEMENT (Amal Biladi)
   ============================================ */

.engagement {
  background: linear-gradient(180deg, var(--gv-black) 0%, var(--gv-noir-doux) 100%);
  color: var(--gv-ivoire);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.engagement::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 50%;
}

.engagement::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201, 169, 97, 0.08);
  border-radius: 50%;
}

.engagement-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.engagement h2 {
  color: var(--gv-ivoire);
  max-width: 720px;
  margin: 1rem auto 2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.engagement h2 em {
  color: var(--gv-or-clair);
  font-style: normal;
}

.engagement .lead {
  color: rgba(245, 240, 232, 0.8);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.engagement-percentage {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  color: var(--gv-or);
  line-height: 1;
  font-weight: 400;
  font-style: normal;
}

.engagement-percentage .smaller {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 6px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.breadcrumb {
  padding: 30px 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gv-gris);
}

.breadcrumb a:hover { color: var(--gv-or); }
.breadcrumb span { margin: 0 12px; color: var(--gv-or); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 40px 0 100px;
  align-items: start;
}

.product-detail-visual {
  aspect-ratio: 4/5;
  background: var(--gv-ivoire);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-visual::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid var(--gv-or-doux);
}

.product-detail h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 1rem 0 1.5rem;
}

.product-detail .price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gv-or-doux);
  border-bottom: 1px solid var(--gv-or-doux);
  margin: 1.5rem 0;
}

.product-detail .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gv-black);
}

.product-detail .price-info {
  font-size: 12px;
  color: var(--gv-gris);
  letter-spacing: 0.1em;
}

.product-detail .description {
  color: var(--gv-charbon);
  margin-bottom: 2rem;
  font-size: 15px;
}

.qty-row {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  align-items: center;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gv-gris-clair);
}

.qty-selector button {
  width: 42px;
  height: 48px;
  font-size: 16px;
  color: var(--gv-black);
  transition: all .2s;
}

.qty-selector button:hover { background: var(--gv-or-doux); color: var(--gv-or-fonce); }

.qty-selector input {
  width: 50px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gv-gris-clair);
  border-right: 1px solid var(--gv-gris-clair);
  font-family: var(--font-body);
  font-size: 14px;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-selector input { -moz-appearance: textfield; }

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

.product-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--gv-or-doux);
  padding-top: 2rem;
}

.product-feature {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  align-items: flex-start;
  font-size: 14px;
}

.product-feature::before {
  content: '✦';
  color: var(--gv-or);
  font-size: 14px;
  margin-top: 2px;
}

.long-description {
  background: var(--gv-creme);
  padding: 80px 0;
}

.long-description h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.long-description-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--gv-charbon);
  font-size: 16px;
  line-height: 1.85;
}

.long-description-content p { margin-bottom: 1.5rem; }

/* ============================================
   BOUTIQUE / SHOP PAGE
   ============================================ */

.shop-header {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.1), transparent 70%);
}

.shop-header h1 {
  color: var(--gv-ivoire);
  position: relative;
  z-index: 2;
}

.shop-header p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-style: normal;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}

.shop-filters {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 30px 0;
  border-bottom: 1px solid var(--gv-or-doux);
  background: var(--gv-blanc);
  position: sticky;
  top: 75px;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}

.filter-btn {
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-gris);
  border-bottom: 2px solid transparent;
  transition: all .3s;
  margin: 0 5px;
}

.filter-btn:hover, .filter-btn.active {
  color: var(--gv-or-fonce);
  border-color: var(--gv-or);
}

.shop-content { padding: 60px 0 100px; }

/* ============================================
   CART / CHECKOUT
   ============================================ */

.page-header {
  background: var(--gv-creme);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--gv-or-doux);
}

.cart-section { padding: 60px 0 100px; }

.cart-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.cart-items {
  background: var(--gv-blanc);
  padding: 30px;
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty .lead { margin-bottom: 2rem; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gv-or-doux);
  align-items: center;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 100px;
  height: 120px;
  background: var(--gv-ivoire);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-info .gamme {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-or);
  margin-bottom: 8px;
}

.cart-item-info .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gv-black);
  margin-top: 8px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.qty-mini {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gv-gris-clair);
}

.qty-mini button {
  width: 28px; height: 32px;
  font-size: 14px;
}

.qty-mini button:hover { background: var(--gv-or-doux); }

.qty-mini input {
  width: 36px; height: 32px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--gv-gris-clair);
  border-right: 1px solid var(--gv-gris-clair);
  font-family: var(--font-body);
}

.remove-btn {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gv-gris);
  cursor: pointer;
  transition: color .2s;
}

.remove-btn:hover { color: #b14040; }

.cart-summary {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  padding: 40px;
  align-self: start;
}

.cart-summary h3 {
  color: var(--gv-or-clair);
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.summary-row.total {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gv-or-clair);
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  margin-top: 1rem;
  padding-top: 1.5rem;
}

.summary-row .label { color: rgba(245, 240, 232, 0.8); }
.summary-row.total .label { color: var(--gv-or-clair); }

.cart-summary .btn { width: 100%; margin-top: 1.5rem; }

.cart-summary .btn-gold {
  background: var(--gv-or);
  color: var(--gv-black);
}

.cart-summary .btn-gold:hover {
  background: var(--gv-or-clair);
}

/* ============================================
   FORMS
   ============================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-grid.single { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-gris);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: none;
  border-bottom: 1px solid var(--gv-gris-clair);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gv-black);
  transition: border-color .3s;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gv-or);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-section {
  background: var(--gv-blanc);
  padding: 40px;
  margin-bottom: 24px;
}

.form-section h3 {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gv-or-doux);
}

.payment-option {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--gv-or-doux);
  background: var(--gv-creme);
  align-items: center;
}

.payment-option-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gv-or);
  color: var(--gv-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-option-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.payment-option-text p {
  font-size: 13px;
  color: var(--gv-gris);
  margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gv-black);
  color: rgba(245, 240, 232, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.footer h4 {
  color: var(--gv-or-clair);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 14px; }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--gv-or-clair); }

.footer-brand {
  font-family: var(--font-logo);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  color: var(--gv-or);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gv-or-clair);
  transition: all .3s;
}

.social-link:hover {
  background: var(--gv-or);
  color: var(--gv-black);
  border-color: var(--gv-or);
  transform: translateY(-2px);
}

.social-link svg { width: 16px; height: 16px; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.5);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all .3s;
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast {
  position: fixed;
  top: 100px; right: 24px;
  background: var(--gv-black);
  color: var(--gv-ivoire);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  border-left: 3px solid var(--gv-or);
  box-shadow: var(--gv-shadow-strong);
  transform: translateX(450px);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  font-size: 13px;
  letter-spacing: 0.05em;
  max-width: 360px;
}

.toast.show { transform: translateX(0); }

.toast svg { color: var(--gv-or); width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   ADMIN
   ============================================ */

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gv-black), var(--gv-noir-doux));
  padding: 20px;
}

.login-card {
  background: var(--gv-blanc);
  padding: 60px 50px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: var(--gv-shadow-strong);
}

.login-card::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid var(--gv-or);
  pointer-events: none;
}

.login-card h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-card .login-sub {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gv-or);
  margin-bottom: 2.5rem;
}

.login-card .form-field { margin-bottom: 20px; }
.login-card .btn { width: 100%; }

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: #f7f5f0;
}

.admin-sidebar {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  padding: 30px 0;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-sidebar .brand-mini {
  font-family: var(--font-logo);
  font-size: 1.2rem;
  color: var(--gv-or);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 0 30px 30px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  margin-bottom: 30px;
}

.admin-nav { list-style: none; }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 30px;
  color: rgba(245, 240, 232, 0.7);
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all .3s;
  border-left: 2px solid transparent;
  cursor: pointer;
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(201, 169, 97, 0.1);
  color: var(--gv-or-clair);
  border-color: var(--gv-or);
}

.admin-nav svg { width: 16px; height: 16px; }

.admin-content {
  padding: 30px 40px;
  overflow-x: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gv-or-doux);
}

.admin-header h1 {
  font-size: 2rem;
  margin: 0;
}

.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-card {
  background: var(--gv-blanc);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.admin-card h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--gv-blanc);
  padding: 24px;
  border-left: 3px solid var(--gv-or);
}

.stat-card .stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gv-gris);
  margin: 0 0 8px;
}

.stat-card .stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gv-black);
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--gv-creme);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-charbon);
  font-weight: 500;
  border-bottom: 1px solid var(--gv-or-doux);
}

table td {
  padding: 16px;
  border-bottom: 1px solid #ece9e3;
}

table tr:hover td { background: var(--gv-creme); }

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
}

.status-pending { background: #fff4d4; color: #8a6900; }
.status-confirmed { background: #d4f0e0; color: #1f5f3a; }
.status-shipped { background: #d4e3f5; color: #1a4a7a; }
.status-delivered { background: #e0d4f0; color: #4a1a7a; }
.status-cancelled { background: #f5d4d4; color: #7a1a1a; }

.table-action {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-or-fonce);
  margin-right: 14px;
  cursor: pointer;
  transition: opacity .2s;
}

.table-action:hover { opacity: 0.6; }
.table-action.delete { color: #b14040; }

/* Admin form */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form-grid .full { grid-column: 1 / -1; }

.admin-form-grid label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-gris);
  margin-bottom: 6px;
  display: block;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gv-gris-clair);
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

.admin-form-grid input:focus,
.admin-form-grid textarea:focus,
.admin-form-grid select:focus { border-color: var(--gv-or); }

.admin-form-grid textarea { min-height: 110px; resize: vertical; }

.admin-actions { margin-top: 24px; display: flex; gap: 12px; }

/* Order details modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.show { display: flex; }

.modal {
  background: var(--gv-blanc);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: var(--gv-creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
  padding: 20px;
  background: var(--gv-creme);
}

.order-meta .label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-gris);
  margin-bottom: 4px;
  display: block;
}

.order-meta .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade { animation: fadeIn .8s ease both; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .navbar-inner { grid-template-columns: auto 1fr auto; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
  .hero-eyebrow::before { display: none; }

  .collections-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
  .cart-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .section { padding: 70px 0; }

  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .admin-nav { display: flex; overflow-x: auto; padding: 0 10px; }
  .admin-nav a { padding: 12px 16px; white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .admin-nav a.active { border-color: var(--gv-or); }
  .admin-content { padding: 20px; }

  .admin-form-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand { font-size: 1.3rem; letter-spacing: 0.12em; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .modal { padding: 24px; }
  .order-meta { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .product-card .info { padding: 16px; }
  .product-card h3 { font-size: 1.1rem; }
  .product-card .price { font-size: 1.15rem; }
  .top-bar { font-size: 9.5px; letter-spacing: 0.15em; padding: 8px 10px; }

  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--gv-blanc);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--gv-or-doux);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: block;
}

a.contact-card { color: inherit; text-decoration: none; }

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gv-shadow);
  border-color: var(--gv-or);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gv-creme);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gv-or-fonce);
}

.contact-icon svg { width: 24px; height: 24px; }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.contact-card .contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gv-or-fonce);
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.contact-card .contact-meta {
  font-size: 13px;
  color: var(--gv-gris);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-card .contact-cta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-black);
  border-bottom: 1px solid var(--gv-or);
  padding-bottom: 4px;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-form-intro p {
  color: var(--gv-charbon);
  line-height: 1.8;
}

@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   v2 ADDITIONS — Logo image, hero image, promo banner, sale prices
   ============================================ */

/* Promo banner — sits above the navbar, gold gradient */
.promo-banner {
  background: linear-gradient(90deg, var(--gv-or-fonce), var(--gv-or), var(--gv-or-fonce));
  color: var(--gv-black);
  text-align: center;
  padding: 9px 20px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 91;
}

.promo-banner strong {
  font-weight: 700;
}

/* Brand logo as image (replaces text "GUYVELINE" in navbar) */
.brand-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar .brand {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

/* For the footer brand */
.footer-brand-img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

/* Login card logo */
.login-logo-img {
  display: block;
  margin: 0 auto 1.25rem;
  height: 70px;
  width: auto;
}

/* Admin sidebar logo */
.admin-sidebar .brand-mini-img {
  display: block;
  margin: 0 auto 30px;
  height: 50px;
  width: auto;
  padding: 0 20px 30px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

/* Hero with real photo background instead of CSS jar visual */
.hero-photo {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gv-black);
}

.hero-photo .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.55);
  z-index: 1;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.85) 100%);
  z-index: 2;
}

.hero-photo .hero-photo-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
  color: var(--gv-ivoire);
}

.hero-photo .hero-eyebrow {
  margin: 0 auto;
  color: var(--gv-or-clair);
}

.hero-photo h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--gv-ivoire);
  margin: 1.5rem 0 1.75rem;
  letter-spacing: -0.01em;
}

.hero-photo h1 em {
  color: var(--gv-or-clair);
  font-weight: 500;
}

.hero-photo .lead {
  color: rgba(245, 240, 232, 0.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 17px;
  line-height: 1.7;
}

.hero-photo .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 5 ANS badge floating on hero */
.hero-anniversary-badge {
  position: absolute;
  top: 90px;
  right: 5%;
  z-index: 4;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--gv-or);
  color: var(--gv-black);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: 0 14px 40px rgba(201, 169, 97, 0.4);
  transform: rotate(-12deg);
  border: 2px solid var(--gv-or-clair);
  animation: pulse-badge 3s ease-in-out infinite;
}

.hero-anniversary-badge .num {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.hero-anniversary-badge .text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.hero-anniversary-badge .sale {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 4px;
  display: block;
}

@keyframes pulse-badge {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-12deg) scale(1.05); }
}

@media (max-width: 768px) {
  .hero-anniversary-badge {
    width: 100px;
    height: 100px;
    top: 70px;
    right: 4%;
  }
  .hero-anniversary-badge .num { font-size: 1.6rem; }
  .hero-anniversary-badge .text { font-size: 8px; }
  .hero-anniversary-badge .sale { font-size: 0.95rem; }
}

/* SALE PRICES — show original crossed out, new price highlighted */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-original {
  text-decoration: line-through;
  color: var(--gv-gris);
  font-size: 0.85em;
  font-weight: 300;
}

.price-current {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gv-or-fonce);
}

.product-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card .price .price-original {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
}

.sale-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gv-black);
  color: var(--gv-or-clair);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 5;
  border: 1px solid var(--gv-or);
}

/* Product card uses real image if available */
.product-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.product-card .image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gv-ivoire);
}

.product-card:hover .product-card-img {
  transform: scale(1.03);
  transition: transform 0.6s var(--ease, ease);
}

/* Product detail page — real image */
.product-detail-img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  display: block;
  background: var(--gv-ivoire);
}

/* 5-ans homepage section */
.anniversary-strip {
  background: var(--gv-black);
  color: var(--gv-ivoire);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.anniversary-strip::before {
  content: '5';
  position: absolute;
  font-family: var(--font-display);
  font-size: 50rem;
  color: rgba(201, 169, 97, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.anniversary-strip .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.anniversary-strip .eyebrow {
  color: var(--gv-or-clair);
}

.anniversary-strip h2 {
  color: var(--gv-ivoire);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 1rem 0 1.25rem;
}

.anniversary-strip h2 em {
  color: var(--gv-or-clair);
  font-weight: 600;
}

.anniversary-strip .lead {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  color: rgba(245, 240, 232, 0.85);
  font-size: 17px;
}

.anniversary-strip .badge-promo {
  display: inline-block;
  background: var(--gv-or);
  color: var(--gv-black);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gv-or-clair);
}

/* Image gallery on homepage */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gv-ivoire);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-tile:hover img {
  transform: scale(1.06);
}

.product-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
  color: var(--gv-ivoire);
}

.product-tile-overlay .tile-gamme {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gv-or-clair);
  margin-bottom: 8px;
}

.product-tile-overlay .tile-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.product-tile-overlay .tile-price {
  margin-top: 8px;
  font-size: 14px;
}

.product-tile-overlay .tile-price .price-original {
  color: rgba(245, 240, 232, 0.5);
  font-size: 12px;
}

.product-tile-overlay .tile-price .price-current {
  color: var(--gv-or-clair);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Image upload zone in admin */
.image-upload-zone {
  border: 2px dashed var(--gv-or-doux);
  padding: 30px;
  text-align: center;
  background: var(--gv-creme);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.image-upload-zone:hover {
  border-color: var(--gv-or);
  background: var(--gv-ivoire);
}

.image-upload-zone .preview {
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 14px;
}

.image-upload-zone input[type="file"] {
  display: none;
}

/* Override the old big-G visual elements (story image) — replace with photo container */
.story-image-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--gv-ivoire);
}

.story-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}

/* Override defaults to set fonts cleanly */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
}

em {
  font-style: normal;
  color: var(--gv-or-fonce);
  font-weight: 600;
}

.hero h1 em, .hero-photo h1 em, .anniversary-strip h2 em {
  color: var(--gv-or-clair);
}

/* Make body text more visible — slightly heavier and larger */
body {
  font-weight: 400;
  font-size: 15.5px;
}

/* Make headlines more present */
.hero h1, .hero-photo h1 {
  font-weight: 500;
}

/* Better contrast for paragraph text */
p, li {
  color: var(--gv-charbon);
}

/* Smaller responsive for product-card-img */
@media (max-width: 768px) {
  .product-card-img { height: 220px; }
  .product-detail-img { max-height: 480px; }
}

/* Outline light variant for dark hero */
.btn-outline-light {
  background: transparent;
  color: var(--gv-ivoire);
  border: 1px solid rgba(245, 240, 232, 0.4);
}
.btn-outline-light:hover {
  background: var(--gv-ivoire);
  color: var(--gv-black);
  border-color: var(--gv-ivoire);
}

/* CMS tabs */
.cms-tab.active {
  border-bottom-color: var(--gv-or) !important;
  color: var(--gv-or-fonce);
  font-weight: 600;
}
.cms-tab:hover { color: var(--gv-or-fonce); }
.cms-panel { animation: fadeInPanel .3s ease; }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Values grid (a-propos) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.value-card {
  background: var(--gv-blanc);
  padding: 40px 28px;
  border: 1px solid var(--gv-or-doux);
  text-align: center;
  transition: all .4s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--gv-or);
  box-shadow: var(--gv-shadow);
}
.value-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gv-or);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gv-black);
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--gv-gris);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Cycle grid (engagement) */
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.cycle-step {
  background: var(--gv-blanc);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--gv-or);
}
.cycle-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gv-or);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.cycle-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gv-black);
  margin-bottom: 0.75rem;
}
.cycle-step p {
  color: var(--gv-gris);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Brand mini image in admin sidebar */
.brand-mini-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}
.login-logo-img {
  display: block;
  margin: 0 auto 1.25rem;
  width: 160px;
  height: auto;
}

/* =====================================================
   ===== CHANEL-INSPIRED REDESIGN (override layer) =====
   ===================================================== */

/* RESET typography to sober defaults */
body {
  font-family: var(--font-body);
  color: #000;
  background: #fff;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #000;
  letter-spacing: 0.01em;
}

/* === HEADER — Chanel-style centered === */
.navbar {
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  padding: 0;
}
.navbar-inner {
  display: block;
  padding: 0;
  max-width: none;
}
.nav-utility {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 9px 0;
  background: #fff;
}
.nav-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.nav-utility-inner a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-utility-inner a:hover { color: #000; }

.nav-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 28px 22px;
  position: relative;
}
.nav-logo {
  display: block;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  max-height: 60px;
  width: auto;
}
.nav-actions {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-actions .icon-btn {
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-actions .icon-btn svg { width: 22px; height: 22px; }
.nav-actions .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  padding: 6px 0 18px;
  background: #fff;
}
.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 44px;
}
.nav-menu a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: opacity 0.2s;
}
.nav-menu a:hover { opacity: 0.55; }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
}

/* Hide old navbar pieces & promotional UI */
.promo-banner { display: none !important; }
.top-bar { display: none !important; }
.brand { display: none !important; }
.brand-img { display: none !important; }
.nav-links { display: none !important; }   /* old inline menu */
.sale-ribbon { display: none !important; }
.hero-anniversary-badge { display: none !important; }
.anniversary-strip { display: none !important; }
.badge-promo { display: none !important; }
.eyebrow.has-sparkle::before { display: none !important; }

/* === BUTTONS — sober === */
.btn,
button.btn,
a.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  transition: all 0.3s ease;
  border-radius: 0;
}
.btn:hover, button.btn:hover, a.btn:hover {
  background: #fff;
  color: #000;
}
.btn-outline,
a.btn-outline {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-outline:hover {
  background: #000;
  color: #fff;
}
.btn-outline-light,
a.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: #000;
}
.btn-gold, .btn-primary { background: #000; color: #fff; border-color: #000; }
.btn-gold:hover, .btn-primary:hover { background: #fff; color: #000; }

/* === HERO — clean === */
.hero-photo {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) !important;
}
.hero-photo-content {
  position: absolute;
  left: 50%;
  bottom: 14vh;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 720px;
  color: #fff;
  padding: 0;
}
.hero-photo-content .hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.hero-photo-content h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.hero-photo-content h1 em { font-style: normal; font-weight: 400; color: #fff; }
.hero-photo-content .lead { display: none; }
.hero-photo-content .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
  background: #fff;
}
.section-head { margin-bottom: 56px; }
.section-head h2, h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
}
h2 em, h3 em { font-style: normal; font-weight: 400; color: #000; }
.section-head .lead {
  max-width: 580px;
  margin: 16px auto 0;
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  line-height: 1.7;
}
.eyebrow, .eyebrow-simple {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  display: inline-block;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

/* === PRODUCT TILES (Collections) === */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: #fff;
}
.product-tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 3/4;
  background: #f5f5f5;
}
.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.product-tile:hover img { transform: scale(1.05); }
.product-tile-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: #fff;
  padding: 22px 24px;
  text-align: center;
}
.tile-gamme {
  display: none;
}
.tile-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0;
}
.tile-price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
}

/* === PRODUCT CARDS (Featured / Boutique) === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 56px 28px;
}
.product-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: none;
}
.product-card:hover { transform: none; box-shadow: none; }
.product-card .product-image,
.product-card .product-visual {
  aspect-ratio: 3/4;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}
.product-card .product-image img,
.product-card img.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image img,
.product-card:hover img.product-img {
  transform: scale(1.04);
}
.product-card .product-info {
  padding: 22px 0 0;
  text-align: center;
}
.product-card .gamme {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 8px;
}
.product-card h3,
.product-card .product-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  margin: 0 0 8px;
  line-height: 1.35;
}
.product-card .short-desc { display: none; }
.product-card .price-block {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}
.product-card .price-original {
  display: none !important;
}
.product-card .price-discount {
  display: none !important;
}

/* === STORY SECTION === */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text { padding: 0 20px; }
.story-image-photo { aspect-ratio: 4/5; overflow: hidden; }
.story-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === ENGAGEMENT SECTION (sober dark) === */
.engagement {
  background: #000 !important;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.engagement h2 {
  color: #fff !important;
  font-weight: 300;
}
.engagement .lead { color: rgba(255,255,255,0.7); }
.engagement .eyebrow { color: rgba(255,255,255,0.55) !important; }

/* === FOOTER — Pure black, white text === */
.footer {
  background: #000 !important;
  color: #fff;
  padding: 80px 0 32px;
  border-top: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff !important;
  margin-bottom: 24px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li {
  margin-bottom: 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
}
.footer a {
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
}
.footer a:hover { color: #fff !important; }
.footer-brand-img {
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}
.footer-desc {
  color: rgba(255,255,255,0.55) !important;
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 280px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  border-radius: 0;
}
.social-link:hover {
  border-color: #fff;
  color: #fff;
}
.social-link svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* === WhatsApp floating button === */
.whatsapp-float {
  background: #000 !important;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.whatsapp-float:hover {
  background: #fff !important;
  color: #000;
  border-color: #000;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .nav-utility { display: none; }
  .nav-main { padding: 18px 16px; }
  .nav-logo img { max-height: 40px; }
  .nav-actions { right: 16px; gap: 12px; }
  .nav-menu { padding: 4px 0 14px; overflow-x: auto; }
  .nav-menu ul { gap: 22px; padding: 0 16px; min-width: max-content; }
  .nav-menu a { font-size: 10.5px; letter-spacing: 0.16em; }

  .section { padding: 64px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-img { max-width: 140px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-photo-content { bottom: 8vh; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* === Forms / inputs - sober === */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  border: 1px solid rgba(0,0,0,0.18);
  background: #fff;
  border-radius: 0;
  font-family: var(--font-body);
}
input:focus, textarea:focus, select:focus {
  border-color: #000;
  outline: none;
}
label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  font-weight: 600;
}
