/* Barre de scrollement sur tout les navigateurs */
*::-webkit-scrollbar{width: 1px;}
@-moz-document url-prefix(){
   html{
        overflow-y: auto;
        overflow-x: auto;
        scrollbar-width: thin;
        }
    }
/*Les polices utiliser*/
@font-face {
    font-family: Lato;/*Police des titres*/
    src: url('Lato/Lato-bold.ttf');
  }
  @font-face {
    font-family: Montserrat;/*Police des seconds titres*/
    src: url('Montserrat/Montserrat-bold.ttf');
  }
  @font-face {
    font-family: Montserrat-fine;/*Police des seconds titres*/
    src: url('Montserrat/static/Montserrat-Medium.ttf');
  }
  :root {
    --Police-title: "Montserrat", sans-serif;
    --Police-title-second: "Montserrat", sans-serif;
    --fine-font: "Montserrat-fine", sans-serif;
  }
  /*Les couleurs globales utiliser dans le site entier*/
  :root {
    --background-color: #ffffff;
    --default-color: #000000;
    --accent-color: #ff6600;
    --accent-color-tertio: rgba(255, 102, 0, 0.7);
    --heading-color: #ffffff;
    --surface-colo: #000000;
    --contrast-color: #ffffff;
    --font-color: #ffffff;
    --danger-color: rgb(255, 0, 0);
  }
   /*Les couleurs secondaires utiliser dans le site entier*/
   :root {
    --background-color-second: #000000;
    --default-color-second: #ffffff;
    --accent-color-second: #ffffff;
    --heading-color-second: #ffffff;
    --surface-colo-second: #ffffff;
    --contrast-color-second: #ffffff;
    --font-color-second: #ffffff;
  }
   /*Les couleurs globales alternatives utiliser dans le site entier*/
   :root {
    --background-color-alternative: #f8f8f8;
    --default-color-alternative: #d6d6d6;
    --accent-color-alternative: #ffffff;
    --heading-color-alternative: #ffffff;
    --surface-colo-alternative: #ffffff;
    --contrast-color-alternative: #ffffff;
    --font-color-alternative: #ffffff;
  }
   /*Les couleurs alternatives secondaires utiliser dans le site entier*/
   :root {
    --background-color-alternative-second: #ffffff;
     --background-color-alternative-second-1: #b3a724;
    --default-color-alternative-second: #ffffff;
    --accent-color-alternative-second: #ffffff;
    --heading-color-alternative-second: #ffffff;
    --surface-colo-alternative-second: #ffffff;
    --contrast-color-alternative-second: #ffffff;
    --font-color-alternative-second: #ffffff;
  }
  /*Les couleurs alternatives secondaires utiliser dans le site entier*/
   :root {
    --background-color-second-alternative: #ffffff;
     --background-color-second-alternative-1: #209f75;
    --default-color-alternative-second: #ffffff;
    --accent-color-alternative-second: #ffffff;
    --heading-color-alternative-second: #ffffff;
    --surface-colo-alternative-second: #ffffff;
    --contrast-color-alternative-second: #ffffff;
    --font-color-alternative-second: #ffffff;
  }
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # style générals des élèments html presenetes
  --------------------------------------------------------------*/
  html, body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--Police-title);
    width: 100%;
    overflow-x: hidden;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--default-color);
    font-family: var(--Police-title);
  }
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
  }
  #preloader:before,
  #preloader:after {
    content: "";
    background-color: #ffffff;
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    transition: all 0.2s ease 0s;
    z-index: -1;
  }
  #preloader:after {
    left: auto;
    right: 0;
  }
  
  #preloader .line {
    position: relative;
    overflow: hidden;
    margin: auto;
    width: 4px;
    height: 280px;
    transition: all 0.8s ease 0s;
  }
  #preloader .line:before {
    content: "";
    position: absolute;
    background-color: var(--accent-color);
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    transform: translateY(-50%);
    animation: lineincrease 100ms ease-in-out 0s forwards;
  }
  
  #preloader .line:after {
    content: "";
    position: absolute;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateY(-100%);
    animation: linemove 100ms linear 0s infinite;
    animation-delay: 100ms;
  }
  #preloader.loaded .line {
    opacity: 0;
    height: 100% !important;
  }
  
  #preloader.loaded .line:after {
    opacity: 0;
  }
  
  #preloader.loaded:before,
  #preloader.loaded:after {
    animation: preloaderfinish 300ms ease-in-out 500ms forwards;
  }
  @keyframes lineincrease {
    0% {
      height: 0%;
    }
  
    100% {
      height: 100%;
    }
  }
  @keyframes linemove {
    0% {
      transform: translateY(200%);
    }
  
    100% {
      transform: translateY(-100%);
    }
  }
  @keyframes preloaderfinish {
    0% {
      width: 5 0%;
    }
  
    100% {
      width: 0%;
    }
  }
  /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.bloc-section{
  display:block;
}
  .section-title {
    float: left;
    position: relative;
  }
  .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .section-title a{
    text-decoration: underline;
    color: var(--default-color);
  }
  .section-right{
    float: right;
  }
  .section-right a{
    text-decoration: underline;
    color: var(--default-color);
  }
  /*form-control design*/
  .form-control:focus{
    border-width: 4px !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.2) !important;
    outline: none !important;
  }
  .btn-primary{
    background: var(--accent-color) !important;
    border: var(--accent-color) !important;
  }
  .btn-primary:active{
    background: #fc7a24 !important;
    border: #fc7a24 !important;
  }
  .btn-primary-dark{
    background: var(--default-color) !important;
    border: var(--default-color) !important;
    color: var(--font-color) !important;
  }
  .btn-primary-dark:active{
    background: #151515 !important;
    border: #151515 !important;
    color: var(--font-color) !important;
  }

  .form-check-input:checked{
    background-color: var(--accent-color) !important;
    box-shadow: var(--accent-color) !important;
    border: var(--accent-color) !important;
  }
  .cc:checked{
    background-color: var(--default-color) !important;
    box-shadow: var(--default-color) !important;
    border: var(--default-color) !important;
  }
  .font-primary{
    background: transparent;
    color: var(--accent-color);
  }
  .text-orange{
    color: var(--accent-color);
  }
  .description-card{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .title-card{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .line-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .line-desc{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .line-desc-2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .text-dark{
    color: #000000 !important;
  }
  .skeleton{
        position: relative;
    }
    .skeleton::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: linear-gradient(98deg, #eee, #f9f9f9, #eee);
        background-size: 100%;
        animation: skeleton 1.5s infinite reverse;
    }
    @keyframes skeleton{
        0%{
            background-position: -100% 0;
        }
        100%{
            background-position: 100% 0;
        }
    }

    .skeleton-image{
        position: relative;
    }
    .skeleton-image::before{
        border: 0px !important;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: url("../images/system/logo_waouhh_officiel_skeleton.png");
        background-size: 100%;
        object-fit: cover;
        
    }
    .skeleton-image::before img{
        width: 100%;
        height: 100%;
        object-fit: cover;

    }
    @keyframes skeleton-image{
        0%{
            background-position: -100% ;
        }
        100%{
            background-position: 100% ;
        }
    }

    /*Notification*/
.img-notif{
  object-fit: cover;
  width: 70px;
  height: 70px;
}
.store{
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  transform: translate(25%, 25%);
}
.strong{
  color: var(--default-color);
  font-weight: bold;
  font-size: 18px;
}
.moments{
  margin-top: 4px;
  float: right;
}
.space-old{
  background: var(--background-color-alternative);
  color: var(--background-color-alternative);
  width: 100%;
  height: 8rem !important;
}
.img-fluid{
  object-fit: cover;
}

.profil-img{
      width: 50px;
      height: 50px;
    }
    .profil-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

 .space-one{
    height: 3rem;
  }
  .space-end{
    height: 8rem !important;
  }
  .space-anny{
    width: 10rem;
  }
  .space{
    background: transparent;
    width: 2rem;
  }
  .space-mobile{
    height: 1.5rem;
  }
  .space-mobile-two{
    height: 2rem;
  }
  .text-white{
    color: var(--background-color) !important;
  }
  .font-primary-dark{
    color: var(--background-color-second) !important;
  }
  /*Début Le responsive design*/
/*Design sur pc*/
  @media(min-width: 1199px)  {

  .pc-none{
    display: none;
    }
    .product-image-card{
      object-fit: cover;
      width: 100% !important;
      height: 280px !important;
      border-radius: 10px 10PX 0 0;
    }
    .scroll-klaudia {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 15px;
    z-index: 99999;
    right: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 0deg, #0d6efd, #0dcaf0, #0d6efd, #0dcaf0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
    animation: rotateCircle 2s linear infinite;
    overflow: hidden;
}

.scroll-klaudia i {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

/* Lignes visibles à l’intérieur */
.scroll-klaudia::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        repeating-linear-gradient(45deg, #ffffff 0 2px, transparent 2px 6px),
        repeating-linear-gradient(-45deg, #ffffff 0 2px, transparent 2px 6px),
        repeating-linear-gradient(20deg, #ffffff 0 1px, transparent 1px 4px),
        repeating-linear-gradient(-20deg, #ffffff 0 1px, transparent 1px 4px);
    z-index: 1;
    pointer-events: none;
    animation: rotateLines 1.5s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateLines {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


}
  
  /*Design sur mobile*/
  @media(max-width: 1199px)  {

   .mobile-none{
    display: none;
    }
    .product-image-card{
      object-fit: cover;
      width: 100% !important;
      height: 180px !important;
      border-radius: 10px 10PX 0 0;
    }
    .scroll-klaudia {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 290px;
    z-index: 99999;
    right: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 0deg, #0d6efd, #0dcaf0, #0d6efd, #0dcaf0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
    animation: rotateCircle 2s linear infinite;
    overflow: hidden;
}

.scroll-klaudia i {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

/* Lignes visibles à l’intérieur */
.scroll-klaudia::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        repeating-linear-gradient(45deg, #ffffff 0 2px, transparent 2px 6px),
        repeating-linear-gradient(-45deg, #ffffff 0 2px, transparent 2px 6px),
        repeating-linear-gradient(20deg, #ffffff 0 1px, transparent 1px 4px),
        repeating-linear-gradient(-20deg, #ffffff 0 1px, transparent 1px 4px);
    z-index: 1;
    pointer-events: none;
    animation: rotateLines 1.5s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateLines {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


}
  /*Fin Le responsive design*/

#cercle-message{
  top: 25%;
  left: 65%;
  width: 15px;
  height: 15px;
  background: var( --danger-color) !important;
}
#cercle-notif{
  top: 25%;
  left: 65%;
  width: 15px;
  height: 15px;
  background: var( --danger-color) !important;
}
#cercle-cart{
  top: 25%;
  left: 65%;
  width: 15px;
  height: 15px;
  background: var( --danger-color) !important;
}

.broken-heart {
  color: red;
  position: relative;
  /* Exemple simple d'animation "cassée" */
  animation: shake 0.5s infinite !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.verified-badge-icon {
  width: 1.2em;       /* taille similaire à fs-4 */
  height: 1.2em;
  margin-left: 0.25rem; /* équivalent ms-1 */
  vertical-align: middle; /* pour l’aligner avec le texte */
}
.ms-l{
  margin-left: 4px !important;
}

.img-profil-avis{
   width: 50px;
    height: 50px;
    border-radius: 50%;
}
.p-avis{
  width: 95%;
  height: auto;
  word-wrap: break-word;
  color: #acacac;
}

.space-mt{
  margin-top: 43%;
}

.space-mt-swiper{
  margin-top: 55%;
}