/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #ffbd59
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/


/*----------------------------*\
	Message pour evaluation
\*----------------------------*/
.custom-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f3e2e2e3;
  padding: 10px;
  text-align: center;
  display: block;
  z-index: 9999;
  transition: opacity 0.5s all;
}

.success-message {
  color: green; /* Couleur verte pour les messages de succès */
}

.error-message {
  color: red; /* Couleur rouge pour les messages d'erreur */
}

.voir-plus {
  color: #2196F3;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

/*----------------------------*\
	Recherche
\*----------------------------*/

#search_suggestions {
  position: absolute;
  width: 100%;
  max-height: 450px;
  overflow-y: auto;
  background-color: #fff;
  border-top: none;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* border: 1px solid #ffbd59; Applique la bordure principale */
}

/* Média query pour les écrans de bureau */
@media (min-width: 992px) {
  #search_suggestions {
    width: 60%;
  }
}

.highlight {
  background-color: #ffbd59;
  font-weight: bold;
}

.suggestion, .no-suggestion {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ffbd59; /* Applique la bordure entre les suggestions */
}

.suggestion:hover {
  background-color: #f0f0f0;
}


.no-suggestion {
  padding: 10px;
  text-align: center;
  color: #999;
  font-size: 18px;
  border-bottom: none; /* Pas de bordure en bas pour le dernier élément */
}

/* Appliquer la bordure à l'élément parent */
.suggestion:last-child {
  border-bottom: none; /* Enlève la bordure en bas de la dernière suggestion */
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4em;
}


.suggestion-recent, .no-suggestion-recent {
  padding: 5px;
  color: #ccc;
  border-bottom: 1px solid #999; /* Applique la bordure entre les suggestions-recent */
}

.suggestion-recent a:hover {
  background-color: #fff;
  color: #999;
}


.no-suggestion-recent {
  padding: 10px;
  text-align: center;
  color: #999;
  font-size: 18px;
  border-bottom: none; /* Pas de bordure en bas pour le dernier élément */
}

/* Appliquer la bordure à l'élément parent */
.suggestion-recent:last-child {
  border-bottom: none; /* Enlève la bordure en bas de la dernière suggestion-recent */
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4em;
}



/*----------------------------*\
	Typography
\*----------------------------*/

.section-masque-laptop {
  display: none;
}

@media only screen and (max-width: 991px) {
  .section-masque-laptop {
    display: inline-block;
    padding: 15px;
  }
  .section-masque-laptop, .majuscule {
    color: #fff;
  }
  .majuscule:hover, .majuscule:focus {
    color: #00B4DB;  /* fallback for old browsers */
    background-color: transparent;
  }

}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  /* background-image: linear-gradient(-134deg, #FFA62E 0%, #FB962E 20%, #F8852E 40%, #F3742D 60%, #EF612D 80%, #EA4D2C 100%); */
    
}

h1, h2, h3, h4, h5, h6 {
  color: #2B2D42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2B2D42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #ffbd59;
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/



.majuscule {
  text-transform: uppercase;
}

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffbd59;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.secondary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff000060;
  border: none;
  border-radius: 40px;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: #FFF;
}

/*----------------------------*\
	Inputs
\*----------------------------*/
.wrap-login100 {
    width: 500px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.p-r-55 {
    padding-right: 55px;
}
.p-l-55 {
    padding-left: 55px;
}
.p-b-54 {
    padding-bottom: 54px;
}
.p-t-65 {
    padding-top: 65px;
}
.login100-form {
    width: 100%;
}
.login100-form-title {
    display: block;
    /* font-family: Poppins-Bold; */
    font-size: 30px;
    color: #333333;
    line-height: 1;
    text-align: center;
}
.p-b-49 {
    padding-bottom: 49px;
}
.validate-input {
    position: relative;
}
.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
}
.m-b-23 {
    margin-bottom: 23px;
}

/*-- Text input --*/


.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #ffbd59;
  background-color: #FFF;
  width: 100%;
  outline: none;
}

.input-select:focus {
  border-color: #ffbd59;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: #ffbd59;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #ffbd59;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #ffbd59;
  height: 40px;
  width: 530px;
  outline: none;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #FFF;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #FFF;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #FFF;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #ffbd59;
  border-color: #ffbd59;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.section-title .title {
  display: inline-block;
  text-transform: capitalize;
  margin: 0px;
  color: #8a6d3b;
}
.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #8D99AE;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ffbd59;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #ffbd59;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #ffbd59;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

