@charset "UTF-8";
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeuePro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html, body, a, p {
  font-family: "Onest", sans-serif;
}

:root {
  --color-light: rgba(255, 255, 255, 1);
  --color-dark: rgba(11, 11, 24, 1);
  --color-grey: rgba(242, 245, 249, 1);
  --color-blue: rgba(71, 145, 231, 1);
  --background-blue: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  --font-family-base: "Onest", sans-serif;
  --container-width: 1200px;
  --container-padding-x: 15px;
  --transition-duration: 0.2s;
  --100vw: calc(100vw - var(--scrollbar-width, 0px));
  --header-topbar-bg: rgba(11, 11, 24, 1);
  --header-topbar-text: rgba(255, 255, 255, 0.75);
  --header-topbar-text-hover: rgba(255, 255, 255, 1);
  --header-topbar-height: 34px;
  --header-main-bg: rgba(255, 255, 255, 1);
  --header-main-height: 78px;
  --catalog-bg: rgba(255, 255, 255, 1);
  --catalog-item-hover: var(--background-blue);
  --catalog-item-active-bg: var(--color-dark);
  --catalog-sub-bg: #bfe5f8;
  --search-border: rgba(230, 236, 245, 1);
  --search-btn-bg: var(--color-dark);
  --search-btn-text: #fff;
  --mobile-menu-width: 320px;
}

