:root {
  --theme-font-primary: "Inter", sans-serif;
  --theme-font-secondary: "Roboto Condensed", sans-serif;
  --theme-color-white-100: rgba(255, 255, 255, 0.1);
  --theme-color-white-200: rgba(255, 255, 255, 0.2);
  --theme-color-white-300: rgba(255, 255, 255, 0.3);
  --theme-color-white-400: rgba(255, 255, 255, 0.4);
  --theme-color-white-500: rgba(255, 255, 255, 0.5);
  --theme-color-white-600: rgba(255, 255, 255, 0.6);
  --theme-color-white-700: rgba(255, 255, 255, 0.7);
  --theme-color-white-800: rgba(255, 255, 255, 0.8);
  --theme-color-white-900: rgba(255, 255, 255, 0.9);
  --theme-color-white: #FFFFFF;
  --theme-color-black-100: rgba(0,0,0, 0.1);
  --theme-color-black-200: rgba(0,0,0, 0.2);
  --theme-color-black-300: rgba(0,0,0, 0.3);
  --theme-color-black-400: rgba(0,0,0, 0.4);
  --theme-color-black-500: rgba(0,0,0, 0.5);
  --theme-color-black-600: rgba(0,0,0, 0.6);
  --theme-color-black-700: rgba(0,0,0, 0.7);
  --theme-color-black-800: rgba(0,0,0, 0.8);
  --theme-color-black-900: rgba(0,0,0, 0.9);
  --theme-color-black: #000000;
  --theme-color-primary: #FF701F;
  --theme-color-primary-dark: #FF5E00;
  --theme-color-secondary: #003965;
  --theme-color-secondary-dark: #002847;
  --theme-color-dark: #44403B;
  --theme-color-light: #F5F5F4;
  --theme-color-green: #2AA63E;
  --theme-color-red: #FB2C36;
  --theme-color-error: #C81609;
  --theme-color-success: #218331;
  --theme-color-orange: #D0872E;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--theme-font-primary);
  position: relative;
  font-size: var(--theme-font-size-md);
  line-height: normal;
  font-weight: 400;
  background-color: var(--theme-color-white);
  overflow-x: hidden !important;
  color: var(--theme-color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  font-weight: 400;
  color: var(--theme-color-black);
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--theme-color-dark);
}

p:last-child {
  margin-bottom: 0;
}

b, strong {
  font-weight: 600;
}

ol,
ul {
  padding-left: 1.5rem;
}

dl,
ol,
ul {
  margin-top: 0;
}

