@font-face {
    font-family: "Centaur";
    src: url("../fonts/centaur.ttf");
}

@font-face {
    font-family: "Crimson";
    src: url("../fonts/crimson.ttf");
}

@font-face {
    font-family: "cormorant-regular";
    src: url("../fonts/cormorant/CormorantGaramond-Regular.ttf");
}

:root{
    --font-system: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    --blanc-gris: rgba(255, 255, 255, 0.7);
    --gris-body: rgb(213, 213, 213);
    --gris-container-quantity: #565656;
    --color-brown: rgba(202, 160, 137, 0.85);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 10px;
    height: 100%;
    width:100%;
}

body {
    background-color: black;
    color: rgb(213, 213, 213);
    height: 100%;
    font-family: "Centaur";
    font-size: 10px;
    overflow-x: hidden;
}

.flex {
    display: flex;
}

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

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.absolute {
    position:absolute;
}

.list-style-none {
    list-style: none;;
}

hr {
    opacity: 0.15;
}

.pointer {
    cursor:pointer;
}

.cc-gris-container-quantity {
    border: 1px solid var(--gris-container-quantity)
}

.main-annonce {
    text-align: center;
    height: 40px;
    font-family: "Crimson", "serif";
    color: white;
    border-bottom: 1px solid #d5d5d528;
}

.main-annonce p {
    padding-top: 1.2rem;
    letter-spacing: 1.1px;
}

.second-annonce {
    background-color: #121212;
    font-family: "Crimson", "serif";
    letter-spacing: 1.1px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    /*     background-image: linear-gradient(to bottom, #000000, #050404, #090909, #0d0d0d, #111010); */
    color: white;
    border-bottom: 1px solid #333333;
    /*border-top: 1px solid #333333;*/
}

.separator-black {
    background-color: black;
    width: 100%;
    height: 8px;
}
.separator-black-30 {
    background-color: black;
    width: 100%;
    height: 3rem;
}

.separator-light {
    background-color: #3f3f3f;
    width: 30%;
    margin: 1rem auto;
    height: 1px;
}
.separator3 {

    width: 100%;
    margin: 1rem auto;
    height: 1px;
}

.gradient-separator-orange {
    height:1px;
    width:100%;
    background-image: linear-gradient(to right, #000000, #281a1b, #4b2c2c, #6e4239, #915a43, #915a43, #915a43, #915a43, #6e4239, #4b2c2c, #281a1b, #000000);
}
.gradient-separator-orange-top {
    height:4px;
    width:100vw;
    background-color: #915a43;
/*     background-image: linear-gradient(to right, #000000, #281a1b, #4b2c2c, #6e4239, #915a43, #915a43, #915a43, #915a43, #6e4239, #4b2c2c, #281a1b, #000000); */
}

.bg-dark {
    background-color: black !important;
}

.tac {
    text-align: center;
}

.section-title {
    font-size: 4rem;
    color: white;
    font-family: "Crimson";
}

h3 {
    color: white;
    font-size: 2.4rem;
    margin:1rem 0;
}

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

.maintenance {
    background-color: black;
    height:100%;
}

.maintenance img {
    width:50%;
}

.loader {
    margin-top:10rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin:4rem auto 0 auto;
    background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, #d19112 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: black;
}
@keyframes rotation {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg)}
} 

.loader-text {
    display:block;
    margin-top:5rem;
}


/*///////////////////// A-LINK */

a {
    text-decoration: none;
}

.a-link-normal-admin {
    text-decoration: none;
    color: #dddddd;
}

.a-link-normal-admin:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.9)
}

.a-link-normal, .a-link-normal-without {
    text-decoration: none;
    color: #dddddd;
    font-size: 2rem;
}

.a-link-normal:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.9)
}

.a-link-normal-without:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9)
}

.a-link-normal-h1 {
    text-decoration: none;
    color: #dddddd;
}
.a-link-normal-h1:hover {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 1px;
    color: rgba(255, 255, 255, 0.9)
}

.a-link-normal-favoris {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #dddddd;
}
.a-link-normal-favoris:hover {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 1px;
}

.a-link-normal-offset {
    text-decoration: none;
    color: #dddddd;
    font-size: 2rem;
}
.a-link-normal-offset:hover {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
    text-decoration-thickness: 1px;
    color: rgba(255, 255, 255, 0.9)
}

a.social-link {
    display: inline-block;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 2.8rem;
    margin: 15px;
    padding: 5px;
    color: #bb8f5c;
    transition: transform 0.3s ease;
}

a.social-link:hover {
    color: #b1987d;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

a.social-link.navsocial {
    margin-top: 50px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7)
}

