/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 @codewithsadee 
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --spanish-gray: hsl(0, 0%, 60%);
  --sonic-silver: hsl(0, 0%, 47%);
  --eerie-black: hsl(0, 0%, 13%);
  --salmon-pink: hsl(353, 100%, 78%);
  --sandy-brown: hsl(29, 90%, 65%);
  --bittersweet: hsl(0, 100%, 70%);
  --ocean-green: hsl(152, 51%, 52%);
  --davys-gray: hsl(0, 0%, 33%);
  --cultured: hsl(0, 0%, 93%);
  --white: hsl(0, 100%, 100%);
  --onyx: hsl(0, 0%, 27%);
  --border-color-light: #dcdcdc; /* Exemple de couleur de bordure */

  /**
   * typography
   */

  --fs-1: 1.563rem;
  --fs-2: 1.375rem;
  --fs-3: 1.25rem;
  --fs-4: 1.125rem;
  --fs-5: 1rem;
  --fs-6: 0.938rem;
  --fs-7: 0.875rem;
  --fs-8: 0.813rem;
  --fs-9: 0.75rem;
  --fs-10: 0.688rem;
  --fs-11: 0.625rem;

  --weight-300: 300;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;

  /**
   * border-radius
   */

  --border-radius-md: 10px;
  --border-radius-sm: 5px;
  

  /**
   * transition 
   */

  --transition-timing: 0.2s ease;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

a { text-decoration: none; }

li { list-style: none; }

button {
  background: none;
  font: inherit;
  border: none;
  cursor: pointer;
}

img, ion-icon, button, a { display: block; }

span { display: inline-block; }

html {
  font-family: "Poppins", sans-serif;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

input {
  display: block;
  width: 100%;
  font: inherit;
}

input::-webkit-input-placeholder { font: inherit; }

input::-moz-placeholder { font: inherit; }

input:-ms-input-placeholder { font: inherit; }

input::-ms-input-placeholder { font: inherit; }

input::placeholder { font: inherit; }

body { background: var(--white); }

/**
 * scrollbar style
 */

body::-webkit-scrollbar { width: 15px; }

body::-webkit-scrollbar-track {
  background: var(--white);
  border-left: 1px solid var(--cultured);
}

body::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
  border: 3px solid var(--white);
  -webkit-border-radius: 10px;
          border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding: 0 15px; }

.has-scrollbar { padding-bottom: 5px; }

.has-scrollbar::-webkit-scrollbar {
  width: 12px; /* for vertical scroll */
  height: 12px; /* for horizontal scroll */
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
  border: 3px solid var(--white);
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

.has-scrollbar:hover::-webkit-scrollbar-thumb { background: hsl(0, 0%, 90%); }

.has-scrollbar::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 80%); }

.title {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--weight-600);
  letter-spacing: 0.4px;
  text-transform: capitalize;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cultured);
  margin-bottom: 30px;
}





/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

/**
 * overlay 
 */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 15;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



/**
 * MODAL 
 */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  -webkit-animation: popup 1s ease-in-out 5s forwards;
          animation: popup 1s ease-in-out 5s forwards;
}

@-webkit-keyframes popup {

  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

}

@keyframes popup {

  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

}

.modal.closed { display: none; }

.modal-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.newsletter-img { display: none; }

.modal-content {
  position: relative;
  max-width: 350px;
  margin: 20px;
  background: var(--white);
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  overflow: hidden;
  z-index: 2;
  -webkit-animation: scaleUp 0.5s ease-in-out 5s forwards;
          animation: scaleUp 0.5s ease-in-out 5s forwards;
}

@-webkit-keyframes scaleUp {

  0% { -webkit-transform: scale(0.9); transform: scale(0.9); }
  100% { -webkit-transform: scale(1); transform: scale(1); }

}

@keyframes scaleUp {

  0% { -webkit-transform: scale(0.9); transform: scale(0.9); }
  100% { -webkit-transform: scale(1); transform: scale(1); }

}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--salmon-pink);
  color: var(--white);
  font-size: 16px;
  padding: 5px;
  -webkit-border-radius: var(--border-radius-sm);
          border-radius: var(--border-radius-sm);
}

.modal-close-btn:hover { opacity: 0.9; }

.modal-close-btn ion-icon { --ionicon-stroke-width: 70px; }

.newsletter {
  padding: 50px 30px;
  text-align: center;
}

.newsletter-header { margin-bottom: 20px; }

.newsletter-title {
  color: var(--onyx);
  font-size: var(--fs-2);
  font-weight: var(--weight-600);
  margin-bottom: 10px;
}

.newsletter-desc {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
  line-height: 1.6;
}

.email-field {
  font-size: var(--fs-7);
  padding: 8px 16px;
  -webkit-border-radius: var(--border-radius-sm);
          border-radius: var(--border-radius-sm);
  border: 1px solid var(--cultured);
  margin-bottom: 16px;
}

.btn-newsletter {
  background: var(--eerie-black);
  color: var(--white);
  font-size: var(--fs-7);
  font-weight: var(--weight-600);
  text-transform: uppercase;
  padding: 10px 15px;
  -webkit-border-radius: var(--border-radius-sm);
          border-radius: var(--border-radius-sm);
  margin: auto;
  -webkit-transition: var(--transition-timing);
  -o-transition: var(--transition-timing);
  transition: var(--transition-timing);
}

.btn-newsletter:hover { background: var(--salmon-pink); }





/**
 * NOTIFICATION TOAST 
 */

.notification-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  right: 20px;
  background: var(--white);
  max-width: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  padding: 15px;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  -webkit-box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
          box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
  -webkit-transform: translateX(-webkit-calc(-100% - 40px));
      -ms-transform: translateX(calc(-100% - 40px));
          transform: translateX(calc(-100% - 40px));
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 5;
  -webkit-animation: slideInOut 10s ease-in-out infinite;
          animation: slideInOut 10s ease-in-out infinite;
}

@-webkit-keyframes slideInOut {

  0%,
  45%,
  100% {
    -webkit-transform: translateX(-webkit-calc(-100% - 40px));
            transform: translateX(calc(-100% - 40px));
    opacity: 0;
    visibility: hidden;
  }

  50%,
  95% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

}

@keyframes slideInOut {

  0%,
  45%,
  100% {
    -webkit-transform: translateX(-webkit-calc(-100% - 40px));
            transform: translateX(calc(-100% - 40px));
    opacity: 0;
    visibility: hidden;
  }

  50%,
  95% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

}

.notification-toast.closed { display: none; }

.toast-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--sonic-silver);
}

.toast-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.toast-banner {
  width: 70px;
  height: 70px;
  border: 1px solid var(--cultured);
  -webkit-border-radius: var(--border-radius-sm);
          border-radius: var(--border-radius-sm);
}

.toast-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.toast-detail {
  width: -webkit-calc(100% - 85px);
  width: calc(100% - 85px);
  padding-right: 10px;
}