li,
address {
  color: var(--theme-color-dark);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

li {
  margin-bottom: 0.5rem;
}

li:last-child {
  margin-bottom: 0;
}

img {
  border-radius: 0;
}

main {
  position: relative;
  background-color: var(--theme-color-white);
  z-index: 1020;
}

label {
  margin-bottom: 0.5rem;
}

input {
  border: 1px solid var(--theme-color-black-100);
}

input:focus {
  outline: none !important;
  border: 1px solid var(--theme-color-black-500);
}

iframe {
  position: relative;
  width: 100%;
  border-radius: 0;
}

button {
  box-shadow: none;
  outline: none;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

a {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

hr {
  border-top: 1px solid var(--theme-color-black-500);
}

body.open {
  overflow: hidden;
}

.table>:not(caption)>*>* {
  padding: 1rem;
}

.table > tbody > tr:hover > * {
  background-color: var(--theme-color-light) !important;
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .w-sm-100 {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-100 {
    width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-75 {
    width: 75% !important;
  }

  .w-xl-100 {
    width: 100% !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-25 {
    width: 25% !important;
  }

  .w-xxl-50 {
    width: 50% !important;
  }

  .w-xxl-75 {
    width: 75% !important;
  }

  .w-xxl-100 {
    width: 100% !important;
  }
}

.m-6 {
  margin: 6rem !important;
}

.mt-6,
.my-6 {
  margin-top: 6rem !important;
}

.me-6,
.mx-6 {
  margin-right: 6rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 6rem !important;
}

.ms-6,
.mx-6 {
  margin-left: 6rem !important;
}

.p-6 {
  padding: 6rem !important;
}

.pt-6,
.py-6 {
  padding-top: 6rem !important;
}

.pr-6,
.px-6 {
  padding-right: 6rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 6rem !important;
}

.pl-6,
.px-6 {
  padding-left: 6rem !important;
}

.m-n6 {
  margin: -6rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -6rem !important;
}

.me-n6,
.mx-n6 {
  margin-right: -6rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -6rem !important;
}

.ms-n6,
.mx-n6 {
  margin-left: -6rem !important;
}

.col-5-of-12 {
  width: 20%;
  padding-left: 0;
  padding-right: 0;
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .col-lg-5-of-12 {
    width: 20%;
    flex: 0 0 auto;
  }
}

.font-family-primary {
  font-family: var(--theme-font-primary) !important;
}

.font-family-secondary {
  font-family: var(--theme-font-secondary) !important;
}

.font-weight-100 {
  font-weight: 300 !important;
}

.font-weight-200 {
  font-weight: 300 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

.font-weight-400::before {
  font-weight: 400 !important;
}

.font-weight-600::before {
  font-weight: 600 !important;
}

.font-size-4xl {
  font-size: 56px !important;
}

.font-size-3xl {
  font-size: 40px !important;
}

.font-size-2xl {
  font-size: 32px !important;
}

.font-size-xl {
  font-size: 25px !important;
}

.font-size-lg {
  font-size: 21px !important;
}

.font-size-md {
  font-size: 16px !important;
}

.font-size-sm {
  font-size: 15px !important;
}

.font-size-xs {
  font-size: 12px !important;
}

.letter-spacing-tight {
  letter-spacing: var(--theme-letter-spacing-tight) !important;
  margin-right: calc(-1 * var(--theme-letter-spacing-tight)) !important;
}

.lh-0 {
  line-height: 0 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-1-5 {
  line-height: 1.5 !important;
}

.text-color-white {
  color: var(--theme-color-white) !important;
}

.text-color-black {
  color: var(--theme-color-black) !important;
}

.text-color-dark {
  color: var(--theme-color-dark) !important;
}

.text-color-light {
  color: var(--theme-color-light) !important;
}

.text-color-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-primary-dark {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-secondary-dark {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-red {
  color: var(--theme-color-red) !important;
}

.text-color-green {
  color: var(--theme-color-green) !important;
}

.text-color-orange {
  color: var(--theme-color-orange) !important;
}

.text-color-error {
  color: var(--theme-color-error) !important;
}

.text-color-success {
  color: var(--theme-color-success) !important;
}

a.text-color-white:hover,
a.text-color-white:focus {
  color: var(--theme-color-white) !important;
}

a.text-color-black:hover,
a.text-color-black:focus {
  color: var(--theme-color-black) !important;
}

a.text-color-light:hover,
a.text-color-light:focus {
  color: var(--theme-color-white-900) !important;
}

a.text-color-dark:hover,
a.text-color-dark:focus {
  color: var(--theme-color-dark) !important;
}

a.text-color-primary:hover,
a.text-color-primary:focus {
  color: var(--theme-color-primary) !important;
}

a.text-color-primary-dark:hover,
a.text-color-primary-dark:focus {
  color: var(--theme-color-primary-dark) !important;
}

a.text-color-secondary:hover,
a.text-color-secondary:focus {
  color: var(--theme-color-secondary) !important;
}

a.text-color-secondary-dark:hover,
a.text-color-secondary-dark:focus {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-hover-white {
  color: var(--theme-color-white) !important;
}

.text-color-hover-white:hover {
  color: var(--theme-color-light) !important;
}

.text-color-hover-black {
  color: var(--theme-color-black) !important;
}

.text-color-hover-black:hover {
  color: var(--theme-color-dark) !important;
}

.text-color-hover-black-primary {
  color: var(--theme-color-black) !important;
}

.text-color-hover-black-primary:hover {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-dark-primary {
  color: var(--theme-color-dark) !important;
}

.text-color-hover-dark-primary:hover {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-primary:hover {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-hover-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-hover-secondary:hover {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-hover-light {
  color: var(--theme-color-light) !important;
}

.text-color-hover-light:hover {
  color: var(--theme-color-white) !important;
}

.text-color-hove-dark {
  color: var(--theme-color-dark) !important;
}

.text-color-hove-dark:hover {
  color: var(--theme-color-black) !important;
}

.text-decoration-hover-underline {
  text-decoration: inherit !important;
}

.text-decoration-hover-underline:hover {
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration {
  text-decoration: underline !important;
}

.text-decoration:hover {
  text-decoration: underline !important;
}

.background-color-white {
  background-color: var(--theme-color-white) !important;
}

.background-color-black {
  background-color: var(--theme-color-black) !important;
}

.background-color-light {
  background-color: var(--theme-color-light) !important;
}

.background-color-dark {
  background-color: var(--theme-color-dark) !important;
}

.background-color-primary {
  background-color: var(--theme-color-primary) !important;
}

.background-color-primary-dark {
  background-color: var(--theme-color-primary-dark) !important;
}

.background-color-secondary {
  background-color: var(--theme-color-secondary) !important;
}

.background-color-secondary-dark {
  background-color: var(--theme-color-secondary-dark) !important;
}

.background-color-red {
  background-color: var(--theme-color-red) !important;
}

.background-color-green {
  background-color: var(--theme-color-green) !important;
}

.background-color-error {
  background-color: var(--theme-color-error) !important;
}

.background-color-success {
  background-color: var(--theme-color-success) !important;
}

.background-img-repeat {
  position: relative;
  background-position: center;
  background-repeat: repeat;
}

.background-img-scroll {
  position: relative;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img-fixed {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
}

.shadow-default {
  box-shadow: 0 1rem 2rem var(--theme-color-black-100) !important;
}

.border-thin {
  border: 1px solid var(--theme-color-black-100);
}

.button {
  position: relative;
  font-family: var(--theme-font-primary);
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: manipulation;
  background-color: transparent;
  transition: all 0.2s ease;
}

.button:disabled {
  opacity: 0.5;
  cursor: default;
}

.button-lg {
  padding: 1rem 1.8rem;
}

.button-sm {
  padding: 10px 17px;
}

.button-square {
  height: 20px;
  width: 20px;
}

.button:hover {
  outline: none;
  box-shadow: none;
}

.button:focus:not(:focus-visible) {
  outline: none;
}

.button-solid-white {
  background-color: var(--theme-color-white);
}

.button-solid-white:hover {
  background-color: var(--theme-color-light);
}

.button-solid-black {
  background-color: var(--theme-color-black);
}

.button-solid-black:hover {
  background-color: var(--theme-color-dark);
}

.button-solid-primary {
  background-color: var(--theme-color-primary);
}

.button-solid-primary:hover {
  background-color: var(--theme-color-primary-dark);
}

.button-solid-secondary {
  background-color: var(--theme-color-secondary);
}

.button-solid-secondary:hover {
  background-color: var(--theme-color-secondary-dark);
}

.button-solid-red {
  background-color: var(--theme-color-red);
}

.button-solid-red:hover {
  background-color: var(--theme-color-red);
}

.hr-horizontal-black {
  height: 1px;
  width: 100%;
  background-color: var(--theme-color-black-200);
  display: block;
}

.hr-horizontal-white {
  height: 1px;
  width: 100%;
  background-color: var(--theme-color-white-200);
  display: block;
}

.carousel {
  z-index: 1000;
}

.logo {
  display: block;
  position: relative;
  background-image: url('../images/logo.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 240px;
  height: 44px;
}

.logo-sq {
  display: block;
  position: relative;
  background-image: url('../images/logo-sq-01.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 175px;
  height: 134px;
}


/* MAIN NAVIGATION */
#mainNavigation.navbar {
  position: relative;
  width: 100%;
  padding: 0;
  min-height: 86px;
  border-top: 1px solid var(--theme-color-black-100);
  border-bottom: 1px solid var(--theme-color-black-100);
  z-index: 1030;
}

#mainNavigation.navbar .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#mainNavigation.navbar .nav-item .nav-link {
  position: relative;
  font-family: var(--theme-font-primary);
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color-black);
  line-height: normal;
  padding: 2rem 0;
}

#mainNavigation.navbar .nav-item .nav-link:hover,
#mainNavigation.navbar .nav-item:hover .nav-link,
#mainNavigation.navbar .nav-item .nav-link.active {
  color: var(--theme-color-primary);
}

#mainNavigation.navbar .dropdown-nav-item .dropdown-nav {
  position: absolute;
  top: 100%;
  left: 0;
  float: left;
  min-width: 10rem;
  padding: 2rem 0;
  margin: 0;
  text-align: left;
  list-style: none;
  background-color: var(--theme-color-white);
  background-clip: padding-box;
  border: 1px solid var(--theme-color-black-200);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7%);
  transition: transform none;
  z-index: 1000;
}

#mainNavigation.navbar .dropdown-nav-item:hover .dropdown-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}

#mainNavigation.navbar .dropdown-nav .dropdown-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#mainNavigation.navbar .dropdown-nav .dropdown-item .dropdown-link {
  display: block;
  font-family: var(--theme-font-primary);
  font-size: 14px;
  color: var(--theme-color-dark);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
  padding: 0.7rem 2rem;
}

#mainNavigation.navbar .dropdown-nav .dropdown-item .dropdown-link:hover {
  background-color: var(--theme-color-light);
}

#mainNavigation.navbar .button-search {
  min-width: 35px;
  min-height: 35px;
  width: 35px;
  height: 35px;
  background-color: var(--theme-color-primary);
}


/* BG OVERLAY */
#bgOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: var(--theme-color-black-700);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1035;
}

#bgOverlay.open {
  opacity: 1;
  visibility: visible;
}


/* MOBILE NAVIGATION */
#mobileNavigationWrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 330px;
  transform: translateX(-100%);
  transition: all 0.2s ease;
  z-index: 1040;
}

#mobileNavigationWrapper.open {
  transform: translateX(0);
}

#mobileNavigation {
  position: relative;
  overflow: auto;
}

#mobileNavigation .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#mobileNavigation .nav-item .nav-link {
  position: relative;
  font-family: var(--theme-font-primary);
  font-size: 15px;
  font-weight: 400;
  color: var(--theme-color-black);
  line-height: normal;
  padding: 0.75rem 0;
}

#mobileNavigation .nav-item .nav-link:hover,
#mobileNavigation .nav-item .nav-link.active {
  color: var(--theme-color-primary);
}

#mobileNavigation .dropdown-nav-item .dropdown-nav {
  position: relative;
  padding: 0;
}

#mobileNavigation .dropdown-nav .dropdown-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#mobileNavigation .dropdown-nav .dropdown-item .dropdown-link {
  display: block;
  font-family: var(--theme-font-primary);
  font-size: 14px;
  color: var(--theme-color-dark);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
  padding: 0.75rem 1rem;
}

#mobileNavigation .dropdown-nav .dropdown-item .dropdown-link:hover {
  color: var(--theme-color-primary);
}