/* #top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1E1F29;
} */

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #1E1F29;
}

.header-links li a:hover {
  color: #1E1F29;
}

.header-links li i,
.mot-entet {
  color: black;
  margin-right: 5px;
  font-size: 16px;
  cursor: pointer;
}

.header-links li i,
.mot-entet-header {
  color: white;
  margin-right: 5px;
  font-size: 16px;
  cursor: pointer;
}


/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  padding-top: 0px;
  padding-bottom: 0px;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 33px 0px;
  width: 698px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 10px 0px 0px 30px;
  margin-left: 10px;
}

.header-search form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 10px 0px 0px 50px;
  outline: none;
}

.header-search form .search-btn {
  height: 40px;
  width: 40px;
 background: #ffbd59;  /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #ffbd59, #ffbd59);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #ffbd59, #ffbd59); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */



  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 0px;
}

.header-ctn>div {
  display: inline-block;
}

.header-ctn>div+div {
  margin-left: 15px;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 8px;
  top: -198px;
  right: 9px;
  text-align: center;
  color: #FFF;
}

.header-ctn>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #FFF;
  background-color: #ffbd59;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdownn {
  position: absolute;
  width: 366px;
  background: #FFF;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
  box-shadow: 0px 0px 0px 2px #E4E7ED;
  z-index: 9999;
  right: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px 36px 31px 30px;
}

.text-montre{
  display: none;
}

.dropdownn.open>.cart-dropdownn {
  opacity: 1;
  visibility: visible;
}

.cart-dropdownn .cart-list {
  max-height: 430px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdownn .cart-list .product-widget-cart {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdownn .cart-list .product-widget-cart:last-child {
  margin-bottom: 0px;
}

.cart-dropdownn .cart-list .product-widget-cart .product-img-cart {
  left: 0px;
  top: 0px;
  background-color: white;
}

.cart-dropdownn .cart-list .product-widget-cart .product-body-cart .product-price {
  color: #2B2D42;
}

.cart-dropdownn .cart-btns {
  margin: 0px -17px -17px;
}


.cart-dropdownn .cart-summary {
  border-top: 1px solid #E4E7ED;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: #FFF;
  border-bottom: 2px solid #E4E7ED;
  border-top: 3px solid #ffbd59;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 20px;
}

.main-nav>li>a {
  padding: 16px 0px;
  font-size: 14px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: #00B4DB;  /* fallback for old browsers */
  background-color: transparent;
}

.main-nav>li>a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #00B4DB; 
  background: -webkit-linear-gradient(to right, #0083B0, #00B4DB); 
  background: linear-gradient(to right, #0083B0, #00B4DB);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  .text-montre{
    display: ruby-text;
  }
  .text-masque {
    display: none;
  }
  .section-masque {
    display: none;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, #ffbd59, #3349b7eb);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 999999;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
  }
}



/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: -2px 4px;
}

/* .shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #12c2e9;  
  background: -webkit-linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9);  
  background: linear-gradient(to bottom, #ffbd59, #ffbd59, #fff); 
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-180deg);
} */

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  /* background: #12c2e9;  
  background: -webkit-linear-gradient(to bottom, #f64f59, #c471ed, #12c2e9);  
  background: linear-gradient(to bottom, #ffbd59, #ffbd59, #ffbd59);  */
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-50%);
}

.shop .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #FFF;
}

.shop .shop-body .cta-btn {
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #00B4DB;
  padding: 5px;
  border-radius: 10px;
}
.cta-btn:hover {
  background-color: #4141c298;
  border-radius: 50px;
  padding: 10px;
}



/*=========================================================
	04 -> CATEGORY SHOP-Carousel
===========================================================*/

.shop-carousel {
  position: relative;
  overflow: hidden;
  margin: 2px -13px;
}


.shop-carousel:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-50%);
}

.shop-carousel .shop-img {
  position: relative;
  background-color: #E4E7ED;
  z-index: -1;
}

.shop-carousel .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop-carousel:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop-carousel .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop-carousel .shop-body h3 {
  color: #FFF;
}

.shop-carousel .shop-body .cta-btn {
  color: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #00B4DB;
  padding: 5px;
  border-radius: 10px;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #ffbd59;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #FFF;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #FFF;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ffbd59;
  box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ffbd59;
}