.toast-message {
  font-size: var(--fs-10);
  color: var(--sonic-silver);
  margin-bottom: 8px;
}

.toast-title {
  font-size: var(--fs-7);
  font-weight: var(--weight-500);
  color: var(--onyx);
}

.toast-meta {
  font-size: var(--fs-10);
  color: var(--sonic-silver);
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-top,
.header-user-actions,
.desktop-navigation-menu { display: none; }

.header-main {
  padding: 20px 0;
  border-bottom: 1px solid var(--cultured);
}

.header-logo { margin-bottom: 20px; }

.header-logo img { margin: auto; }




.mobile-bottom-navigation .action-btn {
  position: relative;
  font-size: 26px;
  color: var(--eerie-black);
  padding: 10px;
}

.mobile-bottom-navigation .count {
  background: var(--bittersweet);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-weight: var(--weight-500);
  line-height: 1;
  padding: 2px 4px;
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

.mobile-navigation-menu {
  background: var(--white);
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
          box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 20;
}

.mobile-navigation-menu.active {
  left: 0;
  visibility: visible;
}

.menu-top {
  padding-bottom: 15px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid var(--cultured);
}

.menu-top .menu-title {
  color: steelblue;
  font-size: var(--fs-4);
  font-weight: var(--weight-600);
}

.menu-close-btn {
  color: var(--eerie-black);
  font-size: 22px;
}

.menu-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.mobile-menu-category-list { margin-bottom: 30px; }

.menu-category .accordion-menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu-category-list .menu-category { border-bottom: 1px solid var(--cultured); }

.mobile-menu-category-list .menu-title {
  color: var(--onyx);
  font-size: var(--fs-6);
  font-weight: var(--weight-500);
  padding: 12px 0;
}

.accordion-menu > div { font-size: 14px; }

.accordion-menu ion-icon {
  color: var(--onyx);
  --ionicon-stroke-width: 90px;
}

.accordion-menu.active .add-icon,
.accordion-menu .remove-icon { display: none; }

.accordion-menu .add-icon,
.accordion-menu.active .remove-icon { display: block; }

.menu-category .submenu-category-list { margin-left: 10px; }

.submenu-title {
  padding: 6px 0;
  font-size: var(--fs-6);
  color: var(--sonic-silver);
  font-weight: var(--weight-300);
}

.submenu-title:hover { color: var(--davys-gray); }

.submenu-category-list {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.submenu-category-list.active {
  max-height: 148px;
  visibility: visible;
}

.menu-bottom .menu-category-list { margin-bottom: 20px; }

.menu-bottom .menu-category { border-bottom: none; }

.menu-bottom .menu-title {
  font-size: var(--fs-6);
  font-weight: var(--weight-500);
  color: var(--eerie-black);
  padding: 12px 0;
}

.accordion-menu.active .caret-back { -webkit-transform: rotate(-0.25turn); -ms-transform: rotate(-0.25turn); transform: rotate(-0.25turn); }

.menu-bottom .submenu-category-list {
  border: 1px solid var(--cultured);
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  padding: 0 15px;
  margin-left: 0;
  -webkit-box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
          box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
}

.menu-bottom .submenu-category:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.menu-social-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.menu-social-container .social-link {
  background: var(--cultured);
  color: var(--eerie-black);
  font-size: 20px;
  padding: 10px;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
}





/*-----------------------------------*\
  #BANNER
\*-----------------------------------*/

.banner { margin: 30px 0; }

.slider-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  overflow: auto hidden;
  -webkit-scroll-snap-type: inline mandatory;
      -ms-scroll-snap-type: inline mandatory;
          scroll-snap-type: inline mandatory;
  overscroll-behavior-inline: contain;
}

.slider-item {
  position: relative;
  min-width: 100%;
  max-height: 450px;
  aspect-ratio: 1 / 1;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  overflow: hidden;
  scroll-snap-align: start;
}

.slider-item .banner-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.banner-content {
  background: hsla(0, 0%, 100%, 0.8);
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 20px 25px;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
}

.banner-subtitle {
  color: #fff64c; /* Couleur de fond du bouton */
  font-size: var(--fs-7);
  font-weight: var(--weight-500);
  text-transform: capitalize;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.banner-title {
  color: var(--eerie-black);
  font-size: var(--fs-1);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.banner-text { display: none; }

.banner-btn {
  background: #2a7ae2; /* Couleur de fond du bouton */
  color: var(--white);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: var(--fs-11);
  font-weight: var(--weight-600);
  text-transform: uppercase;
  padding: 4px 10px;
  -webkit-border-radius: var(--border-radius-sm);
          border-radius: var(--border-radius-sm);
  -webkit-transition: var(--transition-timing);
  -o-transition: var(--transition-timing);
  transition: var(--transition-timing);
}

.banner-btn:hover { background: var(--eerie-black); }





/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category { margin-bottom: 10px; }

.category-item-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  overflow: auto hidden;
  -webkit-scroll-snap-type: inline mandatory;
      -ms-scroll-snap-type: inline mandatory;
          scroll-snap-type: inline mandatory;
  overscroll-behavior-inline: contain;
}

.category-item {
  min-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0px;
  border: 1px solid var(--cultured);
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  scroll-snap-align: start;
}

.category-img-box {
  background: #ffffff; /* Couleur de fond blanc */
  
  padding: 5px; /* Réduire le padding pour un ajustement plus petit */
  -webkit-border-radius: var(--border-radius-sm);
  border-radius: var(--border-radius-sm);
  width: 60px; /* Ajuster cette valeur pour réduire la taille de l'image */
  height: auto; /* Assurez-vous que la hauteur s'adapte automatiquement pour garder les proportions */
}

.category-img {
  width: 100%; /* L'image prend toujours toute la largeur du conteneur */
  height: auto; /* La hauteur s'adapte automatiquement pour garder les proportions */
}


.category-content-box { width: 40%; }

.category-content-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.category-item-title {
  color: var(--eerie-black);
  font-size: var(--fs-9);
  font-weight: var(--weight-600);
  text-transform: uppercase;
}

.category-item-amount {
  color: var(--sonic-silver);
  font-size: var(--fs-11);
}

.category-btn {
  color: steelblue;
  font-size: var(--fs-9);
  font-weight: var(--weight-500);
  text-transform: capitalize;
}




/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  background: var(--white);
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  padding: 30px;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  visibility: hidden;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 20;
}

.sidebar.active {
  left: 0;
  visibility: visible;
}

.sidebar-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--cultured);
}

.sidebar-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.sidebar-title {
  color: var(--onyx);
  font-size: var(--fs-5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: var(--weight-600);
}

.sidebar-close-btn {
  color: var(--eerie-black);
  font-size: 22px;
  font-weight: var(--weight-600);
}

.sidebar-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.sidebar-accordion-menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 0;
}


