/* ============================================
   Le Comptoir du Chanvre — Premium CBD
   ============================================ */

:root {
  --green-forest: #2d5016;
  --green-light: #3d6b1f;
  --green-hover: #4a8026;
  --black: #0d0d0d;
  --off-white: #f5f0e8;
  --beige: #e8dcc8;
  --beige-dark: #d4c4a8;
  --gold: #c8a84b;
  --gold-light: #d4b96a;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-light: #888;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  line-height: 1.3;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--green-forest);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-hover); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-dark {
  background-color: var(--green-forest);
  color: var(--off-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--off-white);
}

.section-beige {
  background-color: var(--beige);
}

.section-black {
  background-color: var(--black);
  color: var(--off-white);
}

.section-black h2,
.section-black h3 {
  color: var(--off-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background-color: #1fb855;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-primary {
  background-color: var(--green-forest);
  color: var(--off-white);
  border: 1px solid var(--green-forest);
}
.btn-primary:hover {
  background-color: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-forest);
  border: 1.5px solid var(--green-forest);
}
.btn-outline:hover {
  background-color: var(--green-forest);
  color: var(--white);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid var(--off-white);
}
.btn-outline-white:hover {
  background: var(--off-white);
  color: var(--green-forest);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 36px; /* hours bar height — hardcoded in CSS for iOS Safari reliability */
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  transition: top var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  display: none; /* desktop: tall logo image carries the text */
}

.logo-main {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--off-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--off-white);
  font-family: 'Georgia', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem !important;
  letter-spacing: 0.05em !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: #1fb855;
  color: var(--white) !important;
}

.nav-cta-standalone {
  display: flex;
}

@media (max-width: 768px) {
  .nav-cta-standalone {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(13,13,13,0.98);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--off-white);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header p,
.section-black .section-header p {
  color: rgba(245,240,232,0.75);
}

/* ===== PROMO BANNER HERO ===== */
.promo-banner {
  margin-top: 92px; /* fixed header height */
  width: 100%;
  background: var(--black);
}

.promo-banner a:first-child {
  display: block;
  line-height: 0;
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.promo-banner-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 24px;
  background: var(--black);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .promo-banner-img {
    max-height: none; /* show full image on mobile */
  }
  .promo-banner-ctas {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }
  .promo-banner-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a2810 50%, #2d5016 100%);
  overflow: hidden;
  padding-top: 92px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,168,75,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,80,22,0.4) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  color: var(--off-white);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 48px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,232,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===== TICKER / BANDE FILANTE ===== */
.ticker-wrap {
  background: var(--black);
  border-top: 1px solid rgba(200,168,75,0.2);
  border-bottom: 1px solid rgba(200,168,75,0.2);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 48px;
}
.ticker-item .ticker-dot {
  color: var(--gold);
  font-size: 1rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--black);
  padding: 24px 0;
  border-bottom: 1px solid rgba(200,168,75,0.15);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.trust-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: linear-gradient(160deg, #ffffff 60%, #f9f5ec);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-forest), var(--gold));
  transition: opacity var(--transition);
}

.why-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  transform: translateY(-6px);
  border-color: rgba(200,168,75,0.6);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(200,168,75,0.12), rgba(200,168,75,0.22));
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--green-forest);
  letter-spacing: 0.02em;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.category-thumb.green-bg {
  background: linear-gradient(135deg, var(--green-forest), var(--green-light));
}

.category-thumb.beige-bg {
  background: linear-gradient(135deg, var(--beige-dark), var(--beige));
}

.category-thumb.dark-bg {
  background: linear-gradient(135deg, #1a1a1a, #333);
}

.category-body {
  padding: 24px;
}

.category-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.category-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
}

