/* Body : #333Headers : #2B2D42Primary : #17a2b8 // #17a2b8Dark : #15161D ##1E1F29Grey : #E4E7ED #FBFBFC #8D99AE #B9BABCFonts: MontserratTable OF Contents------------------------------------1 > GENERAL------ Typography------ Buttons------ Inputs------ Sections------ Breadcrumb2 > HEADER------ Top header------ Logo------ Search------ Cart3 > NAVIGATION------ Main nav------ Responsive Nav4 > CATEGORY SHOP5 > HOT DEAL6 > PRODUCT------ Product------ Widget product------ Product slick7 > STORE PAGE------ Aside------ Store8 > PRODUCT DETAILS PAGE------ Product view------ Product details------ Product tab9 > CHECKOUT PAGE10 > NEWSLETTER11 > FOOTER11 > SLICK STYLE12 > RESPONSIVE------------------------------------*/
/*=========================================================01 -> GENERAL===========================================================*/
/*----------------------------*\Typography\*----------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #f5f5f5;
}
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: #17a2b8;
  text-decoration: none;
  outline: none;
}
/*ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  bottom: -10px;
  font-size: initial;
}*/
.point{cursor: pointer;}
.closest_btn
{
  display: none;
}
/*----------------------------*\Buttons\*----------------------------*/
.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #17a2b8;
  border: none;
  border-radius: 5px;
  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\*----------------------------*/
