    
/* Fonts */
:root {
  --default-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: rgba(59,59,59,1); /* Default color used for the majority of the text content across the entire website */
  --secondary-color: rgba(59,59,59,.5); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: rgba(172,54,110,1); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: rgba(178,134,155,0.11);; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --default-hover-color: rgba(59,59,59,.7); /* Default color used for the majority of the text content across the entire website */  
  --category-bg-color: #EDEDED;
  --toneless-color: rgba(191,191,191,1);
  --alert-color: #F26262;
  --line-color: #F0F0F0;
  --item-border-color: #E9E9E9;
  --item-bg-color: #F7F7F7;
  --placeholder-color: #959595;
  --button-hover-color: #8F8F8F;
  --success-color: #7AC984;
  --line-dark-color: #B2B2B2;
  --secondary-color-hover: #3B3B3B;
  --secondary-border-color: #E0E0E0;
  --secondary-color: #8F8F8F;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*, ::after, ::before {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  background: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

a {
  text-decoration: none;
  
}

a:active,
a:focus {
  color: var(--default-color);
  outline: none;
  text-decoration: none;
}
a:hover {
  color: var(--default-hover-color);
}

p {
  padding: 0;
  margin: 0 0 2rem 0;
  line-height: 2.2rem;
  font-size: 1.4rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0 0 1rem 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
section {
  overflow: hidden;
  padding: 2rem 0;
}
#category {
  padding: 1rem 0 2rem 0;
}
.text-center {
  text-align: center;
}
.img-fluid {
  width: 100%;
}
.container {
  max-width: 190rem;
  
}
.container-md {
  max-width: 144rem;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}
.secondary_button, .secondary_button:link, .secondary_button:visited {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.6;
  padding: .4rem 4rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  background-color: var(--contrast-color);
  transition: all .3s;
  border: 2px solid var(--secondary-border-color);
}
.secondary_button:hover, .secondary_button:active {
  border-color: var(--secondary-color-hover);
  color: var(--secondary-color-hover);
}
.load-more {
  position: relative;
  padding-bottom: 1rem;
  cursor: pointer;
}
.load-more::after {
  content: '\f322';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  position: absolute;
  top: 21px;
  left: 90px;
  color: var(--secondary-color);
  
}
.load-more:hover i, .load-more:active i {
  color: var(--secondary-color-hover);
}
.products-loadmore {
  text-align: center;
  margin-bottom: 2rem;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  border: 1px solid var(--item-border-color) !important;
  border-radius: 5px;
  background-color: var(--item-bg-color) !important;
  outline: none;
  color: var(--success-color) !important;
  font-weight: 500;
}
.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  color: var(--success-color) !important;
}
.woocommerce-error a, .woocommerce-info a, .woocommerce-message a{
  color: var(--default-color) !important;
}
.woocommerce-error a:hover, .woocommerce-error a:active, 
.woocommerce-info a:hover, .woocommerce-info a:active,
.woocommerce-message a:hover, .woocommerce-message a:active {
  color: var(--default-hover-color) !important;
}
.woocommerce-no-products-found {
  text-align: center;
  margin-top: 4rem;
}
.woocommerce-no-products-found .woocommerce-info,
.woocommerce-error {
  color: var(--alert-color) !important;
  display: inline-block;
}

.woocommerce-no-products-found .woocommerce-info::before,
.woocommerce-error::before {
  color: var(--alert-color) !important;
}
.woocommerce-products-header .term-description {
  display: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f1f1e6;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #49d6a9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.top {
  
  background-color: var(--accent-color);
  color: var(--contrast-color);

}
.newsSwiper {
  height: 3.565rem;
  text-align: center;
  width: 100%;
  padding-top: 0.8rem;
  
}
.newsSwiper .swiper-slide {
  font-size: 1.4rem;
  white-space: nowrap;
  font-weight: 200;
}

.header-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  
  font-size: 2.5rem;
  color: #fff;
  font-family: 'Poppins', Times, serif;
  font-weight: 600;
  margin-bottom: 0;
}
.logo a:link, .logo a:visited {
  color: #fff;
}
.logo {
  height: 3.2rem;
}
.logo img {
  width: 10.7rem;
  height: auto;
}

.left-space {
  /* width: calc((100% - 550px) / 2); */
}

.header-mobile-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--background-color);
  display: none;
  z-index: 1001;
  padding: 10px 15px 5px;
  align-items: center;
  box-shadow: 0 1px 12px 2px hsla(0,0%,56%,.3);
}
.js-search-trigger {
  display: none;
}

.header-mobile-fixed .search-link, .header-mobile-fixed .account-link, .header-mobile-fixed .like-link, .header-mobile-fixed .cart-link {
  flex: 1;
  text-align: center;
}
.cart-link >div {
  margin-top: 0.2rem;
}
.right-space {
  /* width: calc((100% - 550px) / 2); */
  display: flex;
}
.is-fixed .site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
}
.is-fixed .site-main {
  margin-top: 12rem;
}
.site-header {
  background-color: var(--background-color);
  transition: all 0.3s ease;
  width: 100%;
  border-bottom: 1px solid var(--item-bg-color);

}
.translate-0 {
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
}
.translate-100 {
  transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}
.desktop-header {
  
  background-color: var(--background-color);
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
.desktop-header .user-links {
  margin-left: auto;
}
.user-links {
  display: flex;
}
.desktop-header .user-links li {
  padding: 0 1rem;
}
.user-links a {
  font-size: 1.6rem;
  /* color: #2f4858; */
  color: var(--accent-color);
  font-size: 2.4rem;
}
.header-mobile-fixed .user-links a {
  color: #2f4858;
}
 .xoo-wsc-sc-cont {
  color: #fff;
}
.xoo-wsc-sc-count {
  background-color: #fff;
  color: #2f4858; 
}
.header-mobile-fixed .xoo-wsc-sc-cont {
  color: #2f4858;
}
.header-mobile-fixed .xoo-wsc-sc-count {
  background-color: #2f4858;
  color: #fff;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
    
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu li a:link, .navmenu li a:visited, .navmenu li a:active  {
    font-family: var(--default-font);
    font-weight: 500;
    color: var(--default-color);
    text-transform: uppercase;
  }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 1rem;
  }

  /* .navmenu>ul>li:last-child {
    padding-right: 0;
  } */

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    font-size: 1.4rem;
    padding: 0 .4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 1.2rem;
    line-height: 0;
    margin-left: .5rem;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: .2rem;
    bottom: -.6rem;
    left: .5rem;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 60%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-hover-color); */
  }
  .navmenu .menu-item-has-children >a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    color: var(--accent-color);
    display: inline-block;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }
  .navmenu .menu-item-has-children ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 2.4rem;
    top: calc(100% + 3rem);
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
    padding: 1rem 0;
    box-shadow: 0px 0px 3rem rgba(127, 137, 161, 0.25);
  }

  .navmenu .menu-item-has-children ul li {
    min-width: 20rem;
  }

  .navmenu .menu-item-has-children ul a {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: var(--default-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navmenu .menu-item-has-children ul a i {
    font-size: 1.2rem;
  }

  .navmenu .menu-item-has-children ul a:hover,
  .navmenu .menu-item-has-children ul .active:hover,
  .navmenu .menu-item-has-children ul li:hover>a {
    color: var(--default-hover-color);
  }

  .navmenu .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: calc(100% - 3rem);
    visibility: hidden;
  }

  .navmenu .menu-item-has-children .menu-item-has-children:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  .close-btn, .mobile-nav-toggle {
    display: none;
  }
  
  
}

/* Mobile Navigation */
@media (max-width: 991px) {

  
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 2.2rem;
    line-height: 0;
    margin-right: 1rem;
    cursor: pointer;
    transition: color 0.3s;
    margin-top: -3px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    position: relative;
    width: 100%;
  }

  .navmenu ul {
    
    list-style: none;
    position: fixed;
    
    padding: 1rem 0;
    top: 0;
    left: -250px; /* Offscreen initially */
    margin: 0;
    height: 100%;
    width: 250px;
    
    background-color: #fff;
    
    box-shadow: none;
    overflow-y: auto;
    padding-top: 6rem;
    transition: 0.3s;
  }
  .navmenu >ul {
    border-top: 4px solid var(--accent-color);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: .5rem 2rem;
    font-family: var(--default-font), sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 1.2rem;
    line-height: 0;
    margin-left: .5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);

  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    
    color: #2f4858;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #2f4858;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .menu-item-has-children >a:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    color: #2f4858;
    display: inline-block;
    font-size: 1rem;
    margin-left: 0.5rem;
    margin-top: 0.3rem;
  }
  .navmenu .menu-item-has-children ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 1rem 0;
    margin: 0px 2rem;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .menu-item-has-children ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .menu-item-has-children>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.7);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9990;
    
  }
  .close-btn {
    display: block;  
    position: absolute;
    top: 10px;
    left: -250px;
    transition: 0.3s;   
    font-size: 3.6rem;
    color: var(--default-color);
    cursor: pointer;
    z-index: 99999;
  }
  .navmenu ul li.active > .sub-menu {
    display: block;
  }
}