.sidebar .menu-title-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.sidebar .menu-title {
  font-size: var(--fs-5);
  color: var(--sonic-silver);
  font-weight: var(--weight-500);
}

.sidebar-accordion-menu ion-icon {
  color: var(--sonic-silver);
  font-size: 14px;
  --ionicon-stroke-width: 70px;
}

.sidebar-submenu-category-list {
  border-top: 1px solid var(--cultured);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.sidebar-submenu-category-list.active {
  padding: 13px 0 8px;
  max-height: 500px;
  visibility: visible;
}

.sidebar-submenu-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--sonic-silver);
  font-size: var(--fs-7);
  padding: 2px 0;
}

.sidebar-submenu-title:hover { color: var(--eerie-black); }

.sidebar .product-name { text-transform: capitalize; }

.sidebar-accordion-menu.active .add-icon,
.sidebar-accordion-menu .remove-icon { display: none; }

.sidebar-accordion-menu .add-icon,
.sidebar-accordion-menu.active .remove-icon { display: block; }








.sidebar .best-sellers-heading {
  font-size: var(--fs-5);
  font-weight: var(--weight-600);
  color: var(--onyx);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 15px;
  margin-top: 20px;
}

/* Style des éléments de la barre latérale */
.sidebar .best-seller-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  border: 1px solid var(--border-color-light); /* Contour léger */
  border-radius: var(--border-radius-sm); /* Coin arrondi pour uniformité */
  padding: 10px; /* Ajout d'espace intérieur pour éviter que le contenu touche les bords */
  background-color: #fff; /* Assurez-vous que l'arrière-plan est visible */
}

.sidebar .best-seller-item:not(:last-child) { 
  margin-bottom: 15px; 
}

/* Appliquer également aux autres éléments qui pourraient nécessiter un contour */
.sidebar .best-seller-img { 
  -webkit-border-radius: var(--border-radius-sm); 
  border-radius: var(--border-radius-sm); 
}

.sidebar .best-seller-content { 
  width: -webkit-calc(100% - 90px); 
  width: calc(100% - 90px); 
}

.sidebar .best-seller-title {
  color: var(--onyx);
  font-size: var(--fs-7);
  font-weight: var(--weight-400);
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.sidebar .best-seller-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--sandy-brown);
  font-size: 13px;
  padding: 4px 0;
}

.sidebar .best-seller-price-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.sidebar .best-seller-price-box del {
  color: var(--sonic-silver);
  font-size: 0.8em; /* Même taille que .original-price */
}

.sidebar .best-seller-price-box .best-seller-price {
  font-size: 1em; /* Même taille que .current-price */
  font-weight: var(--weight-700); /* Même poids que .current-price */
  color: #ff0000; /* Même couleur que .current-price */
}





/*-----------------------------------*\
  #PRODUCT FEATURED
\*-----------------------------------*/

.product-featured {
    margin-bottom: 30px; /* Augmenter l'espace sous la section */
    margin-top: 40px; /* Augmenter l'espace au-dessus de la section */
    padding: 20px; /* Ajouter un peu de padding à l'ensemble de la section */
    background-color: #f9f9f9; /* Ajouter une couleur de fond légère pour la section */
    border-radius: var(--border-radius-lg); /* Utiliser un rayon de bordure plus large pour un effet arrondi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ajouter une ombre légère pour un effet de profondeur */
    max-width: 1200px; /* Définir une largeur maximale pour éviter le chevauchement */
    margin-left: auto; /* Centrer horizontalement */
    margin-right: auto; /* Centrer horizontalement */
}

.product-featured .showcase-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px; /* Ajouter du padding à l'intérieur du conteneur pour plus d'espace autour des éléments */
}

.product-featured .showcase-container {
    min-width: 420px; /* Fixer une largeur minimale pour éviter que les éléments deviennent trop petits */
    max-width: 450px; /* Définir une largeur maximale pour éviter que les conteneurs ne s'étendent trop */
    padding: 20px;
    border: 1px solid #ddd; /* Changer la couleur de la bordure pour un effet plus doux */
    border-radius: var(--border-radius-md);
    background-color: #fff; /* Ajouter une couleur de fond blanche pour les conteneurs */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ajouter une ombre légère au conteneur pour plus de profondeur */
    scroll-snap-align: start;
}




/* Style général des images dans le carrousel */
.product-featured .showcase-img {
    width: 100%; /* Ajuste la largeur de l'image pour remplir son conteneur */
    height: auto; /* Maintient les proportions de l'image */
    border-radius: var(--border-radius-md); /* Ajoute un rayon de bordure pour arrondir les coins des images */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ajoute une ombre légère aux images pour un effet de profondeur */
}

/* Style pour les images du carrousel */
.product-featured .carousel-item img {
    cursor: pointer; /* Change le curseur pour indiquer que l'image est cliquable */
}

/* Définit le style pour l'image lorsqu'elle est zoomée */
.product-featured .carousel-item img.zoomed {
    transform: scale(0.9); /* Augmente la taille de l'image à 200% lors du zoom */
    z-index: 1000; /* S'assure que l'image zoomée reste au-dessus des autres éléments */
    position: fixed; /* Fixe l'image pour qu'elle occupe tout l'écran */
    top: 0; /* Aligne l'image zoomée en haut du conteneur */
    left: 0; /* Aligne l'image zoomée à gauche du conteneur */
    width: 100vw; /* Ajuste la largeur de l'image zoomée pour occuper tout l'espace de la fenêtre */
    height: 100vh; /* Ajuste la hauteur de l'image zoomée pour occuper toute la hauteur de la fenêtre */
    object-fit: contain; /* Maintient les proportions de l'image */
    cursor: zoom-out; /* Change le curseur pour indiquer que l'image peut être réduite */
    background-color: rgba(0, 0, 0, 0.5); /* Ajoute un fond semi-transparent pour le contraste */
    display: block; /* Assure que l'image est affichée */
}





.product-featured .showcase-content {
    margin-top: 20px; /* Réduire l'espace au-dessus du contenu pour plus de cohérence */
    width: calc(100% - 40px); /* Ajuster la largeur du contenu pour laisser de l'espace autour */
}

.product-featured .showcase-rating {
    color: #f0c14b; /* Couleur des étoiles pour correspondre à un style doré */
    font-size: 18px; /* Augmenter légèrement la taille des étoiles pour une meilleure visibilité */
}

.product-featured .showcase-rating > * {
    display: inline-block; /* Aligner les étoiles horizontalement */
}

.product-featured .showcase-title {
    font-size: 18px; /* Augmenter légèrement la taille de la police du titre pour plus d'impact */
    color: #333; /* Couleur du texte pour un contraste plus élevé */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.product-featured .showcase-desc {
    color: #666; /* Couleur du texte pour une meilleure lisibilité */
    font-size: 14px; /* Ajuster la taille de la police pour le confort de lecture */
    margin-bottom: 10px;
}