.product .product-img {
  position: relative;
  background-color: white;
}

.product .product-img>img {
  width: 100%;
  background-color: #fff;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
  /* background-color: white; */
}

.product-img img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.2s all;
}
.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
  padding: 5px;
  background-color: white;
}

.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #8BC34A;
  color: #4CAF50;
  border-radius: 10px;
  padding: 3px;
  font-size: 10px;
  margin-left: 57px;
}

.product .product-img .product-label>span.new {
  background-color: #ffbd59;
  border-color: #ffbd59;
  color: #FFF;
  padding: 3px;
  font-size: 10px;
  text-transform: uppercase;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #FFF;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1em;
  max-height: 2em;
  color: #8D99AE;
  font-weight: 700;
}
 
.product .product-body .product-name {
  /* text-transform: uppercase; */
  font-size: 14px;
}

.product .product-body .product-name>a {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  max-height: 3em;
}

.row-store-article-cadre {
  margin-right: -12px;
  margin-left: -25px
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #ffbd59;
}

.product .product-body .product-price {
  color: #15161D;
  font-size: 16px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #FFF;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #ffbd59;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  /* background: #e91e63b3; */
  color: #e91e63b3;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #e91e63b3;
  color: white;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #FFF;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}


.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #a5670b;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
}


.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ffbd59;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #ffbd59;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #ffbd59;
  border-color: #ffbd59;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn::before {
  content: "Panier";
}
  
.product .add-to-cart .add-to-cart-btn:hover::before {
  content: "Ajouter";
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget-cart {
  position: relative;
  
}

.product-widget-cart+.product-widget-cart {
  margin: 30px 0px;
}

.product-widget-cart .product-img-cart {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  background-color: white;
    
}

.product-widget-cart .product-img-cart>img {
  width: 100%;
  background-color: white;
}

.product-widget-cart .product-body-cart {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget-cart .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}

.product-widget-cart .product-body .product-name {
  /* text-transform: uppercase; */
  font-size: 12px;
}

.product-widget-cart .product-body .product-name>a {
  font-weight: 700;
}

.product-widget-cart .product-body .product-name>a:hover, .product-widget-cart .product-body .product-name>a:focus {
  color: #ffbd59;
}

.product-widget-cart .product-body .product-price {
  font-size: 14px;
  color: #15161D;
}

.product-widget-cart .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-widget-cart .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget-cart .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #FFF;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #E4E7ED;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #ffbd59;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #ffbd59;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #ffbd59;
}

.store-grid li.active {
  background-color: #ffbd59;
  border-color: #ffbd59;
  color: #FFF;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #ffbd59;
}

.store-pagination li.active {
  background-color: #ffbd59;
  border-color: #ffbd59;
  color: #FFF;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #FFF;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
  background-color: white;
}

#product-imgs .product-preview.slick-current {
  border-color: #ffbd59;
  background-color: white;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: white;
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: white;
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  font-size: 18px;
  overflow-wrap: break-word; /* Pour gérer le retour à la ligne du texte */
  word-wrap: break-word;     /* Pour compatibilité avec les anciens navigateurs */
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #ffbd59;
}

.product-details .review-link {
  font-size: 14px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #15161D;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 10px;
  color: #ffbd59;
  border: 1px solid #ffbd59;
  padding: 5px;
  border-radius: 10px;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

/* Ajouter au CART */ 

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ffbd59;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #ffbd59;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #ffbd59;
  border-color: #ffbd59;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

/* Ajouter au Cart fin */



/* Ajouter au FAV */


.product-details {
  margin-bottom: 30px;
}

.product-details .add-to-wishlist {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ff6459;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-wishlist>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #ff6459;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-wishlist:hover {
  background-color: #FFF;
  color: #ff6459;
  border-color: #ff6459;
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-wishlist:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

/* Ajouter au FAV fin */

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #FFF;
  padding: 0px 0px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #ffbd59;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ffbd59;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: #E4E7ED;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: #ffbd59;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #E4E7ED;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: #ffbd59;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
  overflow-wrap: break-word; /* Nouvelle syntaxe recommandée */
}


.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 12px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #ffbd59;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #E4E7ED;
  color: #ffbd59;
}

.reviews-pagination li.active {
  background-color: #ffbd59;
  border-color: #ffbd59;
  color: #FFF;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
  font-size: 18px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  color: #ffbd59;
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: #ffbd59;
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #ffbd59;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #ffbd59;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #00B4DB;  /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #E4E7ED;
  color: #ffbd59;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: #15161D;
  color: #B9BABC;
}