/*-- Text input --*/
.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #E4E7ED;
  background-color: #FFF;
  width: 100%;
  border-radius: 5px 0px 0px 5px;
}
textarea.input {
  padding: 15px;
  min-height: 90px;
}
/*-- Number input --*/
.input-number {
  position: relative;
  top: -2.1em;
  float: right;
}
.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: #17a2b8;
}
/*-- Select input --*/
.input-select {
  padding: 0px 15px;
  background: #FFF;
  border: 1px solid #E4E7ED;
  height: 40px;
  /*margin: 5px 0px 30px;
  */
}
/*-- 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: #17a2b8;
  border-color: #17a2b8;
}
.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: 0px;
  padding-bottom: 0px;
}
.sections {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-title {
  position: relative;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: center;
}
.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}
.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: #17a2b8;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.section-tab-nav li.active a {
  color: #17a2b8;
}
.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;
}
.text-light{
  color: #fff;
}
/*----------------------------*\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: #17a2b8;
}

button#favorite {
  text-decoration: underline;
}
span.mobile-hide {
  text-decoration: underline;
}
/*----------------------------*\responsive nav\*----------------------------*/
#complements{
  display: none;
}
@media only screen and (max-width: 991px) {

/*  .buttons {
    position: absolute;
    width: fit-content;
    left: 23%;
    margin-top: 1px;
    text-decoration: none;
  }
  p.number-item {
    float: left;
    margin-top: 0px;
    font-weight: bold;
    font-size: x-large;
  }
  .buttons a {
    font-weight: bold;
    color: #17a2b8;
  }*/
  .input-number {
    position: static;
    float: left;
  }
  .propos {
    position: relative;
    top: -15em;
  }
  .number-item{
    float: left;
    margin: 5px;
    font-weight: bold;
    font-size: x-large;
  }
  .mobile-hide{
    display: none;
  }
  .mobile-show{
    display: block;
  }
  #bannerStory{
    width: 800px;
    height: 250px;
  }
  #complements{
    display: block;
    padding: 0px;
  }
  #menurestant{
    display: inline-block;
  }
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  /*.autosuggestion > li{
    position: relative;
    background-color: #f5f5f5;
    width: 25em;
    padding: 5px;
  }
  .autosuggestion > li:hover{
    color:#17a2b8;
    cursor: pointer;
  }*/
  .displaynav{
    display: none;
  }
  .header-search form .input {
    width: calc(100% - 100px);
    margin-right: -4px;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #15161D;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 999;
    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%;
    overflow: scroll;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
    padding: 0px;
  }
  /*.closest_btn
  {
    display: block;
    position: absolute;
    left: 6.4em;
    font-size: 30px;
    top: 3px;
    color: #fff;
  }
  .rayon-btn a{display: none;}*/
  .main-nav>li>a {
    padding: 15px;
    color: #FFF;
    padding-bottom: 8px;
  }
}
.rows{
  display: flex;
  flex-wrap: wrap;
}
/*=========================================================04 -> CATEGORY SHOP===========================================================*/
.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}
.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: #17a2b8;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: #17a2b8;
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}
.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;
  text-transform: uppercase;
}
/*=========================================================05 -> HOT DEAL===========================================================*/
#hot-deal.section {
  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: #17a2b8e6;
  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;
  margin-bottom: 15px;
}
/*=========================================================06 -> PRODUCT===========================================================*/
/*----------------------------*\product\*----------------------------*/
.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px transparent, 0px 0px 0px 1px transparent;
  box-shadow: 0px 0px 0px 0px transparent, 0px 0px 0px 1px transparent;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #1392a7, 0px 0px 0px 2px #1392a7;
  box-shadow: 0px 0px 6px 0px #1392a7, 0px 0px 0px 2px #1392a7;
}
.product .product-img {
  position: relative;
}
.product .product-img>img {
  width: 100%;
}
.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}
.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}
.product .product-img .product-label>span.sale {
  background-color: #FFF;
  border-color: #17a2b8;
  color: #17a2b8;
}
.product .product-img .product-label>span.new {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #FFF;
}
.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #e6e6e6a6;
  text-align: center;
  z-index: 20;
}
.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8D99AE;
}
.product .product-body .product-name {
  /*text-transform: uppercase;
  */
  font-size: 14px;
}
.product .product-body .product-name>a {
  font-weight: 700;
}
.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #17a2b8;
}
.product .product-body .product-price {
  color: #17a2b8;
  font-size: 18px;
  margin-top: 5px;
}
.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: #ef233c;
}
.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;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #17a2b8;
  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: #1e1f29;
  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: #17a2b8;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 5px;
  -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: #17a2b8;
  opacity: 0;
  visibility: hidden;
}
.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #17a2b8;
  border-color: #17a2b8;
  padding: 0px 30px 0px 50px;
}
.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}
/*----------------------------*\Widget product\*----------------------------*/
.product-widget {
  position: relative;
}
.product-widget+.product-widget {
  margin: 30px 0px;
}
.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}
.product-widget .product-img>img {
  width: 100%;
}
.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}
.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
}
.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}
.product-widget .product-body .product-name>a {
  font-weight: 700;
}
.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #17a2b8;
}
.product-widget .product-body .product-price {
  font-size: 14px;
  color: #17a2b8;
}
.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}
.product-widget .product-body .product-price .qty {
  font-weight: 600;
  margin-right: 10px;
}
.product-widget .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-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 10px 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: #17a2b8;
}
.noUi-horizontal {
  height: 6px;
}
.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #17a2b8;
  -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: #17a2b8;
}
.store-grid li.active {
  background-color: #17a2b8;
  border-color: #17a2b8;
  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: #17a2b8;
}
.store-pagination li.active {
  background-color: #17a2b8;
  border-color: #17a2b8;
  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;
}
.border-p {
  background-color: #ffffff87;
  border-radius: 8px;
  padding: 30px 10px 30px 10px;
}
/*=========================================================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;
  background-color: #333;
}
#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 transparent;
}
#product-imgs .product-preview.slick-current {
  border-color: transparent;
}
#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 {
  text-transform: uppercase;
  font-size: 18px;
}
.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: #17a2b8;
}
.product-details .review-link {
  font-size: 12px;
}
.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #17a2b8;
}
.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}
.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #17a2b8;
}
.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;
}
.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: #17a2b8;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 5px;
  -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: #17a2b8;
  opacity: 0;
  visibility: hidden;
}
.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #FFF;
  color: #17a2b8;
  border-color: #17a2b8;
  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;
}
.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 .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
}
#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: #ffff;
  padding: 0px 15px;
}
#product-tab .tab-nav li+li {
  margin-left: 15px;
}
#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #23527c;
}
#product-tab .tab-nav li.active a {
  color: #333;
  ;
  font-weight: bold;
  background-color: #ededed;
  padding: 8px;
  border-radius: 3px;
}
#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ededed4f;
  -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: 28%;
}
.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: #17a2b8;
}
.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: #17a2b8;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}
.rating .sum {
  display: inline-block;
  font-size: 15px;
  color: #8D99AE;
  font-weight: bold;
}
/*-- Reviews --*/
.reviews li {
  position: relative;
  padding-left: 43px;
}
.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}
.reviews .review-heading .date {
  color: #8D99AE;
  margin: 0;
}
.reviews .review-heading .review-rating {
  margin-top: 5px;
  font-size: 1.5em;
}
.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}
.reviews .review-heading .review-rating>i.fa-star {
  color: #17a2b8;
}
.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: #17a2b8;
}
.reviews-pagination li.active {
  background-color: #17a2b8;
  border-color: #17a2b8;
  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;
  margin-top: 15px;
}
.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: middle;
}
.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: "★";
  font-size: 2em;
  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: #17a2b8;
}
.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "★";
  font-size: 2em;
  color: #17a2b8;
}
#id_message{
  margin: 0px 0.65625px 0px 0px;
  height: 110px;
  width: 100%;
}
.form-group {
  margin-bottom: 15px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 2px;
}
#sendComments{
  width: 100%;
  font-weight: bold;
}
#supx{
  background-color: #fff;
}
#supx input{
  background-color: #ff0000ad;
  color: #fff;
}
.flash-message-info{
  background-color: #17a2b8;
  color: #fff;
}
.flash-message-success{
  background-color: #17b828cc;
  color: #fff;
}
.flash-message-danger{
  background-color: #ec4f77;
  color: #fff;
}
.flash-message-error{
  background-color: #b81717c2;
  color: #fff;
}
.closeb{
  float: right;
  color: red;
  position: relative;
  top: -30px;
}
.rating{
  border: 1.5px solid #e2e0e0;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
.bordered{
  background-color: #fff;
  padding: 1em;
  border-radius: 3px;
}
.brand{
  padding: 0.5em;
  font-weight: bold;
  font-size: 14px;
}
.brand a{
  font-weight: bold;
  font-size: 14px;
  text-decoration: underline;
}
.comment-zone{
  padding-bottom: 1em;
  padding-top: 1em;
}
#main-product{
  width: 350px;
}
#main-previous{
  width: 80px;
  height: 80px;
}
#livrasionbag{
  border-left: 2px solid #f5f5f5f5;
  padding: 0.4em;
}
.button-add{
  margin-right: 2em;
}
#caisse-btn{
  width: 100%;
}
#BaseColor{
  color: #17a2b8;
}
.colors{
  color: #17a2b8;
}
#sharelink{
  margin-left: 1em;
}
#Detailsproduits a{
  font-weight: bold;
  margin-right: 0.5em;
  padding-top: 1em;
  text-decoration: underline;
}
.livraisonbag{
  font-size: 14px;
  font-weight: bold;
}
#plus{
  font-size: 15px;
  text-decoration: underline;
}
.text-right{
  margin: 1em;
  text-align: left;
}
#expeditionsection{
  border: 1.5px solid #e2e0e0;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