#mobileNavigation .button-search {
  min-width: 35px;
  min-height: 35px;
  width: 35px;
  height: 35px;
  background-color: var(--theme-color-primary);
}


/* SEARCH DRAWER */
#searchDrawer.search-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 1050;
}

#searchDrawer.search-wrapper.open {
  opacity: 1;
  visibility: visible;
}


/* MAIN CAROUSEL */
#mainSlider {
  position: relative;
}

#mainSlider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}

#mainSlider .owl-dots .owl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6px;
  width: 6px;
  min-height: 6px;
  min-width: 6px;
  background-color: var(--theme-color-black-200);
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: all 0.27s ease;
}

#mainSlider .owl-dots .owl-dot span {
  display: block;
  height: 16px;
  width: 16px;
  min-height: 16px;
  min-width: 16px;
  border: 1px solid transparent;
  border-radius: 50%;
}

#mainSlider .owl-dots .owl-dot.active span {
  border: 1px solid var(--theme-color-black);
}

#mainSlider .owl-dots .owl-dot:hover,
#mainSlider .owl-dots .owl-dot.active {
  background-color: var(--theme-color-black);
}


/* PRODUCT SLIDER */
.products-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: calc(100% + 40px);
  margin-left: -20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 100;
}

.products-slider .owl-nav .owl-prev {
  left: 0;
}