#bottom-footer {
  background: #1E1F29;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: black;
}

.footer-links li i {
  margin-right: 15px;
  color: #ffbd59;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #ffbd59;
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
  text-align: center;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161D;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: #ffbd59;
  border-color: #ffbd59;
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: #2B2D42;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #FFF;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #ffbd59;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 425px) {  

  .product .product-img .product-label>span.sale {
    background-color: #FFF;
    border-color: #8BC34A;
    color: #4CAF50;
    border-radius: 10px;
    padding: 3px;
    font-size: 7px;
    margin-left: 40px;
    /* margin-right: 30px; */
  }
  .product .product-img .product-label>span.new {
    background-color: #ffbd59;
    border-color: #ffbd59;
    color: #FFF;
    font-size: 7px;
    padding: 3px;
    text-transform: uppercase;
}
}
@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
    top: -222px;
  }
  .header-search {
    padding: 0px 0px;
    width: 100%;
  }
  .text-montre{
    display: ruby-text;
  }
  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 210px;
    outline: none;
  }
  .input-select:focus {
    border-color: #ffbd59;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
  }
  .newsletter form .input {
  width: calc(112% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 100px;
  height: 40px;
  font-weight: 700;
  background: #00B4DB;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  border: none;
  border-radius: 0px 40px 40px 0px;
}
  .cart-dropdownn {
    width: 269px;
    top: 60px;
    right: -226px;
    border-radius: 10px 0px 0px 30px;
  }
  .cart-dropdownn .cart-list {
    max-height: 290px;
  }
  .header-logo .logo {
    display: inline-block;
    top: -222px;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
    background-color: white;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .shop .shop-body h3 {
    color: #15161D;
    font-size: 14px;
  }
  .shop .shop-body .cta-btn {
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 7px;
  }

  .shop-carousel .shop-body h3 {
    color: #15161D;
    font-size: 14px;
  }
  .shop-carousel .shop-body .cta-btn {
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 7px;
  }
  .fa-arrow-circle-right {
    display: none;
  }

  

  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}

.asterix-color {
  color:#a94442;
}

@media only screen and (max-width: 354px) {
  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 250px;
    outline: none;
}

.header-ctn>div>a {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  padding: 8px;
  top: -196px;
  right: 9px;
  text-align: center;
  color: #FFF;
}

}
/* @media only screen and (max-width: 350px) {
.col-store {
  width: 100%;
  padding: 5px;
  height: 445px;
}
} */

@media only screen and (min-width: 355px) and (max-width: 990px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 300px;
    outline: none;
}
    .header-ctn>div>a {
        display: block;
        position: absolute; /* Utiliser absolute au lieu de relative pour le sortir du flux */
        width: 40px;
        height: 40px;
        padding: 8px;
        top: 0; /* Positionner tout en haut */
        right: 9px; /* Ajuster la position horizontale si nécessaire */
        text-align: center;
        color: #FFF;
        z-index: 1000; /* S'assurer qu'il est au-dessus des autres éléments */
    }
    
    /* Optionnel: ajuster le header pour compenser l'espace si nécessaire */
    .header-ctn {
        position: relative;
        min-height: 56px; /* Hauteur minimale pour le header (40px + 2x8px padding) */
    }
}



@media only screen and (min-width: 400px) and (max-width: 450px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 330px;
    outline: none;
}
}

@media only screen and (min-width: 451px) and (max-width: 510px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 380px;
    outline: none;
}
}

@media only screen and (min-width: 511px) and (max-width: 600px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 440px;
    outline: none;
}
}

@media only screen and (min-width: 601px) and (max-width: 700px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 530px;
    outline: none;
}
}

@media only screen and (min-width: 701px) and (max-width: 800px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 630px;
    outline: none;
}
}


@media only screen and (min-width: 801px) and (max-width: 991px) {

  .input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #ffbd59;
    height: 40px;
    width: 678px ;
    outline: none;
}
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin: 5px;
  position: relative;
}