html{
  scroll-behavior: smooth;
}
a{
  cursor: pointer;
}
tr:nth-child(even){
  background-color: #f5f5f5;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,.table > tbody > tr > th,.table > tfoot > tr > th,.table > thead > tr > td,.table > tbody > tr > td,.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  font-size: 1.1em;
}
th{
  text-align: inherit;
}
h4.qtyInt {
  text-align: center;
}
/*=========================================================09 -> CHECKOUT PAGE===========================================================*/
.billing-details {
  margin-bottom: 30px;
}
.shiping-details {
  margin-bottom: 30px;
}
.order-details {
  position: relative;
  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;
}
.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: 5px 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: 20px;
  color: #17a2b8;
}
.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 #17a2b8;
  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: #17a2b8;
  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: #17a2b8;
}
/*=========================================================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;
}
.footer-links li+li {
  margin-top: 15px;
  list-style: none;
}
.footer-links li a {
  color: #B9BABC;
  text-decoration: none;
}
footer#footer ul {
    list-style: none;
}
.footer-links li i {
  margin-right: 15px;
  color: #17a2b8;
  width: 14px;
  text-align: center;
}
.footer-links li a:hover {
  color: #17a2b8;
}
.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}
.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 transparent;
  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: #17a2b8;
  border-color: transparent;
}
.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: #17a2b8;
}
.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}
.text{
  font-family:Arial;
  font-weight:initial;
  font-size:16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 30px;
  color: #333;
}
/*=========================================================13 -> RESPONSIVE===========================================================*/
@media only screen and (max-width: 1201px) {
}
@media only screen and (max-width: 425px) {
  .cart-dropdown {
    width: 200px;
  }
}
@media only screen and (min-width: 320px) {
  .header-ctn{
    margin: -1em;
    padding: 25px 0px;
  }
  .rayon-btn{
    border-radius: 0px;
    margin-bottom: 1.2em;
  }
}
@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;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #masignerbtn{
    display: none;
  }
}
@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%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}
.rayon-btn {
  background-color: #1392a7;
  padding-right: 25px;
  border-radius: 3px;
  position: relative;
  top: 0.4em;
  height: 43px;
  margin-right: -1em;
}
.titrayon{
  color: #fff;
  font-weight: 700;
  position: relative;
  left: 3%;
  top: 30%;
}
.titrayon:hover{
  color: #15161d;
}
.icon-left{
  position: relative;
  left: 5em;
  font-weight: bold;
}
.qty-own{
  margin-right:1.8em;
  font-weight: bold;
  margin-top: -1.8em;
  font-size:18px;
  float:right;
}
.vide-panier{
  margin: 4em;
}
.price-product{
  position: relative;
  top: 0.7em;
  left: -1em;
  font-weight: bold;
}
.sub-link{
  margin-right: 1em;
}
.bg-lights{
  background-color: #1392a7;
  color: #fff;
}
.info-build{
  border:1px solid #d2cece40;
  padding: 25px 10px 15px 10px;
  border-radius: 5px;
  background-color: #ffffff87;
}
.acolor{
  color: white;
}
.color-light{
  background-color: #ffff;
}
.left-color{
  background-color: #eae8e8;
}
/*COOKIE ________________________________________________*/
#CookielawBanner {
  background: #17a2b8;
  padding: 10px 0;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  border-radius: 0px;
  color: #fff;
}
#CookielawBanner a{
  font-weight: bold;
  margin-left: 10px;
  text-decoration: underline;
  color: #fff;
}
#CookielawBanner .container {
  position: relative;
}
.hide{
  display: none;
}
.show{
  display: block;
  transition: 2s;
}
.supprime{
  cursor: pointer;
}
.button__text {
  transition: all 0.1s;
  color: #ffff;
}
.button--loading .button__text {
  visibility: hidden;
  opacity: 0;
  color: #fff;
}
.button--loading::after {
  content: "";
  position: absolute;
  width: 20em;
  height: 20em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4em solid transparent;
  border-top-color: #17a2b8;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}
@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
.hovbt:hover{
  transition: 1s;
  background-color: #0f6a79;
}
.hovint:hover{
  transition: 2s;
  color: #333;
}
.underline{
  text-decoration: underline;
  font-weight: bold;
}
.editbtn{
  padding-right:0.95em;
  padding-left:0.95em;
}
.error-border{
  border: 1px solid #ef9696;
}
.border-c{
  background-color: #ffffff87;
  border-radius: 8px;
}
.border-s{
  background-color: #ffff;
  margin: 15px 0px 15px
}
.zoomtext{
  font-size: 1.2em;
}
/**/
#panier-icon{
  cursor: pointer;
}
.panier{
  cursor: pointer;
}
.menux{
  cursor: pointer;
}
div#nouvellezone{
  position: relative;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.vanilla-zoom{
  width:100%;
  display:flex
}
.vanilla-zoom .sidebar{
  flex-basis:30%;
  display:flex;
  flex-direction:column
}
.vanilla-zoom .sidebar img.small-preview{
  width:100%;
  margin-bottom:5px;
  cursor:pointer
}
.vanilla-zoom .sidebar img.small-preview:last-child{
  margin-bottom:0
}
.vanilla-zoom .zoomed-image{
  flex:1;
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;
  margin-left:5px
}
@media (max-width:768px){
  .vanilla-zoom .sidebar{
    flex:1
}
  .vanilla-zoom .sidebar img.small-preview{
    cursor:auto;
    margin-bottom:12px
}
  .vanilla-zoom .zoomed-image{
    display:none
}
}
.menu-toggle > a {
  cursor: pointer;
}
span.aidebtn{
  vertical-align: text-bottom;
}
img.small-preview:hover{
  border: 2px solid #17a2b8;
  border-radius: 3px;
}
#bannerStory{
  width: 1325px;
  height: 250px;
}

