
.font-size-3rem {
    font-size: 3rem;
}

.font-size-2rem {
    font-size: 2rem;
}

.font-size-32px {
    font-size: 32px;
}

.font-size-18px {
    font-size: 18px;
}

.font-size-11px {
    font-size: 11px;
}

.font-size-10px {
    font-size: 10px;
}

.font-weight-bold {
    font-weight: bold;
}

.text-shadow-dark {
    text-shadow: 2px 2px 4px black;
}

.text-underline {
    text-decoration: underline;
}

/* Backgrounds */
.bg-light-beige {
    background-color: #F6EDE4;
}

.bg-light-gray {
    background-color: #F4F3F1;
}

.bg-dark-transparent {
    background-color: #25252573;
}

.couleur {
    background-color: #F6EDE4 !important;
}

.no-background-image {
    background-image: none;
}

/* Bordures et formes */
.rounded-25 {
    border-radius: 25px;
}

.rounded-top-25 {
    border-radius: 25px 25px 0 0;
}

.rounded-bottom-25 {
    border-radius: 0 0 25px 25px;
}

.rounded-right-25 {
    border-radius: 0 25px 25px 0;
}

.border-solid-dark {
    border: 1px solid #000;
}

.border-bottom-light {
    border-bottom: 2px solid lightgray;
}

.border-none {
    border: none;
}

.shadow-light {
    box-shadow: 2px 1px 5px gray;
}

.shadow-medium, .box-shadow-gray {
    box-shadow: 2px 2px 6px gray;
}

.circle-border {
    border: 1px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Marges et espacements */
.mx-3rem {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mr-2rem {
    margin-right: 2rem;
}

.px-80 {
    padding-left: 80px;
    padding-right: 80px;
}

.py-30-15-15 {
    padding: 30px 15px 15px 15px;
}

/* Dimensions */
.max-width-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.width-100 {
    width: 100%;
}

.height-100 {
    height: 100%;
}

.height-100px {
    height: 100px;
}

.full-height {
    height: 100%;
}

/* Flexbox et positionnement */
.flex-1 {
    flex: 1;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.position-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}

.position-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 45%;
    transform: translateX(-50%);
}

/* Affichage */
.hidden {
    display: none;
}

.display-none {
    display: none;
}

.display-flex {
    display: flex;
}

.display-block {
    display: block;
}

/* Overflow */
.overflow-y-auto {
    overflow-y: auto;
}

.overflow-auto {
    overflow: auto;
}

/* Listes */
.list-style-none, .no-list-style {
    list-style: none;
    list-style-type: none;
}

.white-space-nowrap {
    white-space: nowrap;
}

/* Images et médias */
.object-fit-cover {
    object-fit: cover;
}

.object-fit-fill {
    object-fit: fill;
}

/* Nouvelle classe pour les images adaptatives */
.img-responsive-container {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel et navigation */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-arrow {
    color: black;
}

.custom-arrow:hover {
    color: darkgray;
}

.arrow {
    top: -3px;
    left: -7px;
    font-size: 16px;
}

.carousel {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* Bandeau */
.bandeau {
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
}

.bandeau-item {
    display: inline-block;
    padding: 10px 25px;
    color: white;
}

/* Reviews */
.review {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.review .trust {
    padding-top: 2vh;
}

.review img {
    width: 15%;
    height: auto;
    object-fit: cover;
    padding: 5vh 0 2.5vh;
}

.review .star-container {
    font-size: 2em;
    color: #f8931f;
}

.review-card {
    align-self: center;
    background-color: #25252573;
    border-radius: 25px;
    box-shadow: 2px 1px 5px gray;
}

#carousel-review {
    width: 100%;
    text-align: center;
    scroll-behavior: unset;
    overflow: hidden;
}

#carousel-review .date {
    text-transform: none;
}

#carousel-review .carousel-inner {
    scroll-behavior: unset;
}

#carousel-review .carousel-inner .item {
    font-size: 16px;
    padding: 0 20%;
}

#carousel-review .carousel-inner .user-and-date {
    font-size: 12px;
    padding: 2vh;
    text-transform: capitalize;
}

.traducted-label {
    color: lightgrey;
    font-style: italic;
    font-size: .8em;
}

/* News pieces */
.news-pieces-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-pieces-img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
}

/* FAQ */
.faq-element {
    padding: 2rem 2rem !important;
}

.menu-element {
    color: gray;
}

.menu-element:hover {
    color: #000;
    text-underline-offset: 7px;
}

.active-brand {
    font-weight: bold;
    border-bottom: 2px solid black;
    color: black;
}

.faq-question-item {
    border: 1px solid #000;
    padding: 5px;
    margin: 1rem 0;
    cursor: pointer;
}

.faq-img {
    max-height: 500px;
    object-fit: cover;
}