a.social-link.navsocial:hover {
    color: rgba(255, 255, 255, 0.7)

}

.a-link-underline {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.a-link-underline-hover:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}





/*///////////////////// NAVBAR ET CAROUSEL */

.carousel-caption {
    bottom:9rem;
}

.carousel-indicators {
    background-color: rgba(0, 0, 0, 0.7);
    width:100%;
    margin:0;
    height:50px;
}

/* Styles pour le contenu du carousel */
.carousel-content-overlay {
    position: absolute;
    padding: 2rem;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

/* Styles d'overlay */
.overlay-style-transparent {
    background-color: transparent !important;
}

.overlay-style-solid {
    /* Le style est défini directement dans le style inline */
}

.overlay-style-gradient {
    /* Le gradient est défini directement dans le style inline */
}

.overlay-style-blur {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3);
}

.carousel-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-family: "Crimson", serif;
    transition: all 0.3s ease;
}

.carousel-content {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.carousel-content-2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.carousel-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Positions du contenu du carousel slide */
.position-0 { /* TOP LEFT */
    top: 5%;
    left: 5%;
}

.position-1 { /* TOP CENTER */
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.position-2 { /* TOP RIGHT */
    top: 5%;
    right: 5%;
    text-align: right;
}

.position-3 { /* LEFT */
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.position-4 { /* CENTER */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.position-5 { /* RIGHT */
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    text-align: right;
}

.position-6 { /* BOTTOM LEFT */
    bottom: 5%;
    left: 5%;
}

.position-7 { /* BOTTOM CENTER */
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.position-8 { /* BOTTOM RIGHT */
    bottom: 5%;
    right: 5%;
    text-align: right;
}

.position-9 { /* POSITION_TOP_SCOTCHED */
    top: 0;
    width:100%;
    text-align: center;
}

.position-10 { /* POSITION_BOTTOM_SCOTCHED */
    bottom: 50px;   /* taille hauteur controls */
    text-align: center;
    width:100%;
}

.second-annonce .carousel-inner {
    position: relative;
    width: 90%;
    overflow: hidden;
    margin: auto;
    padding-top: 5px;
} 

.carousel-indicators [data-bs-target] {

    height:20px;
    width:20px;
    border-radius:50%;
    background-color: rgba(0, 0, 0, 0.7);
    border:1px solid white;
    margin-top:1.4rem;
    margin-right:2rem;
    margin-left:2rem;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
    height: 15px;
    width: 15px;
}

#carousel-main-previous .carousel-control-prev-icon,
#carousel-main-next .carousel-control-next-icon {
    height: 70px;
    width: 70px;

}

.navbar-brand {
    width: 20%;
}

.navbar {
    font-size: 2rem;
}


.navbar-right .nav-link {
    font-size: 2.2rem;
    color: #e6d6c5;
    transform: scale(1);

}
.navbar-right .nav-link:hover {
    color: #d3a778 !important;
}

.i-large {
    font-size: 2rem;
}
.navbar-right i {
    display: inline-block;
    /*outline: solid 1px #676767;*/
    border-radius: 0.7rem;
    margin: 5px;
    padding: 5px;
    font-size: 2rem;

}

.st-badge {
    display: inline-block;
/*     outline: solid 1px #000000; */
    border-radius: 0.7rem;
/*     margin-right: 10px; */
    padding: 5px;
    font-size: 1.4rem;
/*     background-color: #121212; */
    color: #d2d2d2;
    width: 30px;
    height: 32px;
    /*text-align: center;*/
    font-family: var(--font-system);
}

.scaling { transition: all .2s ease-in-out; }
.scaling:hover { transform: scale(1.2); }

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9)
}

.nav-link {
    color: rgba(255, 255, 255, 0.7)
}

/* navbar main GENERAL avec orangé */
.mynavbar-main-liste a.nav-link {
    margin: 0 0.5rem;
    text-shadow: 1px 2px 4px rgb(135, 86, 28);
    letter-spacing: 0.05rem;
}

.mynavbar-main-liste a.nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
}

.nav-link-active {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
    color: rgba(255, 255, 255, 0.9) !important
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

.panier-service-notification {
    position:relative;
    width:60px;
}

#span-panier-count {
    display:inline-block;
    position:relative;
}
#span-panier-total {
    display:inline-block;
    position:relative;

}



/*///////////////////// */