.text-danger{
  color: red;
}
a.nav-link.zoomtext.h5.active {
  background-color: #e8e8e8;
}
a.actives{
  background-color: #17a2b8;
  color: #fff;
}
#categorieclose {
  display: none;
  cursor: pointer;
}
form#formsearch{
  display: block;
}
#tabletbtn {
  margin-top: -3em;
}
@media only screen and (max-width: 991px) {
  form#formsearch{
    display: none;
  }
  #tabletbtn{
    display: block;
  }
  #categorieclose{
    display: block;
  }
  #tabletbtn {
    margin-top: -1.3em
}
}
.strong{
  font-size: 18px;
  font-weight: bold;
}
span.badge.badge-info{
  background-color: #17a2b8;
  color: #fff;
  padding: 0px 5px 0px 5px;
}
.errorlist{
  position: initial;
  font-weight: bold;
  font-size: 14px;
  background-color: #f5f5f5;
  color: #b81717c2;
}
.t-content{
  background-color:#fff;
}
.title-table{
  background-color: #17a2b8;
  color: #fff;
}
.scrollbar{
  overflow: scroll;
}
.js-disabled .js-enabled {
  display: none;
}
.js-disabled .js-disabled-message {
  display: block;
}
.js-disabled-message {
    text-align: center;
    margin: 20px;
    font-size: large;
    color: brown;
    font-weight: 700;
}































    /* =========================================================
       DADOUMA HEADER — design tokens
    ========================================================= */
    :root{
        --dd-navy-950:#0a0f1f;
        --dd-navy-900:#0d1428;
        --dd-navy-800:#131c36;
        --dd-teal:#17a2b8;
        --dd-teal-dark:#09b3ce;
        --dd-teal-light:#09b3ce;
        --dd-white:#ffffff;
        --dd-ink:#1b2436;
        --dd-ink-soft:#5b6577;
        --dd-line:#e7eaf0;
        --dd-bg-panel:#ffffff;
        --dd-shadow: 0 18px 45px -12px rgba(10,15,31,.35);
        --dd-radius: 10px;
        --dd-font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    }

    body{ font-family: var(--dd-font); color: var(--dd-ink); }

    /* ---------- top header ---------- */
    #header{
        background: var(--dd-navy-950);
        padding: 18px 0;
        border-bottom: 4px solid #17a2b8;
        position: relative;
        z-index: 500;
    }
    #header .container{ position: relative; }
    #header .row{ overflow: visible; }

    .header-logo a.logo{ display:inline-flex; align-items:center; gap:6px; }
    .header-logo img{ height:38px; width:auto; }

    /* ---------- search + autocomplete ---------- */
    .header-search{ position: relative; width: 100%; }
    #suggestions-bar{ position: relative; }
    #suggestions-bar form{
        display:flex;
        align-items:stretch;
        background:#fff;
        border-radius: 8px;
        overflow:hidden;
        box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
    }
    .input.searchs{
        flex:1;
        border:none;
        outline:none;
        padding:12px 44px 12px 16px;
        font-size:15px;
        color: var(--dd-ink);
        background:#fff;
        min-width: 0;
    }
    .search-clear-btn{
        position:absolute;
        right:135px;
        top:37%;
        transform:translateY(-50%);
        background:none;
        border:none;
        color:#9aa2b1;
        font-size:40px;
        font-weight: bold;
        cursor:pointer;
        display:none;
        padding:4px;
        line-height:1;
        z-index:2;
    }
    
    .search-clear-btn.show{ display:block; }
    .search-btn{
        border:none;
        background: var(--dd-teal);
        color:#fff;
        font-weight:600;
        padding:0 26px;
        font-size:15px;
        cursor:pointer;
        transition: background .15s ease;
        white-space:nowrap;
    }
    .search-btn:hover{ background: var(--dd-teal-dark); }
    #autoSuggestList.autocomplete-result-list{
    position:absolute !important;
    top: calc(100% + 8px) !important;
    left:0 !important;
    right:0 !important;
    background:#fff !important;
    border-radius: var(--dd-radius) !important;
    box-shadow: var(--dd-shadow) !important;
    list-style:none !important;
    margin:0 !important;
    padding: 14px 0 !important;
    max-height: 70vh !important;
    overflow-y:auto !important;
    z-index: 1500 !important;
    display:none;
}
#autoSuggestList.autocomplete-result-list.show{ display:block !important; }