/**
* Mobile Navigation 
*/
.xmobile-nav-toggle {
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  background-color: #000;
}
.hero_wrap {
  /* background-image: url("../img/herobg.jpg"); */
  background-image: url("../img/mella-hero.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;

}
.hero_wrap::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, .7)
    );

    z-index: 1;
}
.hero_wrap {
  display: flex; 
  height: 43.4rem;
}
.hero__imgs {
  display: flex;
  align-items: end;
  gap: 5rem;
}
.hero__img {
  height: 51.1rem;
  width: auto;
  
}
.hero__title {
  color: #fff;
  line-height: 6rem;
  font-size: 6rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  
}
.hero__toptitle {
  font-size: 1.3rem;
  color: var(--contrast-color);
  text-transform: uppercase;
  position: relative;
  padding-left: 2.6rem;
}
.hero__toptitle::before {
   content: "";
    position: absolute;
    top: 9px;
    left: 0px;
    width: 20px;
    height: 2px;
    background-image: url('../img/mella_dash.png');
    background-size: contain;
    background-repeat: no-repeat;
    

    z-index: 1;
}
.hero__subtitle {
  font-size: 3.8rem;
  margin-bottom: .8rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.hero__subsubtitle {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  font-weight: 400;
  color: #fff;
  
}
.hero__txts {
  margin-top: 14rem;
  padding-right: 4.5rem;
    position: relative;
    z-index: 2;
}
/* .hero__button {
  font-size: 1.4rem;
  padding: 0 2rem;
  height: 4.2rem;
  line-height: 4.5rem;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--accent-color);
  border-radius: 5px;
  border: 0;
  outline: none;
  display: inline-block;
  transition: all .3s;
}
.hero__button:hover {
  color: var(--accent-color);
  background-color: var(--contrast-color);
} */
.hero__address {
  font-size: 1.3rem !important;
  color: var(--contrast-color);
  margin-top: 6rem;
}
.hero__address::before {
  content: '\f041'; 
  font-weight: 100;
  font-family: 'Font Awesome 5 Pro';
  color: var(--contrast-color);
  margin-right: 0.5rem;
  
}
/*--------------------------------------------------------------
# Categories
--------------------------------------------------------------*/
.cat-list-wrapper {
  margin-left: 6.5rem;
  margin-right: 6.5rem; 
  position: relative;
  margin-top: 2.6rem;
}
.cat-list {
  margin-top: 2rem;
}
.cat-list ul {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.cat-list img {
  max-width: 16rem;
  margin-bottom: -5px;
  border-radius: 50%;
}
.cat-img-wrap {
  display: inline-block !important;
  background-color: var(--category-bg-color);
  border-radius: 50%;
  padding: 0;

}
/* .cat-list li a:hover img {
  box-shadow: 0 1px 12px 2px hsla(0, 0%, 18%, 0.3);
} */

.cat-list span {
  display: block;
  text-align: center;

}
.cat-list a {
  font-size: 1.4rem;
  
  color: var(--default-color);
  transition: all .3s;
  text-transform: uppercase;
  
}
.cat-list-title {
  margin-top: 1.5rem;
  font-weight: 500;
}
.swiper-slide {
  text-align: center;
}
.swiper {
  position: static;
}
.swiper-button-next:after, .swiper-button-prev:after {
  color: rgba(191,191,191,1);
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  padding: 0px 12px;
  
}
.swiper-button-next {
  right: -50px !important;
}
.swiper-button-prev {
  left: -50px !important;
}
.swiper-button-next:after {
  content: "\f054";
  
}
.swiper-button-prev:after {
  content: "\f053";
}
.swiper-button-next, .swiper-button-prev {
  top: var(--swiper-navigation-top-offset,60%);
}
/*--------------------------------------------------------------
# Product List
--------------------------------------------------------------*/
.product-list {
  margin-top: 2.3rem;
}
.section-title {
  font-weight: 600;
  color: #2f4858;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.main-title {
  font-size: 2.4rem;
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
}
.product-list-items {
  /*margin-top: 6rem;*/
}
.main-title__border span {
  padding-bottom: 1.2rem;
  background-image: linear-gradient(var(--accent-color),var(--accent-color));
  background-size: 60% 2px;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.woocommerce ul.products li.product a img {
  margin-bottom: 0.2rem !important;
}
.woocommerce ul.products li.product .price {
  font-weight: 400;
  color: var(--toneless-color) !important;
  color: var(--default-color) !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
}
.woocommerce ul.products li.product .price ins {
  font-weight: 600 !important;
  font-size: 1.4rem !important;
}
/*--------------------------------------------------------------
# Home Banner
--------------------------------------------------------------*/
.home-banner {
  background-color: var(--surface-color);
  height: 72rem;
  display: flex;
  
}
.home-banner__subtitle {
  color: var(--accent-color);
  font-size: 1.4rem;
  letter-spacing: 4px;
  font-weight: 600;
  line-height: 11.5rem;
  text-transform: uppercase;
  margin-top: 6rem;
}
.home-banner__title {
  font-size: 4.6rem;
  color: var(--default-color);
  font-weight: 600;
  line-height: 6.1rem;
  margin-bottom: 3rem;
  padding-right: 10rem;
}
.home-banner__desc {
  color: var(--default-color);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
  padding-right: 22rem;
}
.home-banner__button:link, .wc-block-cart__submit-button:link,
.home-banner__button:visited, .wc-block-cart__submit-button:visited,
.hero__button:visited, .hero__button:link {
  text-decoration: none;
  background-color: var(--accent-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.6;
  padding: .4rem 4rem;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  transition: all .3s;
}
.home-banner__button:hover, .wc-block-cart__submit-button:hover,
.home-banner__button:active, .wc-block-cart__submit-button:active,
.hero__button:hover, .hero__button:active {
  color: #fff;
  background-color: var(--button-hover-color);
}
.home-banner__text-panel {
  padding-left: 13.5rem;
}
.home-banner__text-panel, .home-banner__img-panel {
  flex: 0 0 auto;
  width: 50%;
}
.home-banner__img-panel {
  
  background-image: url(../img/agp.png);
}
.home-banner__img {
  display: none;
}
/*--------------------------------------------------------------
# Useful Banner
--------------------------------------------------------------*/
.useful-banner {
  display: flex;
  justify-content:space-between;
  gap: 2rem;
  margin-top: 4rem;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
}
.useful-banner__part {
  padding-left: 5rem;
  position: relative;
  flex: 1;
  flex-direction: column;

}
.useful-banner__title {
  font-size: 1.4rem;
  font-weight: 600;
}
.useful-banner__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--secondary-color);
}
.useful-banner__part--shipping::before {
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  content: "\f48b";
  position: absolute;
  left: 0;
  font-size: 3rem;
  top: 10%;
  transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}
.useful-banner__part--security::before {
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  content: "\f30d";
  position: absolute;
  left: 0;
  font-size: 3rem;
  top: 10%;
 
}
.useful-banner__part--pay::before {
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  content: "\f2f7";
  position: absolute;
  left: 0;
  font-size: 3rem;
  top: 10%;
}
.useful-banner__part--discount::before {
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  content: "\f02c";
  position: absolute;
  left: 0;
  font-size: 3rem;
  top: 10%;
}



/*
Archive Product Swatches ================================================
*/
 .color-swatches {
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.4rem;
  
}
.color-swatch-wrap {
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.color-swatch {
  
  width: 16px;
  height: 16px;
  border-radius: 50%;
  
  cursor: pointer;
  
  transition: transform 0.2s ease-in-out;
}

.color-swatch-wrap:hover, .color-swatch-wrap.selected {
  /* transform: scale(1.1); */
  border-color: #6d6d6d;
}

.site-main {
  margin-top: 0rem;
  flex: 1;
  margin-bottom: 4rem;
}
.color-swatch-plus {
  color: #2f4858;
}

/*
Single Product =============================================
*/
.single-product .product {
  max-width: 144rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6rem;
}
.single-product .prod-summary {
  /* display: flex;
  gap: 10rem; */
}
.single-product .woo-variation-product-gallery {
  /* width: 50%;
  display: block !important;
  float: none !important; */
}
.woocommerce-page div.product div.summary {
  /* float: none;
  width: auto; */
}

.single-product .product .entry-summary {
  
  text-align: left;
  
}
.woocommerce-variation.single_variation {
  margin: -2rem 0 1rem 1rem;
  font-size: 1.6rem;
 
}
.woo-variation-items-wrapper ul[aria-label='Taille'] li {

  background-color: red;
}

.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item {
  width: 70px;
  height: 40px;
  border-radius: 6px;
  margin-left: 0 !important;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
  background-color: var(--default-color);
  color: #fff;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper .variable-item:not(.radio-variable-item) {
  border-radius: 50%;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color, .woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item .variable-item-span-color {
 
  border-radius: 50%;
}

div.type-product>.onsale {
  display: none;
  
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
  
}
.product_title {
 color: var(--default-color); 
 font-size: 2.8rem;
 font-weight: 600;
 text-transform: uppercase;
}
.single-product .entry-summary .price {
  font-weight: 600;
  color: #2f4858 !important; 
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.single-product .entry-summary .price .woocommerce-Price-amount {
  
  font-size: 1.6rem;
}
.entry-summary .price ins {
  text-decoration: none;
  padding-left: 1rem;
}
.entry-summary .price ins .woocommerce-Price-amount {
  font-weight: 600;
  color: var(--accent-color);
}
.entry-summary .price del .woocommerce-Price-amount {
  color: var(--default-color);   
  font-weight: 400;
}
.entry-summary .in-stock {
  /* display: none; */
  font-weight: 500;
  color: var(--placeholder-color) !important;
}

.entry-summary .woocommerce-product-details__short-description {
  color: #868686;
  padding-bottom: 1rem;
  font-size: 1.4rem;
}
.woocommerce div.product form.cart .variations label  {
  text-align: left !important;
  color: var(--default-color); 
  font-size: 1.6rem;
  vertical-align: middle !important;
  font-weight: 500;
}
.woo-variation-items-wrapper {
  padding-bottom: 2rem;
}
.woocommerce div.product form.cart .variations {
  margin-bottom: 0em;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  width: 3rem;
  height: 3rem;
  box-shadow: none !important;
  border: 2px solid var(--line-color);
  margin: .5rem .8rem ;
}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected, 
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover {
  border: 1px solid #2f4858;
}
.woo-variation-swatches .variable-items-wrapper {
  width: 100%;
  max-width: 58rem;
}
.reset_variations {
  display: none !important;
}
.woocommerce-variation-price {
  margin-bottom: 2rem;
}
.woocommerce-breadcrumb, .woocommerce-breadcrumb a {
  font-size: 1.2rem !important;
}

.single-product .product_meta {
 
}
.single-product .new.product_meta {
  display: block;
  margin: 3rem 0;
 }
.addtoany-wrap {
  margin-bottom: 2rem;
}
.price ins {
  margin-left: 0.8rem;
}

.button-variable-item-all {
  display: none !important;
}
.x-cart-notification {
  display: none !important;
  }
  .single_add_to_cart_button.button.alt.added:after,
  .woocommerce-page ul.products li.product.desktop-align-left.button:after {
    display: none !important;
  }  
.woocommerce div.product form.cart .variation {
  max-width: 60rem !important;
}
.woocommerce-Tabs-panel--description>p {

  padding: 1rem;
  margin-bottom: 0;

}
.save-money {
  order: 3;
  margin-left: .5rem;
  font-weight: 400;
  font-size: 1.4rem;
  color: #B64D5F;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
#fkcart-modal .fkcart-primary-button {
  text-transform: uppercase;
  font-family: 'Poppins' !important;
}
#fkcart-modal * {

}
.fal {
  font-family: 'Font Awesome 5 Pro' !important;
}
.fkcart-select-options {
  display: none;
}

/*
Add to cart button ================================================
*/
.woocommerce div.product form.cart .button {
  vertical-align: top;
  float: none !important;
  font-weight: 500 !important;
  flex-grow: 1;
  width: calc(100% - 115px);
}
.woocommerce-variation-add-to-cart {
  display: flex;
  
  padding-bottom: 1rem;
  max-width: 55rem;
  position: relative;
}
.single_add_to_cart_button {
 background-color: var(--accent-color) !important; 
 border-radius: 5px !important;
 transition: all .3s;
 text-transform: uppercase;
 font-size: 1.4rem !important;
 line-height: 5rem !important;
 padding: 0 1.5rem !important;
}
.single_add_to_cart_button:hover {
  background-color: var(--button-hover-color) !important;
  
}
.woocommerce-variation-add-to-cart .added_to_cart {
  position: absolute;
  top: -30px;
  right: 60px;
  color: #2f4858;
  font-size: 1.2rem;
  
}
.woocommerce-variation-add-to-cart .added_to_cart:hover {
  color: #f1f1e6
}

/*

Quantiy Field================================================
*/
.input-text.qty::-webkit-outer-spin-button,
.input-text.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.quantity {
  margin: 0;
  border: 2px solid var(--line-color) !important;
  border-radius: 5px;
  margin-right: 1rem !important;
  
  display: inline-block;
  margin-right: 7px;
  position: relative;
}
.quantity {
  width: auto;
  position: relative; 
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
}
.quantity button.plus {
  position: absolute;
  top: 0;
  right: 0;
  background: 0 0;
  line-height: 24px;
  border: none;
  width: 38px;
  height: 46px;
}
.quantity button.minus {
  position: absolute;
  left: 0;
  bottom: 0;
  border: none;
  width: 38px;
  height: 50px;
  background: 0 0;
}
.quantity button {
  outline-color: transparent;
  color: hsla(0,0%,53%,.8);
  font-size: 0;
}
.quantity .minus, .quantity .plus {
  background: #fff;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  vertical-align: text-top;
  overflow: visible;
  text-decoration: none;
  cursor: pointer;
  line-height: 13px;
  font-size: 16px;
  color: #868686;
  border: 1px solid #e5e5e5;
  text-align: center;
  width: 45px;
  height: 38px;
  font-size: 20px;
}

.quantity input {
  width: 100px !important;
  border: 0;
  height: 46px;
  text-align: center;
  padding: 0 38px;
  font-size: 18px;
}
.quantity input.qty {
  float: left;
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 0;
  font-size: 1.4rem;
  -moz-appearance: textfield;
}

/*
Meta Fields ================================================
*/
.product_meta {
  font-size: 1.4rem;
}
.product_meta .sku_wrapper, .product_meta .posted_in {
  color: var(--accent-color);
}
.product_meta .sku {
  color: var(--default-color);  
}
.product_meta a:link, .product_meta a:visited {
  color: var(--default-color);
}
.product_meta a:hover, .product_meta a:active {
  color: var(--default-hover-color);
}
.product_meta > span {
  display: block;
  margin-bottom: 2rem;
}
/*
Wish List ================================================
*/
.entry-summary button.woosw-btn  {
  margin-left: .4rem;
  border-radius: 0;
  background: #f1f1e6;
  
  border: 2px solid #f1f1e6;
  line-height: 50px;
  padding: 14px;
  font-size: 20px;
  color: #B64D5F;
  
  
  cursor: pointer;
  transition: all .3s;
}
.entry-summary button.woosw-btn:hover, button.woosw-btn:active {
  color: #868686;
  background-color: #fff;
  
  border: 2px solid hsla(0,0%,91%,.5) !important;
} 

.post-type-archive-product button.woosw-btn,
.related button.woosw-btn,
.archive button.woosw-btn,
.products-list button.woosw-btn {
  position: absolute;
  top: 7px;
  border: 0;
  background: transparent;
  font-size: 20px;
  left: 5px;
  outline: none;
  cursor: pointer;
  color: #B64D5F;
}

.woosw-item--atc, .woosw-item--time, .stock {
  /* display: none; */
}
.woosw-popup .woosw-items .woosw-item .woosw-item--name a:link,
.woosw-popup .woosw-items .woosw-item .woosw-item--name a:visited  {
  color: #2f4858 !important;
}
.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top {
  background-color: #2f4858;
  color: #fff;
}
.woosw-popup.woosw-popup-right .woosw-popup-inner .woosw-popup-content .woosw-popup-content-top .woosw-popup-close {
  color: #fff;
}
/* 
Information Tabs ============================================
*/
.single-product .woocommerce-tabs {
  padding-top: 2rem;
  
  border-bottom: 1px solid var(--line-color);
  text-align: left;
}

.single-product .woocommerce-tabs .wc-tabs {
  text-align: center;
}
.single-product .woocommerce-tabs .wc-tabs:before {
  border: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  background-color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--toneless-color) !important;
  font-size: 2rem;
  font-weight: 500 !important; 
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--default-color) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #2f4858;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: 0 !important;
  content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  position: relative;
}
.woocommerce table.shop_attributes tr:nth-child(even) td, .woocommerce table.shop_attributes tr:nth-child(even) th {
  background: none !important;
}

.woocommerce-tabs ul.tabs li.active a, .woocommerce-tabs ul.tabs li:hover a {
  color: #2f4858;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: var(--default-color) !important;
  
}
.woocommerce-tabs ul.tabs li a:before {
  position: absolute;
  bottom: 0;
  content: "";
  left: .2rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  width: 0;
  height: 2px;
  background: var(--accent-color);
}
.woocommerce-tabs ul.tabs li.active a:before, .woocommerce-tabs ul.tabs li:hover a:before {
  width: 80%;
}
.woocommerce-product-attributes {
  /* border: 1px solid rgba(0,0,0,.1) !important; */
  border: 0 !important;
  font-size: 1.4rem;
  max-width: 100% !important;
  width: 48rem !important;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0 !important;

}
.woocommerce table.shop_attributes th {
  text-align: left !important;
}
.woocommerce table.shop_attributes th,.woocommerce table.shop_attributes td  {
  
}

.woocommerce table.shop_attributes td {
  padding: 5px 10px;
}
.woocommerce-product-attributes a {
  color: #2f4858;
}
.woocommerce table.shop_attributes td,
.woocommerce table.shop_attributes th {
  border-bottom: 0 !important;
  border-top: 1px solid var(--line-color) !important;
}
.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel ul {
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-Tabs-panel ul {
  padding: 0 1rem;
  padding-left: 2rem;
}
.prod-text-wrap {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
}
.prod-text-wrap .lock {
  display: flex;
  gap: 1rem;
  align-items: end;
  padding-bottom: 2.5rem;
}
.prod-text-wrap .prod-text {
  font-weight: 500;
  color: var(--default-color);
  padding: 1.5rem 2.5rem .8rem 2.5rem;
  border: 2px solid var(--line-color);
  border-radius: 8px;
  position: relative;
  font-size: 1.6rem;

}
.prod-text-wrap .prod-text .card {
  
  font-size: 3.5rem;
  color: var(--accent-color);
  
}
.prod-text-wrap .prod-text .shield {
  position: absolute;
  top: 3.6rem;
  left: 4.2rem;
  font-size: 2.3rem;
  color: var(--accent-color);
  background-color: #fff;
}
.prod-text-wrap .prod-text  i {
  padding-right: .8rem;
}

.prod-text-wrap .prod-text .lock:before {
  /* content: "\f30d";
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 400;
  padding-right: 1rem;   */
}
.prod-text-wrap .prod-text .truck:before {
  content: "\f48b";
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 100;
  padding-right: 1rem;  
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.single_variation_wrap .stock-status {
display: none;
}
.stock-status {
  margin-left: auto;
  margin-right: 1rem;
  color: #4c8265;
  font-size: 1.2rem;

}
.single-product .related {
  
  margin-top: 4rem;
}
/* 
Related Products ============================================
*/
.related.products > h2 {
  color: var(--heading-color);
  text-transform: uppercase;
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 600;
  position: relative;
}

.related.products > h2:after {
  content: "";
  position: absolute;
  height: .2rem;
  bottom: -.6rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;   
  background-color: var(--accent-color);
  width: 200px;
}
/* 
Product Archive =============================================
*/
.onsale {
  color: #fff !important;
  font-size: 1rem !important; 
  font-weight: 300 !important;
  background-color: var(--accent-color) !important;

}
.products .price {
  color: #a0a0a0 !important;
  font-size: 1.2rem !important;
}

.woocommerce-LoopProduct-link {
  text-align: center;
}
.woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  color: var(--default-color);
  text-transform: uppercase;
  font-size: 1.5rem !important;
  font-weight: 500;

}
.woocommerce-LoopProduct-link .woocommerce-loop-product__title:hover {
  color: var(--default-hover-color);
}
.woocommerce ul.products li.product .onsale {
  top: 1.4rem;
  right: 1.4rem;
  left: auto;
  margin: -.5em -.5em 0 0;
}
.woocommerce span.onsale {
  min-height: auto;
  padding: 0 1rem;
  position: absolute;
  text-align: center;
  line-height: 2;
  top: -.5em;
  left: -.5em;
  margin: 0;
  border-radius: 20px;
  color: #2f4858;
  font-size: .857em;
  z-index: 9;
}
.woocommerce .page-title,
.woocommerce-products-header__title,
.list-header .entry-title {
  color: var(--accent-color);
  text-transform: uppercase;
  font-size: 3rem !important;
  font-weight: 600;
  text-align: center;
  padding: 5rem 0;
  background-color: var(--item-bg-color);

}
.woocommerce-products-header {
  margin-bottom: 1.5rem;
}
.woocommerce-result-count {
  color: var(--button-hover-color);
  font-size: 1.4rem;
}
.woocommerce-ordering .orderby {
  outline: none;
  border: 1px solid var(--item-border-color);
  border-radius: 10px;
  padding: 1rem 1rem;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.6rem;
  font-size: 1.6rem;
  max-width: 16rem;

}
.archive ul.products {
  padding-top: 1rem;
}

.woof_products_top_panel a {
  color: #2f4858;
  font-size: 1.2rem; 
}
.woof_products_top_panel li span {
  background-image: none !important;
}
.woof_reset_button_2 {
  border-radius: 0;
  font-size: 1.2rem !important;
  background-color: #f1f1e6; 
  height: 3rem;
  outline: 0;
  border: 1px solid #2f4858;
}
.archive-panels {
  display: flex;
  gap: 10%;
  position: relative;
}
.archive-panels .filter-side {
  width: 20%;
  padding-left: 2rem;
  order: 1;
  
}
.archive-panels .shop-side {
  order: 2;
  width: 70%;
  
}
.archive-panels .wp-block-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-color);
}
.wc-block-product-categories-list {
  margin-top: 2rem;
}
.wc-block-product-categories-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-color);
}
.wc-block-product-categories-list li a:link,
.wc-block-product-categories-list li a:visited {
  color: var(--default-color);
  font-weight: 500;
}
.wc-block-product-categories-list li a:hover,
.wc-block-product-categories-list li a:active {
  color: var(--default-hover-color);
}
.wc-block-product-categories-list-item-count {
  display: none;
}
.archive-panels .cat-toggle {
  display: none;
  position: absolute;
  top: 1rem;
  left: 2rem;
}
.archive-panels .cat-toggle img {
  color: var(--accent-color);
  font-size: 2rem;
  cursor: pointer;
  width: 2.5rem;
}  
.archive-panels .filter-text {
  color: va(--default-color);
  font-size: 1.4rem;
  font-weight: 400;
}
.close-cat-btn {
  display: none;  
  position: absolute;
  top: 0px;
  right: 16px;
  transition: 0.3s;   
  font-size: 3.6rem;
  color: var(--default-color);
  cursor: pointer;
  z-index: 99999;
}
/* 
Page ===================================================
*/
.entry-header {
  margin-top: 4rem;
}
.entry-header .entry-title {
  
  color: var(--accent-color);
  font-size: 4rem;
  letter-spacing: .4rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
}
.page .entry-header {
  border-bottom: 0;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 4rem;
}
.page .list-header {
  border-bottom: 0;
  margin-top: 0;
}
.entry-content p {
  font-weight: 400;
}

