/*
Theme Name: Le Rucher du Djé
Theme URI: https://lerucherdudje.fr
Author: Jérémie Lafond
Author URI: https://miel-jura.com
Description: Thème WordPress sur-mesure pour Le Rucher du Djé — Vente de reines Buckfast, essaims et cellules royales. Élevage artisanal dans le Jura.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Propriétaire
License URI: #
Text Domain: lerucherdudje
Tags: e-commerce, woocommerce, apiculture, buckfast

Le Rucher du Djé — Reines Buckfast & Essaims | Jura
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Honey palette */
  --honey-deep: #8B6914;
  --honey-gold: #D4A233;
  --honey-light: #F2D68A;
  --honey-glow: #FAEBC8;

  /* Neutrals */
  --cream: #FDF8EF;
  --cream-dark: #F5ECD8;
  --white: #FFFDF9;

  /* Bark / Forest */
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --forest: #2C4A2E;
  --forest-light: #4A7A4D;
  --moss: #6B7F3B;

  /* Text */
  --text: #2A1F14;
  --text-light: #6B5D4F;
  --text-muted: #9A8D7F;

  /* Functional */
  --danger: #C0392B;
  --success: #27AE60;
  --info: #2980B9;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(61,43,31,0.08);
  --shadow-md: 0 8px 32px rgba(61,43,31,0.12);
  --shadow-lg: 0 16px 48px rgba(61,43,31,0.16);
  --shadow-xl: 0 24px 64px rgba(61,43,31,0.20);

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1200px;
  --container-pad: 24px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bark);
}

h1 { font-size: clamp(38px, 5vw, 62px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
h4 { font-size: 20px; }

.font-serif {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.text-gradient {
  background: linear-gradient(135deg, var(--honey-gold), var(--honey-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-padding {
  padding: var(--space-4xl) 0;
}

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

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--honey-deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--honey-gold);
  color: var(--bark);
  font-weight: 700;
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(212,162,51,0.35);
}
.btn-primary:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,162,51,0.45);
}

.btn-secondary {
  color: var(--cream);
  border: 1px solid rgba(253,248,239,0.2);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--honey-gold);
  color: var(--honey-light);
  background: rgba(212,162,51,0.08);
}

.btn-dark {
  background: var(--bark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--honey-deep);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--bark);
  border: 2px solid var(--bark);
}
.btn-outline:hover {
  background: var(--bark);
  color: var(--cream);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--bark);
  color: var(--honey-glow);
  padding: 8px 0;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--honey-light);
  transition: color 0.3s;
}
.top-bar a:hover { color: var(--honey-gold); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: rgba(255,253,249,0.95);
  border-bottom: 1px solid rgba(212,162,51,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.site-logo img,
.site-logo svg {
  width: 52px;
  height: 52px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--bark);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--honey-deep);
  font-weight: 600;
  margin-top: 2px;
}