.section-dune-panel {
    position: relative;
    background: url('../img/main-home/banniere_dune.png') center/cover no-repeat;
    color: #fff;
    padding: 140px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-navbar .nav-item,
.footer-navbar .nav-item {
    font-size: 1.6rem;
}



.section-home-banniere {
    height: 47rem;
}

.section-home-banniere>.content {
    position: relative;

}

.home-banniere {
    background: url("../img/main-home/banniere-hero.webp") fixed no-repeat center;
    background-size: cover;
    height: 100%;
    width: 100%;
    max-height: 46rem;
}

.home-banniere img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 46rem;
}

.home-banniere-overlay {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.home-banniere-texte {
    padding: 11rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.home-banniere-dune {
    padding: 5rem;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.home-banniere-texte h1,
.home-banniere-dune h1 {
    font-size: 4rem;
    color: white;
}

.home-banniere-texte p,
.home-banniere-dune p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.55);

}

/*///////////////////// BUTTONS */


.mybtn-secondary-lg,
.mybtn-secondary-lg:hover {
    background-color: #121212;
    color: white;
    padding: 2.7rem 3.2rem;
    margin: 3.2rem;
    font-size: 2.2rem;
}

.mybtn-theme-lg {
    background-color: #dddddd;
    color: rgb(0, 0, 0);
    padding: 0.7rem 3.2rem;
    margin: 3.2rem 0;
    font-size: 2.2rem;
    width: 100%
}

.mybtn-clubic {
    display: block;
    cursor: pointer;
    font-weight: 400;
    line-height: 45px;
    position: relative;
    text-decoration: none;
    background-color: #161616; 
    color: #dddddd;
    padding: 2rem 2.2rem;
    margin: 2rem;
    margin-top:4rem;
    font-size: 2rem;
    transition: all 200ms;

}

.mybtn-clubic-collections {
    display: block;
    cursor: pointer;
    font-weight: 400;
    line-height: 45px;
    position: relative;
    text-decoration: none;
    color: #dddddd;
    font-size: 2rem;
    transition: all 200ms;
    padding: 1rem 1.2rem;
}

.mybtn-clubic-collections i {
    position: relative;
    top: 2px;
}  

.mybtn-clubic:hover, .mybtn-clubic-collections:hover  {
    text-decoration: none;
    transition: all 200ms;
    color: white;
}

.mybtn-clubic-4 {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.mybtn-clubic-4 span {
    z-index: 20;
}

.mybtn-clubic-4:after {
    background: #cecece;
    content: "";
    height: 200px;
    left: -75px;
    opacity: 0.08;
    position: absolute;
    top: -70px;
    transform: rotate(35deg);
    transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;

}

.mybtn-clubic-4:hover:after {
    left: 120%;
    transition: all 850ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mybtn-clubic-mq-nouveautes {
    width: 25%;
}
.mybtn-clubic-mq-desertique {
    width: 50%;
}
.mybtn-clubic-mq-produits-1 {
    width: auto; 
    padding-left:4rem;
    padding-right:4rem;
}
.mybtn-clubic-mq-produits-2 {
    width: 27%;
}
.mybtn-clubic-mq-produits-3 {
    width: 27%;
}
.mybtn-clubic-mq-produits-4 {
    width: auto; 
    padding-left:6rem;
    padding-right:6rem;
}



















/*///////////////////// CARD */

.card {
    background-color: transparent;
    position: relative;
    height: 100%;
    z-index: 1
}

.divcard {
    background-color: transparent;
    position: relative;
}




.mycard-title {
    color: inherit;
    font-size: 1.4rem;
    z-index: 10
}


a.card-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.mycard-price {
    margin-top: 12px;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.10rem;
    line-height: 0.2rem;

}

span.symbol {
    margin-right: 5px;
}

.mycard-body {
    flex: 1 1 auto;
    margin: 5px 0 15px 0;
    padding: 5px;
    position: relative;
    color: rgba(213, 213, 213, 1);
    z-index: 5;
}

.mycard-body:hover .nav-link,
.card:hover .nav-link {
    color: white;
}

.mycard-image.homepage-all {
    width:350px;
    height:100%;
    object-fit: cover;
}

.card-horizontal {
    display: flex;
    width:100%;
    position:relative;
    padding:2rem;
    border:1px solid #4e4d4d;
}
.homepage-search {
    width:20%;
}

.mycard-image.liked-too {
    height:40rem;
}
.mycard-image.liked-too img {
    object-fit: cover;
}



/* ZOOM EFFECT ONLY */

.mycard-image {
    position: relative;
    z-index: 6;
    overflow: hidden;
    height: 100%;
}
.mycard-image.collection-img {
    height:auto;
}
.mycard-image img {
    transition: transform 0.6s ease;
}

.card-img-top {
    transform: scale(1);
    /* border: 1px solid #2a1f17; */
}

.mycard-image:hover .card-img-top { 
    transform: scale(1.05);
    /* border: 1px solid #2a1f17; */

}



/* ZOOM EFFECT + DOUBLAGE FOR ALL */

.mycard-image-hover {
    position: relative;
    width: 100%;
    height: 100%; /* TODO ATTENTION ICI */
    overflow: hidden;
    z-index: 6;
}
.mycard-image-hover img {
    width: 100%;
    height: 100%; /* TODO ATTENTION ICI */
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.mycard-img-top {
    /* position: absolute;
    top: 0;
    left: 0;
    z-index: 1; */
    /* border: 1px solid #2a1f17; */
}


.mycard-img-second {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0; 
    transform: scale(1);
    /* border: 1px solid #2a1f17; */
    height:100%;
}

.mycard-image-hover:hover .mycard-img-second {
    opacity: 1; 
    transform: scale(1.05); 
}

.mycard-image-hover:hover .mycard-img-top {
    opacity: 0; 
}


/*************************
************************** CONTAINER */


/* Un container inclus dans le main container */
.container-secondary {
    width: 60%;
    margin: 3rem auto;
}

.container-product {
    background-color: #f3f3f3
}

.container-product-info {
    width: 80%;
    margin: auto;
}

#myTabConnexion {}

/* @override */
.nav-tabs {
    font-size: 2.5rem;
    border-bottom: none;
}



.nav-tabs .nav-link {
    margin-bottom: 1rem;
    border: 0;
    border-radius: 0;
    background: #121212;
}

.nav-tabs .nav-link.active {
    background-color: #dddddd;
    color: black
}




/*************************
************************** INPUT */


.footer-input-email {
    background-color: black;
    border: 1px solid #ffffffbf;
    width: 100%;
    height: 4rem;
    padding: 1.4rem;
    color: white;
    border-right: none;
    border-radius: 0px !important;
    height: 5rem !important;
}

.custom-input {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 100%;
}

.input {
    font-size: 1.8rem;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    background: #000000;
    color: #FFFFFF;
    border: 1px solid #4d4d4d;
    border-radius: 0px;

    transition: .3s ease;
}

.input:focus {
    background-color: #000000;
    border: 1px solid #c7c7c7;
    color: #FFFFFF;
}

.input::placeholder {
    color: #dddddd;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}

.form-control:focus {
    box-shadow: 0 0 0 .25rem rgb(189 125 46 / 25%);
}

#footer-input-email-small-text {
    color: #979797;
}

.input-group {
    width: 42%;
}














.backgroundcolor-profil {
    background-color: #433527;
}




/*************************
************************** QUANTITY CSS */

.container-quantity {
    width: 120px;
    border: 1px solid black;
    overflow: hidden;

}

.container-quantity button {

    color: black;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
    background-color: #f3f3f3;
}


.qty-input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 1.6rem;
    outline: none;
    background-color: #f3f3f3;
}

/* PANIER / FOND BLACK */

.container-quantity-panier {
    width: 120px;
    border: 1px solid var(--gris-container-quantity);
    overflow: hidden;
    background-color: black;

}

.container-quantity-panier button {
    background-color: black;
    color: #cccccc;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}


.qty-input-box-panier {
    background-color: black;
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 1.6rem;
    outline: none;
    color: #cccccc;
}

/* Hide the number input spin buttons */
.qty-input-box::-webkit-inner-spin-button,
.qty-input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input-box[type="number"] {
    -moz-appearance: textfield;
}

/* Hide the number input spin buttons */
.qty-input-box-panier::-webkit-inner-spin-button,
.qty-input-box-panier::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input-box-panier[type="number"] {
    -moz-appearance: textfield;
}



/*************************
**************************  */





/*************************
**************************  CAROUSEL PRODUCT */


.carousel-product {
    width: 100%;
    height: 100%;
}

.carousel-product-images {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


.container-video-thumbnail {

    width: 140px;
    height: 140px;
    position:relative;
    background-color:#E0E0E0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid white;
    border-bottom: 10px solid transparent;
    border-right: transparent;
}

#carousel-annotation {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.carousel-circular-loupe {
    position: absolute;
    top: 30px;
    left: 30px;
    border-radius: 50%;
    border:1px solid grey;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    width: 50px;
    height: 50px;
    z-index: 0;
}

.carousel-circular-loupe.active-loupe {
    opacity: 0.9;
    z-index: 20;
}

.price-label {
    position:relative;
}

.badge-exclusivite {
    position:relative;
    left: 100px;
    top: 33px;
    border-radius: 50px;
    background-color: rgba(36, 40, 51, 1);
    padding:1rem;
    letter-spacing:1px;
    width:100px;
    z-index:25;
    outline: 3px solid rgba(180, 180, 180, 0.4); 
}

.badge-epuised-img {
    position:relative;
    left: 120px;
    top: 33px;
    border-radius: 50px;
    background-color: rgba(36, 40, 51, 1);
    padding:1rem;
    letter-spacing:1px;
    width:100px;
    z-index:25;
    outline: 3px solid rgba(180, 180, 180, 0.4);
}
.epuised {
    position:absolute;
    border-radius: 50px;
    background-color: rgba(36, 40, 51, 1);
    padding:1rem;
    letter-spacing:1px;
    width:100px;
}

.variante-epuised-button {
    text-decoration: line-through;
    background-color: #cccccc !important;
    color: black !important;
}

.epuised-barre {
    text-decoration: line-through; 
}

.carousel-product-main-image-container {
    position: relative;
    width: 100%;
    height:1100px;
    
}

.box-shadow-img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.carousel-product-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.carousel-product-main-image.active {
    opacity: 1;
    z-index:20;
}
#video-container {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
#video-container.active {
    opacity: 1;
}
#main-video {
    width:100%;
    height:1100px;
}
.carousel-product-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.slider-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    margin-bottom: 10px;
}
.slider-image-active {
    border: 2px solid black;
    opacity: 1;
}



























/*************************
**************************  LIGHTBOX */


img .vignette-medium {
    cursor: pointer;
}

#lightbox {
    transition-property: opacity;
    transition-timing-function: ease-in-out;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox > img {
    max-width:100%;
    max-height: 90vh;
}

/*************************
**************************  SEARCH INPUT */

#overlay-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    z-index:110;
}
#search-container {
    background-color: black;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 90%;
    max-width: 600px;
}
#search-input {
    width: calc(100% - 40px);
    padding: 10px 10px 10px 20px;
    border: 1px solid #ccc;
}
#search-icon {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #ffffff;
    cursor:pointer;
    transition: width 0.3s, height 0.3s;
}
#search-icon:hover {
    width: 25px;
    height: 25px;
    
}
#close-button {
    position: absolute;
    top: 16px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}


