/**
 * BC Footer - Beauty Coiffure
 * Styles pour la newsletter personnalisée
 */

/* Éviter le scroll horizontal global */
body {
    overflow-x: hidden;
}

/* ===== CONTENEUR PRINCIPAL ===== */
.bc-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 20px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.bc-community-container {
    background: #FEF8F8;
    color: #111;
    padding: 10px 40px !important;
    margin: 20px auto;
    position: relative;
}

/* Forcer le fond à prendre toute la largeur même avec la classe container */
.bc-community-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #FEF8F8;
    z-index: -1;
}

.bc-community-container-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.bc-newsletter-container {
    flex: 2;
}

.bc-social-container {
    flex: 2;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bc-social-header {
    margin-bottom: 20px;
}

.bc-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bc-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.bc-social-icons a:hover {
    transform: translateY(-2px);
}


/* ===== EN-TÊTE ===== */
.bc-newsletter-title-container{
    margin-bottom: 50px;
}
.bc-corner-beauty {
    text-align: center;
    padding: 40px 0 20px 0;
    margin-bottom: 0;
}

.bc-reviews-title {
  text-align: center;
}

.bc-corner-beauty-title, .bc-reviews-title, .bc-brands-title {
    font-size: 20px;
    font-weight: 800;
    margin: 3rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

/* ===== SLIDER ===== */
.bc-slider-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 80px; /* Padding augmenté pour écarter les flèches */
}

.bc-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 5px;
}

.bc-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 2%;
    width: 100%;
}

.bc-slide {
    flex: 0 0 calc(20% - 1.6%); /* 5 slides par ligne avec gap */
    min-width: 0;
    text-align: center;
    position: relative;
}

.bc-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bc-slide-link:hover .bc-slide-title {
    color: #e71e62;
}

.bc-slide-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.bc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.bc-slide-link:hover .bc-slide-image-container img {
    transform: scale(1.10);
}

.bc-slide-title {
    margin-top: 12px;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.2;
}

/* Titres des slides clonées (span) : même marge haut/bas */
.bc-slider-container span.bc-slide-title {
  line-height: 2.6;
}

.bc-slider-prev {
    position: absolute;
    top: 45%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 0;
}

.bc-slider-next {
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 0;
}

.bc-slider-btn {
    background: none;
    color: #e71e62;
    border: none;
    width: clamp(35px, 4vw, 50px);
    height: clamp(35px, 4vw, 50px);
    border-radius: 50%;
    font-size: clamp(18px, 2.5vw, 30px);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-slider-btn:focus {
    outline: none;
}

.bc-slider-btn svg {
    width: clamp(18px, 2.5vw, 30px);
    height: clamp(18px, 2.5vw, 30px);
    stroke: currentColor;
    transition: all 0.3s ease;
}

/* Taille des flèches en mobile */
@media (max-width: 768px) {
    .bc-slider-btn {
        width: clamp(45px, 6vw, 60px);
        height: clamp(45px, 6vw, 60px);
        font-size: clamp(24px, 3.5vw, 35px);
    }

    .bc-slider-arrow {
        font-size: clamp(28px, 4vw, 40px);
    }
}

@media (max-width: 480px) {
    .bc-corner-beauty-title, .bc-reviews-title, .bc-brands-title, .products-section-title span {
        font-size: 18px !important;
        margin: 2rem 0 0.5rem 0 !important;
    }

    .bc-newsletter-title-container h2,
    .bc-newsletter-title-container .h2_bcfooter {
        font-size: 18px !important;
        margin: 0.5rem 0 !important;
    }

    .bc-slider-btn {
        width: clamp(50px, 7vw, 65px);
        height: clamp(50px, 7vw, 65px);
        font-size: clamp(28px, 4vw, 40px);
    }

    .bc-slider-btn svg {
        width: clamp(28px, 4vw, 40px);
        height: clamp(28px, 4vw, 40px);
    }
}


/* Styles pour les clones du slider infini */
.bc-slide.clone {
    opacity: 1;
}

.bc-newsletter-title-container h2,
.bc-newsletter-title-container .h2_bcfooter {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin: 10px 0;
}
.bc-newsletter-header {
    text-align: left;
    margin-bottom: 10px;
}

.bc-newsletter-title, .bc-social-title, .bc-blog-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.bc-newsletter-subtitle-small {
    font-size: 14px;
    margin-bottom: 10px;
    color: #111;
    opacity: 0.95;
}

.bc-newsletter-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
    color: #111;
}