.product-featured .price-box {
    font-size: 16px; /* Ajuster la taille de la police pour un meilleur équilibre */
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.product-featured .price {
    color: #2a7ae2; /* Couleur du prix pour attirer l'attention */
    font-weight: bold; /* Utiliser une graisse de police plus forte pour le prix */
}

.product-featured del {
    color: #999; /* Couleur pour le prix barré */
    font-weight: normal; /* Rendre le texte barré moins prononcé */
}

.product-featured .add-to-cart {
    background: #2a7ae2; /* Couleur de fond du bouton */
  padding: 8px 8px; /* Padding pour ajuster la taille du bouton */
  color: #fff; /* Couleur du texte du bouton */
  font-weight: bold; /* Texte en gras */
  text-transform: uppercase; /* Texte en majuscules */
  border-radius: var(--border-radius-md); /* Bord arrondi */
  transition: background 0.3s ease; /* Transition de couleur au survol */
  border: none; /* Retire la bordure par défaut */
  cursor: pointer; /* Curseur pointer */
  display: inline-block; /* Affiche le bouton en bloc */
  width: 70px; /* Largeur fixe du bouton */
  margin: 5px 5px; /* Espacement autour du bouton */
  font-size: 10px; /* Réduit la taille du texte */
  
}

.product-featured .add-cart-btn:hover {
    background: #1a5fb2; /* Couleur de fond au survol */
}

.product-featured .showcase-status {
    margin-bottom: 15px;
}

.product-featured .showcase-status .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 14px; /* Ajuster la taille de la police pour plus de lisibilité */
    margin-bottom: 10px;
}

/* Styles pour la barre de progression */
.product-featured .showcase-status-bar {
    background: #2a7ae2;/* Couleur de fond pour la barre de progression */
    height: 8px; /* Hauteur de la barre de progression */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.product-featured .showcase-status-bar::before {
    content: '';
    display: block;
    background: #2a7ae2; /* Couleur de la barre de progression */
    height: 100%;
    width: 0; /* Commence à 0 et s'étendra en fonction du JavaScript */
    transition: width 0.5s ease;
}

/* Compte à rebours */
.product-featured .countdown-desc {
    color: #333; /* Couleur du texte du compte à rebours */
    font-size: 16px; /* Ajuster la taille de la police pour une meilleure visibilité */
    font-weight: bold;
    margin-bottom: 10px;
}

.product-featured .countdown {
    display: flex;
    gap: 10px; /* Espacement entre les éléments du compte à rebours */
}

.product-featured .countdown-item {
    padding: 15px; /* Augmenter le padding pour un effet plus spacieux */
    background: #fff; /* Couleur de fond plus claire pour un design moderne */
    border-radius: 12px; /* Rayon de bordure pour un effet arrondi plus prononcé */
    border: 1px solid #ddd; /* Ajouter une bordure légère pour définir les contours */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ajouter une ombre subtile pour un effet de profondeur */
}

/* Styles spécifiques pour chaque unité de temps */
.product-featured .countdown-item.days {
    border-radius: 12px 12px 0 0; /* Rayon de bordure pour les jours */
}

.product-featured .countdown-item.hours {
    border-radius: 12px 12px 0 0; /* Rayon de bordure pour les heures */
}

.product-featured .countdown-item.minutes {
    border-radius: 12px 12px 0 0; /* Rayon de bordure pour les minutes */
}

.product-featured .countdown-item.seconds {
    border-radius: 12px; /* Rayon de bordure pour les secondes */
}

.product-featured .display-number {
    color: #333; /* Couleur du nombre du compte à rebours */
    font-size: 24px; /* Augmenter la taille du nombre pour plus de visibilité */
    font-weight: bold; /* Gras pour les chiffres pour les rendre plus saillants */
}

.product-featured .display-text {
    color: #666; /* Couleur du texte du compte à rebours */
    font-size: 14px; /* Augmenter la taille du texte pour une meilleure lisibilité */
    font-weight: normal;
}


/* Conteneur parent des boutons */
.buttons-container {
    display: flex;
}



/* Début de défilement avec les bouton 1 et bouton 2  (btn-to-2 et btn-to-1) */
/* Assurez-vous que les conteneurs sont en position relative */
#showcase-container-1, #showcase-container-2 {
    position: relative; /* Permet aux éléments enfants positionnés absolument de se référer à ce conteneur */
}

/* Positionner le bouton .btn-to-1 dans #showcase-container-2 */
#showcase-container-2 .btn-to-1 {
    position: absolute; /* Permet le positionnement précis */
    left: 10px; /* Ajuste la distance du bord gauche */
    top: 50%; /* Centre verticalement le bouton */
    transform: translateY(-30%); /* Ajuste pour centrer verticalement */
    z-index: 10; /* Assurez-vous qu'il est au-dessus des autres éléments */
    display: block; /* Affiche le bouton */
}


/* Masquer le bouton de défilement vers #showcase-container-2 lorsque dans #showcase-container-2 */
#showcase-container-2 .btn-to-2 {
    display: none; /* Masquer ce bouton */
}

/* Positionner le bouton .btn-to-2 dans #showcase-container-1 */
#showcase-container-1 .btn-to-2 {
    position: absolute; /* Permet le positionnement précis */
    right: 10px; /* Ajuste la distance du bord droit */
    top: 50%; /* Centre verticalement le bouton */
    transform: translateY(-30%); /* Ajuste pour centrer verticalement */
    z-index: 10; /* Assurez-vous qu'il est au-dessus des autres éléments */
    display: block; /* Affiche le bouton */
}


/* Afficher le bouton de défilement vers #showcase-container-1 uniquement lorsque dans #showcase-container-1 */
#showcase-container-1 .btn-to-2 {
    display: block; /* Assurez-vous que le bouton est visible */
}
/* Fin de défilement avec les bouton 1 et bouton 2  (btn-to-2 et btn-to-1) */




/* Début de style pour le bouton 1  (btn-to-2) */
/* Styles pour le bouton .btn-to-2 */
.btn-to-2 {
    display: flex;
    align-items: center; /* Centre verticalement le contenu */
    justify-content: center; /* Centre horizontalement le contenu */
    width: 50px; /* Largeur du bouton */
    height: 50px; /* Hauteur du bouton */
    background-color: #007bff; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte et des icônes */
    border: none;
    border-radius: 50%; /* Bords arrondis pour un bouton circulaire */
    font-size: 0; /* Masquer le texte si présent */
    text-decoration: none; /* Supprime les soulignements des liens */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition douce pour les changements de couleur et les effets de transformation */
    cursor: pointer; /* Change le curseur pour indiquer que le bouton est cliquable */
    outline: none; /* Supprime le contour par défaut au clic */
    position: fixed; /* Position fixe */
    right: 20px; /* Distance depuis le bord droit de la fenêtre */
    top: 70%; /* Position Y ajustée avec une valeur dynamique */
    animation: move-left-to-right 1s infinite; /* Animation pour le déplacement de gauche à droite */
}