.square-border {
  border: 0.5px solid;
  background: linear-gradient(60deg, #1d8cf8, #ff9800);
}

.square-border2 {
  border: 0.5px solid;
  /* background: linear-gradient(60deg, #1d8cf8, #ff9800); */
  /* border-radius: 50%; */
}

.icon i {
  font-size: 24px;
}

.wishlist-count {
  font-size: 14px; /* Taille de la police pour le chiffre */
  position: absolute; /* Position absolue par rapport à l'icône */
  bottom: -10px; /* Ajustement vers le bas pour le chiffre */
  right: -10px; /* Ajustement vers la droite pour le chiffre */
  background-color: #ff9900; /* Fond blanc pour le chiffre */
  padding: 3px 8px; /* Espace autour du chiffre */
  border-radius: 50%; /* Pour rendre le fond du chiffre rond */
}



.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px; /* Changer cette valeur selon votre besoin */
}

.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #e65540;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.swal-button:hover {
    background-color: #333333;
}

.swal-button:active {
    background-color: #e65540;
}

.swal-title {
  font-family: Montserrat-Medium;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 15px;
}

.swal-text {
  font-family: Montserrat-Regular;
  color: #333333;
  font-size: 15px;
  text-align: center;
}

.swal-footer {
    margin-top: 0;
}


.login-col{
    background-image: linear-gradient(-135deg, #FF6CAB 0%, #F660BC 10%, #EC53CD 20%, #E045DE 30%, #D335EE 40%, #C323FF 50%, #B53AFF 60%, #A749FF 70%, #9854FF 80%, #865EFF 90%, #7366FF 100%);
    padding-bottom: 5%;
    
    
        
    
}

.login-pad{
    padding-top: 10%;
    padding-left: 35%;
    padding-bottom: 5%;
    
    
}
.login-pad2{
    padding-left: 7%;
    padding-right: 7%;
}
.login-marg{
    margin-left: 2%;
    
        
}
.text-pad{
    padding-top: 5%;
    padding-left: 59%;
    margin-bottom: 5%;
}
.main-raised {

  margin: 11px 0px 0px;
  border-radius: 6px;
  /* box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); */
}
.main {

    background: #fff;
    position: relative;
    z-index: 3;

}
.mainn-raised {

    margin: 18px 0px 0px;
    border-radius: 6px;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);

}
.mainn {

    background: #C9D6FF;  /* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #E2E2E2, #C9D6FF);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #E2E2E2, #C9D6FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    position: relative;
    z-index: 3;

}

.review-form-style {
  /* top: 38px; */
  position: relative;
  z-index: 3;
  
}

