/* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
       --miel: #d4ac0d;
      --primary: #D4A574;
      --primary-dark: #B8835A;
      --primary-light: #E8C9A8;
      --secondary: #2C1810;
      --accent: #F4A460;
      --text-dark: #2C1810;
      --text-light: #6B5D54;
      --bg-light: #FFF8F0;
      --bg-white: #FFFFFF;
      --honey-red: #E27D60;
      --border: #E8DDD0;
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background-color: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===== ABEILLE CURSOR ===== */
    .abeille {
      font-size: 24px;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.1s ease;
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: var(--secondary);
    }

    .logo-icon {
      font-size: 32px;
    }

    .nav-desktop {
      display: flex;
      align-items: center;

      gap: 35px;
    }

    .nav-desktop a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 15px;
      position: relative;
      transition: color 0.3s ease;
      letter-spacing: 0.5px;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-desktop a:hover {
      color: var(--primary);
    }

    .nav-desktop a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .menu-toggle span {
      width: 25px;
      height: 2px;
      background: var(--secondary);
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 30px;
      flex-direction: column;
      gap: 5px;
      z-index: 999;
    }

    .mobile-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-size: 10px;
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }

    /* ===== HERO SECTION ===== */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--bg-light) 0%, #FFF5E6 100%);
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 10 L90 30 L90 70 L50 90 L10 70 L10 30 Z" fill="none" stroke="%23D4A574" stroke-width="0.5" opacity="0.1"/></svg>');
      background-size: 200px 200px;
      opacity: 0.3;
    }

    .hero-content {
      text-align: center;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
    }

    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(40px, 7vw, 80px);
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .title-line {
      display: block;
    }

    .hero-subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-light);
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 15px 35px;
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: white;
    }

    .scroll-indicator {
      position: absolute;
      
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, var(--primary), transparent);
      animation: scrollAnimation 2s ease-in-out infinite;
    }

    @keyframes scrollAnimation {
      0%, 100% { opacity: 0; transform: translateY(0); }
      50% { opacity: 1; transform: translateY(20px); }
    }

    /* ===== STATS BAR ===== */
   