/* 
Cart ================================================================
*/
#fkcart-modal .fkcart-preview-ui .fkcart-slider-header {
  border-bottom: 0 !important;
  background-color: var(--item-bg-color);
}
#fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-item-meta-content .fkcart-attr-wrap {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
#fkcart-modal .fkcart-item-wrap .fkcart--item {
  padding-left: 0;
  padding-right: 0;
  margin-left: 16px;
  margin-right: 16px;
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 2.5rem;
}
#fkcart-modal .fkcart-preview-ui .fkcart-slider-footer {
  margin-left: 16px;
  margin-right: 16px;
  border-top: 1px solid var(--line-dark-color) !important;
}
.fkcart-modal-container .prod-text-wrap {
  display: block;
}
.fkcart-modal-container .prod-text {
  margin-bottom: 1rem;
}
.fkcart-product-form-field table th {
  display: none !important;
}
.woo-variation-swatches.wvs-show-label .fkcart-product-form-field .variations td {
  width: 100% !important;
  text-align: center;
}
.fkcart-form-input-wrap.woo-variation-items-wrapper {
    max-width: 276px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 0;
}
.fkcart-input-label {
  display: none !important;
}
.fkcart-product-form-field .woocommerce-variation-add-to-cart {
  margin-bottom: 2rem;
}
#fkcart-modal .fkcart-quick-view-drawer .fkcart-product-form-wrap .woocommerce-variation {
  justify-content: center !important;
}
.fkcart-product-form-field .woocommerce-variation-add-to-cart {
  justify-content: center !important;
}

#fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button:hover {
  background-color: var(--button-hover-color);
}
#fkcart-modal .fkcart--item .fkcart-discounted-price {
  color: var(--success-color) !important;
}
.fkcart-shortcode-icon-wrap svg {
  /* fill: var(--accent-color) !important; */
  color: var(--accent-color) !important;
}
.fkcart-item-meta-content a:link, .fkcart-item-meta-content a:visited {
  color: var(--accent-color) !important;
}
#fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-item-price ins .woocommerce-Price-amount,
#fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-item-price ins .woocommerce-Price-currencySymbol {
  color: var(--accent-color) !important;
  font-weight: 600;
}
.fkcart-quick-view-drawer .fkcart-product-form-thumbnail img {
  height: auto !important;
}
.fkcart-order-summary .fkcart-summary-line-item strong {
  font-size: 1.4rem !important;
}
#fkcart-modal .fkcart-preview-ui .fkcart-slider-heading .fkcart-title {
  font-size: 1.6rem !important;
}
.fkcart-order-summary .fkcart-summary-line-item strong {
  text-transform: uppercase;
}
.fkcart-checkout--text, .fkcart-shopping-link {
  font-size: 1.4rem !important;
  letter-spacing: .1rem;
  font-weight: 500 !important;
  text-transform: uppercase;
}
.wc-block-cart-items__header {
  font-size: 1.4rem;
}