/* Main navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a,
.main-nav .menu-item a {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--honey-deep);
  background: var(--honey-glow);
}

/* Cart button in nav */
.nav-cart {
  background: var(--honey-gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(212,162,51,0.3);
  margin-left: 8px;
}
.nav-cart:hover {
  background: var(--honey-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,162,51,0.4) !important;
}
.cart-count {
  background: var(--bark);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(61,43,31,0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--cream);
  font-size: 20px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.mobile-nav a:hover {
  color: var(--honey-gold);
  background: rgba(212,162,51,0.1);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--cream);
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bark) 0%, #4A3425 40%, var(--bark-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,162,51,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107,127,59,0.1) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-left { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,162,51,0.15);
  border: 1px solid rgba(212,162,51,0.25);
  color: var(--honey-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: #6BCB77;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero p {
  font-size: 18px;
  color: rgba(253,248,239,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrapper {
  position: relative;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212,162,51,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.hero-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: rgba(255,253,249,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card.card-1 {
  bottom: 40px; left: -40px;
  display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-2 {
  top: 40px; right: -30px;
  text-align: center;
}
.float-card-icon {
  width: 44px; height: 44px;
  background: var(--honey-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.float-card-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}
.float-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--bark);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}
.trust-icon {
  width: 40px; height: 40px;
  background: var(--honey-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================
   PRODUCT CARDS (WooCommerce overrides)
   ============================================ */
ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.products li.product {
  flex: 0 0 calc(33.333% - 19px);
  max-width: calc(33.333% - 19px);
}

.product-card,
ul.products li.product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(212,162,51,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover,
ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,162,51,0.25);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--forest);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.sold-out { background: var(--danger); }
.product-badge.new { background: var(--honey-deep); }

.product-image,
ul.products li.product a img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--honey-glow), var(--cream-dark));
}

.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--honey-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.product-name,
ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.product-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.product-price,
ul.products li.product .price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--bark);
}
.product-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   WHY / FEATURES SECTION
   ============================================ */
.section-dark {
  background: var(--bark);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(107,127,59,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(212,162,51,0.1) 0%, transparent 40%);
}
.section-dark .section-eyebrow { color: var(--honey-light); }
.section-dark .section-title { color: var(--cream); }
.section-dark .section-subtitle { color: rgba(253,248,239,0.6); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255,253,249,0.04);
  border: 1px solid rgba(212,162,51,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
}
.feature-card:hover {
  background: rgba(255,253,249,0.08);
  border-color: rgba(212,162,51,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--honey-deep), var(--honey-gold));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(212,162,51,0.25);
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(253,248,239,0.55);
  line-height: 1.65;
}

/* ============================================
   SEASON / CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 50%, var(--moss) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(44,74,46,0.25);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,162,51,0.12) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: white;
  font-size: clamp(28px, 3vw, 38px);
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.season-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.season-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all 0.3s;
}
.season-step:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(212,162,51,0.3);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--honey-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 18px;
  color: var(--bark);
  flex-shrink: 0;
}
.step-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  color: white;
}
.step-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(212,162,51,0.25);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--honey-gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--honey-glow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--honey-deep);
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--bark);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(212,162,51,0.2); }
.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--bark);
  transition: color 0.3s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: var(--honey-deep); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--honey-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--honey-deep);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--honey-gold);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bark);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253,248,239,0.08);
}
.footer-brand .site-logo { margin-bottom: 4px; }
.footer-brand .logo-name { color: var(--cream); font-size: 18px; }
.footer-brand p {
  font-size: 14px;
  color: rgba(253,248,239,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700;
  color: var(--honey-light);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(253,248,239,0.45);
  padding: 6px 0;
  transition: all 0.3s;
}
.footer-col a:hover {
  color: var(--honey-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(253,248,239,0.3);
}
.footer-bottom a {
  color: rgba(253,248,239,0.4);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--honey-gold); }
.footer-legal { display: flex; gap: 20px; }

.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(253,248,239,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
}
.footer-social-link:hover {
  border-color: var(--honey-gold);
  background: rgba(212,162,51,0.1);
}
.footer-social-link svg {
  width: 18px; height: 18px;
  fill: rgba(253,248,239,0.5);
}
.footer-social-link:hover svg { fill: var(--honey-gold); }

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */

/* Single product */
.single-product .product {
  padding: var(--space-4xl) 0;
}
.single-product .product .images {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.single-product .product .summary {
  padding-left: 40px;
}
.single-product .product .product_title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--bark);
  margin-bottom: 16px;
}
.single-product .product .price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--honey-deep);
  margin-bottom: 24px;
}
.single-product .product .woocommerce-product-details__short-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Add to cart button */
.single_add_to_cart_button,
ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--honey-gold) !important;
  color: var(--bark) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  transition: all 0.4s var(--ease-out) !important;
  box-shadow: 0 8px 24px rgba(212,162,51,0.3) !important;
  cursor: pointer;
}
.single_add_to_cart_button:hover,
ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--honey-deep) !important;
  color: var(--cream) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(212,162,51,0.4) !important;
}