/* Création de la flèche pointant vers la droite */
.btn-to-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent; /* Partie supérieure de la flèche */
    border-bottom: 15px solid transparent; /* Partie inférieure de la flèche */
    border-left: 20px solid #fff; /* Partie gauche de la flèche */
    transform: translate(-50%, -50%); /* Centre la flèche dans le bouton */
}

/* Animation pour le bouton .btn-to-2 */
@keyframes move-left-to-right {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px); /* Déplace légèrement vers la droite */
    }
    100% {
        transform: translateX(0);
    }
}

/* Styles au survol du bouton .btn-to-2 */
.btn-to-2:hover {
    background-color: #ff0000; /* Couleur de fond du bouton au survol */
    transform: scale(1.1); /* Agrandit légèrement le bouton au survol */
}
/* Fin de style pour le bouton 1  (btn-to-2) */







/* Début de style pour le bouton 2  (btn-to-1) */
/* Styles pour le bouton .btn-to-1 */
.btn-to-1 {
    display: flex;
    align-items: center; /* Centre verticalement le contenu */
    justify-content: center; /* Centre horizontalement le contenu */
    width: 50px; /* Largeur du bouton */
    height: 50px; /* Hauteur du bouton */
    background-color: #007bff; /* Couleur de fond du bouton */
    color: #fff; /* Couleur du texte et des icônes */
    border: none;
    border-radius: 50%; /* Bords arrondis pour un bouton circulaire */
    font-size: 0; /* Masquer le texte si présent */
    text-decoration: none; /* Supprime les soulignements des liens */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition douce pour les changements de couleur et les effets de transformation */
    cursor: pointer; /* Change le curseur pour indiquer que le bouton est cliquable */
    outline: none; /* Supprime le contour par défaut au clic */
    position: fixed; /* Position fixe */
    left: 20px; /* Distance depuis le bord gauche de la fenêtre */
    top: 80%; /* Position Y ajustée avec une valeur dynamique */
    animation: move-right-to-left 1s infinite; /* Animation pour le déplacement de droite à gauche */
}

/* Création de la flèche pointant vers la gauche */
.btn-to-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 15px solid transparent; /* Partie supérieure de la flèche */
    border-bottom: 15px solid transparent; /* Partie inférieure de la flèche */
    border-right: 20px solid #fff; /* Partie droite de la flèche */
    transform: translate(-50%, -50%); /* Centre la flèche dans le bouton */
}

/* Animation pour le bouton .btn-to-1 */
@keyframes move-right-to-left {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px); /* Déplace légèrement vers la gauche */
    }
    100% {
        transform: translateX(0);
    }
}

/* Styles au survol du bouton .btn-to-1 */
.btn-to-1:hover {
    background-color: #ff0000; /* Couleur de fond du bouton au survol */
    transform: scale(1.1); /* Agrandit légèrement le bouton au survol */
}
/* Fin de style pour le bouton 2  (btn-to-1) */












/*-----------------------------------*\
#POPULAR PRODUCTS
\*-----------------------------------*/

.popular-products { margin-bottom: 30px; }

/* Styles pour le conteneur de produits */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Espace entre les colonnes */
    margin: 0 -15px; /* Ajustement des marges pour l'espacement */
}

/* Styles pour chaque produit */
.product-m {
    background-color: #fff; /* Couleur de fond blanche */
    border: 1px solid #ddd; /* Bordure grise claire */
    border-radius: 8px; /* Coins arrondis */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
    margin: 15px; /* Marge entre les produits */
    transition: transform 0.3s; /* Effet de transition pour le survol */
    position: relative; /* Pour le positionnement des éléments internes */
    min-height: 520px; /* Hauteur minimale fixe pour uniformiser toutes les cartes */
    max-height: 520px; /* Hauteur maximale fixe */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Cacher tout contenu qui déborde */
}

/* Effet de zoom au survol */
.product-m:hover {
    transform: scale(1.05); /* Agrandissement au survol */
}