.is-large.wc-block-cart .wc-block-cart-items td {
  vertical-align: middle;
}

.is-large.wc-block-cart .wc-block-cart-item__wrap {
  display: flex;
  flex-direction: column;
}
.wc-block-components-product-name {
  margin-bottom: 0 !important;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 1.4rem;
  order: 1;
  color: #2f4858;
  font-weight: 600;
}


table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  order: 3;
}

table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  font-size: 1.2rem;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  order: 1;
}
.wc-block-components-product-metadata {
  order: 2;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-sale-badge,
.wc-block-components-product-badge {
  display: none !important;
}
.is-large.wc-block-cart .wc-block-cart-items {
  order: 2;
}

.wc-block-components-product-details__name {
  display: none;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__wrap>:last-child {
  order: 4;
}
table.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-size: 1.2rem;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  position: absolute;
  top: 16px;
  left: 10px;
}
.is-large.wc-block-cart .wc-block-cart-items td {
  vertical-align: middle;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  font-size: 0 !important; 
  text-decoration: none !important;
  outline: none !important;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:after {
  content: "\f057";
  color: #2f4858;
  font-family: 'Font Awesome 5 Pro' !important;
  font-weight: 300;
  font-size: 1.8rem;
}

.wc-block-components-product-price__regular {
  display: none !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.wc-block-cart__submit-button:link, .wc-block-cart__submit-button:visited {
  color: #fff;
  background-color: var(--accent-color);
  font-size: 1.4rem;
  text-transform: uppercase;
  outline: none !important;
  height: 4rem;
  transition: all .3s;
}
.wc-block-cart__submit-button:hover,.wc-block-cart__submit-button:active {
  color: #fff;
  background-color: var(--button-hover-color);
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.4rem !important;
}
.wc-block-components-totals-coupon .wc-block-components-panel__button {
  font-size: 1.4rem;
}

.wc-block-components-totals-item {
  font-size: 1.4rem;
}
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices {
  margin-top: 0.8rem;
}
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-size: 1.4rem !important;
  font-weight: 300 !important;
}
.wc-block-cart-items__row {
  position: relative;
}
.wc-block-components-product-metadata__description {
  display: none;
}
.wc-block-components-product-details.wc-block-components-product-details li {
  font-size: 1.4rem;
}
.wc-block-components-product-details__name {
  font-weight: 400 !important;
}
.wc-block-components-product-price__value {
  margin-left: 0 !important;
  font-size: 1.4rem;
  font-weight: 500;
}
.wc-block-components-product-metadata {
  margin-bottom: 0 !important;
}
.wc-block-cart-items__header th {
  font-size: 1.6rem;
}
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
  font-size: 1.6rem !important;
}
.wc-block-cart-items__row td {
  border-top: 1px solid var(--line-color) !important;
}
.wc-block-components-totals-coupon__button,
.wc-block-components-shipping-calculator-address__button {
  height: 4rem !important;
  border: 2px solid #000;
  line-height: 4rem;
  border-radius: 7px;
  background: #fff !important;
  color: var(--default-color) !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.4rem;
  outline: none !important;
  box-shadow: none !important;
}
.wc-block-components-totals-coupon__button:hover, 
.wc-block-components-totals-coupon__button:active,
.wc-block-components-shipping-calculator-address__button:hover,
.wc-block-components-shipping-calculator-address__button:active {
  outline: none !important;
  box-shadow: none !important;
}
.wc-block-components-totals-coupon__input input {
  height: 4.4rem !important;
  border-color: var(--item-border-color) !important;
  color: var(--default-color);
}
.wc-block-components-totals-coupon__input input:active,
.wc-block-components-totals-coupon__input input:hover,
.wc-block-components-totals-coupon__input input:focus {
  border-color: var(--item-border-color) !important;
  box-shadow: none !important;
  color: var(--default-color);
}

#fkcart-modal .fkcart-zero-state .fkcart-icon-cart svg {
  color: var(--accent-color);
  width: 4.5rem;
}
#fkcart-modal .fkcart-zero-state .fkcart-zero-state-title {
  color: var(--default-color) !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}
#fkcart-modal .fkcart-zero-state .fkcart-zero-state-text {
  font-size: 12px !important;
  font-weight: 500 ;
  line-height: 1.3;
  color: var(--default-color) !important;
  width: 200px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1.4rem;
}
/* 
Checkout ================================================================
*/
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  color: #fff;
  background-color: var(--accent-color);
  font-size: 1.4rem;
  text-transform: uppercase;
  outline: none !important;
  height: 4rem;
  border-radius: 7px;
  border: 0;
}
.wc-block-components-title.wc-block-components-title {
  font-size: 2.2rem !important;
  text-transform: uppercase;
  font-weight: 600;
  
}
.wc-block-components-address-card__edit {
 color: #2f4858 
}
.wc-block-components-address-form__email input {
  border-color: var(--item-border-color) !important;
}
.wc-blocks-components-select .wc-blocks-components-select__select {
  color: var(--default-color) !important;
  border-color: var(--item-border-color) !important;
}
.wc-blocks-components-select .wc-blocks-components-select__container {
  border-color: var(--item-border-color) !important;
}
.wc-blocks-components-select .wc-blocks-components-select__select:focus {
  box-shadow: 0 0 0 1px var(--default-color) !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary__button-text {
  
}
.wc-block-checkout__sidebar .wc-block-components-product-name {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--default-color);

}
.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value  {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600 !important;
}
.wc-block-components-totals-item__label {
  font-weight: 600;
}
.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-totals-item__value {
  color: var(--line-dark-color);
}
.wc-block-components-totals-item__value em {
  font-weight: 500;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
 font-size: 1.8em !important;
 text-transform: uppercase; 
 font-weight: 600 !important;
}
.wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
  font-size: 1.8rem;
  color: var(--accent-color) !important;
}
.wc-block-components-checkout-step__description,
.wc-block-components-checkbox__label,
.wp-block-woocommerce-checkout .wc-block-checkout__guest-checkout-notice {
  font-size: 1.4rem !important;
}
 
