/* =============================================
   CAVALIER ÉLÉGANCE — Stylesheet Principal
   Palette: Navy #0d1b2a | Ivoire #f5f0e8 | Or #c9a84c | Rouge #8b1a1a
============================================= */

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

:root {
  --navy: #0d1b2a;
  --navy-light: #1a2e45;
  --ivoire: #f5f0e8;
  --ivoire-dark: #ede6d6;
  --or: #c9a84c;
  --or-light: #e2c97a;
  --rouge: #8b1a1a;
  --blanc: #ffffff;
  --gris: #888880;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivoire);
  color: var(--navy);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--blanc);
}
.logo-top {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.logo-divider {
  color: var(--or);
  font-size: 8px;
  margin: 1px 0;
}
.logo-bottom {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blanc); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-cta {
  background: var(--or);
  color: var(--navy) !important;
  padding: 10px 28px;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--or-light); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--blanc);
  font-size: 24px;
  cursor: pointer;
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--blanc);
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--navy);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--blanc);
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blanc);
}
.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--blanc);
  padding: 14px 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--or);
  color: var(--or);
  transition: var(--transition);
}
.btn-ghost-light:hover {
  background: var(--or);
  color: var(--navy);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.4) 60%, rgba(13,27,42,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--blanc);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--or-light);
}
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============ REASSURANCE ============ */
.reassurance {
  background: var(--navy);
  padding: 20px 48px;
}
.reassurance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.re-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}
.re-icon { color: var(--or); font-size: 8px; }
.re-sep { color: rgba(255,255,255,0.2); }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--or);
}
.section-sub {
  color: var(--gris);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 500px;
  margin: 0 auto;
}

/* ============ COLLECTION ============ */
.collection {
  padding: 120px 48px;
  background: var(--ivoire);
}
.products-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.product-card {
  background: var(--blanc);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13,27,42,0.12);
}
.product-card.featured {
  grid-column: 2;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: var(--blanc);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
}
.product-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--or);
  color: var(--navy);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.product-badge.new { background: var(--navy); color: var(--blanc); }
.product-info {
  padding: 24px 28px 28px;
}
.product-category {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 12px;
  color: var(--gris);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ivoire-dark);
  padding-top: 16px;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--or);
}
.product-sizes {
  font-size: 10px;
  color: var(--gris);
  letter-spacing: 1.5px;
}
.collection-cta {
  text-align: center;
  margin-top: 72px;
}

/* ============ LIFESTYLE ============ */
.lifestyle {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.lifestyle-img-wrap {
  position: absolute;
  inset: 0;
}
.lifestyle-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.5) 60%, transparent 100%);
}
.lifestyle-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 600px;
}
.lifestyle-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--blanc);
  margin-bottom: 24px;
}
.lifestyle-text {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 120px 48px;
  background: var(--navy);
}
.testimonials .section-title { color: var(--blanc); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--or);
}
.testi-stars {
  color: var(--or);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-text {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 17px;
}
.testi-author {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or);
}

/* ============ NEWSLETTER ============ */
.newsletter {
  padding: 120px 48px;
  background: var(--ivoire-dark);
  text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.newsletter-title em { font-style: italic; color: var(--or); }
.newsletter-sub {
  color: var(--gris);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.8;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 16px;
}
.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(13,27,42,0.2);
  background: var(--blanc);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
  outline: none;
}
.newsletter-input:focus { border-color: var(--or); }
.newsletter-note {
  font-size: 11px;
  color: var(--gris);
  letter-spacing: 0.5px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 48px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--blanc);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--or);
  letter-spacing: 1px;
  margin-bottom: 28px;
  font-style: italic;
}
.footer-social { display: flex; gap: 24px; }
.social-link {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.social-link:hover { color: var(--or); }
.footer-links h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--blanc); }
.footer-contact h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}
.footer-contact p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ============ PAGE BOUTIQUE ============ */
.page-hero {
  height: 360px;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 0 80px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/page-hero.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--or-light); }

.boutique-section {
  padding: 80px 48px 120px;
  background: var(--ivoire);
}
.boutique-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ============ PAGE PRODUIT ============ */
.product-detail {
  padding: 140px 80px 100px;
  background: var(--ivoire);
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail-img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.detail-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.detail-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--or);
  margin-bottom: 32px;
}
.detail-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 36px;
}
.detail-options { margin-bottom: 36px; }
.option-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.chip {
  padding: 8px 18px;
  border: 1px solid rgba(13,27,42,0.2);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--blanc);
}
.chip:hover, .chip.active {
  background: var(--navy);
  color: var(--blanc);
  border-color: var(--navy);
}
.add-to-cart {
  width: 100%;
  padding: 20px;
  background: var(--navy);
  color: var(--blanc);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}
.add-to-cart:hover { background: var(--or); color: var(--navy); }
.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  border-top: 1px solid var(--ivoire-dark);
  padding-top: 28px;
}
.detail-meta-item {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 300;
  color: var(--gris);
}
.detail-meta-item strong {
  color: var(--navy);
  font-weight: 500;
  min-width: 120px;
}

/* ============ PAGE À PROPOS ============ */
.apropos-section {
  padding: 140px 80px 100px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.apropos-img {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.apropos-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.apropos-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 32px;
}
.apropos-title em { font-style: italic; color: var(--or); }
.apropos-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 20px;
}
.apropos-values {
  padding: 100px 80px;
  background: var(--navy);
}
.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
}
.value-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--or);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.value-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 16px;
}
.value-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

/* ============ PAGE CONTACT ============ */
.contact-section {
  padding: 140px 80px 100px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-info-title em { font-style: italic; color: var(--or); }
.contact-info-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gris);
  line-height: 1.9;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
}
.contact-item-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(13,27,42,0.2);
  background: var(--blanc);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--or); }
.form-textarea { height: 160px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: var(--blanc);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--or); color: var(--navy); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card.featured { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .apropos-section, .contact-section, .product-detail { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 0 24px; }
  .hero-scroll { left: 24px; }
  .collection, .testimonials, .newsletter, .boutique-section { padding: 80px 24px; }
  .products-grid, .boutique-grid { grid-template-columns: 1fr; }
  .lifestyle-content { padding: 0 24px; }
  .footer { padding: 60px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .reassurance-inner { gap: 16px; }
  .re-sep { display: none; }
  .newsletter-form { flex-direction: column; }
  .product-detail, .apropos-section { padding: 100px 24px 60px; }
  .contact-section { padding: 100px 24px 60px; }
  .page-hero { padding: 0 24px 40px; }
}