/* ===== POPULAR PRODUCTS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

a.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--beige), var(--off-white));
  position: relative;
  overflow: hidden;
}

.product-thumb img,
.carte-product-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  display: block;
}

.category-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.logo-img {
  height: 115px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  align-self: start;
  margin-top: -43px;
}

.footer-brand .logo-img {
  height: 200px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .header-inner {
    height: 62px;
  }

  .site-header .logo {
    flex-direction: row;
    align-items: center;
    gap: 4px;
    line-height: 1;
    position: relative;
    top: -3px;
  }

  .site-header .logo-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 59px;
    line-height: 1.3;
    margin-top: 6px;
  }

  .site-header .logo-main {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .site-header .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .site-header .logo-img {
    height: 59px;
    width: 59px;
    object-fit: contain;
    flex-shrink: 0;
    align-self: center;
    display: block;
  }

  .hamburger {
    margin-right: -10px;
  }
}

.pack-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--beige);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: block;
  padding: 12px;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  font-family: sans-serif;
  font-weight: 600;
}

.product-badge.badge-green {
  background: var(--green-forest);
  color: var(--white);
}

.product-badge.badge-dark {
  background: var(--black);
  color: var(--gold);
}

.product-body {
  padding: 20px;
}

.product-category {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.product-price-from {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-price {
  font-size: 1.3rem;
  color: var(--green-forest);
  font-weight: bold;
}

.product-price-per-g {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== DELIVERY HIGHLIGHT ===== */
.delivery-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.delivery-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
}

.delivery-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.delivery-card h4 {
  color: var(--off-white);
  margin-bottom: 8px;
}

.delivery-card p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  margin: 0;
}

/* ===== HOW TO ORDER ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--beige-dark), var(--gold), var(--beige-dark));
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--green-forest);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
}

.step h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== PACKS ===== */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pack-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pack-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-lg);
}

.pack-featured-badge {
  position: absolute;
  top: 16px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 36px;
  transform: rotate(45deg) translate(-8px, 0);
  font-family: sans-serif;
  font-weight: 700;
}

.pack-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pack-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--black);
}