.rating-breakdown {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rating-breakdown li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.rating-breakdown .rating-stars {
  width: 80px;
  display: flex;
}

.rating-breakdown .rating-stars i {
  color: #FFD700;
  margin-right: 2px;
}

.rating-breakdown .rating-bar-container {
  flex: 1;
  height: 20px;
  background-color: #e0e0e0;
  margin: 0 10px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.rating-breakdown .rating-bar {
  height: 100%;
  background-color: #FFD700;
  position: absolute;
  top: 0;
  left: 0;
}

.rating-breakdown .rating-count {
  width: 50px;
  text-align: right;
}

.rating-breakdown .rating-percentage {
  width: 40px;
  text-align: right;
  margin-left: 5px;
}

/* #toggle-reviews {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
}

#toggle-reviews:hover {
    background-color: #45a049;
} */

.reviews-transition {
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: hidden;
}

.reviews-collapsed {
    max-height: 0;
    opacity: 0;
}

.reviews-expanded {
    max-height: 1000px; /* Adjust this value depending on the expected number of reviews */
    opacity: 1;
}


.product-description {
  position: relative;
  overflow: hidden;
}

/*  */

.product-description p.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.clear-search {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 50%;
  padding: 2px;
  font-size: 24px;
  transform: translateY(-50%);
  color: white;
  background: #9E9E9E;
  /* height: 40px; */
  width: 39px;
  /* background: #ffbd59; */
  background: -webkit-linear-gradient(to bottom, #ffbd59, #ffbd59);
  /* background: linear-gradient(to bottom, #ffbd59, #ffbd59); */
  color: #FFF;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
  z-index: 9999;


}
#loader-wrapper {
  display: none; /* Caché initialement */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Couleur de fond semi-transparente */
  z-index: 9999; /* Pour s'assurer que le spinner est au-dessus de tout */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-chargement {
  border: 4px solid #f3f3f3; /* Couleur de la bordure */
  border-top: 4px solid #ffbd59; /* Couleur de la partie supérieure */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 500ms linear infinite; /* Animation de rotation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.countdownflash {
    font-size: 18px;
    font-weight: bold;
    color: #F44336; /* Couleur rouge pour correspondre au titre */
    margin-top: 10px;
}

/* BIBLIOTHEQUE PERSONNALISE Font-size */
.fs-5px { font-size: 5px; }
.fs-6px { font-size: 6px; }
.fs-7px { font-size: 7px; }
.fs-8px { font-size: 8px; }
.fs-9px { font-size: 9px; }
.fs-10px { font-size: 10px; }
.fs-11px { font-size: 11px; }
.fs-12px { font-size: 12px; }
.fs-13px { font-size: 13px; }
.fs-14px { font-size: 14px; }
.fs-15px { font-size: 15px; }
.fs-16px { font-size: 16px; }
.fs-17px { font-size: 17px; }
.fs-18px { font-size: 18px; }
.fs-19px { font-size: 19px; }
.fs-20px { font-size: 20px; }
.fs-21px { font-size: 21px; }
.fs-22px { font-size: 22px; }
.fs-23px { font-size: 23px; }
.fs-24px { font-size: 24px; }
.fs-25px { font-size: 25px; }
.fs-26px { font-size: 26px; }
.fs-27px { font-size: 27px; }
.fs-28px { font-size: 28px; }
.fs-29px { font-size: 29px; }
.fs-30px { font-size: 30px; }
.fs-31px { font-size: 31px; }
.fs-32px { font-size: 32px; }
.fs-33px { font-size: 33px; }
.fs-34px { font-size: 34px; }
.fs-35px { font-size: 35px; }
.fs-36px { font-size: 36px; }
.fs-37px { font-size: 37px; }
.fs-38px { font-size: 38px; }
.fs-39px { font-size: 39px; }
.fs-40px { font-size: 40px; }
.fs-41px { font-size: 41px; }
.fs-42px { font-size: 42px; }
.fs-43px { font-size: 43px; }
.fs-44px { font-size: 44px; }
.fs-45px { font-size: 45px; }
.fs-46px { font-size: 46px; }
.fs-47px { font-size: 47px; }
.fs-48px { font-size: 48px; }
.fs-49px { font-size: 49px; }
.fs-50px { font-size: 50px; }

/* BIBLIOTHEQUE PERSONNALISE Font-weight */
.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.fw-bold { font-weight: bold; }


/* BIBLIOTHEQUE PERSONNALISE Font-size */
.fs-5px { font-size: 5px; }
.fs-6px { font-size: 6px; }
.fs-7px { font-size: 7px; }
.fs-8px { font-size: 8px; }
.fs-9px { font-size: 9px; }
.fs-10px { font-size: 10px; }
.fs-11px { font-size: 11px; }
.fs-12px { font-size: 12px; }
.fs-13px { font-size: 13px; }
.fs-14px { font-size: 14px; }
.fs-15px { font-size: 15px; }
.fs-16px { font-size: 16px; }
.fs-17px { font-size: 17px; }
.fs-18px { font-size: 18px; }
.fs-19px { font-size: 19px; }
.fs-20px { font-size: 20px; }
.fs-21px { font-size: 21px; }
.fs-22px { font-size: 22px; }
.fs-23px { font-size: 23px; }
.fs-24px { font-size: 24px; }
.fs-25px { font-size: 25px; }
.fs-26px { font-size: 26px; }
.fs-27px { font-size: 27px; }
.fs-28px { font-size: 28px; }
.fs-29px { font-size: 29px; }
.fs-30px { font-size: 30px; }
.fs-31px { font-size: 31px; }
.fs-32px { font-size: 32px; }
.fs-33px { font-size: 33px; }
.fs-34px { font-size: 34px; }
.fs-35px { font-size: 35px; }
.fs-36px { font-size: 36px; }
.fs-37px { font-size: 37px; }
.fs-38px { font-size: 38px; }
.fs-39px { font-size: 39px; }
.fs-40px { font-size: 40px; }
.fs-41px { font-size: 41px; }
.fs-42px { font-size: 42px; }
.fs-43px { font-size: 43px; }
.fs-44px { font-size: 44px; }
.fs-45px { font-size: 45px; }
.fs-46px { font-size: 46px; }
.fs-47px { font-size: 47px; }
.fs-48px { font-size: 48px; }
.fs-49px { font-size: 49px; }
.fs-50px { font-size: 50px; }