/* 
Xoo Cart ================================================================
*/

span.xoo-wsc-sc-count {
  height: 1.6rem;
  width: 1.6rem;
  line-height: 1.6rem;
  font-size: 1rem;
  top: -8px;
  right: -8px;
}
span.xoo-wsch-text, .xoo-wsc-ft-buttons-cont {
  text-transform: uppercase;
}

.xoo-wsc-product dl.variation p {
  line-height: 1.3 !important;
}
.xoo-wsc-product dl.variation dd, .xoo-wsc-product dl.variation dt {
  font-style: normal;
  margin: 0 4px 5px 0;
}
.xoo-wsc-sml-qty, .xoo-wsc-pprice {
  font-size: 1.4rem;
}


/* 
404 ================================================================
*/

.error-404, .no-results {
  text-align: center;
}
.not-found i {
  color: var(--placeholder-color);
}
.not-found .search-submit {
  top: 1.4rem;
  left: .2rem;

}
.not-found .search-form input[type="search" i]  {
  padding: 1.5rem 3rem;
  width: 100%;
  border-color: var(--placeholder-color);
  font-size: 16px;
}
.not-found .search-form input[type="search" i]::placeholder {
  color: var(--placeholder-color);
}
.not-found .search-sub-row {
  width: 40%;
}
.not-found-img {
  margin-bottom: 3rem;
}
.not-found-msg {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.error-404 header h1, .no-results header h1 {
  font-size: 1.6rem;
  font-weight: 600;
}
.error-404 .page-content p {
  text-align: center;
}
/* 
Search ================================================================
*/

.search-form-row {
  position: relative;
}
.search-sub-row {
  position: relative;
  display: inline-block;
}

.search-form-row.search-popup .search-submit {
  top: 7px;
  left: 0;
}
.search-form input[type="search" i]  {
  outline: none;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--default-color);
  padding-left: 4rem;
  
}
.search-form input[type="submit" i] {
  background-color: rgba(47, 72, 88, 1);
  color: #fff;
  border: 0;
  padding: 1rem;
}
.search-header {
  text-align: center;
  margin-top: 2rem;
  color: #2f4858;
  border-bottom: 1px solid rgba(47, 72, 88, .2);
}
.search-header h1 {
  font-size: 1.6rem !important;
  font-weight: 700;
  text-transform: uppercase;
}
.search-post {
  margin-top: 2rem;
  border-bottom: 1px solid rgba(47, 72, 88, .2);
  padding-bottom: 2rem;
}
.search-post> article {
  display: flex;
  gap: 3rem;
}
.search-post h3 {
  margin-top: 1rem;
}
.search-post h3 a:link, .search-post h3 a:visited {
  color: #2f4858;
  font-weight: 600;
}
.search-post .single-thumb img {
  width: 100%;
  max-width: 30rem;
  height: auto;
}
.generic-content {
  text-align: center;
}
.generic-content .headline {
  line-height: 4rem;
}
.search-submit {
  border: 0;
  color: var(--default-color);
  font-size: 20px;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 7px
}
.search-submit:focus {
  outline: none;
}
::placeholder {
  color: var(--default-color);
}
/* 
Check Out ================================================================
*/

.wc-block-components-text-input input[type=text],
input.components-combobox-control__input[type=text],
.wc-block-components-form .wc-block-components-text-input input[type=tel] {
  border: 1px solid var(--line-color) !important;
  
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
  border-color: var(--line-color) !important;
}