.pack-price {
  font-size: 2.5rem;
  color: var(--green-forest);
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.pack-includes {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pack-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pack-includes li::before {
  content: '✓';
  color: var(--green-forest);
  font-weight: bold;
  flex-shrink: 0;
}

.pack-promo-note {
  font-size: 0.72rem;
  color: #9a6e10;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200,168,75,0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-forest);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-forest);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--green-forest);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-forest) 0%, #1a2810 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,168,75,0.1) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--off-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(245,240,232,0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(245,240,232,0.65);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-brand .logo-main {
  font-size: 1.05rem;
}

.footer-brand p {
  margin-top: -43px;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 360px;
}

.footer-col h5 {
  color: var(--off-white);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(245,240,232,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(245,240,232,0.55);
}

.footer-contact-item a {
  color: rgba(245,240,232,0.55);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 0 -24px;
}

.footer-bottom {
  padding: 36px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(245,240,232,0.35);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.legal-notice {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.25);
  text-align: center;
  line-height: 1.6;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a2810 100%);
  padding: 120px 0 70px;
  text-align: center;
}

.page-hero h1 {
  color: var(--off-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(245,240,232,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

.breadcrumb a {
  color: rgba(245,240,232,0.4);
}

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

.breadcrumb-sep {
  color: var(--gold);
}

/* ===== CARTE (MENU) ===== */
.carte-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(200,168,75,0.12);
}

.carte-section:last-of-type {
  border-bottom: none;
}

.carte-category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.carte-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.carte-category-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.carte-category-header h2 {
  font-size: 1.8rem;
  white-space: nowrap;
}

.carte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.carte-product-card {
  background: var(--white);
  border: 1px solid rgba(200,168,75,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.carte-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(200,168,75,0.3);
}

.carte-product-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.carte-product-thumb.thumb-green {
  background: linear-gradient(135deg, #e8f0dc, #c8d8b0);
}

.carte-product-thumb.thumb-amber {
  background: linear-gradient(135deg, #f0e8d0, #e0c890);
}

.carte-product-thumb.thumb-dark {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.carte-product-body {
  padding: 22px;
}

.carte-product-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.carte-taux {
  display: inline-block;
  background: rgba(200,168,75,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.carte-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.price-table th {
  background: var(--beige);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  padding: 6px 8px;
  text-align: center;
  font-family: sans-serif;
  font-weight: 600;
}

.price-table td {
  padding: 6px 8px;
  text-align: center;
  border-bottom: 1px solid var(--beige);
  color: var(--text-dark);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(200,168,75,0.05);
}

.price-per-g {
  font-size: 0.72rem;
  color: var(--text-light);
}

.carte-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: sans-serif;
  font-weight: 600;
}

.badge-decouverte {
  background: rgba(45,80,22,0.1);
  color: var(--green-forest);
  border: 1px solid rgba(45,80,22,0.2);
}

.badge-classique {
  background: rgba(200,168,75,0.12);
  color: #9a6e10;
  border: 1px solid rgba(200,168,75,0.25);
}

.badge-bon-rapport {
  background: rgba(37,211,102,0.1);
  color: #167a42;
  border: 1px solid rgba(37,211,102,0.2);
}

.badge-economique {
  background: rgba(74,128,38,0.1);
  color: #3d6b1f;
  border: 1px solid rgba(74,128,38,0.2);
}

.badge-meilleur-prix {
  background: rgba(200,168,75,0.2);
  color: #7a5a10;
  border: 1px solid rgba(200,168,75,0.4);
}

.badge-best-seller {
  background: linear-gradient(135deg, rgba(180,20,75,0.13), rgba(140,10,55,0.07));
  color: #a0124a;
  border: 1px solid rgba(180,20,75,0.28);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge-top-aromes {
  background: rgba(100,60,160,0.1);
  color: #5a3490;
  border: 1px solid rgba(100,60,160,0.2);
}

.carte-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.carte-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.similar-products {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--beige);
}

.similar-label {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.similar-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.similar-tag {
  font-size: 0.72rem;
  background: var(--beige);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ===== PACKS PAGE ===== */
.packs-section-header {
  background: var(--beige);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.packs-section-header .pack-icon-large {
  font-size: 2.5rem;
  flex-shrink: 0;
}

/* ===== DELIVERY PAGE ===== */
.delivery-zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(200,168,75,0.15);
}

.zone-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.zone-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--green-forest);
}

.zone-card .delay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,80,22,0.08);
  color: var(--green-forest);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.zone-card ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.zone-card ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--beige);
}

.zone-card ul li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.zone-card ul li:last-child {
  border-bottom: none;
}

.national-delivery {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 40px;
  color: var(--off-white);
  margin-bottom: 48px;
}

.national-delivery h3 {
  color: var(--gold);
  margin-bottom: 16px;
}

.carriers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.carrier-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.carrier-name {
  font-size: 1rem;
  color: var(--off-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carrier-detail {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--green-forest);
  border-radius: var(--radius-md);
  padding: 40px;
  color: var(--off-white);
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--off-white);
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-info h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-method-info a {
  color: var(--off-white);
  font-size: 1rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(200,168,75,0.12);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-forest);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--green-forest);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-forest); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--green-forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 998;
  border: none;
  font-size: 1.1rem;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 24px;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #1fb855;
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4,
  .delivery-highlights,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { max-width: 280px; }
  .carte-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-zones { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .carriers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2rem; }

  .grid-2,
  .grid-3,
  .why-grid,
  .categories-grid,
  .packs-grid,
  .delivery-highlights,
  .steps-grid,
  .carte-grid {
    grid-template-columns: 1fr;
  }

  .trust-items { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: column; align-items: center; text-align: center; margin-top: 0; gap: 24px; align-self: stretch; }
  .footer-brand p { margin-top: 14px; max-width: 300px; text-align: center; line-height: 1.95; }
  .footer-brand .logo-img { height: 150px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .carte-category-header { flex-direction: column; align-items: flex-start; }
  .carte-category-line { display: none; }

  .national-delivery { padding: 28px; }

  .contact-form-card,
  .contact-info-card { padding: 28px; }

  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }
  .hero { padding-top: 92px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-subtitle { font-size: 1rem; }

  .price-table { font-size: 0.75rem; }
  .price-table th, .price-table td { padding: 5px 4px; }
}

/* ===== AGE VERIFICATION POPUP ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-modal {
  background: var(--off-white);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.age-modal-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}
.age-modal h2 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 10px;
}
.age-modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.age-modal .age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.age-modal .btn-age-yes {
  background: var(--green-forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Georgia', serif;
}
.age-modal .btn-age-yes:hover { background: var(--green-hover); }
.age-modal .btn-age-no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Georgia', serif;
}
.age-modal .btn-age-no:hover { background: var(--beige); }
.age-modal .age-legal {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