.product-card__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.products-tabs {
  padding: 35px 0;
}
@media (max-width: 768px) {
  .products-tabs {
    padding: 25px 0;
  }
}
.products-tabs__wrap {
  position: relative;
}
.products-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  position: relative;
}
@media (max-width: 768px) {
  .products-tabs__nav {
    padding-left: 0;
    scrollbar-width: none;
  }
  .products-tabs__nav::-webkit-scrollbar {
    display: none;
  }
}
.products-tabs__tab {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 35px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(11, 11, 24, 0.45);
  white-space: nowrap;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  background-color: rgb(235, 241, 248);
  border-radius: 24px 24px 0 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 768px) {
  .products-tabs__tab {
    padding: 10px 18px;
  }
}
.products-tabs__tab span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 2px;
}
.products-tabs__tab:hover {
  color: rgba(11, 11, 24, 0.8);
}
.products-tabs__tab::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 38px;
  opacity: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 991px) {
  .products-tabs__tab::before {
    height: 65%;
    top: 27px;
  }
}
.products-tabs__tab.is-active {
  color: rgb(11, 11, 24);
  background: #fff;
  border-left: 1px solid rgb(52, 177, 219);
  border-top: 1px solid rgb(52, 177, 219);
  border-right: 1px solid rgb(52, 177, 219);
}
.products-tabs__tab.is-active::before {
  content: "";
  opacity: 1;
}
.products-tabs__panels {
  background: #fff;
  border-radius: 0px 25px 25px 25px;
  padding: 50px 50px 43px 50px;
  border: 1px solid rgb(52, 177, 219);
}
@media (max-width: 768px) {
  .products-tabs__panels {
    padding: 16px 12px;
  }
}
.products-tabs__panel[hidden] {
  display: none;
}
.products-tabs__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .products-tabs__grid {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .products-tabs__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-tabs__grid {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 420px) {
  .products-tabs__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.product-card {
  list-style: none;
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(197, 197, 226, 0.28);
          box-shadow: 0px 0px 18px 0px rgba(197, 197, 226, 0.28);
  padding: 10px;
  border-radius: 30px;
  position: relative;
}
@media (min-width: 1100px) {
  .product-card:hover {
    -webkit-box-shadow: 0px 0px 38px 0px rgba(171, 204, 237, 0.56);
            box-shadow: 0px 0px 38px 0px rgba(171, 204, 237, 0.56);
  }
}
.product-card .product-card__btn {
  width: 100%;
  position: relative;
}
.product-card .product-card__btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.product-card .product-card__btn span, .product-card .product-card__btn svg {
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.product-card .product-card__btn svg path {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.product-card .product-card__btn:hover::before {
  content: "";
  opacity: 1;
}
.product-card .product-card__btn:hover span, .product-card .product-card__btn:hover svg {
  color: rgb(255, 255, 255);
}
.product-card .product-card__btn:hover svg path {
  fill: rgb(255, 255, 255);
}
.product-card .product-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 10px;
}
.product-card .product-card__content .product-card__actions {
  padding: 0;
}
.product-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
  z-index: 3;
}
@media (max-width: 480px) {
  .product-card__badge {
    font-size: 11px;
    padding: 5px 8px;
  }
}
.product-card__badge--new {
  background-color: #B8F343;
  color: #0B0B18;
}
.product-card__badge--sale {
  background-color: #FFC447;
  color: #0B0B18;
}
.product-card__badge--in-stock {
  background-color: #B8F343;
  color: #0B0B18;
}
.product-card__badge--out-of-stock {
  background-color: #E5EAF2;
  color: #9CA3AF;
}
.product-card__image-wrap {
  background-color: #F3F5F8;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .product-card__image-wrap {
    border-radius: 12px;
    margin-bottom: 12px;
  }
}
.product-card__image-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  height: 200px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 991px) {
  .product-card__image-link {
    padding: 0;
    height: 160px;
  }
}
.product-card__image-link:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.product-card__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "Bebas Neue", sans-serif;
}
.product-card__rating-star {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.product-card__rating-value {
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.product-card__title {
  margin: 0 0 27px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.product-card__title a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: none;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  font-family: "Onest";
  overflow: hidden;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.product-card__title a:hover {
  color: #4691E7;
}
.product-card__price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  min-height: 22px;
}
.product-card__price {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: rgb(11, 11, 24);
  letter-spacing: 0.5px;
}
.product-card__price .woocommerce-Price-amount {
  font-family: inherit;
}
.product-card__price .woocommerce-Price-currencySymbol {
  font-family: inherit;
  margin-left: 2px;
}
.product-card__discount {
  background-color: #B8F343;
  color: #0B0B18;
  font-family: "Bebas Neue", sans-serif;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-weight: 700;
  font-size: 14px;
  padding: 1px 5px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.1px;
  margin-bottom: 2px;
}
.product-card__old-price {
  color: rgba(0, 0, 0, 0.306);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: line-through;
  line-height: 1;
  width: 100%;
  letter-spacing: 0.5px;
}
.product-card__old-price .woocommerce-Price-amount,
.product-card__old-price .woocommerce-Price-currencySymbol {
  font-family: inherit;
}
.product-card__actions {
  margin-top: auto;
  padding: 0 10px;
  margin-bottom: 20px;
}
.product-card__btn {
  background-color: #E8EFF7;
  color: #205074;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  .product-card__btn {
    padding: 12px 14px;
  }
}
.product-card__btn-text {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 2px;
}
.product-card__btn-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.product-card__btn--disabled {
  background-color: #F3F5F8;
  color: rgba(11, 11, 24, 0.35);
  pointer-events: none;
  cursor: not-allowed;
}

.popular-products {
  padding: 30px 0 30px 0;
  margin-top: 45px;
  background-color: rgb(241, 244, 249);
  border-radius: 60px;
}
@media (max-width: 768px) {
  .popular-products {
    padding: 30px 0;
    border-radius: 30px;
  }
}
.popular-products__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .popular-products__top {
    margin-bottom: 20px;
  }
}
.popular-products__title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgb(11, 11, 24);
  line-height: 1;
  margin: 0;
}
.popular-products__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.popular-products__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.popular-products__arrow svg {
  width: 48px;
  height: 48px;
  display: block;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.popular-products__arrow svg circle {
  -webkit-transition: stroke-opacity 0.2s ease;
  transition: stroke-opacity 0.2s ease;
}
.popular-products__arrow:hover svg circle {
  stroke-opacity: 0.5;
}
.popular-products__arrow:active {
  -webkit-transform: scale(0.93);
          transform: scale(0.93);
}
.popular-products__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.popular-products__swiper {
  overflow: hidden;
}
.popular-products .popular-products__swiper {
  margin: -25px;
  padding: 25px 25px 25px 25px;
}
.popular-products__list {
  padding: 20px 0;
}
@media (max-width: 991px) {
  .popular-products__list {
    padding: 0;
  }
}
.popular-products__list .product-card {
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(164, 164, 166, 0.207) !important;
          box-shadow: 0px 0px 10px 0px rgba(164, 164, 166, 0.207) !important;
}
.popular-products__list .product-card:hover {
  -webkit-box-shadow: 0px 0px 38px 0px rgba(171, 204, 237, 0.76) !important;
          box-shadow: 0px 0px 38px 0px rgba(171, 204, 237, 0.76) !important;
}

.popular-products__swiper .swiper-slide {
  height: auto;
}
.popular-products__swiper .swiper-slide.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cta {
  margin-bottom: 15px;
  margin-top: 50px;
}
.cta__content {
  background-color: rgb(11, 11, 24);
  border-radius: 30px;
  padding: 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .cta__content {
    padding: 40px 40px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .cta__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 36px 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .cta__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    border-radius: 24px;
  }
}
.cta__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 991px) {
  .cta__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .cta__title {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.cta__title h2 {
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.cta__title h2 span {
  color: rgb(71, 145, 231);
}
.cta__desp {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 320px;
          flex: 0 1 320px;
}
@media (max-width: 991px) {
  .cta__desp {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
@media (max-width: 768px) {
  .cta__desp {
    width: 100%;
  }
}
.cta__desp p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.cta__form {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .cta__form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .cta__form {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    border: none;
    gap: 10px;
  }
}
.cta__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 60px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  color: rgb(255, 255, 255);
  font-size: 17px;
  font-family: "Onest", sans-serif;
  background-color: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
.cta__input::placeholder {
  color: rgba(0, 0, 0, 0.546) !important;
}
@media (max-width: 768px) {
  .cta__input {
    height: 52px;
    width: 100%;
    border-radius: 7px;
  }
}
.cta__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-radius: 7px;
  right: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 50px;
  padding: 0 20px;
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  border: none;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  line-height: 1;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  font-family: "Bebas Neue", sans-serif;
}
.cta__btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .cta__btn {
    width: 100%;
    height: 52px;
    position: relative;
    border-radius: 7px;
    padding: 0 20px;
    right: 0;
    top: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.margin-top {
  margin-top: 135px !important;
}

@media (max-width: 991px) {
  .margin-top {
    margin-top: 100px !important;
  }
}
@media (max-width: 768px) {
  .margin-top {
    margin-top: 100px !important;
  }
}
.cat-breadcrumbs {
  margin-bottom: 35px !important;
}

.single-product__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.08fr) 25px minmax(0, 0.96fr) 25px minmax(0, 0.72fr);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.96fr) minmax(0, 0.72fr);
  gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1240px) {
  .single-product__layout {
    -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .single-product__layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-product__main h1 {
  font-size: 36px;
  line-height: 1.03;
  margin-bottom: 16px;
  text-transform: uppercase;
  max-width: 560px;
}
@media (max-width: 768px) {
  .single-product__main h1 {
    margin-bottom: 12px;
  }
}

.single-breadcrumbs {
  margin-bottom: 14px;
}
.single-breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.single-breadcrumbs li {
  list-style: none;
  position: relative;
  color: rgba(32, 80, 116, 0.7);
  font-size: 14px;
  line-height: 1.3;
}
.single-breadcrumbs li:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(32, 80, 116, 0.45);
  font-size: 14px;
}
.single-breadcrumbs a {
  color: rgba(32, 80, 116, 0.82);
}
.single-breadcrumbs a:hover {
  color: rgb(32, 80, 116);
  text-decoration: underline;
}
.single-breadcrumbs span {
  color: rgba(32, 80, 116, 0.58);
}

.single-gallery-card {
  position: relative;
  border-radius: 40px;
  background-color: rgb(242, 245, 249);
}
.single-gallery-card img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .single-gallery-card img {
    height: 200px;
  }
}
.single-gallery-card__badge {
  position: absolute;
  right: 20px;
  top: 20px;
  min-height: 20px;
  padding: 4px 10px;
  border-radius: 5px;
  background-color: rgb(255, 203, 61);
  color: rgb(0, 0, 0);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .single-gallery-card {
    border-radius: 24px;
  }
}

.single-specs {
  border: 1px solid rgb(51, 178, 219);
  border-radius: 40px;
  padding: 30px 25px;
  background-color: rgb(255, 255, 255);
}
.single-specs h2 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1;
}
.single-specs__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-specs__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.single-specs__list li:last-child {
  margin-bottom: 0;
}
.single-specs__list li span,
.single-specs__list li strong {
  min-height: 34px;
  border-radius: 8px;
  padding: 6px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  letter-spacing: 0.3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 1.3;
}
.single-specs__list li span {
  max-width: 65%;
  font-weight: 400;
  font-family: "Onest", sans-serif;
  color: rgba(11, 11, 24, 0.82);
  background-color: rgb(242, 245, 249);
}
.single-specs__list li strong {
  margin-left: auto;
  text-align: right;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgb(11, 11, 24);
}
.single-specs__list--secondary {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(51, 178, 219);
}
.single-specs__list--secondary li span {
  background-color: rgb(234, 238, 244);
  color: rgba(11, 11, 24, 0.7);
}
.single-specs__list--secondary li strong {
  color: rgba(11, 11, 24, 0.7);
  background-color: rgba(255, 255, 255, 0.75);
}
.single-specs__more {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 175px;
  grid-template-rows: 175px;
  position: relative;
  -webkit-transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease;
  transition: grid-template-rows 0.35s ease, -ms-grid-rows 0.35s ease;
}
.single-specs__more::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  background: linear-gradient(178.88deg, rgba(255, 255, 255, 0) 0.96%, #FFFFFF 54.58%);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.single-specs__more-inner {
  overflow: hidden;
}
.single-specs__toggle {
  border: none;
  background-color: transparent;
  color: rgb(70, 145, 231);
  width: 100%;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  padding: 6px 0;
  margin-top: 20px;
}
.single-specs__toggle:hover {
  color: rgb(32, 80, 116);
}
.single-specs.is-expanded .single-specs__more {
  -ms-grid-rows: 350px;
  grid-template-rows: 350px;
}
@media (max-width: 1240px) {
  .single-specs {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  .single-specs {
    border-radius: 24px;
    padding: 16px;
  }
  .single-specs h2 {
    margin-bottom: 10px;
  }
  .single-specs__list li span,
  .single-specs__list li strong {
    width: 100%;
    max-width: 100%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

article.single-specs.is-expanded .single-specs__more::before {
  content: "";
  opacity: 0;
}

.single-buy {
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.65);
}
@media (max-width: 991px) {
  .single-buy {
    width: 100%;
    padding: 0;
  }
}
.single-buy__stock {
  min-height: 20px;
  padding: 2px 10px;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  color: rgb(11, 11, 24);
  background-color: rgb(199, 242, 70);
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.single-buy__price-wrap {
  margin-top: 30px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 10px;
}
.single-buy .single-buy__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.single-buy__price {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 1px;
  color: rgb(11, 11, 24);
  font-weight: 700;
}
.single-buy__old-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3px;
}
.single-buy__discount {
  min-height: 19px;
  border-radius: 3px;
  line-height: 1;
  padding: 1px 7px;
  background-color: rgb(184, 243, 67);
  color: rgb(11, 11, 24);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.single-buy__old-price {
  color: rgba(11, 11, 24, 0.45);
  text-decoration: line-through;
  font-size: 22px;
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
}
.single-buy__tax {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgb(119, 129, 151);
}
.single-buy__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.single-buy__qty {
  width: 107px;
  min-height: 40px;
  border-radius: 7px;
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.45);
          box-shadow: 0px 0px 38px 0px rgba(197, 197, 226, 0.45);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}
.single-buy__qty button,
.single-buy__qty span {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Onest", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  background-color: transparent;
  color: rgb(11, 11, 24);
}
.single-buy__qty button {
  cursor: pointer;
}
.single-buy__qty button:hover {
  background-color: rgb(255, 255, 255);
}
.single-buy__qty span {
  font-size: 24px;
}
.single-buy__cart-btn {
  min-height: 40px;
  border-radius: 10px;
  width: 170px;
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
  position: relative;
  color: rgb(255, 255, 255);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .single-buy__cart-btn {
    width: 100%;
  }
}
.single-buy__cart-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(11, 11, 24) !important;
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (min-width: 1200px) {
  .single-buy__cart-btn:hover::before {
    content: "";
    opacity: 1;
  }
}
.single-buy__cart-btn span, .single-buy__cart-btn svg {
  position: relative;
  z-index: 3;
  color: #fff;
}
.single-buy__cart-btn:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.single-buy__cart-btn svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single-buy__features {
  margin: 0;
  padding: 60px 0 8px;
  position: relative;
}
.single-buy__features::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 29px;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#33B2DB), to(#4691E7));
  background: linear-gradient(90deg, #33B2DB 0%, #4691E7 100%);
}
.single-buy__features li {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.35;
  color: rgb(119, 129, 151);
}
.single-buy__features li svg {
  min-width: 30px;
}
.single-buy__features li:last-child {
  margin-bottom: 0;
  color: rgb(70, 74, 87);
}
.single-buy__features li strong {
  color: rgb(11, 11, 24);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.single-buy__whatsapp {
  margin-top: 12px;
  width: 100%;
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid rgb(0, 201, 75);
  color: rgb(11, 11, 24);
  font-size: 12px;
  line-height: 1.2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 10px;
  gap: 10px;
}
.single-buy__whatsapp:hover {
  background-color: rgba(34, 173, 84, 0.08);
}
@media (max-width: 1240px) {
  .single-buy {
    grid-column: 1/-1;
    -ms-grid-row: 2;
    grid-row: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .single-buy__stock, .single-buy__price-wrap, .single-buy__actions {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .single-buy__features, .single-buy__whatsapp {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .single-buy__features {
    margin-top: 2px;
  }
  .single-buy__whatsapp {
    margin-top: 0;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}
@media (max-width: 768px) {
  .single-buy {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .single-buy__stock, .single-buy__price-wrap, .single-buy__actions, .single-buy__features, .single-buy__whatsapp {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .single-buy__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-buy__qty {
    width: 100%;
  }
}

.single-tabs {
  padding-bottom: 6px;
}
.single-tabs .products-tabs__wrap {
  overflow: visible;
}
.single-tabs .products-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-tabs .products-tabs__tab {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 14px 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(11, 11, 24, 0.45);
  white-space: nowrap;
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  background-color: rgb(235, 241, 248);
  border-radius: 16px 16px 0 0;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media (max-width: 768px) {
  .single-tabs .products-tabs__tab {
    padding: 10px 18px;
  }
}
.single-tabs .products-tabs__tab span {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 2px;
}
.single-tabs .products-tabs__tab:hover {
  color: rgba(11, 11, 24, 0.8);
}
.single-tabs .products-tabs__tab.is-active {
  color: rgb(11, 11, 24);
  background: #fff;
  border-left: 1px solid rgb(52, 177, 219);
  border-top: 1px solid rgb(52, 177, 219);
  border-right: 1px solid rgb(52, 177, 219);
}
.single-tabs .products-tabs__panel.is-active {
  display: block;
}
.single-tabs__content h3 {
  margin-bottom: 25px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 0.96;
  max-width: 760px;
}
.single-tabs__content h3 span {
  color: rgb(71, 145, 231);
}
.single-tabs__content h4 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.05;
  font-family: "Onest", sans-serif;
  color: rgb(11, 11, 24);
  font-weight: 700;
  text-transform: none;
}
.single-tabs__content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.35;
  color: rgb(0, 0, 0);
  letter-spacing: -0.01em;
}
.single-tabs__content p:last-child {
  margin-bottom: 0;
}

.single-page .cta {
  margin-top: 32px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-page .cta {
    margin-top: 24px;
  }
}

.single-related.popular-products {
  margin-top: 26px;
  padding: 8px 0 0;
  background: transparent;
  border-radius: 0;
}
@media (max-width: 768px) {
  .single-related.popular-products {
    margin-top: 22px;
  }
}
.single-related.popular-products .popular-products__title {
  font-size: 56px;
}
.single-related.popular-products .popular-products__list {
  padding-top: 4px;
}

.popular-products {
  background-color: transparent;
}

section.popular-products.products-tabs {
  padding: 15px 0 30px 0;
}

/* clamp -> fixed font-size overrides */
@media (max-width: 1024px) {
  .products-tabs__tab { font-size: 18px; }
  .product-card__rating { font-size: 15px; }
  .product-card__rating-value { font-size: 14px; }
  .product-card__title a { font-size: 18px; }
  .product-card__price { font-size: 23px; }
  .product-card__discount { font-size: 13px; }
  .product-card__old-price { font-size: 16px; }
  .popular-products__title { font-size: 29px; }
  .cta__title h2 { font-size: 34px; }
  .cta__desp p { font-size: 15px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .single-product__main h1 { font-size: 29px; }
  .single-breadcrumbs li { font-size: 13px; }
  .single-gallery-card__badge { font-size: 13px; }
  .single-specs h2 { font-size: 20px; }
  .single-specs__list li strong { font-size: 13px; }
  .single-specs__toggle { font-size: 13px; }
  .single-buy__stock { font-size: 13px; }
  .single-buy__price { font-size: 30px; }
  .single-buy__discount { font-size: 16px; }
  .single-buy__old-price { font-size: 18px; }
  .single-buy__tax { font-size: 13px; }
  .single-buy__qty span { font-size: 22px; }
  .single-buy__cart-btn { font-size: 15px; }
  .single-buy__features li { font-size: 11px; }
  .single-buy__features li strong { font-size: 18px; }
  .single-buy__whatsapp { font-size: 11px; }
  .single-tabs .products-tabs__tab { font-size: 16px; }
  .single-tabs__content h3 { font-size: 26px; }
  .single-tabs__content h4 { font-size: 20px; }
  .single-tabs__content p { font-size: 15px; }
  .single-related.popular-products .popular-products__title { font-size: 42px; }
}
@media (max-width: 767px) {
  .products-tabs__tab { font-size: 16px; }
  .product-card__rating { font-size: 14px; }
  .product-card__rating-value { font-size: 14px; }
  .product-card__title a { font-size: 17px; }
  .product-card__price { font-size: 21px; }
  .product-card__discount { font-size: 12px; }
  .product-card__old-price { font-size: 15px; }
  .popular-products__title { font-size: 27px; }
  .cta__title h2 { font-size: 30px; }
  .cta__desp p { font-size: 14px; }
  .cta__input { font-size: 16px; }
  .cta__btn { font-size: 15px; }
  .single-product__main h1 { font-size: 27px; }
  .single-breadcrumbs li { font-size: 12px; }
  .single-gallery-card__badge { font-size: 12px; }
  .single-specs h2 { font-size: 19px; }
  .single-specs__list li strong { font-size: 12px; }
  .single-specs__toggle { font-size: 12px; }
  .single-buy__stock { font-size: 12px; }
  .single-buy__price { font-size: 28px; }
  .single-buy__discount { font-size: 15px; }
  .single-buy__old-price { font-size: 17px; }
  .single-buy__tax { font-size: 13px; }
  .single-buy__qty span { font-size: 21px; }
  .single-buy__cart-btn { font-size: 14px; }
  .single-buy__features li { font-size: 10px; }
  .single-buy__features li strong { font-size: 17px; }
  .single-buy__whatsapp { font-size: 10px; }
  .single-tabs .products-tabs__tab { font-size: 15px; }
  .single-tabs__content h3 { font-size: 25px; }
  .single-tabs__content h4 { font-size: 19px; }
  .single-tabs__content p { font-size: 14px; }
  .single-related.popular-products .popular-products__title { font-size: 39px; }
}