/*************************
**************************  PRDOUITS SHOW */

.badge {
    background-color: #cccccc;
    padding:1rem;
    border-radius: 5px;
    letter-spacing: 1px;
    font-weight: 100;
}
.badge:hover {
    background-color: #ab947b;
}

.product-info-fournisseur p {
    letter-spacing: 0.66px;
    line-height: 34.2px;
    flex: 4;
}
.product-administration {
    flex: 1;
    position:relative;
}
.product-administration a {
    position:absolute;

}
.product-info-boutons {
    width:100%;
}

.description-text {
    text-align: justify;
    word-break: break-word;
}

.text-align-left {
    text-align: left;
}

.mycard-price-2 {
    margin-top: 12px;
    font-size: 2rem;
    letter-spacing: 0.10rem;
    line-height: 1.2rem;

}


span.span-variantes {
    display: inline-block;
    position: relative;
    margin-right:2rem;
    margin-bottom:1rem;
}

span.span-variantes > input[type=radio] {
    visibility: hidden;
    position: absolute;
}

span.span-variantes > label {
    padding: 1rem 2rem;;
    border: solid 1px #ccc;
    cursor: pointer;
    width:100%;
    background-color: #f3f3f3;
}

span.span-variantes > label:hover {
    border: solid 1px black;
}