/* Styles pour les images du produit */
.product-m__thumb {
    overflow: hidden; /* Masquer le débordement */
    height: 250px; /* Hauteur fixe pour uniformiser */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* Styles pour l'image par défaut */
.product-image {
    width: 100%; /* Largeur à 100% du conteneur */
    height: 100%; /* Hauteur à 100% pour remplir le conteneur */
    object-fit: contain; /* Contenir l'image sans déformation */
    transition: opacity 0.3s; /* Transition pour l'opacité */
}

/* Styles pour l'image au survol */
.product-image-second-hover {
    position: absolute; /* Positionnement absolu */
    top: 0; /* Alignement en haut */
    left: 0; /* Alignement à gauche */
    width: 100%; /* Largeur à 100% */
    height: 100%; /* Hauteur à 100% */
    object-fit: contain; /* Contenir l'image sans déformation */
    opacity: 0; /* Invisible par défaut */
    transition: opacity 0.3s; /* Transition pour l'opacité */
}

/* Afficher l'image au survol */
.product-m__thumb:hover .product-image-second-hover {
    opacity: 1; /* Rendre visible */
}

.product-m__thumb:hover .product-image {
    opacity: 0; /* Masquer l'image par défaut */
}

/* Styles pour le contenu du produit */
.product-m__content {
    padding: 15px; /* Rembourrage interne */
    flex: 1; /* Prendre l'espace restant */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Cacher tout contenu qui déborde */
}

/* Correction de la largeur pour product-m__hover */
.product-m {
    box-sizing: border-box; /* Assure la cohérence avec product-m__hover */
}

.product-m__hover {
    box-sizing: border-box; /* Assure que les paddings sont inclus dans la largeur */
}

/* Correction de la largeur pour product-m__preview-description */
.product-m__preview-description {
    width: 100%;
    box-sizing: border-box; /* Assure que les paddings sont inclus dans la largeur */
}

/* Correction de la largeur pour tm-product-title */
.tm-product-title {
    width: 100%;
    box-sizing: border-box; /* Assure que les paddings sont inclus dans la largeur */
}

/* Styles pour le prix */
.product-m__price {
    font-size: 1.5em; /* Taille du texte du prix */
    color: #333; /* Couleur du texte du prix */
    margin: 10px 0; /* Marge autour du prix */
}

/* Styles pour la catégorie du produit */
.product-m__category a {
    font-size: 0.9em; /* Taille de la police */
    color: #777; /* Couleur du texte */
}

/* Styles pour le bouton Ajouter au Panier */
.btn--e-achat {
    background-color: #007bff; /* Couleur de fond bleue */
    color: #fff; /* Couleur du texte blanche */
    padding: 10px 15px; /* Rembourrage interne */
    border: none; /* Pas de bordure */
    border-radius: 5px; /* Coins arrondis */
    cursor: pointer; /* Curseur en main */
    transition: background-color 0.3s; /* Transition pour la couleur de fond */
}

/* Changer la couleur de fond au survol */
.btn--e-achat:hover {
    background-color: #0056b3; /* Couleur de fond plus foncée au survol */
}

/* Styles pour le bouton de fermeture du zoom */
.zoom-close {
    background: transparent; /* Fond transparent */
    border: none; /* Pas de bordure */
    font-size: 1.5em; /* Taille du texte */
    cursor: pointer; /* Curseur en main */
    position: absolute; /* Positionnement absolu */
    top: 10px; /* Position haut */
    right: 10px; /* Position à droite */
}

/* Styles pour le conteneur de zoom */
.zoom-container {
    display: none; /* Cacher par défaut */
    position: fixed; /* Fixe à l'écran */
    top: 0; /* Aligné en haut */
    left: 0; /* Aligné à gauche */
    width: 100%; /* Largeur à 100% */
    height: 100%; /* Hauteur à 100% */
    background-color: rgba(0, 0, 0, 0.8); /* Fond noir transparent */
    justify-content: center; /* Centre le contenu */
    align-items: center; /* Centre verticalement */
    z-index: 1000; /* Z-index élevé pour superposer */
}

/* Afficher le conteneur de zoom lorsque nécessaire */
.zoom-container.active {
    display: flex; /* Affiche le conteneur en mode flex */
}






/*-----------------------------------*\
  #TESTIMONIAL
\*-----------------------------------*/

.testimonials-box { margin-bottom: 50px; }

.testimonial-card {
  padding: 30px 20px;
  border: 1px solid var(--cultured);
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  text-align: center;
  margin-bottom: 25px;
}

.testimonial-banner {
  margin: auto;
  margin-bottom: 20px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.testimonial-name {
  font-weight: var(--weight-700);
  text-transform: uppercase;
  color: var(--sonic-silver);
  margin-bottom: 5px;
}

.testimonial-title {
  color: #1a5fb2; /* Couleur de fond au survol */
  font-size: var(--fs-7);
  margin-bottom: 15px;
}

.quotation-img {
  margin: auto;
  margin-bottom: 10px;
}

.testimonial-desc {
  max-width: 50%;
  margin: auto;
  color: var(--sonic-silver);
  font-size: var(--fs-7);
}

.testimonial__block-quote {
  margin: 0 auto;
  width: 50%;
  padding: 10px 20px;
}





/*-----------------------------------*\
  #CTA - Conteneur principal pour l'appel à l'action
\*-----------------------------------*/

/* Conteneur du CTA */
.cta-container {
  position: relative; /* Positionne l'élément relativement à son conteneur parent */
  aspect-ratio: 5 / 6; /* Définit le ratio largeur/hauteur du conteneur */
  -webkit-border-radius: var(--border-radius-md); /* Bord arrondi pour les navigateurs WebKit */
          border-radius: var(--border-radius-md); /* Bord arrondi pour les autres navigateurs */
  overflow: hidden; /* Cache tout contenu qui dépasse les limites du conteneur */
  margin-bottom: 25px; /* Ajoute une marge en bas du conteneur */
}

/* Image de bannière dans le CTA */
.cta-banner {
  width: 100%; /* Prend 100% de la largeur du conteneur parent */
  height: 100%; /* Prend 100% de la hauteur du conteneur parent */
  -o-object-fit: cover; /* Ajuste la taille de l'image pour qu'elle couvre le conteneur pour Opera */
     object-fit: cover; /* Ajuste la taille de l'image pour qu'elle couvre le conteneur */
}

/* Contenu textuel du CTA */
.cta-content {
  background: hsla(0, 0%, 100%, 0.7); /* Fond semi-transparent blanc pour le contenu */
  position: absolute; /* Positionne l'élément par rapport à son conteneur parent le plus proche */
  top: 50%; /* Centre verticalement le contenu */
  left: 50%; /* Centre horizontalement le contenu */
  -webkit-transform: translate(-50%, -50%); /* Ajuste la position du contenu pour le centrer pour WebKit */
      -ms-transform: translate(-50%, -50%); /* Ajuste la position du contenu pour le centrer pour IE */
          transform: translate(-50%, -50%); /* Ajuste la position du contenu pour le centrer pour autres navigateurs */
  width: -webkit-fit-content; /* Ajuste automatiquement la largeur du contenu pour WebKit */
  width: -moz-fit-content; /* Ajuste automatiquement la largeur du contenu pour Mozilla */
  width: fit-content; /* Ajuste automatiquement la largeur du contenu pour autres navigateurs */
  padding: 15px 20px; /* Ajoute un espacement intérieur au contenu */
  text-align: center; /* Centre le texte à l'intérieur du contenu */
  -webkit-border-radius: var(--border-radius-sm); /* Bord arrondi pour WebKit */
          border-radius: var(--border-radius-sm); /* Bord arrondi pour autres navigateurs */
}

/* Étiquette de réduction dans le CTA */
.cta-content .discount {
  background: #1a5fb2; /* Couleur de fond de l'étiquette de réduction */
  color: var(--white); /* Couleur du texte de l'étiquette de réduction */
  font-size: var(--fs-11); /* Taille de la police de l'étiquette */
  font-weight: var(--weight-600); /* Épaisseur de la police de l'étiquette */
  text-transform: uppercase; /* Met le texte en majuscules */
  width: -webkit-max-content; /* Ajuste la largeur du contenu pour WebKit */
  width: -moz-max-content; /* Ajuste la largeur du contenu pour Mozilla */
  width: max-content; /* Ajuste la largeur du contenu pour autres navigateurs */
  margin: auto; /* Centre l'étiquette horizontalement */
  padding: 0 5px; /* Ajoute un espacement horizontal interne */
  -webkit-border-radius: var(--border-radius-sm); /* Bord arrondi pour WebKit */
          border-radius: var(--border-radius-sm); /* Bord arrondi pour autres navigateurs */
  margin-bottom: 5px; /* Ajoute une marge en bas de l'étiquette */
}

/* Titre du CTA */
.cta-title {
  color: var(--onyx); /* Couleur du texte du titre */
  font-size: var(--fs-5); /* Taille de la police du titre */
  text-transform: capitalize; /* Met la première lettre de chaque mot en majuscule */
  margin-bottom: 5px; /* Ajoute une marge en bas du titre */
}

/* Texte descriptif du CTA */
.cta-text {
  color: var(--sonic-silver); /* Couleur du texte */
  font-size: var(--fs-7); /* Taille de la police du texte */
  margin-bottom: 5px; /* Ajoute une marge en bas du texte */
}

/* Bouton d'appel à l'action */
.cta-btn {
  font-size: var(--fs-9); /* Taille de la police du bouton */
  color: var(--sonic-silver); /* Couleur du texte du bouton */
  text-transform: uppercase; /* Met le texte du bouton en majuscules */
  font-weight: var(--weight-700); /* Épaisseur de la police du bouton */
  margin: auto; /* Centre le bouton horizontalement */
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { margin-bottom: 30px; }

.blog-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-scroll-snap-type: inline mandatory;
      -ms-scroll-snap-type: inline mandatory;
          scroll-snap-type: inline mandatory;
}

.blog-card {
  min-width: 100%;
  scroll-snap-align: start;
}

.blog-banner {
  width: 100%;
  -webkit-border-radius: var(--border-radius-md);
          border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

.blog-category {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #2a7ae2; /* Couleur de fond du bouton */;
  font-size: var(--fs-8);
}

.blog-title {
  color: var(--eerie-black);
  font-size: var(--fs-5);
  font-weight: var(--weight-600);
  line-height: 1.4;
  margin-bottom: 5px;
  -webkit-transition: var(--transition-timing);
  -o-transition: var(--transition-timing);
  transition: var(--transition-timing);
}

.blog-title:hover { color: #2a7ae2; /* Couleur de fond du bouton */ }

.blog-meta {
  color: var(--sonic-silver);
  font-size: var(--fs-7);
}

.blog-meta cite {
  font-style: normal;
  color: #2a7ae2; /* Couleur de fond du bouton */
}






/**
 * responsive larger than 480px screen
 */

@media (min-width: 480px) {

  /**
   * #CUSTOM PROPERTY
   */

  :root {

    /**
     * typography 
     */

    --fs-1: 1.875rem;

  }



  /**
   * #HEADER
   */

  .header-top {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--cultured);
  }

  .header-social-container,
  .header-top-actions { display: none; }

  .header-alert-news {
    color: var(--sonic-silver);
    font-size: var(--fs-9);
    text-transform: uppercase;
  }

  .header-alert-news b { font-weight: var(--weight-500); }

  .header-main { padding: 25px 0; }

  .mobile-bottom-navigation {
    -webkit-border-top-left-radius: var(--border-radius-md);
            border-top-left-radius: var(--border-radius-md);
    -webkit-border-top-right-radius: var(--border-radius-md);
            border-top-right-radius: var(--border-radius-md);
  }



  /**
   * #BANNER
   */

  .slider-item { aspect-ratio: 5 / 3; }

  .banner-content {
    top: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    max-width: 320px;
  }

  .banner-subtitle { --fs-7: 1rem; }

  .banner-text {
    display: block;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    margin-bottom: 10px;
  }

  .banner-text b { font-size: var(--fs-2); }

  .banner-btn { padding: 7px 20px; }



  /**
   * #PRODUCT 
   */

  .product-grid {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }




/**
 * responsive larger than 570px screen
 */

@media (min-width: 570px) {

  /**
   * #HEADER
   */

  .header-top .container,
  .header-main .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header-logo { margin-bottom: 0; }

  .header-top-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }

  .header-top-actions select {
    border: none;
    display: block;
    min-width: 80px;
    padding: 5px 0;
    font: inherit;
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .header-top-actions select:hover { color: var(--eerie-black); }

  .header-search-container { min-width: 300px; }



  /**
   * #BANNER
   */

  .slider-item { aspect-ratio: 4 / 2; }

  .banner-content { background: none; }



  /**
   * #CATEGORY
   */

  .category-item-container { gap: 30px; }

  .category-item { min-width: -webkit-calc(50% - 15px); min-width: calc(50% - 15px); }



  /**
   * #PRODUCT
   */

  .product-minimal .showcase-container { min-width: 50%; }

  .product-featured .showcase-img {
    max-width: 450px;
    margin: auto;
  }

  .product-featured .countdown { gap: 20px; }



  /**
   * #CTA
   */

  .cta-container { aspect-ratio: 6 / 5; }



  /**
   * #BLOG
   */

  .blog-container { gap: 30px; }

  .blog-card { min-width: -webkit-calc(50% - 15px); min-width: calc(50% - 15px); }

}





/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * #CUSTOM PROPERTY
   */

  :root {

    /**
     * typography 
     */

    --fs-1: 2.375rem;

  }



  /**
   * #BASE 
   */

  html { font-size: 17px; }



  /**
   * #REUSED STYLE 
   */

  .container {
    max-width: 750px;
    margin: auto;
  }


  
  /**
   * #MODAL 
   */

  .modal-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 750px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .newsletter-img { display: block; }

  .newsletter { text-align: left; }



  /**
   * #HEADER 
   */

  .header-main .container { gap: 80px; }

  .header-search-container { -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; }



  /**
   * #BANNER 
   */

  .slider-item {
    aspect-ratio: auto;
    height: 350px;
  }

  .banner-content { max-width: 380px; }

  .banner-subtitle { --fs-7: 1.25rem; }

  .banner-text { --fs-7: 1.125rem; }

  .banner-text b { --fs-2: 1.875rem; }

  .banner-btn { --fs-11: 0.75rem; }



  /**
   * #CATEGORY 
   */

  .category-img-box { padding: 5px; }



  /**
   * #PRODUCT 
   */

  .product-minimal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }

  .product-minimal .product-showcase {
    min-width: -webkit-calc(50% - 10px);
    min-width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }

  .product-minimal .showcase-container { min-width: 100%; }
  
  .product-featured .showcase {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }

  .product-featured .showcase-img { max-width: -webkit-fit-content; max-width: -moz-fit-content; max-width: fit-content; }

  .product-featured .showcase-content {
    margin-top: 0;
    min-width: -webkit-calc(100% - 345px);
    min-width: calc(100% - 345px);
  }







/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  /**
   * #CUSTOM PROPERTY
   */

  :root {

    /**
     * typography 
     */

    --fs-1: 2.625rem;
    --fs-2: 1.125rem;

  }



  /**
   * #REUSED STYLE 
   */

  .container { max-width: 980px; }



  /**
   * #NOTIFICATION TOAST 
   */

  .notification-toast { bottom: 30px; }



  /**
   * #HEADER 
   */

  .header-social-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }

  .header-social-container .social-link {
    padding: 5px;
    background: hsl(0, 0%, 95%);
    -webkit-border-radius: var(--border-radius-sm);
            border-radius: var(--border-radius-sm);
    color: var(--sonic-silver);
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .header-social-container .social-link:hover {
    background: steelblue;
    color: var(--white);
  }

  .header-user-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }

  .header-user-actions .action-btn {
    position: relative;
    font-size: 35px;
    color: var(--onyx);
    padding: 5px;
  }

  .header-user-actions .count {
    position: absolute;
    top: -2px;
    right: -3px;
    background: var(--bittersweet);
    color: var(--white);
    font-size: 12px;
    font-weight: var(--weight-500);
    line-height: 1;
    padding: 2px 4px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
  }

  .desktop-navigation-menu { display: block; }

  .desktop-menu-category-list {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }

  .desktop-menu-category-list .menu-category:not(:nth-child(2)) { position: relative; }

  .desktop-menu-category-list .menu-category > .menu-title {
    position: relative;
    color: var(--onyx);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    padding: 15px 0;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .desktop-menu-category-list .menu-category > .menu-title:hover { color: steelblue; }
  
  .desktop-menu-category-list .menu-category > .menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: steelblue;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .desktop-menu-category-list .menu-category > .menu-title:hover::after { -webkit-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1); }

  .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--cultured);
    -webkit-box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
            box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
    -webkit-border-radius: var(--border-radius-md);
            border-radius: var(--border-radius-md);
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
    z-index: 5;
  }

  .desktop-menu-category-list .menu-category:hover > .dropdown-panel {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .dropdown-panel-list .menu-title a {
    color: var(--onyx);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cultured);
    margin-bottom: 10px;
  }

  .panel-list-item a {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .panel-list-item a:hover { color: steelblue; }

  .panel-list-item:not(:last-child) a { padding: 4px 0; }

  .panel-list-item:last-child { margin-top: 20px; }

  .panel-list-item img {
    width: 100%;
    height: auto;
    -webkit-border-radius: var(--border-radius-sm);
            border-radius: var(--border-radius-sm);
  }

  .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: var(--white);
    padding: 20px 0;
    -webkit-border-radius: var(--border-radius-md);
            border-radius: var(--border-radius-md);
    border: 1px solid var(--cultured);
    -webkit-box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
            box-shadow: 0 3px 5px hsla(0, 0%, 0%, 0.1);
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
    z-index: 5;
  }

  .desktop-menu-category-list .menu-category:hover > .dropdown-list {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .dropdown-list .dropdown-item a {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    padding: 4px 20px;
    -webkit-transition: var(--transition-timing);
    -o-transition: var(--transition-timing);
    transition: var(--transition-timing);
  }

  .dropdown-list .dropdown-item a:hover { color: steelblue; }

  .mobile-bottom-navigation { display: none; }



  /**
   * #BANNER 
   */

  .banner { margin-top: 0; }

  .slider-item { height: 380px; }

  .banner-content {
    left: 75px;
    max-width: 400px;
  }

  .banner-subtitle { --fs-7: 1.625rem; }

  .banner-text { --fs-7: 1.375rem; }

  .banner-btn { --fs-11: 0.875rem; }



  /**
   * #CATEGORY 
   */

  .category-item { min-width: -webkit-calc(33.33% - 20px); min-width: calc(33.33% - 20px); }

  .category-img-box { padding: 5px; }



  /**
   * #PRODUCT 
   */

  .product-container .container {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }

  .sidebar {
    --fs-5: 0.941rem;

    position: -webkit-sticky;

    position: sticky;
    top: 30px;
    left: 0;
    padding: 0;
    min-width: -webkit-calc(25% - 15px);
    min-width: calc(25% - 15px);
    margin-bottom: 30px;
    visibility: visible;
    overflow-y: auto;
    -ms-scroll-chaining: chained;
        overscroll-behavior: auto;
    z-index: 0;
  }

  .sidebar-category {
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--cultured);
    -webkit-border-radius: var(--border-radius-md);
            border-radius: var(--border-radius-md);
  }

  .sidebar-close-btn { display: none; }

  .product-box { min-width: -webkit-calc(75% - 15px); min-width: calc(75% - 15px); }

  .product-minimal { margin-bottom: 20px; }

  .product-minimal .product-showcase {
    min-width: -webkit-calc(33.33% - 14px);
    min-width: calc(33.33% - 14px);
    width: -webkit-calc(33.33% - 14px);
    width: calc(33.33% - 14px);
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  .product-minimal .showcase-wrapper { gap: 10px; }

  .product-minimal .showcase-container { padding: 2px; }

  .product-featured .countdown-content { padding: 5px 10px; }

  .product-grid { -ms-grid-columns: (1fr)[3]; grid-template-columns: repeat(3, 1fr); }



  /**
   * #TESTIMONIALS, CTA & SERVICE 
   */

  .testimonials-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 30px;
  }

  .testimonial-card { margin-bottom: 0; }

  .testimonial, .cta-container {
    min-width: -webkit-calc(50% - 15px);
    min-width: calc(50% - 15px);
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
    margin-bottom: 0;
  }


	
  /**
   * #BLOG
   */

  .blog-card { min-width: -webkit-calc(33.33% - 20px); min-width: calc(33.33% - 20px); }

  .blog-title { --fs-5: 1rem; }








