#hero-espagne .search-gardient {
    background:linear-gradient(to bottom,#88763e,#574d3f);
}
    
    
.card.equal-height {
    height: 100%;
    overflow: hidden;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-img-top {
    object-fit: cover;
    height: 200px;
}

.row.g-4>div:nth-child(odd) .card {
    background-color: #fafafa;
}

.row.g-4>div:nth-child(even) .card {
    background-color: #f3f3f3;
}

#cmsArticlesCarousel .carousel-inner {
    min-height: 545px;
}

#cmsArticlesCarousel .carousel-item {
    min-height: 545px;
}

.carousel-item .col-md-4 {
    display: none;
}

.carousel-item .col-md-4:nth-child(1) {
    display: block;
}

@media (min-width: 768px) {
    .carousel-item .col-md-4 {
        display: block;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.7));
    }
}

.share-button__icon img {
    animation: pulse 2s infinite;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.team-avatar {
  object-fit: cover;
  filter: contrast(1.1) saturate(0.9) brightness(1.05);

}

.custom-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* Ratio 16:9 */
    /* Exemple pour plus haut, utiliser 75% pour 4:3 */
    /* padding-top: 75%; */
  }

  .custom-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .carousel-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
#category .carousel-item img {
    max-height: 300px;
  }


/* Conteneur de l'image produit */
.product__images .carousel-item picture,
.product__images .carousel-item img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 710px;   /* limite la hauteur */
  width: 100%;
}

/* L’image elle-même */
.product__images .carousel-item img {
  max-height: 710px;
  width: 100%;
  height: 710px;       /* on fixe la hauteur max */
  object-fit: cover;   /* recadrage sans déformation */
  object-position: center center; /* centré au milieu */
  border-radius: 0px;  /* optionnel : arrondir comme avant */
}