span.span-variantes > input[type=radio]:checked + label {
    background-color: black;
    color: white;
    border: solid 1px black;
}



/*//////////// Infos complmentaires */

.st-btn-collapse {
    width:100%;
    background-color: transparent;
    border:none;
    padding:1rem;
    padding-left:0rem;
    text-align: left;
}

.container-autres-infos {
    display: flex; 
    justify-content: space-between; 
    align-items: stretch; 
    gap: 10px; 
    width: 100%;
    height: 170px;
    flex-wrap: wrap;
}

.box-info {
    flex: 1; /* Chaque div prend une largeur égale */
    padding: 20px;
    text-align: center; 
    background-color: #f3f3f3;
    height:100%;
}



.bull-disc {
    margin:2rem;
}


















/*************************
**************************  DIV PANIER SLIDE DOWN */

.container-panier {
    position: relative;
}

#panier-main {
    position: absolute;
    display:none;
    right:0;
    top:0;
    background-color: black;
    width:50rem;
    padding:1rem 4rem 2rem 4rem;
    overflow-y: auto;
    transition: display 0.3s ease-out;
    max-height: 0;
    z-index: 30;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#panier-main.open {
    display:block;
    max-height: 600px;
}

#panier-header {
    width:100%;
}

.panier-item {
    width:100%;
    padding:1rem;
    cursor: pointer;
}