.products-slider .owl-nav .owl-next {
  right: 0;
}

.products-slider .owl-nav .owl-prev,
.products-slider .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-white);
  border: 1px solid var(--theme-color-black-200);
  color: var(--theme-color-black);
  height: 60px;
  width: 40px;
  min-height: 60px;
  min-width: 40px;
  pointer-events: all;
  transition: all 0.2s ease;
}

.products-slider .owl-nav .owl-prev:hover,
.products-slider .owl-nav .owl-next:hover {
  background-color: var(--theme-color-black);
  color: var(--theme-color-white);
}

.products-slider .owl-nav .disabled {
  opacity: 0;
  visibility: hidden;
}


/* GRID PRODUCT ITEM */
.grid-product-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--theme-color-white);
  border: 1px solid var(--theme-color-black-200);
  transition: all 0.2s ease;
}

.grid-product-item-wrapper:hover {
  background-color: var(--theme-color-light);
  border: 1px solid var(--theme-color-primary);
}

.grid-product-item-wrapper .grid-product-out-of-stock {
  position: relative;
  font-family: var(--theme-font-secondary);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  min-height: 24px;
  height: 24px;
  padding: 5px 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color-white);
  background-color: var(--theme-color-dark);
}

.grid-product-item-wrapper .grid-product-badge {
  position: relative;
  font-family: var(--theme-font-secondary);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  min-height: 24px;
  height: 24px;
  padding: 5px 5px 5px 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.grid-product-item-wrapper .grid-product-badge::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-left: 2px solid transparent;
  border-right: 10px solid transparent;
}

