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

:root {
  --green-dark:   #2d5016;
  --green-mid:    #4a7c2f;
  --green-light:  #7ab648;
  --green-pale:   #f0f7e8;
  --brown:        #8b5e3c;
  --brown-light:  #f5efe8;
  --cream:        #faf8f4;
  --white:        #ffffff;
  --text-dark:    #1a2010;
  --text-mid:     #4a5a38;
  --text-light:   #7a8a68;
  --border:       #dde8cc;
  --shadow-sm:    0 2px 8px rgba(45,80,22,0.08);
  --shadow-md:    0 8px 30px rgba(45,80,22,0.12);
  --shadow-lg:    0 20px 60px rgba(45,80,22,0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   0.3s ease;
}

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.25; }

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-secondary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--text-dark); margin: 12px 0 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }
.section-header.light .section-label { color: var(--green-light); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--green-mid);
  margin-bottom: 8px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  transition: color var(--transition);
}
.logo-icon { font-size: 1.5rem; }
.logo-img { height: 52px; width: auto; display: block; }
.nav-logo-img { height: 44px; width: auto; display: none; }
@media (max-width: 768px) {
  .nav-logo-img { display: block; }
}
#navbar.scrolled .logo { color: var(--green-dark); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--green-mid); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}
#navbar.scrolled .nav-toggle { color: var(--green-dark); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26,58,10,0.75) 0%, rgba(45,80,22,0.70) 40%, rgba(61,107,32,0.65) 70%, rgba(74,124,47,0.60) 100%),
    url('../images/parc2.jpg') center/cover no-repeat;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(74,124,47,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(122,182,72,0.2) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 60px 24px 80px;
  max-width: 800px;
}

.hero-logo {
  width: 240px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-price {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.95rem;
  margin-bottom: 32px;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-price strong { color: var(--green-light); font-size: 1.1rem; }

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

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS ===== */
#stats {
  background: var(--green-dark);
  padding: 60px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT ===== */
#about { padding: 120px 0; background: var(--cream); }

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

.about-image {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-pale), #d4edaa);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}



.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  margin: 12px 0 24px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-values {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-values li {
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== PRODUCTS ===== */
#products {
  padding: 120px 0;
  background: var(--green-pale);
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.products-grid .product-card {
  width: calc((100% - 56px) / 3);
}


.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.product-card.featured {
  border: 2px solid var(--green-mid);
}

.product-badge-top {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 1;
}

.product-img {
  background: linear-gradient(135deg, var(--green-pale), #e8f5d4);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.product-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  border: 1px solid var(--green-mid);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.product-body h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 16px;
}

.product-details {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-allergens {
  font-size: 0.78rem;
  color: #b07d2a;
  background: #fdf6e3;
  border: 1px solid #f0d080;
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.product-price {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.product-price strong { color: var(--green-dark); font-size: 1.2rem; }

/* ===== PROCESS ===== */
#process {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.process-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.process-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
  padding-top: 60px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green-light);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-stars {
  color: #f5b940;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar { font-size: 2rem; }

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
#contact {
  padding: 120px 0;
  background: var(--brown-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin: 12px 0 20px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-mid);
  margin-bottom: 4px;
}
.contact-item span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* FORM */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a7c2f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background-color: var(--white);
}
.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232d5016' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success span { font-size: 3rem; display: block; margin-bottom: 16px; }
.form-success h3 { font-size: 1.6rem; color: var(--green-mid); margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { color: var(--white); margin-bottom: 20px; display: inline-block; }
.footer-logo-img { height: 80px; width: auto; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; }

.footer-links h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RECETTES ===== */
#recettes {
  padding: 120px 0;
  background: var(--brown-light);
}

.recettes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.recette-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.recette-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.recette-img {
  background: linear-gradient(135deg, #fef9f0, #fdedc8);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.recette-body { padding: 24px; }
.recette-body h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 10px; }
.recette-body p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }

.recette-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  background: var(--brown-light);
  border: 1px solid #e0c8b0;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== FAQ ===== */
#faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-pale); }
.faq-question.open { color: var(--green-dark); background: var(--green-pale); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }

/* ===== CARTE ===== */
#carte {
  padding: 120px 0;
  background: var(--green-pale);
}

.map-wrapper { position: relative; }
.map-cta { text-align: center; margin-top: 24px; }

/* ===== WIDGET FACEBOOK ===== */
.fb-widget {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.fb-widget h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.fb-fallback-btn {
  margin-top: 16px;
  display: inline-block;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border);
  padding: 10px 24px;
  font-size: 0.9rem;
}
.btn-outline-dark:hover {
  border-color: #1877f2;
  color: #1877f2;
}

/* ===== WHATSAPP FLOTTANT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-link {
  color: var(--green-mid);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== SAISONNALITE ===== */
#saison {
  padding: 120px 0;
  background: var(--green-pale);
}

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

.saison-months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.saison-month {
  border-radius: var(--radius-sm);
  padding: 12px 4px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.saison-month.active {
  background: var(--green-mid);
  color: white;
}
.saison-month.transition {
  background: #c8e0a0;
  color: var(--green-dark);
}
.saison-month.inactive {
  background: var(--border);
  color: var(--text-light);
}

.saison-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.active { background: var(--green-mid); }
.legend-dot.transition { background: #c8e0a0; }
.legend-dot.inactive { background: var(--border); }

.saison-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.saison-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.saison-card-icon { font-size: 2rem; flex-shrink: 0; }
.saison-card h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 6px; }
.saison-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.saison-note {
  margin-top: 48px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

/* ===== POINTS DE VENTE ===== */
#points-de-vente {
  padding: 120px 0;
  background: var(--text-dark);
}

#points-de-vente .section-header.light h2 { color: var(--white); }
#points-de-vente .section-header.light p { color: rgba(255,255,255,0.65); }
#points-de-vente .section-label { color: var(--green-light); }

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

.pdv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.pdv-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.pdv-icon { font-size: 3rem; margin-bottom: 16px; }
.pdv-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 12px; }
.pdv-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 20px; }

.pdv-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-light);
  background: rgba(122,182,72,0.15);
  border: 1px solid rgba(122,182,72,0.3);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pdv-link {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-light);
  transition: color var(--transition);
}
.pdv-link:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid .product-card { width: calc((100% - 28px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { flex-wrap: wrap; }
  .process-arrow { display: none; }
  .process-step { max-width: 45%; margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--green-dark);
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-toggle { display: block; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-number { font-size: 2rem; }
  .stat-item { padding: 16px 8px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; }

  .products-grid .product-card { width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-form-wrapper { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

  .process-step { max-width: 100%; }
}

@media (max-width: 768px) {
  .recettes-grid { grid-template-columns: 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  #about, #products, #process, #saison, #points-de-vente, #recettes, #faq, #carte, #contact { padding: 80px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-logo { width: 160px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-price { font-size: 0.85rem; padding: 6px 16px; white-space: normal; }
  .section-header { margin-bottom: 40px; }
  .contact-form-wrapper { padding: 24px 16px; }
  .saison-months { grid-template-columns: repeat(4, 1fr); }
  .footer-logo-img { height: 60px; }
  .testimonial-card { padding: 24px 20px; }
}

@media (max-width: 768px) {
  .saison-grid { grid-template-columns: 1fr; gap: 40px; }
  .pdv-grid { grid-template-columns: 1fr !important; }
}