.wc-block-checkout__terms.wc-block-checkout__terms--with-separator,
.wc-block-components-totals-wrapper,
.is-large .wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-totals-block {
  border-color: var(--line-color) !important;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:link, 
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:visited {
  color: var(--accent-color);
  font-weight: 600;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:hover, 
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:active {
  color: var(--accent-color);
} 
.wp-block-woocommerce-checkout .wc-block-checkout__login-prompt {
  font-size: 1.4rem !important;
  color: var(--accent-color);
  position: relative;
}
.wp-block-woocommerce-checkout .wc-block-checkout__login-prompt::after {
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 600;
  color: var(--accent-color);
  position: absolute;
  right: -12px;
  top: 4px;
}
.wc-block-components-textarea {
  border-color: var(--item-border-color) !important;
}
/* 
Login ================================================================
*/

.woocommerce form.login, .woocommerce form.register {
  border: 0 !important;
  padding: 0;
  margin: 0;
}

.page h2 {
  font-size: 2.9rem !important;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading-color);
}
.woocommerce form .form-row input.input-text {
  border: 1px solid var(--item-border-color) !important;
  padding: 1.5rem;
  border-radius: 7px;
  font-size: 1.4rem;
  /* max-width: 40rem; */
}
.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register__submit, .woocommerce-Button {
  margin-top: 2.5rem;
  font-family: var(--default-font) !important;
  background-color: var(--accent-color) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 1.4rem 3rem;
  text-transform: uppercase;
  border-radius: 7px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register__submit {
  width: 25.5rem;
  padding-left: 0;
  padding-right: 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover, .woocommerce-Button:hover {
  background-color: var(--button-hover-color);
  color: #fff;
}
.woocommerce-LostPassword {
  padding: 2.5rem 0 0 1rem;
  font-size: 1.6rem;
}
.woocommerce-LostPassword a {
  font-size: 1.6rem;
}
.woocommerce-privacy-policy-text p {
  font-size: 1.6rem !important;
  font-weight: 500;
}
.woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide input::placeholder {
  color: var(--placeholder-color);
  font-family: var(--default-font);
}
.woocommerce form .form-row label {
  color: var(--placeholder-color);
}
/* .woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide {
  position: relative;
}
.woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide label {
  position: absolute;
  top: 13px;
  left: 19px;
  color: var(--placeholder-color);
  z-index: 5;
  pointer-events: none;
}
.woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide input::placeholder {
  color: #fff;
}
.woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide input:not(:placeholder-shown) + label  {
  display: none;
}

.woocommerce .woocommerce-form-row.woocommerce-form-row--wide.form-row.form-row-wide input:focus + label {
 display: none;
 
} */
.woocommerce-privacy-policy-link:link, .woocommerce-privacy-policy-link:visited {
  color: var(--accent-color) !important;
}



.woocommerce-LostPassword a:link, .woocommerce-LostPassword a:visited,
.woocommerce-privacy-policy-text a:link, .woocommerce-privacy-policy-text a:visited,
.wc-block-must-login-prompt a:link, .wc-block-must-login-prompt a:visited {
  color: var(--accent-color);
  font-weight: 600;
}
.woocommerce-LostPassword a:hover, .woocommerce-LostPassword a:active,
.woocommerce-privacy-policy-text a:hover, .woocommerce-privacy-policy-text a:active,
.wc-block-must-login-prompt a:hover, .wc-block-must-login-prompt a:active {
  color: var(--button-hover-color);
}
.lost_password a:link, .lost_password a:visited {
  color: var(--accent-color) !important;
}
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first,
.woocommerce form .form-row-last, .woocommerce-page form .form-row-last 
{
  float: none !important;
  width: 100% !important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  max-width: 80rem;
}
/* 
My Account ================================================================
*/
.woocommerce-MyAccount-navigation {
  margin-bottom: 2rem;
  max-width: 30rem;
}

.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:link,
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:visited,
.woocommerce-table__product-name a:link, .woocommerce-table__product-name a:visited,
.woocommerce-MyAccount-content a:link, .woocommerce-MyAccount-content a:visited {
  color: var(--accent-color);
  font-weight: 600;
  transition: all .3s;
}
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:active,
.woocommerce-table__product-name a:hover, .woocommerce-table__product-name a:active,
.woocommerce-Address-title a:hover, .woocommerce-Address-title a:active,
.woocommerce-MyAccount-content a:hover, .woocommerce-MyAccount-content a:active {
  color: var(--button-hover-color);
}
.woocommerce-MyAccount-navigation-link {
  margin-bottom: .5rem;
}
.woocommerce-MyAccount-navigation-link a:link,
.woocommerce-MyAccount-navigation-link a:visited  {
  display: block;
  padding: 1rem 2rem;
  transition: all 0 !important;
  color: var(--default-color) !important;
  font-weight: 500 !important;
  font-size: 1.6rem;
  border: 1px solid #fff;
  border-radius: 7px;
}
.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-MyAccount-navigation-link a:active {
  border: 1px solid var(--accent-color);
  color: var(--accent-color) !important;
}

.woocommerce-refund-details .submit input[type='submit'] {
  
}

.select2-container--default .select2-selection--single {
  border-color: var(--item-border-color);
  height: 4.8rem;
  border-radius: 5px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--default-color);
  line-height: 4.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  font-weight: 500;
  padding: 0;
  text-align: center;
}
.return-to-shop {
  text-align: center;
}
.woocommerce-Address-title {
 
}
.woocommerce-Address-title h2 {
  font-size: 2.2rem !important;
  padding: .5rem 0 .8rem 0;  
}
.woocommerce-Address-title h3 {
  font-weight: 600 !important;
}

.woocommerce-account .addresses .title .edit {
  float: none !important;
}
.woocommerce-Address-title a:link, .woocommerce-Address-title a:visited {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.4rem;
}
.woocommerce-Address address {
  font-style: normal;
  line-height: 2rem;
  font-weight: 500;

}
.woocommerce-address-fields button[type="submit"],
.woocommerce-button.button,
.woocommerce-refund-details .submit input[type='submit']  {
  background-color: var(--accent-color);
  color: #fff !important;
  font-size: 1.4rem;
  text-transform: uppercase;
  border: 0 !important;
  padding: 1.5rem 4rem;
  border-radius: 7px;
  font-weight: 500;
  margin-top: 2rem;
  cursor: pointer;
  transition: all .3s;
}
.woocommerce-address-fields button[type="submit"]:hover,
.woocommerce-button.button:hover,
.woocommerce-refund-details .submit input[type='submit']:hover {
  background-color: var(--button-hover-color);
}

.woocommerce-refund-details .submit input[type='submit'] {
  padding: 1rem 3rem;
}
.asp-rpw-request-a-refund-action.button {
  font-size: 1.2rem;
  border: 1px solid #2f4858;
  padding: .4rem 1.5rem;
  border-radius: 3px;
}
.asp-rpw-request-a-refund-action-wrapper {
  margin-top: 0.3rem;
}
.asp-rpw-refund-selection-type, .asp-rpw-refund-method-selection {
  padding: 0.8rem;
}
.asp-rpw-total-refund-amount {
  color: #2f4858 !important;
}
.asp-rpw-refund-reason {
  max-width: 50%;
  width: 50%;
  height: 10rem;
}

.asp-rpw-refund-request-submit-action {
  padding: 1rem 3rem;
  border: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  
  background-color: #2f4858;
  color: #ffffff;
}
.woocommerce-refund-details .check-all-button {
  text-align: left;
  margin-top: 1rem;
  padding-left: 0 !important;
}
.woocommerce-refund-details .check-all-button button {
  
  font-size: 1.2rem;
  padding: .4rem 1rem;
}
.woocommerce-refund-details .field-type-textarea textarea {
  width: 100%;
  max-width: 660px;
  height: 150px;
}


.woocommerce-refund-details .fr-request-form label {
  margin-bottom: 0.4rem;

}
.woocommerce-refund-details .fr-request-form select {
  padding: 0.6rem 1rem;
  border-radius: 0;
}
.woocommerce-refund-details .fr-request-form select:focus,
.woocommerce-refund-details .field-type-textarea textarea:focus {
  outline: none;
}
.woocommerce-fr-refund .woocommerce-table th {
  text-align: left;
  padding: .6rem 1rem;
}
.woocommerce-fr-refund .woocommerce-table td {
  padding: .6rem 1rem;
}
.woocommerce-MyAccount-content .woocommerce-info {
  color: var(--default-color) !important;
  background-color: #fff !important;
  border: 0 !important;
}
.woocommerce-MyAccount-content .woocommerce-info::before {
  content: "" !important;
}
.wc-forward.button {
  background-color: #fff !important;
  text-transform: capitalize;
  padding: 0;
  line-height: 2.4rem;
  color: var(--accent-color) !important;
  font-weight: 500;
  font-size: 1.4rem !important;
}
.woocommerce table.my_account_orders th {
  font-size: 1.6rem;
  padding-bottom: 2rem;
}
.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th a {
  font-size: 1.4rem;
  font-weight: 500;
  
}
.woocommerce table.shop_table td,
.woocommerce table.my_account_orders th.woocommerce-orders-table__cell-order-number {
  border-top: 0;
  border-bottom: 1px solid var(--line-color);
  padding: 1rem;
}

.woocommerce table.my_account_orders th.woocommerce-orders-table__cell-order-number {
  text-transform: capitalize;
}
.woocommerce table.my_account_orders {
  border: 0;
}
.woocommerce table.my_account_orders .woocommerce-button.view,
.woocommerce table.my_account_orders .woocommerce-button.refund {
  padding: .6rem 3rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.woocommerce table.my_account_orders .woocommerce-button.refund {
  color: var(--accent-color) !important;
  background-color: #fff;
  padding: 0.3rem 2rem;
  margin-left: 1rem;
  border: 2px solid var(--accent-color) !important;
}
.woocommerce-MyAccount-content a.cr-button:link,
.woocommerce-MyAccount-content a.cr-button:visited {
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid var(--accent-color);
}
.woocommerce-MyAccount-content a.cr-button:hover,
.woocommerce-MyAccount-content a.cr-button:active {
  border-color: var(--button-hover-color);
  color: var(--button-hover-color);
}
.refund-front-form select, .refund-front-form input, .refund-front-form textarea,refund-front-form {
  border-color: var(--item-border-color);
  border-radius: 5px;
}
/* 
Contact ================================================================
*/
.contact-page h3 {
  font-weight: 600;
  font-size: 2rem;
}
.contact-page {
  display: flex;
  
  justify-content: space-between;
}

.contact-info {
  width: 60%;
  padding-right: 10rem;
  border-right: 1px solid var(--line-color);
}
.contact-data {
  width: 40%;
  padding-left: 10rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--item-border-color) !important;
  border-radius: 5px !important;
}
.contact-form label {
  color: var(--placeholder-color) !important;
  font-weight: 500 !important;
  font-size: 1.4rem !important;
}
.contact-form button {
  background-color: var(--accent-color) !important;
  text-transform: uppercase !important;
  padding: 1rem 3rem !important;
  border-radius: 5px !important;
  transition: all .3s;
}
.contact-form button:hover {
  background-color: var(--button-hover-color) !important;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 3rem;
  position: relative;
  
}
.contact-line i {
  color: var(--accent-color);
  font-size: 3.5rem;
}
.gly-rotate-45 {
  width: 50px;
  height: 50px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  
}
.contact-line label {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--accent-color);
  text-transform: uppercase;
}
.contact-line a:link, .contact-line a:visited {
  color: #2f4858;
}
.contact-line a:hover, .contact-line a:active {
  color: rgba(47, 72, 88, .8);
}
.forminator-input, .forminator-textarea {
  border: 1px solid rgba(47, 72, 88, .5) !important;
}
.forminator-button-submit {
  background-color: rgba(47, 72, 88, 1);
  color: #fff;
}
.forminator-button-submit:hover, .forminator-button-submit:active {
  box-shadow: none !important;
}

.wc-ppcp-popup__container img {
  display: none;
}

/* 
Colissimo & Mondial Relay ================================================================
*/
.lpc_pick_up_widget_show_map.wp-element-button {
  background-image: linear-gradient(to right, #ED6C07 , #FAB206);
  padding: 13px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  border: 0;
  margin-bottom: 1rem;
}
#mrwpbutton {
  border: 0 !important;
  margin-bottom: 1rem;
  padding-left: 0 !important;
}

.lpc_pickup_info_title {
  margin-bottom: 1rem;
  color: var(--accent-color);
}
.lpc_pickup_info_address_line {
  margin-left: 1.5rem;
  margin-top: 0.4rem;
  font-size: 1.4rem !important;
  font-weight: 500 !important;

}
#lpc_pick_up_info {
  margin-bottom: 1rem;
}
#lpc_gutenberg_block_container > div:nth-child(2) {
  color: red;
}
#lpc_pick_up_info .lpc_pickup_info_distance_txt, #lpc_layer_list_relays .lpc_pickup_info_distance_txt {
  font-weight: 500 !important;
}
#lpc_pick_up_info .lpc_pickup_info_address .lpc_pickup_info_address_name {
  font-weight: 500 !important;
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Wishlist
--------------------------------------------------------------*/

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
 .woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before, 
 .woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before, 
 a.wishlist_products_counter.top_wishlist-heart:before, 
 span.wishlist_products_counter.top_wishlist-heart:before, 
 a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart:before {
  color: var(--accent-color);
  font-size: 30px;
  margin-top: -18px !important;
}
.like-button {
  float: right;
  margin-right: 7rem;
  margin-top: 1rem;
}