.faq-item {
    border: 1px solid #000;
    padding: 5px;
}

.faq-category-title {
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.faq-answer {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-top: 1rem;
}

.brand-container {
    min-height: 500px;
}

.inside-brand-container {
    min-height: 480px;
}

.back-button {
    cursor: pointer;
}

/* SEO */
.seo-content {
    height: 100px;
    overflow-y: auto;
    padding: 0 80px;
}

.seo-content::-webkit-scrollbar {
    display: none;
}

/* Responsive */
.md-w-50 {
    width: 100%;
}

@media (min-width: 768px) {
    .md-w-50 {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .md-px-5 {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (max-width: 768px) {
    .seo-content {
        padding: 0 20px;
    }
}

@media screen and (min-width: 991px) {
    .faq-element {
        padding: 8rem 7rem !important;
    }
}

/* Suppression du background gradient des flèches du carousel */
.carousel-control.no-gradient {
    background-image: none !important;
    background-color: transparent !important;
    filter: none !important;
    opacity: 1;
}

/* Amélioration du style des flèches */
.carousel-control.no-gradient .glyphicon {
    color: #000;
    text-shadow: none;
}

.carousel-control.no-gradient:hover .glyphicon {
    color: #555;
}


/* Styles pour le carousel de produits */
.product-carousel-desktop,
.product-carousel-mobile {
    position: relative;
    padding: 0;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    padding: 0 30px; /* Espace pour les flèches */
}

/* Positionnement des flèches */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    /* background-color: rgba(255, 255, 255, 0.8); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
}

.prev-arrow {
    left: -10px;
}

.next-arrow {
    right: -10px;
}

.thin-arrow {
    font-size: 14px;
    font-weight: 300;
    transform: scaleX(0.7);
    display: inline-block;
}


.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator-dot.active {
    background-color: #333;
}

/* Desktop grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Mobile horizontal scroll layout */
.mobile-products-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mobile-products-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    scrollbar-width: none; /* Firefox */
}

.mobile-products-row::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.mobile-product-item {
    flex: 0 0 85%;
    margin-right: 15px;
    scroll-snap-align: start;
}

.mobile-product-item:last-child {
    margin-right: 0;
}

.product-image {
    width: 100%;
    /* aspect-ratio: 1/1; */
    object-fit: cover;
}

.product-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.bold {
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .carousel-arrow {
        width: 25px;
        height: 25px;
    }
    
    .thin-arrow {
        font-size: 12px;
    }
    
    .carousel-container {
        padding: 0;
    }
    .prev-arrow {
        left: -30px;
    }
    
    .next-arrow {
        right: -30px;
    }
}

/* Style pour l'icône de cœur */
.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.heart-icon .fa-heart {
    color: white;
    font-size: 18px;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.heart-icon:hover .fa-heart {
    color: #e74c3c; /* Rouge au survol */
}

.heart-icon.active .fa-heart {
    color: #e74c3c; /* Rouge quand actif/favori */
}

/* Styles améliorés pour la section Avis */
.reviews-container {
    position: relative;
    padding: 0 30px;
}

.reviews-carousel {
    overflow: hidden;
    position: relative;
}

.review-card-wrapper {
    padding: 10px;
    flex-shrink: 0;
}

.review-card {
    background-color: rgba(37, 37, 37, 0.45);
    border-radius: 25px;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.review-content {
    flex-grow: 1;
}

.review-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* text-align: center; */
}

.review-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    justify-content: center;
}

.review-avatar {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.review-info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.reviewer-name, .review-date {
    color: white;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.reviewer-name {
    font-weight: bold;
    margin-bottom: 3px;
}

/* Ajustements pour les flèches de navigation */
.reviews-container .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.reviews-container .prev-arrow {
    left: 0;
}

.reviews-container .next-arrow {
    right: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .review-card-wrapper {
        flex: 0 0 85%;
        margin-right: 15px;
        scroll-snap-align: start;
    }
    
    #avis {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 13px;
    }
}


@media (max-width: 1200px) and (min-width: 992px) {
    .product-image {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }
}

/* Centrage horizontal du texte dans les cartes d'avis */
.review-card .review-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
}

.review-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* text-align: center; */
}

/* Centrage des informations de l'auteur */
.review-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    justify-content: center;
}

.review-info {
    display: flex;
    flex-direction: column;
}

/* Ajustement pour l'avatar et les infos */
.review-avatar {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.reviewer-name, .review-date {
    color: white;
    font-size: 12px;
    margin: 0;
    text-align: center;
}
 .questions, .answer  {
    min-height: 200px;
    margin: auto;
    padding: 20px 0;
 }

 .carousel-indicators li {
    background-color: #00000057 !important; 
    opacity: 0.4;
 }

 .carousel-indicators .active {
    background-color: #0000006e !important;
 }