.grid-product-item-wrapper .grid-product-badge.new::after {
  border-top: 24px solid var(--theme-color-green);
}

.grid-product-item-wrapper .grid-product-badge.new {
  background-color: var(--theme-color-green);
}

.grid-product-item-wrapper .grid-product-badge.used::after {
  border-top: 24px solid var(--theme-color-orange);
}

.grid-product-item-wrapper .grid-product-badge.used {
  background-color: var(--theme-color-orange);
}

.grid-product-item-wrapper .grid-product-badge-link {
  color: var(--theme-color-white);
}

.grid-product-item-wrapper .grid-product-badge-link:hover {
  color: var(--theme-color-black);
}

.grid-product-item-wrapper .grid-product-image-wrapper {
  width: 150px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-product-item-wrapper .grid-product-image-wrapper .carousel-product-link {
  width: 100%;
  height: 100%;
  display: block;
}

.grid-product-item-wrapper .grid-product-image-wrapper .carousel-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-product-item-wrapper .grid-product-image-wrapper .grid-product-image {
  border: 1px solid var(--theme-color-black-100);
}


/* CATEGORIES ITEM */
.categories-item-wrapper {
  position: relative;
}

.categories-item-wrapper .categories-item-url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.categories-item-wrapper .categories-item-img {
  transition: all 0.2s ease;
}

.categories-item-wrapper:hover .categories-item-img {
  transform: scale(1.07);
}


/* CATEGORIES LIST */
.categories-list-wrapper {
  position: relative;
  border: 1px solid var(--theme-color-black-200);
}

.categories-list-wrapper .categories-list-item {
  margin-bottom: 1rem;
}

.categories-list-wrapper .categories-list-item:last-child {
  margin-bottom: 0;
}



/* PRODUCT SLIDER */
#singleproductSlider .slider-control-prev,
#singleproductSlider .slider-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  font-weight: 400;
  background-color: var(--theme-color-white);
  border: 1px solid var(--theme-color-black-200);
  color: var(--theme-color-black);
  margin: 0 4px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  line-height: normal;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1020;
}

#singleproductSlider .slider-control-prev {
  left: 0.75rem;
}

#singleproductSlider .slider-control-next {
  right: 0.75rem;
}

#singleproductSlider .slider-control-next:hover,
#singleproductSlider .slider-control-prev:hover {
  background-color: var(--theme-color-black);
  color: var(--theme-color-white);
}

#singleproductSlider .carousel-item img {
  border: 1px solid var(--theme-color-black-100);
}

#singleproductSlider [data-product-img] {
  cursor: default !important;
}

#singleproductSlider .slider-control-fullscreen {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-weight: 400;
  background-color: var(--theme-color-white);
  border: 1px solid var(--theme-color-black-200);
  color: var(--theme-color-black);
  margin: 0 4px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  opacity: 0;
  visibility: hidden;
  cursor: pointer !important;
  z-index: 30;
}

#singleproductSlider:hover .slider-control-fullscreen {
  opacity: 1;
  visibility: visible;
}