/* Alt button */
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--bark) !important;
  color: var(--cream) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--honey-deep) !important;
}

/* Quantity input */
.woocommerce .quantity .qty {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  width: 80px;
  text-align: center;
  transition: border-color 0.3s;
}
.woocommerce .quantity .qty:focus {
  border-color: var(--honey-gold);
  outline: none;
}

/* Cart page */
.woocommerce-cart table.shop_table {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.woocommerce-cart table.shop_table th {
  background: var(--bark);
  color: var(--cream);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  border: none;
}
.woocommerce-cart table.shop_table td {
  padding: 20px;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: middle;
}

/* Bouton Valider la commande (WooCommerce Blocks) */
.wp-element-button.wc-block-cart__submit-button {
  background-color: var(--honey-gold) !important;
  color: var(--bark) !important;
  border-radius: var(--radius-full) !important;
  padding: 18px 36px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 32px rgba(212,162,51,0.35) !important;
  width: 100% !important;
  transition: all 0.4s var(--ease-out) !important;
  border: none !important;
  letter-spacing: 0.03em !important;
}
.wp-element-button.wc-block-cart__submit-button:hover {
  background-color: var(--honey-light) !important;
  color: var(--bark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 40px rgba(212,162,51,0.45) !important;
}

/* Checkout */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.3s;
  width: 100%;
  background: var(--white);
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
  border-color: var(--honey-gold);
  outline: none;
}
.woocommerce-checkout label {
  font-weight: 600;
  font-size: 14px;
  color: var(--bark);
  margin-bottom: 6px;
  display: block;
}

/* Messages */
.woocommerce-message,
.woocommerce-info {
  background: var(--honey-glow) !important;
  border-color: var(--honey-gold) !important;
  color: var(--bark) !important;
  border-radius: var(--radius) !important;
  padding: 16px 24px !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--honey-deep) !important;
}
.woocommerce-error {
  background: #FDE8E8 !important;
  border-color: var(--danger) !important;
  border-radius: var(--radius) !important;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}
.woocommerce-breadcrumb a {
  color: var(--honey-deep);
}

/* Tabs */
.woocommerce-tabs .tabs {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--cream-dark);
}
.woocommerce-tabs .tabs li a {
  display: block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s;
}
.woocommerce-tabs .tabs li.active a {
  color: var(--honey-deep);
  border-bottom-color: var(--honey-gold);
}

/* Star rating */
.star-rating {
  color: var(--honey-gold);
}

/* Onsale badge */
.woocommerce span.onsale {
  background: var(--honey-deep) !important;
  color: var(--cream) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  min-width: auto !important;
  min-height: auto !important;
  line-height: 1.4 !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--white);
  color: var(--bark);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 600;
  transition: all 0.3s;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--honey-gold);
  border-color: var(--honey-gold);
  color: var(--bark);
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.wp-block-image img { border-radius: var(--radius); }

.entry-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text);
}
.entry-content h2 { margin: 48px 0 24px; }
.entry-content h3 { margin: 36px 0 16px; }
.entry-content ul,
.entry-content ol {
  margin: 0 0 24px 24px;
}
.entry-content a {
  color: var(--honey-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--bark); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s var(--ease-out);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-left { max-width: 100%; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-right { display: none; }
  ul.products li.product { flex: 0 0 calc(50% - 14px); max-width: calc(50% - 14px); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 48px 36px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  ul.products li.product { flex: 0 0 100%; max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .hero { min-height: 70vh; }
  .hero-badge { font-size: 11px; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
  .cta-banner { padding: 36px 24px; }
  .section-padding { padding: 64px 0; }
}

@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .product-body { padding: 16px; }
  .testimonial-card { padding: 24px; }
}