.panier-item-image {
    width:100%;
}

.item-img {
    flex: 0 0 33%; /* Prend 33% de la largeur du conteneur */
}

.item-body {
    flex: 1; /* Prend l'espace restant, donc 66% */
}

.panier-item:hover div {
    color:white;
}


.panier-paiement  {
    background-color:#161616;
    display: block;
    cursor: pointer;
    font-weight: 400;
    line-height: 45px;
    position: relative;
    text-decoration: none;
    color: #dddddd;
    outline:none;
    margin: 1rem;
    font-size: 2rem;
    transition: all 200ms;
    border-radius: 4px;
    width:96%;
}


.panier-link {
    margin:1rem;
}

.panier-link a, .panier-link-panier a  {
    display: block;
    width: 100%;
    height: 100%;
    color: #bea78d;
    padding: 0.5rem;
    border: 1px solid grey;
    text-decoration: none;
    font-size: 2rem;
}

.panier-link-panier a {
    border: none !important;
}
.panier-link-orange a {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid #a87d4d !important;
    color: #bea78d;
    padding: 0.5rem;
    text-decoration: none;
    font-size: 2rem;
}

.panier-link-orange a:hover, .panier-link a:hover {
    color: #cccccc;;
}

.panier-link-orange {
    margin:1rem;
 }

 .panier-link-panier {
    margin: 1rem 0rem 1rem 1rem;
 }

/*************************
**************************  PAGE PANIER PRINCIPALE */

.div-image-item {
    height:100%;
    width:25%;
    max-width: 200px;
    overflow: hidden;
}
.panier-main-item-image {
    object-fit: cover;
    height:200px;
    width:100%;
    /* border: 1px solid #271b14; */
}











/*************************
**************************  SCROLLBAR SHOW PANIER */


/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #000000 #FFFFFF;
}*/

/* Chrome, Edge and Safari */
#panier-main::-webkit-scrollbar {
    height: 10px;
    width: 10px;
  }
  #panier-main::-webkit-scrollbar-track {

    background-color: #FFFFFF;
  }
  
  #panier-main::-webkit-scrollbar-track:hover {
    background-color: #FFFFFF;
  }
  
  #panier-main::-webkit-scrollbar-track:active {
    background-color: #B8C0C2;
  }
  
  #panier-main::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #000000;
  }
  
  #panier-main::-webkit-scrollbar-thumb:hover {
    background-color: #A36739;
  }
  
  #panier-main::-webkit-scrollbar-thumb:active {
    background-color: #A36739;
  }



/*************************
**************************  VOUS AIMEREZ AUSSI */
.produits-liked-too {
    background-color: #121212; 
    /* background-color: black; */
    color: white;
}






/*************************
**************************  TUNNEL RAPIDE */

.tr-main {
    /* height:100%; */
    font-family: var(--font-system);
}

.tr-brand-logo-img {
    width:17%;
    height:100%;
}
.tr-div-left {
    width:50%;
    background-color: #f8f9fa;
/*     background-color: #f3f3f3; */
    position:relative;
    padding-bottom:3rem;
}
.tr-left-colle-right {
    position: relative;
    right: 25px;
    width: 48%;
    margin-left: 52%;
}

.tr-div-right {
    position:relative;
    width:50%;
    background-color: #e4e4e4;
    border-left: 1px solid rgb(194, 194, 194);
    padding-bottom:3rem;
}

.tr-right-colle-left {
    position:relative;
    left: 20px;
    width:40%;
}

.tr-form-control-surcharge {
    /* background-color: #f3f3f3; */
    padding:0.75rem;
}

.tr-form-control-surcharge:focus {
    /* background-color: #f3f3f3; */
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.tr-color-gris {
    color: #56595c
}

.hidden {
    display: none;
}

.tr-button-reduction {
    background: #d3d3d3;
    font-family: Arial, sans-serif;
    color: #606060;
    border-radius: 4px;
    border: 0;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.07);
    width:65%;
}

.tr-error {
    margin:10px 0;
    padding:1rem;
    color: red !important;
    vertical-align: middle;
}


