/* Landing sections intégrées à ecommerce */
:root {
  --primary-green: #2d8659;
  --primary-green-light: #4aab7f;
  --primary-green-dark: #1e5a3f;
  --accent-orange: #ff6b35;
  --accent-yellow: #ffd23f;
  --dark-bg: #0a0e27;
  --light-bg: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #2d8659 0%, #4aab7f 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
}

.landing-wrapper h1,
.landing-wrapper h2,
.landing-wrapper h3,
.landing-wrapper h4,
.landing-wrapper h5,
.landing-wrapper h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.landing-wrapper .hero-section {
  min-height: 70vh;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 60px;
  /* Permettre aux clics de passer à travers */
  pointer-events: none;
}

/* Réactiver les clics sur le contenu */
.landing-wrapper .hero-section .container {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

.landing-wrapper .hero-section .row,
.landing-wrapper .hero-section .col-lg-6 {
  position: relative;
  z-index: 5;
}

.landing-wrapper .hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-bg, none) center/cover;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.landing-wrapper .hero-content {
  position: relative;
  z-index: 10;
  color: white;
  pointer-events: auto;
}

.landing-wrapper .hero-content * {
  pointer-events: auto;
}

.landing-wrapper .hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.landing-wrapper .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.landing-wrapper .glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
}

.landing-wrapper .section-modern {
  padding: 90px 0;
  position: relative;
}

.landing-wrapper .section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-wrapper .about-section {
  background: #fff;
}

.landing-wrapper .about-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.landing-wrapper .about-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.landing-wrapper .about-card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.landing-wrapper .products-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.landing-wrapper .product-card {
  background: white;
  border-radius: 25px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.landing-wrapper .product-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.landing-wrapper .stats-section {
  background: var(--gradient-primary);
  color: white;
  padding: 70px 0;
}

.landing-wrapper .stat-card {
  text-align: center;
  padding: 1.5rem;
}

.landing-wrapper .stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.landing-wrapper .stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.landing-wrapper .hero-cta {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.landing-wrapper .btn-modern {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  background: var(--gradient-accent);
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.landing-wrapper .btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  color: white;
}

.landing-wrapper .btn-outline-modern {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid white;
  background: transparent;
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.landing-wrapper .btn-outline-modern:hover {
  background: white;
  color: var(--primary-green);
}

/* Cartes produits vedettes sur la landing */
.product-card-landing {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(45, 134, 89, 0.1);
}

.product-card-landing:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 134, 89, 0.15);
  border-color: rgba(45, 134, 89, 0.3);
}

.product-image-landing {
  width: 100%;
  height: 120px;
  object-fit: contain;
  /* Pas de fond - laisse la transparence du PNG */
  background: transparent !important;
}

.product-card-landing h6,
.product-name-landing {
  color: #2d8659;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Style élégant pour la provenance */
.product-provenance-landing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.08) 0%, rgba(74, 171, 127, 0.12) 100%);
  border-radius: 20px;
  margin-top: 6px;
  border: 1px solid rgba(45, 134, 89, 0.15);
  transition: all 0.3s ease;
}

.product-provenance-landing i {
  color: #2d8659;
  font-size: 0.7rem;
}

.product-card-landing:hover .product-provenance-landing {
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.12) 0%, rgba(74, 171, 127, 0.18) 100%);
  border-color: rgba(45, 134, 89, 0.25);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .landing-wrapper .hero-section {
    padding-top: 120px;
  }
  .landing-wrapper .hero-title {
    font-size: 2.4rem;
  }
  .landing-wrapper .section-title {
    font-size: 2.2rem;
  }
  
  .product-image-landing {
    height: 80px;
  }
  
  .product-card-landing h6,
  .product-name-landing {
    font-size: 0.85rem;
  }
  
  .product-provenance-landing {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
}