.ac-section-label{
    padding: 10px 20px 6px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color: var(--dd-ink-soft);
}

/* ---- lignes produits ---- */
.ac-products{ padding: 0 8px; }
.ac-product-row{
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 12px;
    border-radius:8px;
    cursor:pointer;
    transition: background .12s ease;
}
.ac-product-row:hover{ background:#f7f9fb; }
.ac-product-img{
    width:44px; height:44px; flex:none;
    border-radius:8px; overflow:hidden;
    background:#f2f3f5;
    display:flex; align-items:center; justify-content:center;
}
.ac-product-img img{ width:100%; height:100%; object-fit:cover; }
.ac-product-info{ flex:1; min-width:0; }
.ac-product-name{
    font-size:14px; color:var(--dd-ink); font-weight:500;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.ac-product-price{ font-size:13px; color:var(--dd-teal-dark); font-weight:600; margin-top:2px; }

.ac-add-btn{
    flex:none;
    width:34px; height:34px;
    border:1px solid var(--dd-teal);
    background:#fff;
    color:var(--dd-teal-dark);
    border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    transition: background .15s ease, color .15s ease;
}
.ac-add-btn:hover{ background: var(--dd-teal); color:#fff; }
.ac-add-btn.added{ background: var(--dd-teal-dark); color:#fff; }

/* ---- recherches populaires ---- */
.ac-popular{
    display:flex; flex-wrap:wrap; gap:10px;
    padding: 4px 20px 4px;
}
.ac-popular-item{
    display:flex; align-items:center; gap:8px;
    background:#f2f3f5;
    border:none;
    border-radius:20px;
    padding:8px 14px;
    font-size:13px;
    color: var(--dd-ink);
    cursor:pointer;
    transition: background .12s ease;
}
.ac-popular-item:hover{ background:#e6e9ee; }
.ac-popular-item svg{ color:#9aa2b1; flex:none; }

.ac-empty, .ac-loading{
    padding: 16px 20px;
    color: var(--dd-ink-soft);
    font-size:14px;
}
.ac-viewall-item{
    margin-top:10px;
    border-top:1px solid var(--dd-line);
    padding: 0;
}
.ac-viewall{
    display:block;
    text-align:center;
    padding:12px 20px 4px;
    color: var(--dd-teal-dark);
    font-weight:600;
    font-size:14px;
    text-decoration:none;
}
.ac-viewall:hover{ color: var(--dd-teal); }
    /* ---------- account / cart / lang ---------- */
    .header-ctn{ display:flex; align-items:center; justify-content:flex-end; gap:26px; height:100%; }
    .header-ctn a{ color:#fff; text-decoration:none; display:flex; align-items:center; gap:8px; font-size:14px; }
    .header-ctn svg{ width:20px; height:20px; }
    .header-ctn .dropdown{ position:relative; }
    .qty{
        background: var(--dd-teal);
        color:#fff;
        border-radius:50%;
        min-width:18px;
        height:18px;
        font-size:11px;
        display:flex;
        align-items:center;
        justify-content:center;
        margin-left:-4px;
    }

    .cart-dropdown{
        position:absolute;
        right:0;
        top: 100%;
        padding-top: 14px;
        width:330px;
        z-index:1200;
        display:none;
    }
    .cart-dropdown-inner{
        background:#fff;
        color: var(--dd-ink);
        border-radius: var(--dd-radius);
        box-shadow: var(--dd-shadow);
        overflow:hidden;
    }
    .dropdown:hover .cart-dropdown,
    .dropdown:focus-within .cart-dropdown,
    .dropdown.open .cart-dropdown{ display:block; }
    .cart-list{ max-height:320px; overflow-y:auto; padding:10px 0; }
    .product-widget{ display:flex; gap:12px; padding:8px 18px; align-items:center; border-bottom: 1px solid #848383d4;}
    .product-img img{ width:48px; height:48px; object-fit:cover; border-radius:6px; }
    .product-name a{ color:var(--dd-ink); font-size:13px; text-decoration:none; }
    .product-price{ font-size:12px; color:var(--dd-ink-soft); margin:0; }
    .cart-summary{ padding:10px 18px; border-top:1px solid var(--dd-line); }
    .cart-btns{ display:flex; gap:10px; padding:12px 18px 16px; }
    .cart-btns a{
        flex:1; text-align:center; padding:9px 20px; border-radius:6px; font-size:13px; font-weight:600; text-decoration:none;
    }   
    
    .cart-btns a:first-child{ border:1px solid var(--dd-teal); color:var(--dd-teal-dark); }
    .cart-btns a:last-child{ background: var(--dd-teal); color:#fff; }

    /* ---------- mobile hamburger ---------- */
    .menu-toggle button{
        background:none;
        border:none;
        color:#fff;
        display:none;
        align-items:center;
        gap:8px;
        font-size:14px;
        cursor:pointer;
        padding:6px 4px;
    }
    .menu-toggle button svg{ width:20px; height:20px; }

    /* ---------- nav row / rayons ---------- */
    #navigation .container{ position:relative; }
    .main-nav{ display:flex; align-items:center; list-style:none; margin:0; padding:0; flex-wrap:wrap; }
    .main-nav > li > a{ color:#dfe3ec; text-decoration:none; padding:14px 16px; display:inline-block; font-size:14px; }
    .main-nav > li > a:hover{ color: var(--dd-teal-light); }

    .rayon-btn{
        background: var(--dd-teal);
        color:#fff;
        display:flex;
        align-items:center;
        gap:8px;
        padding:12px 18px;
        cursor:pointer;
        font-weight:600;
        border-radius:6px 6px 6px 6px;
    }
    .rayon-btn .titrayon{ color:#fff; text-decoration:none; display:flex; align-items:center; gap:8px; padding-bottom: 8px; padding-right: 10px; }
    .rayon-btn h5{ margin:0; font-size:14px; color: #fff;}
    .rayon-btn .closest_btn{ display:none; margin-left:auto; cursor:pointer; }

    /* ---------- categories mega panel (fixed) ---------- */
    .modalCategorie{
        display:none;
        position:absolute;
        top: 100%;
        left:0;
        width: 560px;
        max-width: calc(100vw - 30px);
        background:#fff;
        border-radius: 0 0 var(--dd-radius) var(--dd-radius);
        box-shadow: var(--dd-shadow);
        z-index:1300;
        overflow:hidden;
    }
    .modalCategorie.show{ display:block; }
    .element-modal{ display:flex; }
    .modal-category, .modal-categories{
        position:static !important;
        background:#fff !important;
        color: var(--dd-ink) !important;
        border-radius:0 !important;
        height: 420px !important;
        overflow-y:auto !important;
        left:auto !important;
    }
    .modal-category{ width: 48%; border-right:1px solid var(--dd-line); }
    .modal-categories{ width: 52%; }
    .modal-category ul, .modal-categories ul{ list-style:none; margin:0; padding:0; }

    .modal-category .list-group-item{
        padding:11px 18px;
        cursor:default;
        font-size:13px;
        border-bottom:1px solid #f4f5f8;
    }
    li.category.list-group-item.a-categories{
        padding:11px 18px !important;
        font-size:13.5px;
        display:flex;
        align-items:center;
        gap:10px;
        cursor:pointer;
        border-bottom:1px solid #f4f5f8;
        color: var(--dd-ink) !important;
        transition: background .12s ease;
    }
    li.category.list-group-item.a-categories:hover,
    li.category.list-group-item.a-categories.active{
        background:#f2fbfa !important;
        color: var(--dd-teal-dark) !important;
    }
    .modal-categories .subcategories{ padding:6px 0; }
    .modal-categories .sous-category{
        display:block;
        padding:9px 18px;
        font-size:13px;
        color: var(--dd-ink);
        text-decoration:none;
    }
    .modal-categories .sous-category:hover{ background:#f7f8fa; color: var(--dd-teal-dark); }
    .modal-categories .cat-placeholder{
        padding:24px 18px; color:var(--dd-ink-soft); font-size:13px;
    }

    /* ---------- footer keeps original look, trimmed here ---------- */
    .countryTag{ color:#fff; }

    /* =========================================================
       RESPONSIVE NAV — CORRIGÉ
    ========================================================= */
    @media (max-width:767px){
        .modalCategorie{ width: 100%; }
        .element-modal{ flex-direction:column; }
        .modal-category, .modal-categories{ width:100% !important; height:220px !important; }
        .cart-dropdown{ right:-40px; width: 280px; }

        .menu-toggle button{ display:inline-flex; }

        #responsive-nav{
            position:fixed;
            top:0;
            right:0;
            height:100vh;
            width:min(82vw, 320px);
            background: var(--dd-navy-900);
            transform: translateX(100%);
            transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1400;
            overflow-y:auto;
            padding-top: 56px;
            box-shadow: -12px 0 30px rgba(0,0,0,.25);
            visibility: hidden;
        }
        #responsive-nav.nav-open{ 
            transform: translateX(0);
            visibility: visible;
        }
        .main-nav{ flex-direction:column; align-items:stretch; }
        .main-nav > li{ width:100%; border-bottom:1px solid rgba(255,255,255,.06); }
        .main-nav > li > a{ padding:14px 20px; display:block; }
        .rayon-btn{ border-radius:0; }
        .modalCategorie{ position:static; box-shadow:none; border-radius:0; }

        .nav-backdrop{
            display:none;
            position:fixed;
            inset:0;
            background:rgba(10,15,31,.45);
            z-index:1390;
            opacity:0;
            transition: opacity .3s ease;
        }
        .nav-backdrop.show{ 
            display:block;
            opacity:1;
        }

        .nav-close-btn{
            display:flex;
            align-items:center;
            gap:8px;
            background:none;
            border:none;
            color:#fff;
            font-size:18px;
            position:absolute;
            top:14px;
            right:16px;
            cursor:pointer;
            padding:10px;
            z-index:5;
        }
        .nav-close-btn:hover{ color: var(--dd-teal-light); }

        .autocomplete-result-list{ left: 0; right: 0; }
        @media (max-width:767px){
    #autoSuggestList.autocomplete-result-list{ left: 0 !important; right: 0 !important; }
}

        /* Correction : le bouton "Rayons" en mobile */
        .rayon-btn .closest_btn{ 
            display:block; 
            font-size:24px; 
            padding:0 10px;
            color:#fff;
        }
    }
    @media (min-width:768px){
        .nav-close-btn{ display:none; }
        .rayon-btn .closest_btn{ display:none; }
    }




















        /*<style>*/
        /* ==========================================================
               PANIER — DROPDOWN
               ========================================================== */

            :root{
                --dd-ink:#111827;
                --dd-ink-soft:#6b7280;
                --dd-line:#e5e7eb;
                --dd-accent:#17a2b8;
                --dd-accent-dark:#20626c;
                --dd-accent-soft:#eef0fd;
                --dd-surface:#ffffff;
                --dd-surface-muted:#f9fafb;
                --dd-radius:14px;
                --dd-shadow:0 16px 40px -12px rgba(17,24,39,.18), 0 2px 8px rgba(17,24,39,.06);
            }

            /* ---- toggle (icône + badge) ---- */
            .dropdown{ position:relative; }

            .dropdown-toggle{
                display:flex;
                align-items:center;
                gap:6px;
                color:#fff;
                text-decoration:none;
                position:relative;
            }
            .dropdown-toggle .qty{
                position:absolute;
                top:-8px;
                right:-10px;
                min-width:18px;
                height:18px;
                padding:0 4px;
                background:var(--dd-accent);
                color:#fff;
                font-size:11px;
                font-weight:700;
                border-radius:999px;
                display:flex;
                align-items:center;
                justify-content:center;
                line-height:1;
            }

            /* ---- panel ---- */
            .cart-dropdown{
                position:absolute;
                right:0;
                top:100%;
                padding-top:14px;
                width:340px;
                z-index:1200;
                display:none;
            }
            .dropdown:hover .cart-dropdown,
            .dropdown:focus-within .cart-dropdown,
            .dropdown.open .cart-dropdown{ display:block; }

            .cart-dropdown-inner{
                background:var(--dd-surface);
                color:var(--dd-ink);
                border-radius:var(--dd-radius);
                box-shadow:var(--dd-shadow);
                border:1px solid var(--dd-line);
                overflow:hidden;
            }

            /* ---- liste produits ---- */
            .cart-list{
                max-height:300px;
                overflow-y:auto;
                padding: 6px 10px 10px 9px;
            }
            .cart-list::-webkit-scrollbar{ width:5px; }
            .cart-list::-webkit-scrollbar-thumb{ background:var(--dd-line); border-radius:10px; }
            .cart-list::-webkit-scrollbar-track{ background:transparent; }

            .ac-empty{
                margin:0;
                padding:32px 18px;
                text-align:center;
                font-size:13px;
                color:var(--dd-ink-soft);
            }

            .product-widget{
                display:flex;
                gap:12px;
                align-items:center;
                padding:0px 18px;
                border-bottom:1px solid var(--dd-line);
            }
            .product-widget:last-child{ border-bottom:none; }

            .product-img img{
                width:48px;
                height:48px;
                object-fit:cover;
                border-radius:8px;
                border:1px solid var(--dd-line);
                display:block;
            }

            .product-body{ min-width:0; flex:1; }

            .product-name{ margin:0 0 4px; }
            .product-name a{
                color:var(--dd-ink);
                font-size:13px;
                font-weight:600;
                text-decoration:none;
                display:block;
                overflow:hidden;
                text-overflow:ellipsis;
                white-space:nowrap;
            }

            .product-price{
                margin:0;
                font-size:13px;
                font-weight:bold;
                color:var(--dd-accent);
                display:flex;
                align-items:center;
                gap:8px;
            }
            .product-price .qty{
                font-size:14px;
                font-weight:600;
                color:var(--dd-ink-soft);
                background:var(--dd-surface-muted);
                padding:2px 7px;
                border-radius:6px;
            }

            /* ---- sous-total ---- */
            .cart-summary{
                display:flex;
                align-items:center;
                justify-content:space-between;
                padding:14px 18px;
                background:var(--dd-surface-muted);
                border-top:1px solid var(--dd-line);
            }
            .cart-summary small{
                font-size:12px;
                color:var(--dd-ink-soft);
            }
            .cart-summary h5{
                margin:0;
                font-size:15px;
                font-weight:700;
                color:var(--dd-ink);
            }

            /* ---- boutons ---- */
            .cart-btns{
                display:flex;
                gap:10px;
                padding:14px 18px 18px;
            }
            .cart-btns a{
                flex:1;
                text-align:center;
                padding:10px 16px;
                border-radius:8px;
                font-size:13px;
                font-weight:600;
                text-decoration:none;
                transition:background .15s ease, color .15s ease, border-color .15s ease;
            }
            .cart-btns a:first-child{
                border:1px solid var(--dd-line);
                color:var(--dd-ink);
                background:#fff;
            }
            .cart-btns a:first-child:hover{ border-color:var(--dd-accent); color:#17a2b8; }
            .cart-btns a:last-child{
                background:#17a2b8;
                color:#fff;
            }
            .cart-btns a:last-child:hover{ background:var(--dd-accent-dark); }

            /* ---- mobile ---- */
            @media (max-width:767px){
                .cart-dropdown{ right:-8px; width:88vw; max-width:340px; }
            }