.stats-bar {
  background: var(--secondary);
  color: white;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-container {
  width: 220px;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;

}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding:10px;
  border-radius: 15px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  width: 220px;
  height: 280px;
  position: absolute;
  top: 0;
  left: 0;
  
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.stat-container:hover .stat-card {
  opacity: 0;
  visibility: hidden;
}

.stat-container:hover .pile_entiere {
  display: block;
   
}

.stat-card i {
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.stat-card p {
  font-size: 0.9rem;
  opacity: 0.95;
  line-height: 1.3;
}

/* Piles (bouteilles de miel) */
.pile_entiere {
  display: none;
  height: 280px;
  width: 60px;
  margin: 0 auto;
  border: none;
}

.pile_chapeau {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 20px solid var(--primary-dark);
}

.pile {
  position: relative;
  width: 60px;
  height: 200px;
  border: 3px solid var(--primary-dark);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pile_pourcentage {
  width: 100%;
  height: var(--fill-height);
  background: linear-gradient(to top, var(--accent), var(--miel));
  transition: height 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 5px;
  color: white;
  font-weight: bold;
  font-size: 11px;
  line-height: 1.2;
  word-wrap: break-word;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

/* Responsive Stats */
@media (max-width: 768px) {
  .stats-bar {
    gap: 40px;
    padding: 40px 20px;
  }
  .logo-text {
    display: none;
  }
  .stat-container {
    width: 180px;
    height: 240px;
  }

  .stat-card {
    width: 180px;
    height: 240px;
    padding: 20px 15px;
  }

  .stat-card i {
    font-size: 2.5rem;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 0.8rem;
  }

  .pile_entiere {
    height: 240px;
    width: 50px;
  }

  .pile {
    width: 50px;
    height: 180px;
  }

  .pile_pourcentage {
    font-size: 10px;
  }
}
    

    /* ===== SECTIONS GÉNÉRALES ===== */
    section {
      padding: 80px 0;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-tag {
      display: inline-block;
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 30px;
      line-height: 1.3;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .section-header.center {
      text-align: center;
    }

    /* ===== NOTRE HISTOIRE ===== */
    .histoire {
     
     background: var(--bg-light);
    }

    .histoire-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .histoire-image .image-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
       background-image: url('../images/rucher.png');
        background-size: cover;
    background-position: center;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 48px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .histoire-image .image-placeholder p {
      font-size: 14px;
      margin-top: 15px;
      opacity: 0.8;
    }

    .histoire-text p {
      color: var(--text-light);
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.8;
    }

    .histoire-signature {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px solid var(--border);
    }

    .signature-text {
      font-style: italic;
      color: var(--text-light);
      font-size: 14px;
    }

    /* ===== PRODUITS ===== */
    .produits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .produit-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, var(--bg-light), var(--primary-light));
    }

    .produit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .produit-image {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%)
    }



    .produit-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--accent);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      z-index: 1000;
    }
    .add-to-cart,
    .order-icon {

        background-color: var(--primary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-right: 10px;
        text-decoration: none;
    }

    .add-to-cart:hover,
    .order-icon:hover {
        background-color: var(--secondary);
    }

    .produit-info {
      padding: 25px;
    }

    .produit-info h3 {
      font-family: var(--font-heading);
      font-size: 24px;
      color: var(--secondary);
      margin-bottom: 12px;
    }

    .produit-description {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .produit-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .produit-prix {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
    }

    .produit-volume {
      color: var(--text-light);
      font-size: 14px;
    }

    /* ===== ENGAGEMENTS ===== */
    .engagements {
      background: var(--bg-light);
    }

    .engagements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .engagement-card {
      background: white;
      padding: 40px 30px;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid var(--border);
    }

    .engagement-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .engagement-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: white;
    }

    .engagement-card h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .engagement-card p {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===== CERTIFICATIONS ===== */
    .certifications-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .certifications-list {
      list-style: none;
      margin-top: 30px;
    }

    .certifications-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text-light);
      font-size: 16px;
    }

    .certifications-list i {
      color: var(--primary);
      font-size: 20px;
    }

    .certifications-logos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .logo-placeholder {
      aspect-ratio: 1;
      background: white;
      border: 2px dashed var(--border);
      border-radius: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      font-size: 40px;
    }

    .logo-placeholder p {
      font-size: 12px;
      margin-top: 10px;
    }

    /* ===== TÉMOIGNAGES ===== */
    .temoignages {
      background: var(--bg-light);
    }

    .temoignages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .temoignage-card {
      background: white;
      padding: 35px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--border);
    }

    .stars {
      color: var(--accent);
      font-size: 20px;
      margin-bottom: 20px;
    }

    .temoignage-text {
      color: var(--text-light);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
      font-style: italic;
    }

    .temoignage-author {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .temoignage-author strong {
      color: var(--secondary);
      font-size: 16px;
    }

    .temoignage-author span {
      color: var(--text-light);
      font-size: 13px;
    }

    /* ===== CONTACT ===== */
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
    }

    .contact-details {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-item {
      display: flex;
      gap: 20px;
    }

    .contact-item i {
      width: 45px;
      height: 45px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      color: var(--secondary);
      margin-bottom: 5px;
      font-size: 14px;
    }

    .contact-item p {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.6;
    }

    .contact-form {
      background: var(--bg-light);
      padding: 40px;
      border-radius: 15px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      color: var(--secondary);
      font-size: 14px;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
      padding: 12px 15px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 15px;
      background: white;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    }

    .contact-form .btn {
      margin-top: 10px;
      width: 100%;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--secondary);
      color: white;
      padding: 60px 0 0;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .footer-section h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .footer-section p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-section ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: var(--primary);
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px 40px;
      text-align: center;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom a {
      color: var(--primary);
      text-decoration: none;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .histoire-content,
      .certifications-content,
      .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .nav-desktop {
        display: none;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .stats-bar {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        padding: 15px 20px;
      }
      
      .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
      }
      
      .stats-bar {
        padding: 40px 20px;
        gap: 30px;
      }
      
      .stat-number {
        font-size: 36px;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .produits-grid {
        grid-template-columns: 1fr;
      }
      
      .engagements-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }
      
      .btn {
        width: 100%;
      }
    }
/* Order Modal */
        .order-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .order-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .close-order {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--secondary);
        }

        .order-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }

        .order-total {
            font-size: 1.3rem;
            font-weight: bold;
            text-align: right;
            margin: 1rem 0;
            color: var(--primary);
        }

        .order-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .download-btn, .contact-btn {
           
            width: fit-content;
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .download-btn:hover, .contact-btn:hover {
            background: var(--honey-red);
        }


.modal-form {
            display: none;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid var(--honey-gold);
        }

        .modal-group {
            margin-bottom: 1rem;
        }

        .modal-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: var(--honey-dark);
        }

        .modal-group input, .modal-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .modal-group input:focus, .modal-group textarea:focus {
            outline: none;
            border-color: var(--honey-orange);
        }

        .modal-group textarea {
            height: 100px;
            resize: vertical;
        }


    