#singleproductSlider .slider-control-fullscreen:hover {
  background-color: var(--theme-color-black);
  color: var(--theme-color-white);
}


/* NAV TABS */
#navTab {
  padding: 0;
  margin: 0;
}

#navTab .nav-item {
  padding: 0;
  margin: 0;
}

#navTab .nav-item .nav-link {
  font-family: var(--theme-font-primary);
  padding: 10px 5px;
  margin: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme-color-black);
  border-bottom: 1px solid transparent;
}

#navTab .nav-item .nav-link.active {
  color: var(--theme-color-primary);
  border-bottom: 1px solid var(--theme-color-primary);
}


#navTabs {
  position: relative;
}

#navTabs.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  color: var(--theme-color-primary);
  background-color: var(--theme-color-black-200);
  z-index: -1;
}

#navTabs .nav-item {
  margin: 0;
}

#navTabs .nav-item .nav-link {
  position: relative;
  padding: 1.5rem 0;
  border: none;
  color: var(--theme-color-black);
}

#navTabs .nav-item .nav-link:hover,
#navTabs .nav-item .nav-link.active {
  color: var(--theme-color-primary);
}

#navTabs .nav-item .nav-link::after {
  background-color: var(--theme-color-black-100);
}

#navTabs .nav-item .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  color: var(--theme-color-primary);
  background-color: var(--theme-color-primary);
}


/* GLIGHBOX */
#glightboxBody.glightbox-clean .gloader {
  border: 0.13rem solid var(--theme-color-white);
  border-right-color: transparent;
}

#glightboxBody.glightbox-clean .gclose,
#glightboxBody.glightbox-clean .gnext,
#glightboxBody.glightbox-clean .gprev {
  background-color: var(--theme-color-black-200);
  border: 1px solid var(--theme-color-white-200);
  border-radius: 0;
  opacity: 1;
  transition: all 0.2s ease;
}

#glightboxBody.glightbox-clean .gclose:hover,
#glightboxBody.glightbox-clean .gnext:hover,
#glightboxBody.glightbox-clean .gprev:hover {
  background-color: var(--theme-color-black);
}

#glightboxBody.glightbox-clean .gclose.disabled,
#glightboxBody.glightbox-clean .gnext.disabled,
#glightboxBody.glightbox-clean .gprev.disabled {
  cursor: default;
  opacity: 0.5;
  visibility: visible;
  background-color: transparent;
}

#glightboxBody.glightbox-clean .goverlay {
  background-color: var(--theme-color-black-900);
}

#glightboxBody.glightbox-clean .gslide-media {
  box-shadow: none;
}

#glightboxBody.glightbox-clean .gslide-media.gslide-image img {
  border-radius: 0;
  border: 1px solid var(--theme-color-white-200);
}


/* FAQ */
#accordionFaq.accordion-faq .accordion-faq-item {
  overflow: hidden;
  border: 1px solid var(--theme-color-black-200);
  margin-bottom: 1.25rem;
}

#accordionFaq.accordion-faq .accordion-faq-item:last-child {
  margin-bottom: 0;
}

#accordionFaq.accordion-faq .accordion-faq-item .accordion-faq-button {
  text-align: left;
  color: var(--theme-color-black);
  border: none;
  outline: none;
  width: 100%;
}

#accordionFaq.accordion-faq .accordion-faq-item .accordion-faq-button:not(.collapsed) {
  color: var(--theme-color-secondary);
}

#accordionFaq.accordion-faq .accordion-faq-item .accordion-faq-button::after {
  content: '\F64D';
  font-family: bootstrap-icons !important;
  font-weight: 600;
  line-height: 1;
  font-size: 19px;
  color: var(--theme-color-black);
  display: inline-block;
  padding-left: 1rem;
  margin-left: auto;
  transition: all 0.2s ease;
}

#accordionFaq.accordion-faq .accordion-faq-item .accordion-faq-button:not(.collapsed)::after {
  content: '\F63B';
  color: var(--theme-color-secondary);
  transition: all 0.2s ease;
}


/* FORMS */
.form-item {
  display: block;
  width: 100%;
  padding: 1rem;
  height: inherit;
  line-height: normal;
  font-size: 14px;
  color: var(--theme-color-black);
  font-weight: 400;
  text-transform: inherit;
  background-color: var(--theme-color-light);
  background-clip: padding-box;
  border: 1px solid var(--theme-color-black-200);
  border-radius: 0 !important;
  transition: all 0.2s ease;
}