/* ===== FORMULAIRE ===== */
.bc-newsletter-form-wrapper {
    margin-bottom: 25px;
}

.bc-newsletter-form {
    width: 100%;
    display: flex;
}

.bc-newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    /* max-width: 60%; */
    width: 100%;
}

.bc-newsletter-input-wrapper {
    flex: 2;
    position: relative;
}

.bc-newsletter-input {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #838383;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}


/* ===== BOUTON ===== */
.bc-newsletter-btn {
    padding: 10px 30px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.bc-newsletter-btn-text {
    text-transform: uppercase;
}

/* ===== REVIEWS ===== */
.bc-reviews-container{
    max-width: 62%;
    margin-top: 30px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.bc-reviews-summary {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.bc-star-average {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

/* Tailles alternatives pour les étoiles */
.bc-star-ratings-sprite.--small {
    height: 12px;
    width: 60px;
}

.bc-star-ratings-sprite.--small .bc-star-ratings-sprite-rating {
    height: 12px;
}

.bc-star-ratings-sprite.--large {
    height: 20px;
    width: 100px;
}

.bc-star-ratings-sprite.--large .bc-star-ratings-sprite-rating {
    height: 20px;
}

/* Conteneur pour les étoiles avec compteur */
.bc-star-rating-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bc-star-review-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Styles pour différents contextes d'utilisation */
.bc-star-rating-container.--center {
    justify-content: center;
}

.bc-star-rating-container.--large .bc-star-review-count {
    font-size: 16px;
}

.bc-star-rating-container.--small .bc-star-review-count {
    font-size: 12px;
}

.skeepers_carousel_container{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#nr-average-stars{
    display: none !important;
}

.rating__value-fact{
    font-size: 40px !important;
}

.rating__value-numeric {
    font-size: 25px !important;
}

.rating__value-numeric .skeepers-separator{
    font-size: 25px !important;
}

.skeepers_carousel_container .carousel__navigation, #skeepers_carousel_modal .carousel__navigation{
    display: none !important;
}

.carousel-content.card-quadruple{
    border-radius: 12px !important;
    border: 1px solid #929292 !important;
}

.review__rating{
    color: #e71e62 !important;
}

.skeepers_carousel_container .stars{
    align-items: center !important;
}

/* Masquer les étoiles Skeepers SVG dès le chargement pour éviter le flash */
.skeepers_carousel_container .stars .stars__item,
.skeepers-w25 .stars .stars__item,
.carousel-content .stars .stars__item {
    display: none !important;
}

/* Afficher les étoiles une fois qu'elles sont remplacées par le JavaScript */
.skeepers_carousel_container .stars[data-bc-replaced="true"] .stars__item,
.skeepers-w25 .stars[data-bc-replaced="true"] .stars__item,
.carousel-content .stars[data-bc-replaced="true"] .stars__item {
    opacity: 1 !important;
}
.slide-arrow:focus{
    outline: none !important;
}

.carousel-content{
    min-height: 190px !important;
}

.skeepers_carousel_container:not(.extended-wrapper) .rating__value, #skeepers_carousel_modal:not(.extended-wrapper) .rating__value{
    min-width: 300px !important;
}

.skeepers_carousel_container #show_informations_tooltip_carousel{
    top: 0 !important;
}



/* ===== RESPONSIVE POUR LES AVIS SKEEPERS ===== */
@media (max-width: 1500px) {
    .bc-reviews-container{
        max-width: 70% !important;
    }
    .skeepers_carousel_container:not(.extended-wrapper) .rating__value, #skeepers_carousel_modal:not(.extended-wrapper) .rating__value{
        min-width: 180px !important;
    }
}

@media (max-width: 1280px) {
    .bc-reviews-container{
        max-width: 85% !important;
    }
}

@media (max-width: 992px) {
    .carousel-content{
        min-height: 170px !important;
    }

    .rating__details{
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .skeepers_carousel_container{
        padding: 0 15px !important;
    }

    .carousel-content{
        min-height: 150px !important;
        max-width: 100% !important;
    }

}

@media (max-width: 576px) {

    .carousel-content{
        min-height: 130px !important;
        padding: 12px !important;
    }

    /* Ajuster la taille du texte sur mobile */
    .carousel-content .skeepers-content {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    .carousel-content .skeepers-reviewer-wide {
        font-size: 11px !important;
    }

    .rating__details__information{
        width: 150px !important;
    }

    .skeepers_carousel_container .tooltip-modern{
        display: none !important;
    }
}

@media (max-width: 526px) {
    .skeepers_carousel_container {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        overflow: visible !important;
    }

    .skeepers_carousel_container .rating__value {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        justify-content: center !important;
    }

    .skeepers_carousel_container .carousel-container,
    .skeepers_carousel_container .skeepers-swiper {
        width: 100% !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .skeepers_carousel_container .skeepers-swiper {
        width: calc(100% - 72px) !important;
        margin: 0 auto;
    }

    .skeepers_carousel_container .carousel-container {
        position: relative;
        overflow: visible !important;
    }

    .skeepers_carousel_container .carousel-container .slide-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 26px !important;
        height: 26px !important;
        background: #fff;
        color: #e71e62 !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 5;
    }

    .skeepers_carousel_container .carousel-container .slide-arrow--prev {
        left: 8px;
    }

    .skeepers_carousel_container .carousel-container .slide-arrow--next {
        right: 8px;
    }

    .skeepers_carousel_container .carousel-container .slide-arrow.disabled {
        opacity: 0.35 !important;
    }

    .skeepers_carousel_container .carousel-container .slide-arrow:before {
        font-size: 22px !important;
        line-height: 1 !important;
    }

    .skeepers_carousel_container .swiper-wrapper,
    .skeepers_carousel_container .swiper-slide,
    .skeepers_carousel_container .skeepers-w25,
    .skeepers_carousel_container .carousel-content {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

    .skeepers_carousel_container .swiper-wrapper {
      margin-left: -6px !important; /* Ajuster pour compenser la largeur des flèches */
    }

    .skeepers_carousel_container .carousel-content {
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .skeepers_carousel_container{
        padding: 0 10px !important;
    }

    .carousel-content{
        min-height: 120px !important;
        padding: 10px !important;
    }

   .bc-reviews-container-wrapper {
     padding-bottom: 10px;
   }
}

/* ===== BLOC DE RÉASSURANCE ===== */
.bc-reassurance-container {
    background: #FEF8F8;
    padding: 30px 0;
    margin: 40px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.bc-reassurance-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.bc-reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bc-reassurance-item:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.bc-reassurance-item:hover .bc-reassurance-title {
    color: #e71e62;
}

.bc-reassurance-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e71e62;
}

.bc-reassurance-icon svg {
    width: 40px;
    height: 40px;
}

.bc-reassurance-content {
    flex: 1;
}

.bc-reassurance-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.bc-reassurance-text {
    font-size: 12px;
    color: #111;
    margin: 10px 0 0 0;
    line-height: 1.3;
}

/* Responsive pour le bloc de réassurance */
@media (max-width: 992px) {
    .bc-reassurance-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .bc-reassurance-item {
        flex: 0 0 calc(50% - 12.5px);
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .bc-reassurance-container {
        padding: 30px 0;
    }

    .bc-reassurance-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 0 15px;
    }

    .bc-reassurance-item {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        max-width: none;
    }

    .bc-reassurance-icon {
        width: 40px;
        height: 40px;
    }

    .bc-reassurance-icon svg {
        width: 30px;
        height: 30px;
    }

    .bc-reassurance-title {
        font-size: 14px;
    }

    .bc-reassurance-text {
        font-size: 11px;
    }
}

/* ===== FOOTER LINKS ===== */
.bc-footer-links {
    padding: 0 0 20px 0;
}

.bc-footer-btn{
    background: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bc-footer-btn a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1 !important;
}

.bc-footer-btn:hover{
    background: #e71e62;
}

.bc-footer-btn a:hover{
    color: #fff !important;
}

.bc-footer-links-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.bc-footer-column {
    display: flex;
    flex-direction: column;
}

.bc-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.bc-footer-title::after {
    content: '';
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.bc-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.bc-footer-list li {
    color: #111;
    margin-bottom: 8px;
    font-size: 14px;
}

.bc-footer-list li:last-child {
    margin-bottom: 0;
}

.bc-footer-list a {
    /* color: #666; */
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.bc-footer-list a:hover {
    color: #e71e62;
    text-decoration: none;
}

.bc-footer-list strong {
    color: #111;
    font-weight: 600;
}

.bc-footer-mobile-only {
    display: none;
}

/* Mobile Accordion Style */
@media (max-width: 768px) {
    .bc-footer-links-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 15px;
    }

    .bc-footer-column {
        border-bottom: 1px solid #FEF8F8;
    }

    .bc-footer-column:last-child {
        border-bottom: none;
    }

    .bc-footer-title {
        padding: 20px 0;
        margin: 0 20px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: left !important;
    }

    .bc-footer-title::after {
        display: block;
    }

    .bc-footer-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        align-items: flex-start;
    }

    .bc-footer-column.active .bc-footer-content {
        max-height: 500px;
        padding-bottom: 20px;

    }

    .bc-footer-list{
       text-align: left;
    }

    .bc-footer-column.active .bc-footer-title::after {
        transform: translateY(-50%) rotate(-135deg);
        border-right-color: #111;
        border-bottom-color: #111;
        /* right: 40px; */
    }

    .bc-footer-column.active .bc-footer-title {
        position: relative;
        padding: 20px 0;
    }

    .bc-footer-column.active .bc-footer-title::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        right: 50%;
        bottom: 0;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #FEF8F8;
        z-index: -1;
    }

    .bc-footer-mobile-only {
        display: flex;
    }

    .bc-footer-list li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .bc-footer-list a {
        font-size: 14px;

    }
    .bc-footer-list{
        margin: 0 20px;
    }
}

/* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) and (min-width: 993px) {
      .bc-slide {
          flex: 0 0 calc(25% - 1.5%); /* 4 slides par ligne */
      }
  }

  @media (max-width: 992px) and (min-width: 481px) {
      .bc-slider-container {
          padding: 0 70px;
      }

      .bc-slide {
          flex: 0 0 calc(33.333% - 1.33%); /* 3 slides par ligne */
      }

      .bc-slide-title {
          margin-top: 8px;
          font-size: clamp(11px, 1.3vw, 15px);
      }

      .bc-slider-prev {
          left: 5px;
      }

      .bc-slider-next {
          right: 5px;
      }

      .bc-community-container-wrapper {
        flex-direction: column;
        gap: 10px;
    }

  }

  @media (max-width: 480px) {
      .bc-slider-container {
          padding: 0 60px;
          width: 100vw;
          position: relative;
          left: 50%;
          right: 50%;
          margin-left: -50vw;
          margin-right: -50vw;
      }

      .bc-slide {
          flex: 0 0 calc(50% - 1%); /* 2 slides par ligne */
      }

      .bc-slider-track {
          gap: 2%;
      }

      .bc-slide-title {
          margin-top: 8px;
          font-size: clamp(9px, 1vw, 14px);
      }

      .bc-slider-prev {
          left: 5px;
      }

      .bc-slider-next {
          right: 5px;
      }
      .bc-community-container{
        padding: 10px 0 !important;
      }
      .bc-community-container-wrapper {
          flex-direction: column;
          gap: 10px;
      }

      .bc-newsletter-container,
      .bc-social-container {
          flex: 1;
          width: 100%;
      }

      .bc-social-container-wrapper{
        width: 100%;
      }

      .bc-social-icons {
          justify-content: space-between;
          gap: 30px;
      }


      .bc-newsletter-btn {
          flex: 1;
          width: 100%;
          justify-content: center;
      }

      .bc-social-container{
        flex-direction: row;
        align-items: center;
       }
    }

  /* ===== MESSAGES ===== */
  .bc-newsletter-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.bc-newsletter-success {
    background: rgba(40, 167, 69, 0.2);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.bc-newsletter-error {
    background: rgba(220, 53, 69, 0.2);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ===== RGPD / CONDITIONS ===== */
.bc-newsletter-gdpr {
    margin-top: 15px;
}

.bc-newsletter-gdpr-text,
.bc-newsletter-conditions {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

/* ===== SECTION BÉNÉFICES ===== */
.bc-newsletter-benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.bc-newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.bc-newsletter-benefit-icon {
    font-size: 18px;
}

.bc-newsletter-benefit-text {
    font-weight: 500;
}


.bc-blog-container{
    margin-top: 30px;
    margin-bottom: 10px;
}

.bc-blog-container-wrapper{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-blog-text-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.bc-blog-subtitle{
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.4;
    color: #111;
}

.bc-blog-link{
    padding: 10px 20px;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
}

.bc-blog-link:hover, .bc-newsletter-btn:hover{
    background: #e71e62;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bc-newsletter-custom {
        padding: 30px 20px;
        margin: 15px;
        border-radius: 8px;
    }

    .bc-newsletter-subtitle-small {
        font-size: 18px;
    }

    .bc-newsletter-subtitle {
        font-size: 14px;
    }

    .bc-newsletter-btn {
        padding: 5px 10px ;
        width: 100%;
        justify-content: center;
    }

    .bc-newsletter-benefits {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .bc-newsletter-benefit {
        justify-content: center;
    }

    .bc-newsletter-input {
        width: 280px;
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .bc-newsletter-title-container{
        margin-bottom: 20px;
    }

    /* Blog Content Responsive - Mobile */
    .bc-blog-content {
       display: flex !important;
       flex-direction: column;
       justify-content: center;
       gap: 30px !important;
    }

    .bc-blog-carousel-container {
        padding: 0 15px;
    }

    .bc-blog-carousel-track {
        width: 260px !important;
    }

    .bc-blog-slide {
        width: 100% !important;
    }

    .bc-blog-slide-image {
        height: 120px !important;
    }

    .bc-blog-slide-title {
        font-size: 13px;
        line-height: 1.2;
    }

    .bc-blog-slide-date {
        font-size: 10px;
        margin-bottom: 8px;
    }



    .bc-newsletter-custom {
        padding: 25px 15px;
        margin: 10px;
    }

    .bc-newsletter-title, .bc-social-title, .bc-blog-title {
        font-size: 14px;
    }

    .bc-newsletter-subtitle-small {
        font-size: 14px;
    }

    .bc-newsletter-input {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }

    .bc-newsletter-btn {
        font-size: 14px;
    }

    .skeepers_carousel_container, #skeepers_carousel_modal{
        margin-bottom: 0 !important;
    }

    .bc-reassurance-container{
        margin-top: -10px !important;
    }
}

/* ===== BRANDS SLIDER ===== */
.bc-brands {
    /* max-width: 1200px; */
    margin: 0 auto 30px auto;
    text-align: center;
}

@media (max-width: 1250px) and (min-width: 1025px) {
    .bc-blog-carousel-track {
        width: 420px !important;
    }

    .bc-blog-slide {
        width: 200px !important;
    }
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .bc-blog-carousel-container{
        padding: 0 !important;
    }

    .bc-blog-carousel-prev{
        left: -5% !important;
    }
    .bc-blog-carousel-next{
        right: -5% !important;
    }
    .bc-blog-content {
        grid-template-columns: 1fr !important;
        align-items: flex-start !important;
    }

    .bc-blog-carousel-track {
        width: 580px !important;
    }

    .bc-blog-slide {
        width: 280px !important;
    }

    .bc-blog-slide-image {
        height: 160px !important;
    }

}

/* ===== MEDIUM TABLET RESPONSIVE ===== */
@media (max-width: 768px) and (min-width: 481px) {
    .bc-blog-carousel-section{
        width: 100%;
    }
    .bc-blog-content {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start !important;
    }
    .bc-blog-carousel-container {
        padding: 0 25px;
    }

    .bc-blog-carousel-track{
        width: 500px !important;
    }

    .bc-blog-slide {
        width: 240px !important;
    }

    .bc-blog-slide-image {
        height: 130px !important;
    }

    .bc-blog-slide-content {
        padding: 12px;
    }

    .bc-blog-slide-title {
        font-size: 13px;
    }

    .bc-blog-slide-date {
        font-size: 10px;
    }

    .bc-blog-carousel-btn {
        width: 32px;
        height: 32px;
    }

    .bc-blog-carousel-btn svg {
        width: 15px;
        height: 15px;
    }

    .bc-blog-carousel-container {
        padding: 0 20px;
    }

}

/* ===== BLOG CONTENT ===== */
.bc-blog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== BLOG CAROUSEL ===== */
.bc-blog-carousel-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.bc-blog-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin: 0 20px;
}

.bc-blog-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    width: 820px;
}

.bc-blog-slide {
    width: 400px;
    background: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.bc-blog-slide-image {
    width: 100%;
    height: 210px;
    border-radius: 14px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.bc-blog-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.bc-blog-slide:hover .bc-blog-slide-image img {
    transform: scale(1.05);
}

.bc-blog-slide-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-size: 48px;
    color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
}

/* Gestion des erreurs d'images */
.bc-blog-slide-image img[src=""],
.bc-blog-slide-image img:not([src]) {
    display: none;
}

.bc-blog-slide-image img[src=""] + .bc-blog-slide-fallback,
.bc-blog-slide-image img:not([src]) + .bc-blog-slide-fallback {
    display: flex;
}

.bc-blog-slide-content {
    text-align: center;
    padding: 10px 20px;
}

.bc-blog-slide-title {
    font-size: 14px;
    color: #838383;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
}

.bc-blog-slide:hover .bc-blog-slide-title {
    color: #e71e62;
    font-weight: 700;
}

.bc-blog-slide-date {
    font-size: 10px;
    color: #666;
}



.bc-blog-carousel-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    color: #e71e62;
}

.bc-blog-carousel-btn:hover {
    color: #e71e62;
}

.bc-blog-carousel-btn:focus {
    outline: none;
}

.bc-blog-carousel-prev {
    left: 0;
}

.bc-blog-carousel-next {
    right: 0;
}

.bc-blog-carousel-btn svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.bc-brands-slider-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.bc-brands-slider-wrapper {

    margin: 0 auto;
    overflow: hidden;
}

.bc-brands-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 15px;
}

/* Animation de défilement continu pour les marques */
.bc-brands-slider-track.auto-scroll {
    transition: none !important;
}

.bc-brands-slide {
    min-width: 200px;
    text-align: center;
    position: relative;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-brands-slide-image-container {
    width: 200px;
    height: 80px; /* Plus petit que les slides produits */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.bc-brands-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.bc-brands-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Styles pour les liens des slides de marque */
.bc-brands-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.bc-brands-slide-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Brands Slider Navigation Buttons */
.bc-brands-slider-prev {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 1;
}

.bc-brands-slider-next {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1;
}

.bc-brands-slider-btn {
    display: none !important;
    background: none;
    color: #e71e62;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-brands-slider-btn:focus {
    outline: none;
}

.bc-brands-slider-btn svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

/* Responsive for Brands Slider */
/* @media (max-width: 1200px) and (min-width: 993px) {
    .bc-brands-slider-wrapper {
        width: 890px;
    }
} */

@media (max-width: 992px) and (min-width: 481px) {
    .bc-brands-slider-container {
        padding: 0 20px;
    }
    /* .bc-brands-slider-wrapper {
        width: 460px;
    } */
    .bc-brands-slide {
        min-width: 200px;
        width: 200px;
    }
    .bc-brands-slide-image-container {
        width: 200px;
        height: 80px;
    }
    .bc-brands-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 25px;
    }
    .bc-brands-slider-btn svg {
        width: 25px;
        height: 25px;
    }
    .bc-brands-slider-prev {
        left: 15px;
    }
    .bc-brands-slider-next {
        right: 15px;
    }
}

@media (max-width: 480px) {

    .bc-blog-carousel-btn{
        top: 35%;
    }
    .bc-brands-slider-container {
        padding: 0 15px;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .bc-brands-slide {
        min-width: 150px;
        width: 150px;
    }

    .bc-brands-slider-track {
        gap: 15px;
    }
    .bc-brands-slide-image-container {
        width: 150px;
        height: 80px;
    }
    .bc-brands-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .bc-brands-slider-btn svg {
        width: 40px;
        height: 40px;
    }
    .bc-brands-slider-prev {
        left: 0;
    }
    .bc-brands-slider-next {
        right: 0;
    }
}

/* Styles spécifiques pour iPad - Masquer SVG et afficher caractères Unicode */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Masquer les SVG sur iPad */
    .bc-slider-btn svg,
    .bc-brands-slider-btn svg,
    .bc-blog-carousel-btn svg {
        display: none !important;
    }

    .bc-slider-prev{
        top: 40%;
    }
    .bc-slider-next{
        top: 40%;
    }
    /* Afficher les caractères Unicode sur iPad */
    .bc-slider-btn::before,
    .bc-brands-slider-btn::before,
    .bc-blog-carousel-btn::before {
        content: '';
        display: none;
    }

    .bc-slider-prev::before {
        content: '‹';
        display: block !important;
        font-size: clamp(26px, 4.5vw, 38px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }

    .bc-slider-next::before {
        content: '›';
        display: block !important;
        font-size: clamp(26px, 4.5vw, 38px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }

    .bc-brands-slider-prev::before {
        content: '‹';
        display: block !important;
        font-size: clamp(20px, 2.5vw, 30px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }

    .bc-brands-slider-next::before {
        content: '›';
        display: block !important;
        font-size: clamp(20px, 2.5vw, 30px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }

    .bc-blog-carousel-prev::before {
        content: '‹';
        display: block !important;
        font-size: clamp(30px, 4vw, 40px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }

    .bc-blog-carousel-next::before {
        content: '›';
        display: block !important;
        font-size: clamp(30px, 4vw, 40px);
        font-weight: bold;
        color: currentColor;
        line-height: 1;
        text-align: center;
    }
}

.skeepers_carousel_container .skeepers-swiper, #skeepers_carousel_modal .skeepers-swiper{
    z-index: 0 !important;
}
