@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap";
:root {
  --app-height: 100vh;
  --gd-white: #fff;
  --gd-black: #000;
  --gd-black-light: #1e1e1e;
  --dark-grey-for-text: #7e7e7e;
  --gd-gray: #c3c3c3;
  --gd-gray-light: #f8f8f8;
  --grey-for-lines: #d9d9d9;
  --grey-search: #ececec;
  --gd-white-dark: #fafafa;
  --gd-yellow: #f1d602;
  --gd-red: #eb001d;
  --gd-green: #219653;
  --gd-main-font: "Figtree", sans-serif;
  --gd-main-font-weight: 400;
  --gd-main-font-size: 16px;
  --gd-transition: .3s;
  --gd-line-height: 1.3;
}

* {
  box-sizing: border-box;
}

html {
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

html.activeClass {
  touch-action: none;
  overflow: hidden;
}

html body {
  overscroll-behavior: none;
  margin: 0;
  font-family: Roboto, sans-serif;
  display: block;
  position: relative;
}

html img, html iframe {
  max-width: 100%;
}

a {
  color: var(--gd-black);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.loader {
  animation: 2s linear infinite spin;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.max-width-sm {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-sm {
    max-width: 700px;
    margin: 0 auto;
  }
}

.max-width-md {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-md {
    max-width: 1550px;
    margin: 0 auto;
  }
}

.max-width-lg {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-lg {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.max-width-xl {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-xl {
    max-width: 1800px;
    margin: 0 auto;
  }
}

.max-width-full {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .max-width-full {
    max-width: 100%;
    margin: 0 auto;
  }
}

.flex-center {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.flex-start {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.flex-between {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

.flex-end {
  flex-wrap: wrap;
  justify-content: flex-end;
  display: flex;
}

.devider {
  background-color: var(--grey-for-lines);
  width: 100%;
  height: 1px;
  display: block;
}

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

.text-white {
  color: var(--gd-white);
}

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

.text-gray {
  color: var(--dark-grey-for-text) !important;
}

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

.text-center {
  text-align: center !important;
}

.width-100 {
  width: 100%;
}

.position-relative {
  position: relative;
}

.tablet-hide {
  display: none !important;
}

.full-width-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.d-none {
  display: none;
}

.mobile-hide {
  display: none !important;
}

@media (width >= 1200px) {
  .mobile-hide {
    display: block !important;
  }

  .desktop-hide {
    display: none !important;
  }
}

.section-padding {
  padding: 50px 0;
}

@media (width >= 1200px) {
  .section-padding {
    padding: 70px 0;
  }
}

.n-luxe .section-margin, .n-luxe .section-text h2 {
  margin: 0 0 30px;
}

@media (width >= 1200px) {
  .n-luxe .section-margin, .n-luxe .section-text h2 {
    margin: 0 0 50px;
  }
}

.box-overlay {
  background-color: var(--gd-black);
  opacity: .3;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.jsDropdownWrap {
  position: relative;
}

.jsDropdownTrigger {
  cursor: pointer;
}

.dropdown {
  opacity: 0;
  visibility: hidden;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 190px;
  height: auto;
  margin: 0;
  padding: 8px;
  list-style: none;
  transition-property: bottom, opacity, visibility;
  position: absolute;
  bottom: -60px;
  right: 0;
  transform: translateY(100%);
  transition: all .2s ease-in-out !important;
}

.dropdown.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 9;
  bottom: -3px;
}

.dropdown__menu {
  background-color: var(--gd-white);
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 4px #00000040;
}

.dropdown__item {
  height: 40px;
}

.dropdown__item-link {
  color: var(--gd-black);
  min-width: max-content;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.dropdown__item-link:hover {
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
  color: var(--gd-yellow);
  text-decoration: none;
}

@media (width >= 1200px) {
  .popups {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    display: flex;
  }
}

@media (width >= 1200px) and (width >= 1200px) {
  .popups {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.popup {
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  z-index: -1;
  transition-property: opacity, z-index, visibility;
  display: none;
  position: fixed;
}

.popup.init {
  display: block;
}

.popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.popup__close {
  cursor: pointer;
}

.popup__close svg {
  width: 20px;
  height: 20px;
}

.popup__header {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 65px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .popup__header {
    padding: 0 30px;
  }
}

.popup__header .popup__title {
  font-size: 20px;
  font-weight: 500;
}

.popup__header .popup__title svg {
  width: 15px;
  height: 15px;
}

@media (width >= 768px) {
  .popup__header .popup__title {
    font-size: 22px;
  }
}

.overlay {
  background-color: var(--gd-black);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out opacity;
  visibility: hidden;
  z-index: -1;
  width: 100vw;
  height: 150vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.overlay.activeClass {
  opacity: 0;
  visibility: visible;
  z-index: 5;
}

.overlay.activeFinder {
  opacity: .8;
  visibility: visible;
  z-index: 5;
}

.main-btn {
  background-color: var(--gd-white);
  color: var(--gd-black);
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--gd-transition) background-color ease-in-out;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 21px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.main-btn svg {
  fill: var(--gd-black);
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

@media (width >= 1200px) {
  .main-btn {
    font-size: 18px;
  }

  .main-btn svg {
    fill: var(--gd-black);
    width: 15px;
    height: 15px;
  }
}

.main-btn:hover {
  background-color: var(--gd-white-dark);
}

.main-btn--view-cart {
  color: var(--gd-black);
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
}

.main-btn--popout-cart-checkout {
  background-color: var(--gd-black);
  color: var(--gd-white);
  text-transform: capitalize;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.main-btn--popout-cart-checkout:hover {
  background-color: var(--gd-yellow);
  color: var(--gd-black);
}

.main-btn--hero-cta {
  background-color: var(--gd-black);
  color: var(--gd-white);
  font-size: 16px;
  font-weight: 700px;
  text-transform: capitalize;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  display: flex;
}

.main-btn--hero-cta:hover {
  background-color: var(--gd-yellow);
  color: var(--gd-black);
}

@media (width >= 1200px) {
  .main-btn--hero-cta {
    width: 160px;
    height: 45px;
    font-size: 18px;
  }
}

.main-btn--home-showcase {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  text-transform: capitalize !important;
}

.main-btn--home-showcase:hover {
  background-color: var(--gd-yellow);
  color: var(--gd-black);
}

@media (width >= 1200px) {
  .main-btn--home-showcase {
    width: 160px;
    height: 45px;
  }
}

.main-btn--clear-filters {
  color: var(--gd-yellow);
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  padding: 25px 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

@media (width >= 1200px) {
  .main-btn--clear-filters {
    padding: 25px 0;
  }
}

.main-btn--dark-gray {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-lines);
  color: var(--dark-grey-for-text);
  text-transform: capitalize;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.main-btn--dark-gray:hover {
  background-color: var(--grey-for-lines);
  color: var(--gd-white);
}

.main-btn--black {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
  text-transform: capitalize;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  margin-top: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.main-btn--black:hover {
  color: var(--gd-black);
}

.main-btn--cart {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.main-btn--cart:hover {
  background-color: var(--gd-yellow);
  color: var(--gd-black);
}

@media (width >= 1200px) {
  .main-btn--cart {
    height: 50px;
  }
}

.main-btn--wishlist {
  color: var(--gd-black);
  text-transform: capitalize;
  background-color: #0000;
  border: none;
  width: 100%;
  height: auto;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}

.main-btn--wishlist:hover {
  background-color: #0000;
}

@media (width >= 1200px) {
  .main-btn--wishlist {
    font-size: 18px;
  }
}

.main-btn--shipping-btn {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  text-transform: capitalize;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.main-btn--shipping-btn:hover {
  background-color: var(--gd-black);
  text-decoration: none;
}

.main-btn--reviews {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  text-transform: capitalize;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.main-btn--reviews:hover {
  background-color: var(--gd-black);
  color: var(--gd-white);
  text-decoration: none;
}

.main-btn--checkout {
  background-color: var(--gd-black);
  color: var(--gd-white);
  text-transform: capitalize;
  border: none;
  width: 100%;
  padding: 0;
  font-weight: 500;
  height: 50px !important;
}

.main-btn--checkout:hover {
  background-color: var(--gd-yellow);
}

.btn-success {
  background-color: var(--gd-black);
  color: var(--gd-white);
  border: none;
  width: 100%;
  padding: 0;
}

.btn-success:hover {
  background-color: var(--gd-yellow);
}

@media (width >= 1200px) {
  .btn-success {
    width: 260px !important;
  }
}

.page-body .splide__pagination {
  bottom: 20px;
}

.page-body .splide__pagination__page {
  background-color: var(--grey-for-lines);
  border-radius: 2px;
  width: 80px;
  height: 2px;
  transform: scale(1);
}

@media (width >= 1200px) {
  .page-body .splide__pagination__page {
    width: 120px;
  }
}

.page-body .splide__pagination__page.is-active {
  background-color: var(--gd-yellow);
  border-radius: 2px;
  width: 80px;
  height: 2px;
  transform: scale(1);
}

@media (width >= 1200px) {
  .page-body .splide__pagination__page.is-active {
    width: 120px;
  }
}

.page-body .splide__arrow {
  opacity: 1;
  background-color: var(--gd-black);
  border-radius: 0;
  width: 30px;
  height: 30px;
  z-index: 1 !important;
}

@media (width >= 1200px) {
  .page-body .splide__arrow {
    width: 45px;
    height: 45px;
  }
}

.page-body .splide__arrow svg {
  fill: var(--gd-white);
}

.page-body .splide__arrow--prev {
  left: 15px;
}

.page-body .splide__arrow--next {
  right: 15px;
}

.top .splide__arrow {
  width: 12px;
  height: 12px;
}

.top .splide__arrow--prev {
  left: 10%;
}

@media (width >= 1200px) {
  .top .splide__arrow--prev {
    left: 0;
  }
}

.top .splide__arrow--next {
  right: 10%;
}

@media (width >= 1200px) {
  .top .splide__arrow--next {
    right: 0;
  }
}

.categories .splide__arrow {
  top: 40%;
  transform: translateY(-50%);
}

.categories .splide__arrow--prev {
  display: none;
}

@media (width >= 480px) {
  .categories .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (width >= 1200px) {
  .categories .splide__arrow {
    top: calc(100% - 380px);
    transform: translate(0);
  }
}

.categories-list .splide__arrow {
  top: 35%;
  transform: translate(0);
}

@media (width >= 1200px) {
  .categories-list .splide__arrow {
    background-color: var(--gd-white);
    top: 25%;
  }

  .categories-list .splide__arrow svg {
    fill: var(--gd-black);
  }
}

.categories-list .splide__arrow--prev {
  display: none;
}

.categories-list .splide__arrow--next {
  right: 0;
}

@media (width >= 1200px) {
  .categories-list .splide__arrow--next {
    right: -70px;
  }
}

.prod-imgs .splide__arrow:disabled {
  opacity: 0 !important;
  cursor: none !important;
  pointer-events: none !important;
}

.read-more {
  transition: max-height var(--gd-transition) ease-in-out;
  max-height: 200px;
  overflow: hidden;
}

.read-more__btn {
  color: var(--gd-yellow);
  cursor: pointer;
  margin-top: 25px;
  display: block;
}

.breadcrumbs {
  white-space: nowrap;
  width: 100%;
  padding: 15px 0;
  overflow-y: auto;
}

.breadcrumbs__nav {
  width: 100%;
  padding: 0 15px;
  overflow-x: auto;
}

@media (width >= 1200px) {
  .breadcrumbs__nav {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-product .breadcrumbs__nav {
  width: 100%;
  padding: 0 15px;
  overflow-x: auto;
}

@media (width >= 1200px) {
  #n-product .breadcrumbs__nav {
    max-width: 1550px;
    margin: 0 auto;
  }
}

.breadcrumbs__list {
  align-items: center;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  display: flex;
}

.breadcrumbs__link {
  color: var(--gd-black);
  text-decoration: none;
}

.breadcrumbs__link:hover {
  text-transform: none;
}

.breadcrumbs__list-item {
  letter-spacing: 0;
  margin-right: 6px;
  font-size: 14px;
}

.breadcrumbs__list-item:last-child {
  display: none;
}

.breadcrumbs__list-item:nth-last-child(2) .breadcrumbs__link {
  color: var(--gd-black);
  pointer-events: none;
}

.breadcrumbs__list-item svg {
  fill: var(--gd-black);
  width: 10px;
  height: 10px;
}

.breadcrumbs__link--home svg {
  width: 20px;
  height: 20px;
}

.home-title {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 15px;
  font-size: 25px;
  font-weight: 500;
  display: flex;
}

@media (width >= 1200px) {
  .home-title {
    max-width: 1690px;
    margin: 0 auto;
    padding: 100px 15px;
    font-size: 32px;
  }
}

.section-text {
  text-align: center;
}

.section-text h1 {
  font-size: 25px;
  font-weight: 600;
}

@media (width >= 1200px) {
  .section-text h1 {
    font-size: 32px;
  }
}

#n-content h1, #n-customer_account h1, #n-customer h1 {
  padding-top: 50px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-content h1, #n-customer_account h1, #n-customer h1 {
    font-size: 32px;
  }
}

#n-content .btn, #n-customer_account .btn, #n-customer .btn {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  outline: none;
}

#n-content .btn:hover, #n-content .btn:focus-within, #n-customer_account .btn:hover, #n-customer_account .btn:focus-within, #n-customer .btn:hover, #n-customer .btn:focus-within {
  background-color: var(--gd-yellow);
  border: 1px solid var(--gd-yellow);
}

#n-content .main__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  #n-content .main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-content .main__wrap .breadcrumbs {
  padding: 15px 0;
}

#n-content .main__wrap .breadcrumbs__nav {
  padding: 0;
}

#n-customer_account .col-12 {
  margin: 0;
  padding: 0 15px;
}

#n-customer_account .breadcrumb {
  display: none;
}

#n-customer_account .main__wrap {
  width: 100%;
  padding: 0;
}

@media (width >= 1200px) {
  #n-customer_account .main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

#n-customer .main__wrap {
  width: 100%;
  padding: 0;
}

@media (width >= 1200px) {
  #n-customer .main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.npopup-body .modal-header {
  font-weight: 500;
}

.npopup-body .footer {
  background-color: var(--gd-white);
  margin: 0;
  padding: 0;
}

.npopup-body .image {
  width: 15% !important;
}

.npopup-body .btn {
  text-transform: capitalize;
  border: 1px solid var(--gd-black);
  color: var(--gd-black);
  font-weight: 500;
  font-size: 14px !important;
}

.npopup-body .right .btn {
  color: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  background-color: var(--gd-black) !important;
  border: 1px solid var(--gd-black) !important;
  width: max-content !important;
  padding: .375rem .75rem !important;
}

.npopup-body .right .btn:before {
  content: "";
  margin-top: -3px;
  margin-right: 6px;
  font-family: "Font Awesome 5 Pro";
}

.npopup-body .right .btn:hover {
  background-color: var(--gd-yellow) !important;
  border: 1px solid var(--gd-yellow) !important;
}

.page-body--brand .main__wrap, .page-body--knife-finder .main__wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

.page-body--brand .list-group-item, .page-body--knife-finder .list-group-item {
  border: none;
  padding: 0;
}

.page-body--brand .breadcrumbs__nav, .page-body--knife-finder .breadcrumbs__nav {
  padding: 0 15px !important;
}

.product-box {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  padding: 25px;
  position: relative;
}

.product-box:hover {
  border: 1px solid var(--gd-yellow);
}

.product-box__info {
  margin-top: 25px;
}

.products-box__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
}

.products-box__img img {
  mix-blend-mode: multiply;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-box__brand {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .product-box__brand {
    font-size: 13px;
  }
}

.product-box__title {
  border-bottom: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  text-align: center;
  width: 100%;
  height: 80px;
  padding: 20px 0 60px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

@media (width >= 1200px) {
  .product-box__title {
    font-size: 16px;
  }
}

.product-box__title:hover {
  color: var(--gd-black);
}

.product-box__price {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 25px 0 0;
  display: flex;
}

.product-box__price .price {
  font-size: 18px;
  font-weight: 600;
}

@media (width >= 1200px) {
  .product-box__price .price {
    font-size: 20px;
  }
}

.product-box__price .price--rrp {
  color: var(--dark-grey-for-text);
  font-size: 11px;
  font-weight: 300;
  text-decoration: line-through;
}

@media (width >= 1200px) {
  .product-box__price .price--rrp {
    font-size: 14px;
  }
}

.product-box__price .price--yellow {
  color: var(--gd-yellow);
}

.product-box__price .price--text {
  color: var(--dark-grey-for-text);
  font-size: 11px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .product-box__price .price--text {
    font-size: 14px;
  }
}

.product-box__badges {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  display: flex;
  position: absolute;
  top: 25px;
  right: 25px;
}

.product-box__badges .badge {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  text-transform: capitalize;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 17px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
}

@media (width >= 1200px) {
  .product-box__badges .badge {
    width: 55px;
    height: 20px;
    font-size: 12px;
  }
}

.page-category .product-box__badges {
  top: 15px;
  right: 15px;
}

.top {
  background-color: var(--gd-black);
}

.top__wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
}

.top__single {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  display: flex;
}

@media (width >= 1200px) {
  .top__single {
    height: 45px;
  }
}

.top__usps-icon {
  width: auto;
  max-width: 20px;
  height: auto;
  max-height: 100%;
  margin-right: 10px;
}

.top__text {
  color: var(--gd-white);
  font-size: 11px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .top__text {
    font-size: 12px;
  }
}

.gd-header {
  z-index: 3;
  position: relative;
}

.header-main {
  background-color: var(--gd-white);
  height: 50px;
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 1200px) {
  .header-main {
    height: 90px;
  }
}

.header-main__desk-nav {
  flex-grow: 1;
}

.header-main__count-item {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  border-radius: 50%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
}

.header-main__wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .header-main__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.header-main__left {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-main__logo {
  width: auto;
  max-width: 80px;
  height: auto;
  max-height: 100%;
  margin-left: 15px;
}

@media (width >= 1200px) {
  .header-main__logo {
    max-width: 160px;
    margin-left: 0;
  }
}

.header-main__icon {
  cursor: pointer;
  position: relative;
}

.header-main__icon svg {
  width: 25px;
  height: 25px;
}

.header-main__icon--menu svg {
  width: 20px;
  height: 20px;
}

.header-main__icon--search {
  margin-right: 22px;
}

.header-main__icon--user {
  position: relative;
}

.header-main__right {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 150px;
  display: flex;
  position: relative;
}

@media (width >= 1200px) {
  .header-main__right {
    width: 160px;
  }
}

.menu__wrap, .filters__wrap {
  height: 95vh;
  overflow-y: auto;
}

.filters {
  background-color: var(--gd-white);
  box-shadow: 0px 4px 39px rgba(var(--gd-black), .1);
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out, top .4s ease-in-out;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.filters.init {
  display: block;
}

.filters.activeClass {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
  top: 0;
}

.filters--submenu {
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  min-height: auto;
  transition: transform .3s ease-in-out;
  display: block;
  top: 0;
  left: 0;
  height: 100% !important;
}

.filters--submenu.activeClass {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease-in-out;
}

.filters-header {
  border-bottom: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  cursor: pointer;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  height: 50px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

@media (width >= 768px) {
  .filters-header {
    font-size: 20px;
  }
}

.filters-header svg {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
}

.filters__title {
  border-bottom: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

@media (width >= 768px) {
  .filters__title {
    font-size: 20px;
  }
}

.filters__title svg {
  width: 15px;
  height: 15px;
}

.filters__title:hover {
  color: var(--gd-yellow);
  text-decoration: underline;
}

.filters__title:hover svg {
  fill: var(--gd-yellow);
}

.filters__title--lvl2 {
  border-bottom: none;
  height: 45px;
  font-size: 15px;
  font-weight: 300;
}

@media (width >= 768px) {
  .filters__title--lvl2 {
    font-size: 17px;
  }
}

.filters__title--lvl3 {
  border-bottom: none;
  height: 45px;
  font-size: 13px;
  font-weight: 300;
}

@media (width >= 768px) {
  .filters__title--lvl3 {
    font-size: 14px;
  }
}

.header-main__desk-nav, .desc-nav {
  height: 100%;
}

.desc-nav__list {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

@media (width <= 1420px) {
  .desc-nav__list {
    width: 900px;
  }
}

.desc-nav__item {
  text-align: center;
  flex-flow: wrap;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.desc-nav__link {
  color: var(--gd-black);
  cursor: pointer;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: max-content;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.desc-nav__finder-icon {
  cursor: pointer;
}

.desc-nav__finder-icon svg {
  fill: var(--gd-yellow);
  width: 25px;
  height: 25px;
}

@keyframes pulse {
  0% {
    transform: scale(.95);
  }

  70% {
    transform: scale(1);
  }

  100% {
    transform: scale(.95);
  }
}

.desc-nav__sublist {
  background-color: var(--gd-white);
  scrollbar-width: thin;
  z-index: -1;
  width: 100%;
  height: 540px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 4px 4px #00000040;
}

.desc-nav__sublist.activeClass {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.desc-nav__item--dropdown:hover .desc-nav__sublist {
  display: block !important;
}

.desc-nav__item--dropdown:hover .desc-nav__link, .desc-nav__item:hover .desc-nav__link {
  color: var(--gd-yellow);
  text-decoration: underline;
}

.desc-nav__sublist-inner {
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  width: 100%;
  padding: 60px 15px 20px;
  display: grid;
  position: relative;
}

@media (width >= 1200px) {
  .desc-nav__sublist-inner {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.desc-nav__sublist-inner--no-adv {
  grid-template-columns: 1fr;
  gap: 30px;
  width: 100%;
  padding: 60px 15px 20px;
  display: grid;
  position: relative;
}

@media (width >= 1200px) {
  .desc-nav__sublist-inner--no-adv {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.desc-nav__lvl1-link {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  width: 100%;
  margin-bottom: 30px;
  text-decoration: none;
  display: flex;
}

.desc-nav__link-inner {
  border-bottom: 1px solid var(--grey-for-lines);
  color: var(--gd-black);
  text-align: left;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  position: relative;
}

.desc-nav__sublist-list {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: start;
  column-gap: 35px;
  padding: 0;
  display: flex;
}

.desc-nav__subitem--lvl2, .desc-nav__subitem--lvl3 {
  text-align: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-nav-links {
  margin: 0;
  padding: 0;
}

.desc-nav__subitem--lvl2 {
  margin-bottom: 100px;
}

.desc-nav__subitem--lvl2 .nav-link {
  color: var(--gd-black);
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.desc-nav__subitem--lvl2 .nav-link:after {
  background-color: var(--gd-black);
  content: " ";
  width: 0;
  height: 1px;
  transition: width .2s;
  position: absolute;
  bottom: -5px;
  right: 0;
}

.desc-nav__subitem--lvl2 .nav-link:hover {
  color: var(--gd-black);
}

.desc-nav__subitem--lvl2 .nav-link:hover:after {
  width: 100%;
  left: 0;
}

.desc-nav__subitem--lvl3 {
  padding-top: 20px;
}

.desc-nav__subitem--lvl3 .nav-link {
  color: var(--dark-grey-for-text);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.desc-nav__subitem--lvl3 .nav-link:after {
  background-color: var(--dark-grey-for-text);
  content: " ";
  width: 0;
  height: 1px;
  transition: width .2s;
  position: absolute;
  bottom: -5px;
  right: 0;
}

.desc-nav__subitem--lvl3 .nav-link:hover {
  color: var(--dark-grey-for-text);
}

.desc-nav__subitem--lvl3 .nav-link:hover:after {
  width: 100%;
  left: 0;
}

.desc-nav__close-btn {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 15px;
}

.desc-nav__close-btn svg {
  width: 20px;
  height: 20px;
}

.menu-advert__single {
  width: 220px;
  height: 280px;
}

.menu-advert__single img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.menu-advert {
  flex-flow: row;
  justify-content: flex-end;
  align-items: start;
  gap: 30px;
  display: flex;
}

.menu-advert--single {
  flex-flow: row;
  justify-content: flex-end;
  align-items: start;
  display: flex;
}

.menu-advert--single .menu-advert__single {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: start;
  width: 440px;
  height: 280px;
  display: flex;
}

.menu-advert--single .menu-advert__single img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.desc-nav__arrow {
  position: sticky;
  bottom: 5px;
  left: 50%;
}

.desc-nav__arrow svg {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}

.desc-nav__arrow.activeClass svg {
  transform: rotate(-90deg);
}

.case-popup {
  background-color: var(--gd-yellow);
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  position: fixed;
  top: 121px;
  left: 50%;
  transform: translate(-50%);
}

@media (width >= 1200px) {
  .case-popup {
    top: 265px;
  }
}

.case-popup .menu__wrap, .case-popup .filters__wrap {
  padding-bottom: 35px;
}

@media (width >= 768px) {
  .case-popup {
    max-width: 98%;
    margin: 0 auto;
  }
}

@media (width >= 1200px) {
  .case-popup {
    width: 601px;
    margin: 0;
  }
}

.case-popup.activeClass {
  top: 121px;
  left: 50%;
  transform: translate(-50%);
}

@media (width >= 1200px) {
  .case-popup.activeClass {
    top: 265px;
  }
}

.case-popup__title {
  color: var(--gd-black);
  cursor: pointer;
  border-radius: 3px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 45px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.case-popup__title svg {
  width: 10px;
  height: 10px;
  margin-left: 7px;
  transform: rotate(-90deg);
}

.case-popup__wrap {
  box-shadow: 0px 4px 39px rgba(var(--gd-black), .2);
  border-radius: 3px;
  width: 100%;
  position: absolute;
  top: 50px;
}

.case-popup__wrap .filters__wrap {
  position: relative;
}

.case-popup__wrap .filters__filter {
  border-bottom: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  margin: 0 15px;
  display: flex;
}

.case-popup__wrap .filters__filter--lvl1 .filters__title--finder {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.case-popup__wrap .filters__filter--lvl1 .filters__title--finder svg {
  opacity: 0;
  width: 10px;
  height: 10px;
  margin-left: auto;
}

.case-popup__wrap .filters__filter--lvl1 .filters__title--finder span {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.case-popup__wrap .filters__filter--lvl1 .filters__title--finder span:hover {
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
  color: var(--gd-yellow);
}

.case-popup__wrap .filters__filter--lvl1 .filters__title--finder:hover svg {
  opacity: 1;
}

.case-popup__wrap .filters__filter--lvl2:hover {
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
}

.case-popup__wrap .filters__filter--lvl2:hover span {
  color: var(--gd-yellow);
}

.case-popup__wrap .filters__header--finder {
  color: var(--gd-black);
  cursor: pointer;
  border-bottom: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 45px;
  margin-left: 15px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
}

.case-popup__wrap .filters__header--finder svg {
  transform: rotate(none);
  width: 10px;
  height: 10px;
  margin-right: 10px;
  fill: var(--gd-black) !important;
}

.case-popup__wrap .filters__title--finder {
  border-bottom: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.case-popup__wrap .filters__title--finder span {
  color: var(--gd-black);
  text-transform: capitalize;
  border-bottom: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
}

.case-popup__wrap .filters__title--finder span img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.case-popup__wrap .menu__wrap, .case-popup__wrap .filters__wrap {
  background: var(--gd-white);
  scrollbar-width: thin;
  height: 370px;
  max-height: 370px;
  overflow-y: auto;
}

.finder-icon__arrow {
  z-index: 999;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.finder-icon__arrow svg {
  width: 15px;
  height: 15px;
  transform: rotate(-90deg);
}

.finder-icon__arrow.activeClass svg {
  opacity: 0;
}

.finder-toggle {
  background-color: var(--gd-yellow);
  cursor: pointer;
  border-radius: 2px;
  max-width: 95%;
  height: 60px;
  margin: 50px auto 0;
}

@media (width >= 480px) {
  .finder-toggle {
    max-width: 600px;
  }
}

@media (width >= 1200px) {
  .finder-toggle {
    margin: 100px auto 0;
  }
}

.finder-toggle--category {
  margin: 60px auto 70px;
}

.finder-toggle__wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.finder-toggle__left {
  border-right: 1px solid var(--gd-black);
  flex-flow: wrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 7px;
  display: flex;
}

.finder-toggle__left svg {
  width: 15px;
  height: 15px;
}

.finder-toggle__right {
  flex-flow: wrap;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 7px;
  display: flex;
}

.finder-toggle__right svg {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}

.finder-toggle__text {
  font-size: 16px;
  font-weight: 500;
}

.usps {
  background-color: var(--gd-black);
  margin-top: 50px;
}

@media (width >= 1200px) {
  .usps {
    margin-top: 100px;
  }
}

.usps__wrap {
  width: 100%;
  padding: 50px 15px;
}

@media (width >= 1200px) {
  .usps__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1690px;
    margin: 0 auto;
    padding: 100px 15px;
    display: flex;
  }
}

.usps-single {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  text-decoration: none;
  display: flex;
}

.usps-single:last-child {
  margin-bottom: 0;
}

@media (width >= 1200px) {
  .usps-single {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 0;
  }
}

.usps-single__img {
  width: auto;
  max-width: 60px;
  height: auto;
  max-height: 100%;
}

.usps-content {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

@media (width >= 1200px) {
  .usps-content {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: start;
    margin-top: 0;
    display: flex;
  }
}

.usps-content__title {
  color: var(--gd-white);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

@media (width >= 1200px) {
  .usps-content__title {
    font-size: 24px;
  }
}

.usps-content__subtext {
  color: var(--gd-white);
  margin: 0;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

@media (width >= 1200px) {
  .usps-content__subtext {
    padding-top: 5px;
    font-size: 18px;
  }
}

.gd-footer__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .gd-footer__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.footer-menu__nav-item--left {
  margin-bottom: 60px;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--left {
    margin-bottom: 0;
  }
}

.footer-description, .newsletter {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (width >= 1200px) {
  .footer-description, .newsletter {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

.footer-description__title {
  font-size: 35px;
  font-weight: 700;
}

.footer-description__subtext {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 18.75px;
}

@media (width >= 1200px) {
  .footer-description__subtext {
    text-align: left;
  }
}

.newsletter__title {
  font-size: 25px;
  font-weight: 600;
}

.newsletter__subtext {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .newsletter__subtext {
    text-align: left;
  }
}

.newsletter__form {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
}

.newsletter__input {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  width: calc(100% - 60px);
  height: 45px;
  padding-left: 25px;
}

.newsletter__input::placeholder {
  font-size: 16px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .newsletter__input {
    width: calc(100% - 75px);
    height: 60px;
  }
}

.newsletter__btn {
  background-color: var(--gd-black);
  cursor: pointer;
  border: none;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.newsletter__btn:hover {
  background-color: var(--gd-yellow);
}

.newsletter__btn svg {
  fill: var(--gd-white);
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .newsletter__btn svg {
    width: 20px;
    height: 20px;
  }

  .newsletter__btn {
    width: 60px;
    height: 60px;
  }
}

.footer-menu {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

@media (width >= 1200px) {
  .footer-menu {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 90px 0;
    display: flex;
  }
}

.footer-menu__nav-list {
  margin: 0;
  padding: 26px 0 0;
  list-style: none;
}

@media (width >= 1200px) {
  .footer-menu__nav-list {
    padding-top: 17px;
  }
}

.footer-menu__nav-item--acc {
  max-height: 30px;
  margin-bottom: 55px;
  transition: max-height .3s ease-in-out;
  overflow: hidden;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--acc {
    max-height: 100%;
    margin-bottom: 0;
  }
}

.footer-menu__nav-item--left {
  width: 100%;
}

@media (width >= 1200px) {
  .footer-menu__nav-item--left {
    width: 550px;
  }
}

.footer-menu__top-link {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: -25px;
  right: 0;
}

@media (width >= 1200px) {
  .footer-menu__top-link {
    top: 80%;
    right: 0;
  }
}

.footer-menu__top-link svg {
  fill: var(--gd-white);
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.footer-menu__link {
  color: var(--gd-black);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-menu__link:hover {
  text-decoration: underline;
}

@media (width >= 1200px) {
  .footer-menu__link {
    font-size: 15px;
  }
}

.footer-menu__nav-list-item:not(:last-child) {
  margin-bottom: 25px;
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item:not(:last-child) {
    margin-bottom: 17px;
  }
}

.footer-menu__nav-list-item--contact svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item--contact svg {
    width: 17px;
    height: 17px;
    margin-right: 7px;
  }
}

.footer-menu__nav-list-item--contact .footer-menu__link {
  max-width: calc(100% - 30px);
}

@media (width >= 1200px) {
  .footer-menu__nav-list-item--contact .footer-menu__link {
    max-width: calc(100% - 24px);
  }
}

.footer-menu__title {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  height: 30px;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  display: flex;
}

@media (width >= 1200px) {
  .footer-menu__title {
    font-size: 18px;
  }
}

.footer-menu__title span {
  max-width: calc(100% - 30px);
}

@media (width >= 1200px) {
  .footer-menu__title span {
    white-space: nowrap;
    max-width: 100%;
  }
}

.footer-menu__title svg {
  width: 17px;
  height: 17px;
}

@media (width >= 1200px) {
  .footer-menu__title svg {
    display: none;
  }
}

.footer-menu__title.activeClass svg {
  transform: rotate(180deg);
}

.ft-bottom {
  background-color: var(--gd-black);
  padding: 30px 0;
}

@media (width >= 1200px) {
  .ft-bottom {
    padding: 15px 0;
  }

  .ft-bottom__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
}

.ft-bottom__social-list {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  display: flex;
}

.ft-bottom__social-list svg {
  fill: var(--gd-yellow);
  width: 30px;
  height: 30px;
}

@media (width >= 1200px) {
  .ft-bottom__social-list {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

.ft-bottom__text {
  color: var(--gd-white);
  text-align: center;
  margin: 25px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}

@media (width >= 1200px) {
  .ft-bottom__text {
    text-align: right;
    margin: 0;
  }
}

.ft-bottom__icons {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

@media (width >= 1200px) {
  .ft-bottom__icons {
    justify-content: flex-end;
  }
}

.ft-bottom__icon {
  background: var(--gd-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 45px;
  display: flex;
}

.ft-bottom__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.ft-bottom__dev {
  font-weight: 300;
}

.menu-popup, .filter-popup {
  background-color: var(--gd-white);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  z-index: -1;
  width: 80%;
  height: 100%;
  transition-property: opacity, z-index, visibility, transform;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .menu-popup, .filter-popup {
    width: 300px;
  }
}

.menu-popup.init, .filter-popup.init {
  display: block;
}

.menu-popup.activeClass, .filter-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

.menu-popup .popup__header, .filter-popup .popup__header {
  border-bottom: 1px solid var(--grey-for-lines);
}

.menu-popup .popup__content, .filter-popup .popup__content {
  position: relative;
}

.search-popup {
  background-color: var(--gd-gray-light);
  width: 100%;
  top: 85px;
  box-shadow: 0 4px 4px #00000040;
}

.search-popup .popup__close {
  position: absolute;
  right: 15px;
}

.search-popup .popup__content {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .search-popup .popup__content {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.search-popup .header__search {
  width: 100%;
}

.search-popup .header__input {
  border: none;
  border-bottom: 1px solid var(--gd-black);
  background-color: #0000;
  outline: none;
  width: 100%;
  padding: 10px 20px;
}

.search-popup .header__input::placeholder {
  color: var(--dark-grey-for-text);
  font-size: 14px;
  font-weight: 300;
}

.search-popup .header-search__btn {
  background-color: #0000;
  border: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.search-popup .header-search__btn svg {
  fill: var(--dark-grey-for-text);
  width: 15px;
  height: 15px;
}

.search_loading_icon {
  position: absolute;
  left: 0;
  transform: translateX(-100%);
}

.header-main__search-wrap {
  opacity: 0;
  visibility: hidden;
  width: 380px;
  transition: all .2s ease-in-out;
  position: absolute;
  left: -380px;
  transform: translateY(-20px);
}

.header-main__search-wrap.activeClass {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-main__search-wrap .header-search__btn {
  display: none;
}

.header-main__search-wrap .header__input {
  border: none;
  border-bottom: 2px solid var(--gd-black);
  outline: none;
  width: 100%;
  font-size: 16px;
}

.header-main__search-wrap .header__input::placeholder {
  color: var(--dark-grey-for-text);
  font-size: 16px;
  font-weight: 300;
}

.nsearchinput-pl .title {
  color: var(--gd-black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400 !important;
}

.nsearchinput-pl .title b {
  margin-right: 5px;
  font-weight: 400 !important;
}

.nsearchinput-pl.well {
  background-color: var(--gd-white);
  max-width: 90%;
  height: 480px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 0 5px #00000040;
  margin-top: 40px !important;
}

@media (width >= 1200px) {
  .nsearchinput-pl.well {
    max-width: 100%;
    margin-top: 25px !important;
  }
}

.nsearchinput-pl.well .nav-list {
  margin: 0;
  padding: 0;
}

.nsearchinput-pl.well li {
  height: 50px;
  margin: 0 15px;
  padding: 0;
  list-style: none;
}

.nsearchinput-pl.well li:hover {
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
}

.nsearchinput-pl.well li:hover .title {
  color: var(--gd-yellow);
}

.nsearchinput-pl.well a {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  height: 100%;
  line-height: normal;
  text-decoration: none;
  display: flex;
}

.nsearchinput-pl.well a img {
  width: 30px;
  height: 30px;
}

.user-popup {
  background-color: var(--gd-white);
  opacity: 0;
  transition: var(--gd-transition) ease-in-out;
  visibility: hidden;
  z-index: -1;
  width: 80%;
  transition-property: opacity, z-index, visibility, transform;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .user-popup {
    width: 300px;
  }
}

.user-popup.init {
  display: block;
}

.user-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

.user-popup .popup__header {
  border-bottom: 1px solid var(--grey-for-lines);
}

.user-popup .account-details {
  margin: 0;
  padding: 0;
}

.user-popup .dropdown-link {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.user-popup li {
  border-bottom: 1px solid var(--grey-for-lines);
  height: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-popup li:hover .dropdown-link {
  color: var(--gd-yellow);
}

.cart-popup {
  background-color: var(--gd-white);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  width: 80%;
  transition: opacity .2s ease-in-out, z-index .2s ease-in-out, visibility .2s ease-in-out, transform .2s ease-in-out;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  box-shadow: 0 4px 4px #00000040;
}

@media (width >= 768px) {
  .cart-popup {
    width: 300px;
  }
}

@media (width >= 1200px) {
  .cart-popup {
    width: 260px;
    position: absolute;
    right: auto;
    transform: translateY(145px);
  }
}

.cart-popup.init {
  display: block;
}

.cart-popup.activeClass {
  opacity: 1;
  visibility: visible;
  z-index: 5;
  transform: translateX(0);
}

@media (width >= 1200px) {
  .cart-popup.activeClass {
    right: auto;
    transform: translateY(120px);
  }

  .cart-popup .popup__header {
    display: none;
  }
}

.cart-popup .popup__content {
  padding: 0 15px 15px;
}

.cart-popup .empty-cart {
  margin: 0;
  padding: 0;
}

.cart-popup .order-summary svg {
  width: 15px;
  height: 15px;
}

.cart-popup .order-summary ul {
  margin: 0;
  padding: 0;
}

.cart-popup .order-summary__top {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  display: flex;
}

.cart-popup .order-summary__top .cost-summary__title {
  font-size: 15px;
  font-weight: 400;
}

.cart-popup .order-summary-product {
  border-bottom: 1px solid var(--grey-for-lines);
  margin: 0;
  padding: 25px 0;
  list-style: none;
}

.cart-popup .cost-summary {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 30px;
  display: flex;
}

.cart-popup .cost-summary .cost-summary__title {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  display: flex;
}

@media (width >= 1200px) {
  .cart-popup .cost-summary .cost-summary__title {
    font-size: 13px;
  }
}

.cart-popup .cost-summary b {
  color: var(--gd-black);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

@media (width >= 1200px) {
  .cart-popup .cost-summary b {
    font-size: 13px;
  }
}

.cart-popup .order-summary-product__wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  display: flex;
  position: relative;
}

.cart-popup .order-summary-product__wrap .product-image {
  order: 2;
  width: 80px;
  height: auto;
  margin: 0 !important;
}

.cart-popup .order-summary-product__wrap .product-title {
  width: 100%;
  padding-left: 12px;
}

.cart-popup .order-summary-product__wrap .product-title--inner {
  color: var(--gd-black);
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
  display: block;
}

.cart-popup .order-summary-product__wrap .product-title--inner b {
  color: var(--gd-black);
  font-weight: 500;
}

.cart-popup .order-summary-product__wrap .price {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  padding-top: 30px !important;
}

.cart-popup .order-summary-product__wrap .close-btn {
  position: absolute;
  right: 0;
}

.cart-popup .order-summary-product__wrap .close-btn svg {
  fill: var(--grey-for-lines);
  width: 20px;
  height: 20px;
}

.cart-popup .button-summary {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.cart-popup .order-summary__scrollable {
  max-height: 380px;
  overflow-y: auto;
}

.filter-popup {
  height: auto;
}

.filter-popup .popup__content {
  padding: 0 20px;
}

.hero__single {
  height: 560px;
}

.hero__text {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero__text .title {
  color: var(--gd-white);
  text-shadow: 0 4px 4px #00000040;
  font-size: 35px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .hero__text .title {
    font-size: 60px;
  }
}

.hero__text .subtext {
  color: var(--gd-white);
  text-shadow: 0 4px 4px #00000040;
  margin: 25px 0 50px;
  font-size: 23px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .hero__text .subtext {
    font-size: 35px;
  }
}

.categories {
  background-color: var(--gd-gray-light);
  margin-top: 50px;
}

@media (width >= 1200px) {
  .categories {
    margin-top: 100px;
  }
}

.categories__single-title {
  color: var(--gd-black);
  text-align: center;
  margin-top: 25px;
  font-size: 26px;
  font-weight: 400;
  display: block;
}

.categories__single-img {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.categories__single-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.categories__single {
  text-decoration: none;
}

.categories__single:hover .categories__single-img {
  border: 1px solid var(--gd-yellow);
}

.categories__single:hover .categories__single-title {
  color: var(--gd-yellow);
}

.categories__wrap {
  width: 100%;
  padding: 0 15px 50px;
}

@media (width >= 1200px) {
  .categories__wrap {
    max-width: 1690px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}

.showcase-ads {
  padding: 25px 0 0;
}

@media (width >= 1200px) {
  .showcase-ads {
    padding: 35px 0 0;
  }

  .showcase-ads__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    display: flex;
  }
}

.showcase-ads__single {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 650px;
  margin-bottom: 30px;
  display: flex;
}

.showcase-ads__single:last-child {
  margin-bottom: 0;
}

@media (width >= 1200px) {
  .showcase-ads__single {
    flex: 1;
    height: 450px;
    margin-bottom: 0;
  }
}

.showcase__text {
  background-color: #fffc;
  border-radius: 7px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 230px;
  display: flex;
  flex-direction: column !important;
}

@media (width >= 1200px) {
  .showcase__text {
    width: 400px;
    height: 270px;
  }
}

.showcase__text .subtext {
  color: var(--gd-black);
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .showcase__text .subtext {
    font-size: 16px;
  }
}

.showcase__text .title {
  color: var(--gd-black);
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .showcase__text .title {
    font-size: 42px;
  }
}

.full-showcase {
  padding: 50px 0 0;
}

@media (width >= 1200px) {
  .full-showcase {
    padding: 100px 0 0;
  }
}

.full-showcase__single {
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 420px;
  display: flex;
}

@media (width >= 1200px) {
  .full-showcase__single {
    height: 600px;
  }
}

.full-showcase__single .showcase__text {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.full-showcase__single .subtext {
  color: var(--gd-white);
  padding: 0;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .full-showcase__single .subtext {
    font-size: 25px;
  }
}

.full-showcase__single .title {
  color: var(--gd-white);
  margin-bottom: 30px;
  font-size: 31px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .full-showcase__single .title {
    font-size: 42px;
  }
}

.full-showcase__single .main-btn {
  margin: 40px auto 0;
}

@media (width >= 1200px) {
  .full-showcase__single .main-btn {
    margin: 60px auto 0;
  }
}

.products-list__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .products-list__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.products-list__wrap .splide__arrow--prev {
  display: none;
}

.products-list__wrap .splide__arrow--next {
  width: 40px;
  height: 40px;
  right: 22%;
}

@media (width >= 1200px) {
  .products-list__wrap .splide__arrow--next {
    width: 45px;
    height: 45px;
    right: 0;
  }
}

.free-shipping {
  padding: 50px 0;
}

@media (width >= 1200px) {
  .free-shipping {
    padding: 100px 0;
  }
}

.free-shipping__wrap {
  background-color: var(--gd-black);
  height: 70px;
}

@media (width >= 1200px) {
  .free-shipping__wrap {
    height: 90px;
  }
}

.free-shipping__single {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .free-shipping__single {
    gap: 0;
    max-width: 1690px;
    margin: 0 auto;
  }
}

.free-shipping__single .title {
  color: var(--gd-white);
}

.free-shipping__single .title--left {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

@media (width >= 1200px) {
  .free-shipping__single .title--left {
    font-size: 20px;
  }
}

.free-shipping__single .title--left img {
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .free-shipping__single .title--left img {
    width: 30px;
    height: 25px;
  }
}

.free-shipping__single .title--center {
  font-size: 11px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .free-shipping__single .title--center {
    font-size: 16px;
  }
}

.free-shipping__single .title--right {
  font-size: 12px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .free-shipping__single .title--right {
    font-size: 20px;
  }
}

.testimonials {
  background-color: var(--gd-gray-light);
  padding-bottom: 50px;
}

@media (width >= 1200px) {
  .testimonials {
    padding-bottom: 100px;
  }
}

.testimonials__wrap {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .testimonials__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.testimonials__single {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonials__single .quote {
  background-color: var(--gd-yellow);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.testimonials__single .quote svg {
  fill: var(--gd-white);
  width: 30px;
  height: 30px;
}

@media (width >= 1200px) {
  .testimonials__single .quote {
    width: 80px;
    height: 80px;
  }

  .testimonials__single .quote svg {
    width: 40px;
    height: 40px;
  }
}

.testimonials__single .description {
  border-bottom: 1px solid var(--grey-for-lines);
  text-align: center;
  margin: 0 0 40px;
  padding: 40px 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
}

.testimonials__single .title {
  color: var(--gd-yellow);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
}

@media (width >= 1200px) {
  .testimonials__single .title {
    font-size: 25px;
  }
}

.testimonials__single .subtext {
  font-size: 13px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .testimonials__single .subtext {
    font-size: 18px;
  }
}

.showcase-products {
  padding: 50px 0 0;
}

@media (width >= 1200px) {
  .showcase-products {
    padding: 100px 0 0;
  }

  .showcase-products__wrap {
    grid-template-columns: 2fr 1.5fr;
    gap: 45px;
    width: 100%;
    padding: 0 15px;
    display: grid;
  }
}

@media (width >= 1200px) and (width >= 1200px) {
  .showcase-products__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.showcase-products__left-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 400px;
}

@media (width >= 1200px) {
  .showcase-products__left-image {
    height: 690px;
  }
}

.showcase-products__right-showcase {
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-top: 30px;
  padding: 50px 15px;
}

@media (width >= 1200px) {
  .showcase-products__right-showcase {
    border: 1px solid var(--grey-for-lines);
    border-radius: 3px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    height: 690px;
    margin-top: 0;
    padding: 50px 15px;
    display: flex;
  }
}

.showcase-products__right-showcase .title {
  text-align: center;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .showcase-products__right-showcase .title {
    font-size: 22px;
  }
}

.showcase-products__right-showcase .subtext {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 15px 0 30px;
  font-size: 25px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .showcase-products__right-showcase .subtext {
    font-size: 32px;
  }
}

.single-product {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 25px;
  transition: all .2s ease-in-out;
  display: flex;
}

.single-product__img {
  mix-blend-mode: multiply;
  width: 130px;
  height: 100px;
}

.single-product__cta {
  color: var(--gd-black);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.single-product__cta:hover {
  color: var(--gd-yellow);
}

.brands__wrap {
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  padding: 0 15px;
  display: grid;
}

@media (width >= 1200px) {
  .brands__wrap {
    grid-gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1690px;
    margin: 0 auto;
    display: grid;
  }
}

.brands__img {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 52%;
  position: relative;
  overflow: hidden;
}

.brands__img:hover {
  border: 1px solid var(--gd-yellow);
}

.brands__img img {
  mix-blend-mode: multiply;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blogs {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .blogs {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.blog-box {
  color: var(--gd-black);
  text-decoration: none;
}

.blog-box__content {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 35px;
  display: flex;
  position: relative;
}

.blog-box__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 71%;
  position: relative;
  overflow: hidden;
}

.blog-box__img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-box__date {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
  text-align: center;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 58px;
  padding: 5px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: -23.5px;
  right: 0;
}

@media (width >= 1200px) {
  .blog-box__date {
    width: 65px;
    height: 80px;
    font-size: 25px;
    top: -32.5px;
    right: 15px;
  }
}

.blog-box__title {
  margin: 25px 0 0;
  font-size: 20px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .blog-box__title {
    font-size: 22px;
  }
}

.blog-box__subtext {
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
}

.blog-box__subtext p {
  margin: 0;
  padding: 0;
}

.blog-box__cta {
  color: var(--gd-yellow);
  font-size: 14px;
  font-weight: 500;
}

.cat-top {
  width: 100%;
  height: max-content;
  padding-bottom: 50px;
}

@media (width >= 1200px) {
  .cat-top {
    height: max-content;
  }
}

.page-search_results .cat-top {
  height: max-content;
  padding-bottom: 50px;
}

.cat-top--bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cat-top--bg-color {
  background-color: var(--gd-black);
}

.cat-top__wrap {
  width: 100%;
  height: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-top__wrap {
    max-width: 1690px;
    margin: 0 auto;
  }
}

.cat-top__content {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  display: flex;
}

@media (width >= 1200px) {
  .cat-top__content {
    padding-top: 100px;
  }
}

.category-title {
  color: var(--gd-white);
  text-align: center;
  width: 100%;
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  display: block;
}

@media (width >= 1200px) {
  .category-title {
    font-size: 42px;
  }
}

.category-subtext {
  color: var(--gd-white);
  text-align: center;
  width: 100%;
  padding-top: 15px;
  font-size: 23px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .category-subtext {
    font-size: 25px;
  }
}

.categories-list {
  padding: 80px 15px 50px;
}

@media (width >= 480px) {
  .categories-list {
    padding: 80px 30px 50px;
  }
}

@media (width >= 1200px) {
  .categories-list {
    max-width: 910px;
    margin: 0 auto;
    padding: 80px 15px 50px;
  }
}

.categories-list .splide__pagination {
  bottom: -80px !important;
}

.categories-list__single-title {
  color: var(--gd-black);
  text-align: center;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .categories-list__single-title {
    font-size: 23px;
  }
}

.categories-list__single-img {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.categories-list__single-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.categories-list__single {
  text-decoration: none;
}

.categories-list__single:hover .categories-list__single-img {
  border: 1px solid var(--gd-yellow);
}

.categories-list__single:hover .categories-list__single-title {
  color: var(--gd-yellow);
}

.cat-products__wrapper {
  width: 100%;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-products__wrapper {
    grid-template-columns: 1fr 4fr;
    gap: 69px;
    max-width: 1690px;
    margin: 0 auto;
    display: grid;
  }
}

.cat-products__left {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--grey-for-lines) var(--gd-gray-light);
  scrollbar-width: thin;
  border-radius: 3px;
  width: 292px;
  height: max-content;
  max-height: 880px;
  padding: 0 20px;
  position: sticky;
  top: 25px;
  overflow: auto;
}

.products-row {
  grid-gap: 0;
  grid-template-columns: repeat(24, 1fr);
  gap: 30px 15px;
  display: grid;
}

@media (width >= 768px) {
  .products-row {
    grid-gap: 0;
    grid-template-columns: repeat(36, 1fr);
    gap: 30px 15px;
    display: grid;
  }
}

@media (width >= 1200px) {
  .products-row {
    grid-gap: 0;
    grid-template-columns: repeat(48, 1fr);
    gap: 30px 15px;
    display: grid;
  }
}

.product-box {
  grid-column: span 12;
}

.cat-products__empty-cat {
  width: 100%;
  margin-top: 50px;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cat-products__empty-cat {
    max-width: 1690px;
    margin: 100px auto 0;
  }
}

.cat-products__empty-cat .title {
  margin: 0;
  padding: 0;
}

.new-filter {
  max-height: 50px;
  margin-bottom: 15px;
  transition: all .2s ease-in-out;
  overflow: hidden;
}

.new-filter:last-child {
  margin-bottom: 0;
}

.filter__wrapper {
  height: calc(100vh - 250px);
  overflow: auto;
}

@media (width >= 1200px) {
  .filter__wrapper {
    overflow: none;
    height: auto;
  }
}

.filter-header {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

@media (width >= 1200px) {
  .filter-header {
    font-size: 16px;
  }
}

.filter-header svg {
  width: 10px;
  height: 10px;
}

.filter__brand-img {
  border: 1px solid var(--grey-for-lines);
  padding: px;
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 70px;
  display: flex;
}

.filter__brand-img:hover {
  border: 1px solid var(--gd-yellow);
}

.filter__brand-img img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}

.filter-remove svg {
  fill: var(--gd-yellow) !important;
}

.filter-remove .filter-name {
  color: var(--gd-yellow);
}

.filter-remove .filter__brand-img {
  border: 1px solid var(--gd-yellow);
}

.filter-name {
  border-top: 1px solid var(--grey-for-lines);
  color: var(--dark-grey-for-text);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 50px;
  margin: 0;
  padding: 0 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.filter-name:last-child {
  border-bottom: 1px solid var(--grey-for-lines);
}

.filter-name--brands {
  border: none !important;
}

.filter-name svg {
  fill: var(--grey-for-lines);
  width: 16px;
  height: 16px;
}

.filter-name:hover {
  color: var(--gd-yellow);
}

.filter-name:hover svg {
  fill: var(--gd-yellow);
}

.filter-wrap.activeClass svg {
  transform: rotate(180deg);
}

.list-group {
  background-color: var(--gd-white);
  width: 95%;
  margin: 0;
  padding: 0;
}

.list-group--price {
  background-color: #0000;
}

.list-group--brands {
  grid-gap: 15px;
  background-color: #0000;
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.filter {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-group-item {
  text-decoration: none;
}

.filter-btns {
  height: 120px;
  margin-top: 20px;
}

.filter-less .filter:nth-child(n+9) {
  display: none;
}

.filter__show-more {
  cursor: pointer;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

.filter__show-more:hover {
  color: var(--gd-yellow);
}

.ui-slider {
  border: 1px solid var(--gd-white);
  text-align: left;
  width: 100%;
  height: 8px;
  margin: 0 auto;
  position: relative;
}

.ui-slider-range {
  background: var(--gd-black);
  z-index: 1;
  background-position: 0 0;
  border: 0;
  height: 100%;
  margin: 0;
  font-size: .7em;
  display: block;
  position: absolute;
  top: 0;
}

.ui-slider-handle {
  -ms-touch-action: none;
  background: var(--gd-black);
  border: 1px solid var(--gd-gray-light);
  color: var(--gd-black);
  cursor: default;
  touch-action: none;
  z-index: 2;
  width: 10px;
  height: 10px;
  margin-left: -1px;
  position: absolute;
  top: -2px;
}

.price_range {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.cat-footer {
  background-color: var(--gd-yellow);
  margin: 50px 0;
}

.cat-footer__wrap {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
}

@media (width >= 1200px) {
  .cat-footer__wrap {
    height: 80px;
  }
}

.pagination {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  display: flex;
}

.page-link {
  background-color: var(--gd-white);
  border: 1px solid var(--grey-for-lines);
  color: var(--dark-grey-for-text);
  border-radius: 3px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.page-link:hover {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
}

.page-link svg {
  width: 10px;
  height: 10px;
}

.page-item--prev .page-link, .page-item--next .page-link, .page-item--prev .page-link:hover, .page-item--next .page-link:hover {
  background-color: #0000;
  border: none;
}

.page-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-item.active .page-link {
  background-color: var(--gd-black);
  border: 1px solid var(--gd-black);
  color: var(--gd-white);
}

.cat-header {
  background-color: var(--gd-yellow);
  margin: 50px 0;
}

.cat-header__wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 15px;
  display: flex;
}

@media (width >= 1200px) {
  .cat-header__wrap {
    max-width: 1690px;
    height: 80px;
    margin: 0 auto;
  }
}

.filter-btn {
  cursor: pointer;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.filter-btn svg {
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .filter-btn {
    display: none;
  }
}

.sort-opt .form-control {
  cursor: pointer;
  background-color: #0000;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
}

.brands-list {
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  display: grid;
}

@media (width >= 768px) {
  .brands-list {
    grid-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
}

@media (width >= 1200px) {
  .brands-list {
    grid-gap: 25px;
    grid-template-columns: repeat(6, 1fr);
    display: grid;
  }
}

.brands-list__img {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 80%;
  position: relative;
  overflow: hidden;
}

.brands-list__img img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
}

.brands-list__title {
  text-align: center;
  margin-top: 10px;
  display: block;
}

.brands-list__single {
  border: 1px solid var(--gd-black);
  text-transform: uppercase;
  padding: 15px;
}

.brands-list__single:hover {
  border: 1px solid var(--gd-yellow);
}

.brands-list__single:hover .brands-list__title {
  color: var(--gd-yellow);
}

.prod-imgs {
  max-width: 100%;
  position: relative;
}

@media (width >= 1200px) {
  .prod-imgs {
    flex-flow: row-reverse wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 850px;
    display: flex;
  }

  .prod-imgs__wrap {
    width: calc(100% - 130px);
    max-width: 700px;
    margin-left: 30px;
    padding: 0;
  }

  .prod-imgs__thumbnails-slide {
    overflow: hidden;
  }
}

.prod-imgs__thumbnails {
  padding: 0 50px;
}

.prod-imgs__thumbnails .splide__arrow {
  background-color: #0000;
}

.prod-imgs__thumbnails .splide__arrow svg {
  fill: #000;
}

.prod-imgs__thumbnails .splide__arrow {
  flex-flow: wrap;
  justify-content: center;
  align-items: start;
  display: flex;
}

.prod-imgs__thumbnails .splide__arrow--next {
  right: -45px;
}

@media (width >= 1200px) {
  .prod-imgs__thumbnails .splide__arrow--next {
    right: 50%;
    bottom: 0 !important;
  }
}

.prod-imgs__thumbnails .splide__arrow--prev {
  left: -45px;
}

@media (width >= 1200px) {
  .prod-imgs__thumbnails .splide__arrow--prev {
    left: 50%;
    top: 0 !important;
  }

  .prod-imgs__thumbnails {
    width: 80px;
    padding: 0;
  }
}

.prod-imgs__thumbnails .prod-imgs__figure {
  border: 1px solid var(--grey-for-lines);
  filter: grayscale(0);
}

.prod-imgs__thumbnails .splide__slide.is-active {
  border: none !important;
}

.prod-imgs__thumbnails .splide__slide.is-active .prod-imgs__figure {
  filter: grayscale(0);
  border: 1px solid var(--gd-yellow) !important;
}

.prod-imgs__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

@media (width >= 1200px) {
  .prod-imgs__figure {
    border: 1px solid var(--grey-for-lines);
    border-radius: 3px;
  }
}

.prod-imgs__figure .prod-imgs__img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prod-imgs__wrap .prod-imgs__figure {
  width: 100%;
  height: 0;
  margin: 0;
  padding-bottom: 74%;
  position: relative;
  overflow: hidden;
}

.product {
  margin-top: 35px;
}

@media (width >= 1200px) {
  .product {
    margin-top: 50px;
  }

  .product__wrap {
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    display: grid;
  }
}

.product__sidebar {
  margin-top: 40px;
}

@media (width >= 1200px) {
  .product__sidebar {
    margin-top: 0;
  }
}

.prod-header__brand {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  display: block;
}

@media (width >= 1200px) {
  .prod-header__brand {
    font-size: 18px;
  }
}

.prod-header__title {
  border-bottom: 1px solid var(--grey-for-lines);
  margin: 0 0 25px;
  padding: 0 0 25px;
  font-size: 26px;
  font-weight: 500;
}

.prod-header__text {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
}

@media (width >= 1200px) {
  .prod-header__text {
    font-size: 14px;
  }
}

.prod-header__price-wrap {
  margin: 25px 0;
}

.prod-header__price-inner {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  display: flex;
}

.prod-header__price {
  color: var(--gd-black);
  font-size: 26px;
  font-weight: 600;
}

.prod-header__price--yellow {
  color: var(--gd-yellow);
}

.prod-header__price-old {
  color: var(--dark-grey-for-text);
  font-size: 14px;
  font-weight: 300;
  text-decoration: line-through;
}

.prod-header__price-ending {
  color: var(--gd-red);
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

.prod-header__price-time {
  color: var(--gd-red);
  font-size: 14px;
  font-weight: 400;
}

.prod-header__badge-wrap {
  background-color: var(--gd-gray-light);
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
  padding: 15px 10px;
}

@media (width >= 480px) {
  .prod-header__badge-wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
}

.prod-header__badge {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

.prod-header__badge svg {
  fill: var(--gd-yellow);
  width: 15px;
  height: 15px;
}

.prod-header__warehouse {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0 0 5px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

.prod-header__warehouse:last-child {
  padding-bottom: 0;
}

.prod-header__warehouse svg {
  width: 13px;
  height: 13px;
}

.prod-header__warehouse--in-stock svg {
  fill: green;
}

.prod-header__warehouse--no-stock svg {
  fill: red;
}

.prod-header__review {
  color: var(--gd-black);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  font-size: 13px;
  font-weight: 300;
  display: flex;
}

@media (width >= 480px) {
  .prod-header__review {
    margin-top: 0;
  }
}

.prod-header__review svg {
  fill: var(--gd-yellow);
  width: 15px;
  height: 15px;
}

.buying-options {
  padding: 30px 0;
}

.buying-options__wrap {
  grid-template-columns: 1fr;
  grid-template-areas: "qty"
                       "btns"
                       "wishlist";
  gap: 10px 15px;
  display: grid;
}

@media (width >= 1200px) {
  .buying-options__wrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "qty btns btns btns"
                         ". wishlist wishlist wishlist";
  }
}

.buying-options__qty {
  grid-area: qty;
}

.quantity-input {
  border: 1px solid var(--grey-for-lines);
  text-align: center;
  width: 100%;
  height: 45px;
}

@media (width >= 1200px) {
  .quantity-input {
    height: 50px;
  }
}

.buying-options__btns {
  grid-area: btns;
}

.buying-options__wishlist {
  grid-area: wishlist;
}

.shipping-card__title {
  border-top: 1px solid var(--grey-for-lines);
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.shipping-card__wrap {
  border: 1px solid var(--grey-for-lines);
  padding: 25px;
}

.shipping-card__inner {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "qty country"
                       "postcode btn";
  gap: 15px;
  display: grid;
}

@media (width >= 1200px) {
  .shipping-card__inner {
    grid-template-columns: .5fr 1fr 1fr 1fr;
    grid-template-areas: "qty country postcode btn";
  }
}

.shipping-card__inner .form-control {
  border: 1px solid var(--grey-for-lines);
  text-align: center;
  border-radius: 3px;
  height: 40px;
}

.shipping-card__qty {
  grid-area: qty;
}

.shipping-card__country {
  grid-area: country;
}

.shipping-card__postcode {
  grid-area: postcode;
}

.shipping-card__btn {
  grid-area: btn;
}

.shipping-card__message {
  border-top: 1px solid var(--grey-for-lines);
  color: var(--dark-grey-for-text);
  margin-top: 20px;
  padding-top: 20px;
  font-size: 12px;
  font-weight: 300;
}

.variation-name {
  margin: 10px 0;
}

.variation-name label {
  margin: 0;
  padding: 0;
}

.prod-usps {
  background-color: var(--gd-gray-light);
  border-bottom: 1px solid var(--grey-for-lines);
  border-top: 1px solid var(--grey-for-lines);
  margin-top: 25px;
}

.prod-usps__wrap {
  height: max-content;
}

@media (width >= 1200px) {
  .prod-usps__wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    padding: 0 10px;
    display: flex;
  }
}

.prod-usps__single {
  border-bottom: 1px solid var(--grey-for-lines);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding-left: 10px;
  display: flex;
}

.prod-usps__single:last-child {
  border-bottom: none;
}

@media (width >= 1200px) {
  .prod-usps__single {
    border: none;
    height: auto;
    padding-left: 0;
  }
}

.product-info {
  margin-top: 50px;
}

@media (width >= 1200px) {
  .product-info {
    margin-top: 100px;
  }
}

.product-info__wrap {
  background-color: var(--gd-gray-light);
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
}

.product-info__heading {
  border-bottom: 1px solid var(--grey-for-lines);
  white-space: nowrap;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  height: 50px;
  display: flex;
  overflow: auto;
}

.product-info__tab {
  color: var(--dark-grey-for-text);
  cursor: pointer;
  border-bottom: 2px solid #0000;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.product-info__tab.activeClass, .product-info__tab:hover {
  border-bottom: 2px solid var(--gd-yellow);
  color: var(--gd-black);
}

.product-info__details {
  padding: 30px 15px;
  display: none;
}

.product-info__details.activeClass {
  display: block;
}

@media (width >= 1200px) {
  .product-info__details {
    padding: 50px 80px;
  }
}

.product-info__details .table {
  border: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (width >= 1200px) {
  .product-info__details .table {
    width: 50%;
  }
}

.product-info__details .table th, .product-info__details .table td {
  border: none;
  width: 100px;
}

.product-info__details .reviews-title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.product-info__details .reviews-subtext {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 300;
}

.product-info__details--reviews h2 {
  font-size: 1.1rem;
}

.product-info__details--reviews p, .product-info__details--reviews ul {
  color: var(--gd-black);
  font-size: 18px;
  font-weight: 400;
}

.product-info__details--reviews .review-name {
  font-size: 18px;
  font-weight: 500;
}

.product-info__details--reviews .review-description {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.product-info__details--reviews .prod-header__rating {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 15px 0;
  display: flex;
}

.product-info__details--reviews .prod-header__rating svg {
  fill: var(--gd-yellow);
  width: 10px;
  height: 10px;
}

.product-info__details--reviews .reviews-title {
  font-size: 18px;
  font-weight: 500;
}

.product-info__details--reviews .reviews-subtext {
  margin: 0;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
}

.cart-page .main-btn {
  width: 100%;
}

@media (width >= 1200px) {
  .cart-page .prod-header__warehouse-wrap {
    padding-left: 15px;
  }
}

.cart-page .prod-header__warehouse-wrap .prod-header__warehouse {
  flex-wrap: nowrap;
  font-size: 11px;
}

.cart-page .prod-header__warehouse-wrap .prod-header__warehouse svg {
  width: 15px;
  height: 15px;
}

@media (width >= 1200px) {
  .cart-page .prod-header__warehouse-wrap .prod-header__warehouse svg {
    width: 13px;
    height: 13px;
  }

  .cart-page .prod-header__warehouse-wrap .prod-header__warehouse {
    font-size: 13px;
  }
}

.cart-page__back-btn {
  text-transform: capitalize;
  color: var(--gd-black);
  background-color: #0000;
  border: none;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.cart-page__back-btn svg {
  fill: var(--gd-black);
  width: 8px;
  height: 8px;
  transform: rotate(180deg);
}

.cart-page__back-btn:hover {
  text-decoration: underline;
}

.cart-page__wrap {
  margin-top: 50px;
}

.cart-page .section-title {
  margin-bottom: 40px;
}

@media (width >= 1200px) {
  .cart-page .section-title {
    margin-bottom: 0;
  }
}

.cart-page .alert-danger {
  margin-top: 30px;
}

.cart-page .h1 {
  text-transform: capitalize;
  font-size: 23px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cart-page .h1 {
    font-size: 32px;
  }
}

.cart-page .h2 {
  margin-bottom: 30px;
}

.cart-page .btn {
  width: 100%;
}

.cart-page .table {
  background-color: var(--gd-white);
  border-color: var(--grey-for-lines);
  margin: 40px 0;
}

.cart-page .table .input {
  font-size: 14px;
}

.cart-page .table.cart-page__sub-table {
  border: 1px solid var(--grey-for-lines);
  margin: 0 0 15px;
}

.cart-page .table-bordered td {
  border: none;
  border-right: 1px solid var(--grey-for-lines);
}

.cart-page .cartTable--column {
  border-right: 1px solid var(--grey-for-lines);
}

.cart-page tbody td {
  padding: 10px;
}

@media (width >= 1200px) {
  .cart-page tbody td {
    padding: 25px;
  }

  .cart-page tbody td.cartTable--column-image + td {
    padding-left: 10px;
  }
}

.cart-page tbody td a {
  text-decoration: none;
}

.cart-page tbody td .cart-page__product-title {
  color: var(--gd-black);
  text-transform: capitalize;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
}

@media (width >= 1200px) {
  .cart-page tbody td .cart-page__product-title {
    margin: 0 0 6px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 19px;
  }
}

.cart-page tbody td .cart-page__product-brand {
  color: var(--gd-black);
  text-transform: capitalize;
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
}

@media (width >= 1200px) {
  .cart-page tbody td .cart-page__product-brand {
    margin: 0 0 6px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 19px;
  }
}

.cart-page tbody td .small {
  color: var(--dark-grey-for-text);
  font-size: 8px;
  font-style: italic;
  font-weight: 300;
  line-height: 10px;
}

@media (width >= 1200px) {
  .cart-page tbody td .small {
    font-size: 12px;
    line-height: 14px;
  }
}

.cart-page tbody td .small:last-child {
  margin-bottom: 0;
}

.cart-page tbody td .fa-trash-alt {
  color: var(--grey-for-lines);
  font-size: 13px;
}

.cart-page thead th {
  border: none;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page thead th {
    padding: 15px 25px;
    font-size: 17px;
  }
}

.cart-page .cart-page__sub-head {
  background-color: #0000;
}

.cart-page .cart-page__sub-head td {
  text-transform: capitalize;
  color: var(--gd-black);
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500 !important;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-head td {
    font-size: 17px;
  }
}

.cart-page .cart-page__sub-head th {
  font-weight: 500 !important;
}

.cart-page .cart-page__sub-head td {
  color: var(--gd-black);
  text-transform: capitalize;
  font-weight: 600;
}

.cart-page .cart-page__sub-footer {
  background-color: var(--gd-black);
  text-transform: capitalize;
  font-weight: 600;
}

.cart-page .cart-page__sub-footer th, .cart-page .cart-page__sub-footer td {
  color: var(--gd-white);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize !important;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-footer th, .cart-page .cart-page__sub-footer td {
    font-size: 20px;
  }
}

.cart-page .cartTable--column-image {
  vertical-align: top;
  border-right: none;
}

.cart-page .cartTable--column-image img {
  min-width: 30px;
}

@media (width >= 1200px) {
  .cart-page .cartTable--column-image img {
    max-width: 80px;
  }
}

.cart-page .cartTable--column-image + td {
  border-left: none;
}

.cart-page .cartTable--heading {
  border: 1px solid var(--grey-for-lines);
  background-color: var(--gd-gray-light);
  color: var(--gd-black);
  text-transform: capitalize;
  font-size: 8px;
  font-weight: 500;
}

@media (width >= 768px) {
  .cart-page .cartTable--heading {
    font-size: 15px;
  }
}

@media (width >= 1200px) {
  .cart-page .cartTable--heading {
    font-size: 17px;
  }
}

.cart-page .cartTable--heading-remove {
  width: 60px;
}

@media (width >= 1200px) {
  .cart-page .cartTable--heading-price, .cart-page .cartTable--heading-quantity {
    width: 150px;
  }
}

.cart-page .card {
  border-color: var(--grey-for-lines);
  border-radius: 0;
  margin-bottom: 40px;
}

.cart-page .card .main-btn {
  width: 100%;
}

.cart-page .card .btn {
  background-color: var(--grey-for-lines) !important;
  color: var(--gd-black) !important;
}

.cart-page .card p, .cart-page .card label {
  text-transform: capitalize;
}

.cart-page .card .card-header {
  background-color: var(--gd-gray-light);
  border-radius: 0;
  padding: 17px 15px;
}

@media (width >= 1200px) {
  .cart-page .card .card-header {
    padding: 17px 25px;
  }
}

.cart-page .card .card-title {
  text-transform: capitalize;
  color: var(--gd-black);
  margin: 0;
  font-size: 16px;
  line-height: 1;
}

@media (width >= 1200px) {
  .cart-page .card .card-title {
    font-size: 17px;
  }
}

.cart-page .card .card-body {
  padding: 17px 25px;
}

@media (width >= 1200px) {
  .cart-page .card .card-body {
    padding: 25px;
  }
}

.cart-page .card .card-body p {
  margin-bottom: 13px;
  font-size: 15px;
  line-height: 1;
}

.cart-page .card .card-body .btn {
  border-radius: 0;
  font-size: 16px;
  text-transform: capitalize !important;
  background-color: #0000 !important;
  font-weight: 400 !important;
}

.cart-page .card .card-body .btn:hover {
  border: 1px solid var(--gd-gray-light) !important;
  background-color: var(--gd-gray-light) !important;
  color: var(--gd-black) !important;
}

.cart-page .card .card-body .form-control, .cart-page .card .card-body .input {
  border: 1px solid var(--grey-for-lines) !important;
  border-radius: 0 !important;
  height: 45px !important;
}

.cart-page .card--discount-coupon .form-group {
  width: 100%;
}

.cart-page .card--discount-coupon .form-group input {
  height: 50px !important;
}

@media (width >= 1200px) {
  .cart-page__img-wrap {
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
}

.cart-page__img-wrap .img-fluid {
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  padding: 10px;
}

@media (width >= 1200px) {
  .cart-page__header {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .cart-page__header .btn {
    width: calc(50% - 6px);
  }
}

.cart-page__cell-price {
  text-align: center;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

@media (width >= 1200px) {
  .cart-page__cell-price {
    font-size: 14px;
    line-height: 16px;
  }
}

.cart-page__cell-total {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

@media (width >= 1200px) {
  .cart-page__cell-total {
    font-size: 18px;
    line-height: 19px;
  }
}

.cart-page__delete-btn {
  margin: auto;
}

.cart-page__delete-btn svg {
  fill: var(--grey-for-lines);
  width: 20px;
  height: 20px;
}

.cart-page__btns-left {
  margin-bottom: 12px;
}

@media (width >= 1200px) {
  .cart-page__btns-left {
    width: 323px;
    margin-bottom: 0;
  }
}

.cart-page__btns-wrap {
  margin-bottom: 40px;
  padding: 30px 0;
}

@media (width >= 1200px) {
  .cart-page__btns-wrap {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 0;
    display: flex;
  }

  .cart-page__btns-wrap .btn {
    width: calc(50% - 6px);
  }

  .cart-page__btns-right {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    width: 335px;
    display: flex;
  }

  .cart-page__btns-right .btn:last-child {
    margin-left: 12px;
  }
}

.cart-page .cart-page__sub-table td, .cart-page .cart-page__sub-table th {
  vertical-align: middle;
  text-transform: capitalize;
  padding: 17px 15px;
  font-size: 17px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cart-page .cart-page__sub-table td, .cart-page .cart-page__sub-table th {
    padding: 17px 25px;
  }
}

.table th, .table td {
  border-top: 1px solid var(--grey-for-lines);
}

.table th tr, .table td tr {
  width: 80%;
}

.cart-page__btn {
  background: #ffc439;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  display: block;
}

@media (width >= 1200px) {
  .cart-page__bottom {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
}

@media (width >= 768px) {
  .cart-page__cards {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
}

@media (width >= 1200px) {
  .cart-page__cards {
    width: calc(100% - 850px);
    margin-right: 12px;
  }
}

@media (width <= 1350px) and (width >= 1200px) {
  .cart-page__cards {
    width: calc(100% - 720px);
  }
}

@media (width >= 768px) {
  .cart-page__cards .card {
    width: calc(50% - 6px);
  }
}

@media (width >= 1200px) {
  .cart-page__sub-table-wrap {
    width: 830px;
  }
}

@media (width <= 1350px) and (width >= 1200px) {
  .cart-page__sub-table-wrap {
    width: 700px;
  }
}

@media (width >= 768px) {
  .cart-page__dics-form {
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    display: flex;
  }
}

.cart-page__empty-cart {
  width: 100%;
  margin-top: 50px;
  padding: 0 15px;
}

@media (width >= 1200px) {
  .cart-page__empty-cart {
    max-width: 1690px;
    margin: 100px auto 0;
  }
}

#n-checkout .breadcrumbs__list {
  cursor: pointer;
}

#n-checkout .select, #n-checkout .input, #n-checkout select {
  border: 1px solid var(--grey-for-lines);
  border-radius: 0;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  font-size: 16px;
}

@media (width >= 1200px) {
  #n-checkout .select, #n-checkout .input, #n-checkout select {
    height: 45px;
    font-size: 18px;
  }
}

#n-checkout .select, #n-checkout select {
  color: var(--dark-grey-for-text);
}

#n-checkout .radio-label {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 7px 0 0;
  display: flex;
}

#n-checkout .radio-label input {
  margin: 0 5px 0 0;
}

#n-checkout .input {
  color: var(--gd-black);
  text-align: center;
}

#n-checkout .label {
  text-transform: capitalize;
  margin: 0 0 13px;
  font-size: 16px;
}

#n-checkout .btn-success {
  height: 50px;
  font-size: 22px;
  font-weight: 500;
}

@media (width >= 1200px) {
  #n-checkout .btn-success {
    font-size: 24px;
  }
}

#n-checkout .btn-outline-secondary, #n-checkout .btn-primary {
  border: 1px solid var(--grey-for-lines);
  text-transform: capitalize;
  color: var(--gd-black);
  text-transform: capitalize;
  background-color: #0000;
  border-radius: 3px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  height: 50px !important;
}

#n-checkout .btn-outline-secondary:hover, #n-checkout .btn-primary:hover {
  background-color: var(--gd-yellow);
  color: var(--gd-white);
}

#n-checkout .btn-outline-secondary:hover .fa-reply, #n-checkout .btn-primary:hover .fa-reply {
  color: var(--gd-white);
}

@media (width >= 1200px) {
  #n-checkout .btn-outline-secondary, #n-checkout .btn-primary {
    height: 50px;
    font-size: 18px;
  }
}

#n-checkout .btn-outline-secondary .fa-reply, #n-checkout .btn-primary .fa-reply {
  color: var(--gd-black);
}

#n-checkout .btn-primary {
  color: var(--grey-for-lines);
  background-color: var(--gd-black);
  height: 50px;
}

#n-checkout .cart-page__cell-center {
  text-align: center;
}

#n-checkout .cart-page__cell-center .cart-qty {
  border: 1px solid var(--grey-for-lines);
  border-radius: 3px;
  height: 45px;
  padding: 0;
}

@media (width >= 1200px) {
  #n-checkout .cart-page__cell-center .cart-qty {
    width: 100px;
  }
}

.cart-page__shipping-options h4 {
  margin-top: -3px;
  font-size: 14px;
  font-weight: 400;
}

@media (width >= 1200px) {
  .cart-page__shipping-options h4 {
    font-size: 16px;
  }
}

.cart-page__shipping-options p {
  color: var(--gd-black);
  margin-top: 15px;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}

/*# sourceMappingURL=main.css.map */