/*//////////////////// */
.title-exclusivite {
    /* background: #E0A36A; */
    background: linear-gradient(to right, #bb936d 0%, #4f2c1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/*//////////////////// COLLECTIONS */

.img-collection-all {
    width: 100%;
    height: 510px;
    object-fit: cover;
    object-position: center center;
    transition: opacity .4s cubic-bezier(.25, .46, .45, .94);
}

.img-collection-sub {
    width: 100%;
    height: 470px;
    object-fit: cover;
    object-position: center center;
    transition: opacity .4s cubic-bezier(.25, .46, .45, .94);
}



.reset-clubic {
    margin:1rem 0;
    padding:0.5rem;
}

.clubic-jaune {
    background-color: #cccccc;
    border:none;
    margin:1rem 0;
    padding:0.5rem;
    color: black;
}
.clubic-jaune:hover {
    background-color: #e0dfdf;
    color: black;
    outline:1px solid grey;
}


/*//////////////////// ALERT BOOTSTRAP */

.alert-success {
    background-color: #83480E;
    border: 1px solid #83480E;
    border-radius: 0px;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}
.alert-warning {
    background-color: #83480E;
    border: 1px solid #83480E;
    border-radius: 0px;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}
.alert-danger {
    background-color: #913939c7;
    border: 1px solid #913939c7;
    border-radius: 0px;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
}










.panier-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}







/*////////////////////// CHECKBOX GENERATOR */

.st-checkbox-wrapper {
    padding:1rem;
}
.st-checkbox-wrapper-register {
    padding-top:2rem;
}










.btn:hover {
    border: 1px solid #4d4d4d;
}




.v-align-middle {
    vertical-align: middle;
}


.favoris-icon i {
    padding: 2rem;
    height: 40px;
    width: 40px;
}

.favoris-icon-active i {
    color: #417E41;
}


.alert  {
    margin-bottom:0px;
}

.container-zero-stock-label {
    position:relative;
}

.card-hover-overlay {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    transition: bottom 0.3s ease-in-out;
    z-index: 10;
}

.mycard-image-hover:hover .card-hover-overlay,
.mycard-image:hover .card-hover-overlay {
    bottom: 0;
}

.card-hover-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.labelcard-none {
    background-color: transparent;
}
.labelcard-exclusivite {
    background-color: #2644ccb0;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 1.4rem;
}
.labelcard-envente {
    background-color: #238741cc;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 1.4rem;
}
.labelcard-epuise {
    background-color: #996141b0;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 1.4rem;
}

.card-add-to-cart {
    background-color: #121212;
    color: white;
    border: 1px solid #4d4d4d;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.4rem;
}

.card-add-to-cart:hover {
    background-color: #333;
    border-color: #666;
}










.st-item {
    width:100vw;
}

.st-item-media {
    width: 15%;
}
.div-image-item {
    width: 75%;
}

.st-item-total {
    text-align: right;
}

.d-none-desktop {  /* pour ne pas override boostrap !important */
    display:none;
}

.tab-pane {
    padding:1rem 3rem;
}

.nomargin {
    margin:0;
}

.responsive-epuise-label {
    display: none;
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #242424;
    color: white;
    padding: 0.7rem 1.6rem;
    font-size: 1.2rem;
    border-radius: 7px;
    z-index: 2;
    border: 1px solid #444444;
}

.section-video {
    position:relative;
}


/*////////////////////// COOKIE CONSENT MODAL */
.modal-content {
    border-radius: 10px;
    border: none;
    background-color: #171717;
    padding: 3rem;
}

#cookieConsentModal .modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem;
}

#cookieConsentModal .modal-title {
    font-size: 2rem;
    font-weight: 600;
}

#cookieConsentModal .modal-body {
    padding: 1.5rem;
    font-size: 1.8rem;
}

#cookieConsentModal .modal-footer {
    border-top: none;
    padding: 0.5rem 1.5rem 1.5rem;
}

#cookieConsentModal .btn-primary {
    background-color: #000;
    border-color: #000;
    padding: 0.5rem 1.5rem;
}

#cookieConsentModal .btn-secondary {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 0.5rem 1.5rem;
}

#cookieConsentModal .btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

#cookieConsentModal .btn-secondary:hover {
    background-color: #f8f9fa;
}

/*////////////// FIN COOKIE CONSENT MODAL */

.text-muted {
    color:white !important;
}
.text-muted-18 {
    font-size: 1.8rem;
}


.no-border {
    border:none;
}


.border-bottom-orange {
    border-bottom: 2px solid #c88100;
}



