@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

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

:root {
  --gold: #C6A84B;
  --gold2: #E8D5A0;
  --dark: #080808;
  --dark2: #111;
  --dark3: #1a1a1a;
  --mid: #2a2a2a;
  --light: #f5f0e8;
  --muted: #888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid #1a1a1a;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--light);
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-icon {
  width: 38px;
  height: 38px;
  border: 0.5px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
}

/* ── MENU LATERAL ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.side-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: #0c0c0c;
  border-right: 0.5px solid #1e1e1e;
  z-index: 300;
  padding: 32px 28px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.side-menu.open {
  transform: translateX(0);
}

.menu-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  border: 0.5px solid #2a2a2a;
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  margin-bottom: 32px;
}

.menu-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--light);
  margin-bottom: 40px;
}

.menu-logo span { color: var(--gold); font-style: italic; }

.menu-links {
  list-style: none;
  flex: 1;
}

.menu-links li {
  border-bottom: 0.5px solid #1a1a1a;
}

.menu-links a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.menu-links a:hover { color: var(--gold); }

.menu-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 24px;
}

/* ── HERO ── */
.hero {
  padding: 40px 24px 36px;
  border-bottom: 0.5px solid #1a1a1a;
}

.hero-line {
  width: 28px; height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 1px;
  line-height: 1.9;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

.btn-primary:hover { opacity: .85; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 2px;
  border: 0.5px solid #333;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s;
}

.btn-outline:hover { border-color: var(--gold); }

/* ── URGENCE ── */
.urgency {
  margin: 20px 20px 0;
  background: #0d0d0d;
  border: 0.5px solid #1e1e1e;
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 2px 2px 0;
}

.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.urgency-txt {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: #7db87d;
  letter-spacing: .5px;
}

/* ── CONFIANCE ── */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #1a1a1a;
  margin-top: 20px;
}

.trust-item {
  background: var(--dark);
  padding: 18px 8px;
  text-align: center;
}

.trust-icon-wrap {
  width: 30px; height: 30px;
  border: 0.5px solid #2a2a2a;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-lbl {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--light);
  letter-spacing: .5px;
  margin-bottom: 3px;
}

.trust-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .3px;
}

/* ── SECTIONS ── */
.section { padding: 32px 20px 0; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--light);
  letter-spacing: 1px;
}

.section-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.gold-text { color: var(--gold); }

/* ── PRODUITS ── */
.products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-card {
  background: var(--dark2);
  border: 0.5px solid #1e1e1e;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
}

.product-card:hover { border-color: var(--gold); }

.product-img {
  height: 150px;
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 3px 7px;
  border-radius: 1px;
  text-transform: uppercase;
}

.badge-stock {
  background: #1a120a;
  color: #C6A84B;
  border: 0.5px solid #C6A84B;
}

.badge-new {
  background: #0d150d;
  color: #4ade80;
  border: 0.5px solid #2d6a2d;
}

.product-info { padding: 12px 12px 14px; }

.product-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 3px;
  letter-spacing: .3px;
}

.product-variant {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.product-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}

.wa-mini {
  width: 30px; height: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .2s;
}

.wa-mini:hover { opacity: .85; }

/* ── DIVIDER ── */
.divider {
  width: 40px; height: 0.5px;
  background: var(--gold);
  opacity: .4;
  margin: 32px auto 0;
}

/* ── AVIS ── */
.review-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-scroll::-webkit-scrollbar { display: none; }

.review-card {
  background: var(--dark2);
  border: 0.5px solid #1e1e1e;
  border-radius: 4px;
  padding: 16px;
  min-width: 210px;
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── FOOTER CTA ── */
.footer-cta {
  margin: 32px 20px;
  border: 0.5px solid #1e1e1e;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  background: #0c0c0c;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-eyebrow {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.footer-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.wa-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  margin-bottom: 12px;
  text-decoration: none;
  transition: opacity .2s;
}

.wa-btn-full:hover { opacity: .9; }

.wa-reply {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .5px;
}

/* ── BARRE FLOTTANTE ── */
.wa-float-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  border-top: 0.5px solid #1e1e1e;
  padding: 12px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.wa-float-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

.wa-float-btn:hover { opacity: .9; }

.cart-btn {
  width: 46px; height: 46px;
  border: 0.5px solid #2a2a2a;
  border-radius: 2px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color .2s;
}

.cart-btn:hover { border-color: var(--gold); }

/* ── DESKTOP (tablette+) ── */
@media (min-width: 600px) {
  body { max-width: 480px; margin: 0 auto; }
  .hero-title { font-size: 60px; }
  .products { grid-template-columns: repeat(2, 1fr); }
}

/* ── ANIMATIONS ENTRÉE ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

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