/** Shopify CDN: Minification failed

Line 426:0 Expected "}" to go with "{"

**/
/* assets/why-choose.css */
:root {
  --why-bg: #ffffff;
  --why-title: #1a5f3f;
  --why-text: #374151;
  --why-accent: #22c55e;
  --why-muted: #6b7280;
}

/* Section ultra-simple */
.why-choose-section {
  padding: 80px 20px;
  background: var(--why-bg);
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* En-tête simple */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--why-title);
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-subtitle {
  font-size: 18px;
  color: var(--why-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout avec image et contenu - PROPORTIONS AJUSTÉES */
.why-content-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Image à gauche */
.why-image-wrapper {
  position: relative;
}

.why-feature-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(26, 95, 63, 0.15);
  transition: all 0.3s ease;
}

.why-feature-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 95, 63, 0.2);
}

.why-image-placeholder {
  width: 100%;
  height: 280px;
  background: #f3f4f6;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b7280;
  border: 2px dashed #d1d5db;
}

.why-image-placeholder span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-image-placeholder small {
  font-size: 14px;
  opacity: 0.8;
  max-width: 250px;
  line-height: 1.4;
}

/* Liste fluide dans un encadré arrondi - à droite */
.benefits-list {
  background: #f8faf9;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.2s ease;
}

.benefit-row:hover {
  padding-left: 12px;
  border-bottom-color: var(--why-accent);
}

.benefit-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Icône simple */
.benefit-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contenu fluide */
.benefit-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: var(--why-text);
}

.benefit-content strong {
  color: var(--why-title);
  font-weight: 600;
}

/* Stats en ligne */
.stats-inline {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* ========================================
   ANIMATIONS ET MICRO-INTERACTIONS MOBILE
======================================== */

/* Animation d'entrée subtile */
.why-choose-section.mobile-optimized {
  opacity: 0;
  animation: fadeInSection 0.6s ease-out forwards;
}

.why-choose-section.mobile-optimized.in-view {
  opacity: 1;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Effet de tap subtil sur mobile */
@media (max-width: 768px) {
  .benefit-row {
    -webkit-tap-highlight-color: rgba(34, 197, 94, 0.1);
    tap-highlight-color: rgba(34, 197, 94, 0.1);
  }
  
  .benefit-row:active {
    background-color: rgba(248, 250, 249, 0.8);
    transform: scale(0.98);
    transition: all 0.1s ease;
  }
}

/* Amélioration du contraste et de la lisibilité sur mobile */
@media (max-width: 480px) {
  .benefit-content strong {
    font-weight: 700; /* Plus gras pour une meilleure lisibilité */
  }
  
  .benefit-content {
    color: #2d3748; /* Contraste légèrement amélioré */
  }
}

.stat-item {
  font-size: 14px;
  color: var(--why-muted);
  font-weight: 500;
}

.stat-item:not(:last-child)::after {
  content: '•';
  margin-left: 20px;
  opacity: 0.5;
}

/* ========================================
   RESPONSIVE MOBILE OPTIMISÉ
======================================== */

/* Tablette */
@media (max-width: 1024px) {
  .why-content-layout {
    grid-template-columns: 300px 1fr;
    gap: 60px;
  }
}

/* Mobile Large (768px et moins) */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 50px 20px; /* Réduit le padding vertical */
  }
  
  .why-header {
    margin-bottom: 40px; /* Réduit l'espace après le header */
  }
  
  .why-title {
    font-size: 28px; /* Plus compact */
    margin-bottom: 16px;
  }
  
  .why-subtitle {
    font-size: 16px;
  }
  
  /* Layout mobile compact unifié */
  .why-content-layout {
    display: block; /* Supprime la grille */
    margin-bottom: 40px;
  }
  
  /* Image compacte en haut */
  .why-image-wrapper {
    margin-bottom: 30px; /* Espace réduit entre image et liste */
    max-width: 280px; /* Limite la largeur pour éviter que ce soit trop grand */
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-feature-image {
    border-radius: 16px; /* Bordure légèrement plus petite */
  }
  
  .why-image-placeholder {
    height: 200px; /* Plus compact */
    border-radius: 16px;
  }
  
  /* Liste des avantages compacte */
  .benefits-list {
    padding: 24px 20px; /* Padding plus compact */
    border-radius: 16px;
    margin-top: 0; /* Assure qu'il n'y a pas d'espace supplémentaire */
  }
  
  .benefit-row {
    margin-bottom: 20px; /* Réduit l'espace entre les rangées */
    padding: 12px 0;
  }
  
  .benefit-content {
    font-size: 15px;
    line-height: 1.5; /* Ligne plus compacte */
  }
  
  /* Stats plus compactes */
  .stats-inline {
    padding: 24px 0 0 0; /* Réduit le padding vertical */
    gap: 24px;
    margin-top: 20px;
  }
}

/* Mobile Standard (480px et moins) */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 40px 16px; /* Encore plus compact */
  }
  
  .why-header {
    margin-bottom: 32px;
  }
  
  .why-title {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  
  .why-subtitle {
    font-size: 15px;
  }
  
  .why-content-layout {
    margin-bottom: 32px;
  }
  
  /* Image encore plus compacte */
  .why-image-wrapper {
    margin-bottom: 24px;
    max-width: 240px;
  }
  
  .why-image-placeholder {
    height: 180px;
  }
  
  .why-image-placeholder span {
    font-size: 16px;
  }
  
  .why-image-placeholder small {
    font-size: 13px;
  }
  
  /* Liste ultra-compacte */
  .benefits-list {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .benefit-row {
    margin-bottom: 16px;
    padding: 8px 0;
    gap: 12px;
  }
  
  .benefit-icon {
    font-size: 18px;
    margin-top: 1px;
  }
  
  .benefit-content {
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Stats en colonne pour très petit écran */
  .stats-inline {
  text-align: center;
  padding: 20px 0 0 0;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap; /* IMPORTANT: Empêche le retour à la ligne */
  margin-top: 20px;
}

.stat-item {
  font-size: 13px;
  color: var(--why-muted);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-item:not(:last-child)::after {
  content: '•';
  margin-left: 8px;
  margin-right: 8px;
  opacity: 0.5;
  font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .stats-inline {
    gap: 12px;
    padding: 16px 0 0 0;
  }
  
  .stat-item {
    font-size: 12px;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .stats-inline {
    gap: 8px;
    flex-wrap: nowrap !important;
  }
  
  .stat-item {
    font-size: 11px;
    font-weight: 700;
  }
  
  .stat-item:not(:last-child)::after {
    margin-left: 4px;
    margin-right: 4px;
    content: '·';
  }
}