/* Règles responsives pour le carousel */
@media (max-width: 992px) {
    /* Force la position en bas sur mobile */
    .carousel-content-overlay {
        bottom: 40px !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        padding: 15px !important;
        text-align: center !important;
    }

    /* Ajuste les tailles de police pour mobile */
    .carousel-title {
        font-size: clamp(14px, var(--title-font-size), 30px) !important;
        margin-bottom: 0.5rem;
    }

    .carousel-content {
        font-size: clamp(12px, var(--content-font-size), 20px) !important;
        margin-bottom: 0.5rem;
    }

    .carousel-content-2 {
        font-size: 14px !important;
        margin-bottom: 0.5rem;
    }

    /* Ajuste le bouton pour mobile */
    .carousel-button {
        padding: 0.5rem 1rem;
        font-size: 14px;
    }

    /* Réduit la hauteur des contrôles du carousel */
    .carousel-indicators {
        height: 40px;
    }

    .carousel-indicators [data-bs-target] {
        height: 15px;
        width: 15px;
        margin-top: 1rem;
        margin-right: 1rem;
        margin-left: 1rem;
    }

    /* Optimise l'espacement */
    .carousel-content-overlay {
        max-width: 100% !important;
    }
}




/* FAQ Styles */
.accordion-item {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 1rem;
}
.accordion-button {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    font-size: 1.8rem;
    padding: 1.5rem;
}
.accordion-button:not(.collapsed) {
    background-color: #2a2a2a !important;
    color: #ffffff !important;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-button:focus {
    border-color: none;
    box-shadow: 0 0 0 0.25rem #b43e0040
}
.accordion-body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 1.5rem;
    line-height: 1.6;
}
.faq-icon {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.statut-help span {
    width:150px;
    padding:1rem;
    margin:1rem;
}

.new-order {
    background-color: rgba(255, 0, 0, 0.8) !important;
}
.badge-new-order {
    background-color: rgba(255, 0, 0, 0.8) !important;
    display: inline-block;
    width:500px;
    padding:2rem;
    margin:1rem;
}

/* Styles pour le formulaire d'édition d'adresse */
.container-form {
    font-size: 1.6rem;
    width: 60%;
    margin: auto;
    /* background: linear-gradient(145deg, #0a0a0a, #1a1a1a); */
    padding: 4rem;
    /* border-radius: 8px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* border: 1px solid #353535; */
}

.container-form h1 {
    color: #915a43;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.container-form label {
    color: #d2d2d2;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.container-form .form-control {
    background-color: #1a1a1a;
    border: 1px solid #353535;
    color: white;
    padding: 1.2rem;
    font-size: 1.6rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.container-form .form-control:focus {
    background-color: #1a1a1a;
    border-color: #915a43;
    box-shadow: 0 0 0 0.25rem rgba(145, 90, 67, 0.25);
    color: white;
}

.container-form .btn-secondary {
    background-color: black;
    border: 1px solid #915a43;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.container-form .btn-secondary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.container-form .btn-primary {
    background-color: #915a43;
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.container-form .btn-primary:hover {
    background-color: #a36739;
    transform: translateY(-2px);
}

.actions-commandes-statut a{
    font-size: 1.8rem;
}

.commande-row { cursor: pointer; }

.st-checkbox-wrapper-register .form-check {
    display:flex;
}

.navigation-icone .nav-link.active {
    transform: scale(1.2);
    color: #d3a778 !important;
}

.navbar-right .nav-link.active {
    transform: scale(1.2);
    color: #d3a778 !important;
}

/* HÉRO HEADER COLLECTION */
.hero-collection {
    position: relative;
    width: 100%;
    /*height: 340px;*/
    overflow: hidden;
    margin-bottom: 2rem;
    background-color:#121212;
    padding:1rem;
}
.hero-collection-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.hero-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.hero-collection-overlay h1.section-title {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
}
.hero-collection-overlay p.section-subtitle {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .hero-collection, .hero-collection-img {
        height: 180px;
    }
    .hero-collection-overlay h1.section-title {
        font-size: 1.7rem;
    }
    .hero-collection-overlay p.section-subtitle {
        font-size: 1rem;
    }
}

/* Bandeau Tous les produits */
.bandeau-tous-produits {
    width: 100vw;
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 3rem 0;
    margin: 0 calc(-50vw + 50%); /* Pleine largeur même dans container */
}

.btn-tous-produits-centaur {
    font-family: "Centaur", serif;
    font-size: 2.4rem;
    padding: 2rem 5rem;
    background: #121212;
    color: #ffefe0;
    border: 1px solid #8b8b8b;
    border-radius: 2px;
    box-shadow: 0 0 0 1px #d19112, 0 0 8px 0 rgba(209, 145, 18, 0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 1.5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    outline: none;
}


.btn-tous-produits-centaur:hover, .btn-tous-produits-centaur:focus {
    background: #000000;

}