.tinv-header {
  display: none;
}
.tinv-wishlist {
  margin-bottom: 4rem;
}
.button.wc-backward:link,
.button.wc-backward:visited {
  padding: 1rem 2rem;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 7px;
  transition: all .3s;
}
.button.wc-backward:hover,
.button.wc-backward:active {
  border-color: var(--button-hover-color);
  color: var(--button-hover-color);
  
}
.wishlist_item .product-action a,
.tinv-modal-inner .tinvwl_button_view {
  font-weight: 500;
  font-size: 1.2rem;
  padding: .4rem 1.2rem;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  color: var(--accent-color);
  background-color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}
.tinv-modal-inner .tinvwl_button_view {
  padding-top: 0;
}
.wishlist_item .product-action a:hover {
  border-color: var(--button-hover-color);
  color: var(--button-hover-color);
}
.wishlist_item .product-name a {
  color: var(--default-color);
}
.wishlist_item .product-price ins {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-color);
} 
.tinvwl-input-group select.form-control {
  border-color: var(--item-border-color);
  border-radius: 5px;
  padding: 0 1rem;
}
.tinvwl-to-right button {
  font-size: 1.2rem;
  padding: .8rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  font-weight: 600;
  color: var(--accent-color);
  background-color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  margin: 0 !important ;
  width: auto !important;
}
.tinvwl-to-right button:hover {
  border-color: var(--button-hover-color);
  color: var(--button-hover-color);
}
.tinvwl-input-group-btn button,
.tinvwl-to-right button[name="tinvwl-action-product_all"] {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border: 0;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  background-color: var(--accent-color);
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  margin: 0 !important ;
  width: auto !important;
}
.tinvwl-input-group-btn button:focus,
.tinvwl-to-right button {
  outline: none;
}
.tinv-wishlist table td, .tinv-wishlist table th {
  border-bottom: 1px solid var(--line-color);
}
.tinvwl-input-group-btn button:hover,
.tinvwl-to-right button[name="tinvwl-action-product_all"]:hover {
  background-color: var(--button-hover-color);
}
.wishlist_item .product-action button.button,
.tinv-modal-inner .tinvwl_button_close {
  font-size: 1.2rem;
  padding: .6rem 1.2rem;
  border: 0;
  border-radius: 5px;
  font-weight: 500;
  color: #fff;
  background-color: var(--accent-color);
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  width: auto;
}
.tinv-modal-inner .tinvwl_button_close {
  padding-top: 0;
}

.wishlist_item .product-action button.button:hover {
  background-color: var(--button-hover-color);
  
}
.tinv-wishlist .tinvwl-table-manage-list .product-remove {
  padding: 0;
}
.tinv-wishlist .product-action {
  width: 150px;
  text-align: left;
  margin-top: 0.4rem;
}
.tinvwl-input-group {
  display: flex !important;
  max-width: 12rem;
}
.tinvwl-to-left.look_in {
  display: none;
}
.tinvwl-to-right.look_in {
  display: flex;
  justify-content: space-between;
  float: none !important;
  width: 100% !important;
}
.tinv-wishlist .tinvwl-table-manage-list .product-cb {
  padding: 0;
  
}
.product-info {
  display: flex;
  justify-content: space-between;
}
.tinv-modal-inner .icon_big_heart_check {
  color: var(--accent-color);
}
.tinv-modal-inner .tinv-txt {
  color: var(--default-color);
  font-weight: 500;
}
.tinv-modal-inner .tinvwl_button_view {

}
/* -----------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/
.cmplz-cookiebanner .cmplz-links .cmplz-link {
  color: var(--accent-color) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}
.cmplz-cookiebanner .cmplz-title,
.cmplz-cookiebanner .cmplz-message  {
  color: VAR(--default-color) !important;
  font-weight: 500 !important;
}
.cmplz-cookiebanner .cmplz-title {
  font-weight: 600 !important;
  text-transform: uppercase;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}
.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  text-transform: uppercase;
  font-weight: 500 !;
}
/*--------------------------------------------------------------
# About Us Template
--------------------------------------------------------------*/
.about-section {
  display: flex;
  justify-content: space-around;
  gap: 6%;
}
.about-section__content {
  width: 52%;
}
.about-section__photos {
  width: 42%;
  
  
}
.about-section__photo {
  width: 35%;
  max-width: 20rem;
  position: absolute;
  display: inline-block;
  border: 1px solid var(--line-color);
}
.about-section__photo--1 {
  top: 1rem;
  left: 10rem;
  top: 1%;
  left: 17%;
}
.about-section__photo--2 {
  top: 10rem;
  left: 35rem;
  top: 14%;
  left: 60%;
}
.about-section__photo--3 {
  top: 26rem;
  left: 1rem;
  top: 38%;
  left: 1%;
  z-index: 10;
}
.about-section__photo--4   {
  top: 33rem;
  left: 26rem;
  top: 52%;
  left: 43%;
  z-index: 10;
}
.about-section__photo_div {
  float: left;
}
.about-section__photos_wrap {
  position: relative;
  max-width: 56rem;
  
}
.about-section__photo--bg {
  width: 100%;
  height: auto;
  max-width: 56rem;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  border-top: 1px solid var(--surface-color);
}
.footer-widgets {
  display: flex;
  justify-content: space-between;
  padding: 3rem 1.75rem 1rem 1.75rem;
  font-size: 1.2rem;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;

}
.footer-widget {
  flex: 1;
  flex-direction: column;   
}
.footer-widgets a:link, .footer-widgets a:visited {
  
  transition: all .3s;
}
.footer-widgets a:hover, .footer-widgets a:active {
  
}
.footer-widgets li {
  margin-bottom: 1rem;
}
.footer-widget {
  width: 25%;
  display: flex;
  padding: 0 2rem;
  margin-bottom: 2rem;
  
}
.footer-widget h2{
  font-size: 1.6rem !important;
  font-weight: 600;
  color: var(--accent-color);
  
  text-transform: uppercase;
}
.footer-widget a {
  font-size: 1.4rem;
}
.footer-widget a:link, .footer-widget a:visited {
  color: var(--default-color);
}
.footer-widget a:hover, .footer-widget a:active {
  color: var(--default-hover-color);
}
.footer-about img {
  width: 11.8rem;
  height: auto;
}
.footer-about__text {
  line-height: 1.6rem;
  margin-top: 2.7rem;
}
.footer-about__social {
  display: flex;
  gap: 3rem;
}
.footer-about__link {
  font-size: 1.4rem !important;
  font-weight: 500;
}
.footer-about__link:link, .footer-about__link:visited  {
  color: var(--default-color);

}
.footer-about__link:hover, .footer-about__link:active {
  color: var(--default-hover-color);
}
.footer-about__right {
  margin-top: 1rem;
}
.contact-list {
  padding-bottom: 0.2rem;
}
.contact-list li i {
  float: left;
  display: block;
  width: 0.8rem;
  font-size: 18px;
  padding-top: 0.3rem;
  color: var(--accent-color);
}
.contact-list li span {
  padding-left: 3.2rem;
  display: block;
  font-size: 1.4rem;
}
.footer-contact__secure {
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background-image: url('../img/secure-pay.png'); /* your image */
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 4rem; 
  height: 3.2rem;
  margin-bottom: 0.6rem;
  
}
.footer-contact__secure::after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  width: 5rem;
  left: 19.8rem;
  border-top: 1px solid var(--default-color);
}
.footer-contact__secure-img {
  max-width: 30rem;
  width: 100%;

}
 .copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  
  padding: 3rem 0 1rem 0;
  
 }
 .copyright p {
  font-size: 1.2rem;
 }

.woocommerce-info {
  border-top-color: #1e85be;
 
}