/* Global */
body {
  color: var(--puraroma-charcoal);
}

/* Hero + page headers */
.page-header {
  /*background: linear-gradient(135deg, var(--puraroma-deep-green) 0%, var(--puraroma-leaf-green) 100%);*/
  color: #fff;
  padding: 80px 0 50px;
  text-align: center;
}

/*.bg-contact {
    background: linear-gradient(135deg, var(--puraroma-gold) 0%, var(--puraroma-vanilla-brown) 100%) !important;
}*/

a.text-green-700 {
  color: #2f855a;
}
a.text-green-700:visited {
  color: #2f855a;
}


/* Product cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-image {
  height: 200px;
  overflow: hidden;
}
.zoom-on-hover {
  transform-origin: center center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .zoom-on-hover {
  transform: scale(1.1);
}
.bio-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--puraroma-leaf-green);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8rem;
}
.stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .8rem;
}
.category-badge {
  background: var(--puraroma-botanical-beige);
  color: var(--puraroma-clove-brown);
  border-radius: 15px;
  padding: 4px 10px;
  font-size: .8rem;
}
.product-price {
  color: var(--puraroma-gold);
  font-weight: 700;
}

/* Mission / pillar cards */
.mission-card, .pillar-card, .grade-card, .impact-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.mission-card:hover, .pillar-card:hover, .grade-card:hover, .impact-card:hover {
  transform: translateY(-5px);
}

/* Filter sidebar */
.filter-sidebar {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 20px;
}
.filter-title {
  color: var(--puraroma-leaf-green);
  font-weight: 600;
}

/* Contact */
.contact-info {
  background: var(--puraroma-botanical-beige);
  padding: 2rem;
  border-radius: 10px;
}
.contact-icon {
  width: 40px;
  text-align: center;
}
.social-link {
  color: var(--puraroma-gold);
  transition: color .3s ease;
}
.social-link:hover {
  color: var(--puraroma-deep-green);
}

/* Footer */
.footer-luxury {
  background: linear-gradient(135deg, var(--puraroma-clove-brown) 0%, var(--puraroma-vanilla-brown) 100%);
  color: #fff;
}
.footer-text { color: rgba(255,255,255,0.85); }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom: .4rem; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration:none; }
.footer-links a:hover { color: var(--puraroma-gold); }
.footer-contact { list-style:none; padding:0; margin:0; }
.footer-contact li { margin-bottom: .4rem; }
.footer-contact i { color: var(--puraroma-gold); margin-right: .4rem; }
.social-icons a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.15); color:#fff;
  margin-right:.4rem; transition: all .3s ease;
}
.social-icons a:hover {
  background: var(--puraroma-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .display-3 {
        font-size: 2.5rem;
    }
    
    .page-hero .display-4 {
        font-size: 2rem;
    }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
}


/* Animation */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease-out; }
.cert-icon {
  max-width: 80px;   /* taille max de l'icône */
  max-height: 80px;
  width: auto;
  height: auto;
}