/* ===== SECTION NOS PRODUITS ===== */
/* Fichier CSS réutilisable pour la section Nos Produits */

.nos-produits-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.nos-produits-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.nos-produits-section .section-title {
  text-align: left;
  margin-bottom: 50px;
}

/* ===== GRILLE DES PRODUITS ===== */
.nos-produits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.nos-produits-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== ITEMS PRODUITS ===== */
.nos-produits-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background-color: var(--color-blue-sky);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nos-produits-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(143, 191, 248, 0.3);
}

/* Variante de couleur pour autres pages */
.nos-produits-section--green .nos-produits-item {
  background-color: var(--color-green-pale);
}

.nos-produits-section--green .nos-produits-item:hover {
  box-shadow: 0 6px 25px rgba(209, 245, 225, 0.3);
}

/* Variante de couleur pour la page Mutuelle Santé */
.nos-produits-section--green-water .nos-produits-item {
  background-color: var(--color-green-water);
}

.nos-produits-section--green-water .nos-produits-item:hover {
  box-shadow: 0 6px 25px rgba(164, 225, 212, 0.3);
}

/* Variante de couleur pour la page Contrats d'Assurances */
.nos-produits-section--beige .nos-produits-item {
  background-color: var(--color-beige);
}

.nos-produits-section--beige .nos-produits-item:hover {
  box-shadow: 0 6px 25px rgba(243, 233, 219, 0.3);
}

/* Texte des produits */
.nos-produits-text {
  font-family: var(--font-avenir);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-blue);
  flex-grow: 1;
}

/* Flèche droite */
.nos-produits-arrow {
  color: var(--color-dark-blue);
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.nos-produits-item:hover .nos-produits-arrow {
  transform: translateX(3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .nos-produits-section {
    padding: 60px 0;
  }
  
  .nos-produits-section__container {
    padding: 0 30px;
  }
  
  .nos-produits-grid {
    gap: 30px;
  }
  
  .nos-produits-item {
    padding: 18px 22px;
  }
  
  .nos-produits-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .nos-produits-section {
    padding: 60px 0;
  }
  
  .nos-produits-section__container {
    padding: 0 20px;
  }
  
  .nos-produits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .nos-produits-column {
    gap: 15px;
  }
  
  .nos-produits-item {
    padding: 16px 20px;
  }
  
  .nos-produits-text {
    font-size: 15px;
  }
  
  .nos-produits-arrow {
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  .nos-produits-section {
    padding: 40px 0;
  }
  
  .nos-produits-section__container {
    padding: 0 15px;
  }
  
  .nos-produits-section .section-title {
    margin-bottom: 35px;
  }
  
  .nos-produits-grid {
    gap: 15px;
  }
  
  .nos-produits-column {
    gap: 12px;
  }
  
  .nos-produits-item {
    padding: 14px 18px;
  }
  
  .nos-produits-text {
    font-size: 14px;
  }
  
  .nos-produits-arrow {
    margin-left: 10px;
    width: 14px;
    height: 14px;
  }
}