.form-item:focus {
  border: 1px solid var(--theme-color-primary);
  outline: 0;
  box-shadow: none !important;
}

.form-item::placeholder {
  font-size: 14px;
  color: var(--theme-color-black-500);
  font-weight: 400;
}

.form-item:-webkit-autofill,
.form-item:-webkit-autofill:hover,
.form-item:-webkit-autofill:focus,
.form-item:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--theme-color-light) inset !important;
  -webkit-text-fill-color: var(--theme-color-black) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-item-select {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  height: inherit;
  line-height: normal;
  font-size: 14px;
  color: var(--theme-color-black);
  font-weight: 400;
  text-transform: inherit;
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid var(--theme-color-black-200) !important;
  border-radius: 0 !important;
  outline: none !important;
  transition: all 0.2s ease;
}

.form-item-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding-right: 1.5rem;
  font-size: 13px;
  color: var(--theme-color-dark);
}

.form-item-select::after {
  content: '\F229';
  font-family: bootstrap-icons !important;
  font-weight: 600;
  line-height: 1;
  font-size: 11px;
  color: var(--theme-color-dark);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: all 0.2s ease;
  pointer-events: none;
}

.table-form-item {
  display: block;
  width: 100%;
  padding: 0.75rem;
  height: inherit;
  line-height: normal;
  font-size: 14px;
  color: var(--theme-color-black);
  font-weight: 400;
  text-transform: inherit;
  /*background-color: var(--theme-color-light);*/
  background-clip: padding-box;
  border: 1px solid var(--theme-color-black-200);
  border-radius: 0 !important;
  transition: all 0.2s ease;
}

.table-form-item:focus {
  border: 1px solid var(--theme-color-black-600);
  outline: 0;
  box-shadow: none !important;
}

.table-form-item::placeholder {
  font-size: 14px;
  color: var(--theme-color-black-500);
  font-weight: 400;
}


/* CART */
#cartTable .table {
  border: 1px solid var(--theme-color-black-200) !important;
}

#cartTable .table tr:hover {
  background-color: var(--theme-color-light);
}

.order-summary-wrapper {
  position: relative;
  border: 1px solid var(--theme-color-black-200);
}


/* PAGINATION */
.pagination-item .page-numbers {
  font-size: 13px;
  font-weight: 600;
  background-color: var(--theme-color-white);
  border: 1px solid var(--theme-color-black-200);
  color: var(--theme-color-black);
  margin: 0 4px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  line-height: normal;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pagination-item .page-numbers:hover {
  color: var(--theme-color-white);
  background-color: var(--theme-color-black);
}

.page-numbers.current {
  color: var(--theme-color-white);
  background-color: var(--theme-color-black);
}


/* TOAST */
#toastWrapper {
  position: fixed;
  bottom: 3.5rem;
  right: 0;
  padding: 0 0.75rem;
  z-index: 10000;
}

#toastWrapper .toast {
  box-shadow: none !important;
  border-radius: 0 !important;
  min-height: 2.5rem;
}


/* CART ICON */
.cart-icon-wrapper {
  position: fixed;
  bottom: 0.75rem;
  right: 0.75rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  background-color: var(--theme-color-primary);
  z-index: 10001;
}

.cart-notification {
  position: absolute;
  top: -13px;
  left: -13px;
  min-width: 26px;
  min-height: 26px;
  border-radius: 50%;
  background-color: var(--theme-color-black);
}


/* MEDIA QUERIES */
@media (max-width: 991.98px) {
  .font-size-4xl {
    font-size: 55px !important;
  }

  .font-size-3xl {
    font-size: 35px !important;
  }

  .font-size-2xl {
    font-size: 28px !important;
  }

  .font-size-xl {
    font-size: 23px !important;
  }

}

@media (max-width: 575.98px) {
  .font-size-4xl {
    font-size: 40px !important;
  }

  .font-size-3xl {
    font-size: 32px !important;
  }

  .font-size-2xl {
    font-size: 24px !important;
  }

  .font-size-xl {
    font-size: 20px !important;
  }
}