/**
 * responsive larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * #REUSED STYLE 
   */

  .container { max-width: 1200px; }



  /**
   * #HEADER
   */

  .desktop-menu-category-list { gap: 45px; }



  /**
   * #BANNER
   */

  .slider-item:last-child .banner-img { -o-object-position: top; object-position: top; }



  /**
   * #CATEGORY
   */

  .category-item { min-width: -webkit-calc(25% - 22.5px); min-width: calc(25% - 22.5px); }

  .category-item-title { --fs-9: 0.824rem; }



  /**
   * #PRODUCT
   */

  .product-featured .showcase > div { min-width: -webkit-calc(50% - 10px); min-width: calc(50% - 10px); }

  .product-featured .display-number { --fs-5: 1.125rem; }

  .product-grid { -ms-grid-columns: (1fr)[4]; grid-template-columns: repeat(4, 1fr); }



  /**
   * #TESTIMONIALS, CTA, SERVICE
   */

  .testimonial, .service {
    min-width: -webkit-calc(25% - 20px);
    min-width: calc(25% - 20px);
    width: -webkit-calc(25% - 20px);
    width: calc(25% - 20px);
  }

  .cta-container {
    min-width: -webkit-calc(50% - 20px);
    min-width: calc(50% - 20px);
    width: -webkit-calc(50% - 20px);
    width: calc(50% - 20px);
    aspect-ratio: unset;
  }

  .service-container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
    padding: 30px;
  }

  .service-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }

}

  /**
   * #BLOG
   */

  .blog { margin-bottom: 50px; }
  
  .blog-card { min-width: -webkit-calc(25% - 22.5px); min-width: calc(25% - 22.5px); }



  





/**
 * responsive larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * #BASE 
   */

  html { font-size: 18px; }



  /**
   * #REUSED STYLE 
   */

  .container { max-width: 1350px; }



  /**
   * #BANNER
   */

  .slider-item { height: 450px; }

  .banner-content {
    left: 110px;
    max-width: 460px;
  }

}

.dropdown-list {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f9f9f9;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
    min-width: 400%; /* Assure que le sous-menu a au moins la largeur de son parent */
}

.menu-category:hover > .dropdown-list {
    display: block; /* Affiche le sous-menu au survol */
}







  /**
   * STYLES DES SOUS MENUS 
   */
.dropdown-item a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.dropdown-item a:hover {
    background-color: #ddd;
}