@font-face {
  font-family: "Decathlon-VF-Regular";
  src: url("../fonts/decathlon-vf.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Decathlon-VF-Medium";
  src: url("../fonts/decathlon-vf.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Decathlon-VF-SemiBold";
  src: url("../fonts/decathlon-vf.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Decathlon-VF-Bold";
  src: url("../fonts/decathlon-vf.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Decathlon-VF-Bold";
  src: url("../fonts/decathlon-vf.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "vitamix";
  src: url("../fonts/vitamix.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@media (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 600px) {
  .mobile-only-s2 {
    display: none !important;
  }
}

@media (max-width: 599.98px) {
  .desktop-only-s2 {
    display: none !important;
  }
}

.main-container {
  max-width: 1200px;
  margin: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 64px;
}
@media (max-width: 1199.98px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.text-uppercase {
  text-transform: uppercase;
}

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

.js-fixed {
  overflow: hidden;
}

.js-block {
  display: block !important;
}

.js-flex {
  display: flex !important;
}

.js-none {
  display: none !important;
}

.top-cold-content {
  position: relative;
}
.top-cold-content .top-cold-content-full {
  position: relative;
  overflow: hidden;
  color: #616161;
}
.top-cold-content .top-cold-content-full::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.5em;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.top-cold-content .top-cold-content-full.expanded {
  max-height: none;
  overflow: visible;
}
.top-cold-content .top-cold-content-full.expanded::after {
  display: none;
}

.sticky-headings {
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 1;
}
.sticky-headings::-webkit-scrollbar {
  display: none;
}
.sticky-headings::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  z-index: 10;
}
.sticky-headings .sticky-title {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.sticky-headings .sticky-title span.sticky-heading-link {
  padding: 10px 20px;
  border: 2px solid #E1E0DF;
  border-radius: 999px;
  color: #101010;
  font-size: 14px;
  line-height: 1.4;
  text-transform: capitalize;
  font-family: "Decathlon-VF-Regular";
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sticky-headings .sticky-title span.sticky-heading-link:hover {
  border-color: #3643BA;
  color: #3643BA;
  font-weight: 600;
}
.sticky-headings .sticky-title span.sticky-heading-link.active {
  color: #3643BA;
  border-color: #3643BA;
  font-weight: 600;
  -webkit-animation: borderFillSpread 0.6s ease forwards;
          animation: borderFillSpread 0.6s ease forwards;
}
.sticky-headings {
  /*   @include media-down("m") {
         background: linear-gradient(to right, #FFFFFF 0%, #FFFFFF 80%, rgba(255, 255, 255, 0) 100%);
         gap: 12px;
         padding: 0;

         .sticky-title span.sticky-heading-link {
             padding: 9px 16px;
             font-size: 13px;
         }


     }


     @include media-down("s") {
         background: #FFFFFF;
         gap: 0;
         padding: 0;

         .sticky-title {
             flex: 1;
             justify-content: center;

             span.sticky-heading-link {
                 border: none;
                 border-radius: 0;
                 padding: 12px 16px;
                 font-size: 12px;
                 text-transform: capitalize;
                 color: #999999;
                 font-weight: 500;
                 border-bottom: 2px solid transparent;
                 transition: all 0.3s ease;

                 &:hover {
                     border-color: transparent;
                     color: #101010;
                 }

                 &.active {
                     color: #101010;
                     border-bottom-color: #3643BA;
                     font-weight: 600;
                     animation: none;
                     background: transparent;
                 }
             }
         }
     }

     @include media-down("xs") {
         gap: 0;
         padding: 0;

         .sticky-title {
             flex: 1;
             justify-content: center;

             span.sticky-heading-link {
                 border: none;
                 border-radius: 0;
                 padding: 12px 12px;
                 font-size: 11px;
                 text-transform: capitalize;
                 color: #999999;
                 font-weight: 500;
                 border-bottom: 2px solid transparent;
                 transition: all 0.3s ease;

                 &:hover {
                     border-color: transparent;
                     color: #101010;
                 }

                 &.active {
                     color: #101010;
                     border-bottom-color: #3643BA;
                     font-weight: 600;
                     animation: none;
                     background: transparent;
                 }
             }
         }
     }

      */
}

@-webkit-keyframes borderFillSpread {
  0% {
    border-color: #E1E0DF;
  }
  100% {
    border-color: #3643BA;
  }
}

@keyframes borderFillSpread {
  0% {
    border-color: #E1E0DF;
  }
  100% {
    border-color: #3643BA;
  }
}
.ls-link-section .link-section-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #101010;
  margin-bottom: 20px;
}
.ls-link-section .ls-link {
  border: 1px solid #E1E0DF;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  color: #101010;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ls-link-section .ls-link:hover {
  border-color: #101010;
  color: #101010;
}

.bottom-content .bottom-cold-content {
  color: #616161;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.container-read-more .read-more {
  font-size: 15px;
  line-height: 20px;
  color: #101010;
  transition: color 0.2s ease;
  font-family: "Decathlon-VF-Medium";
}
.container-read-more .read-more:hover {
  color: #2b2b2b;
  cursor: pointer;
}

.main-section .section {
  scroll-margin-top: 80px;
}

.section h2 {
  font-family: "Decathlon-VF-SemiBold";
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .section h2 {
    font-size: 26px;
  }
}

.description-title {
  font-family: "Decathlon-VF-SemiBold";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #101010;
}

.section {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.section.animate {
  opacity: 0;
  transform: translateY(14px);
}

.section.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section.animate.is-hidden {
  opacity: 0.35;
  transform: translateY(12px);
}

.sticky-logo {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sorting-buttons.is-stuck .sticky-logo {
  opacity: 1;
  transform: translateY(0);
}

.sticky-logo {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sorting-buttons.is-stuck .sticky-logo {
  opacity: 1;
  transform: translateY(0);
}

.hero-item {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.hero-item.reverse {
  flex-direction: column-reverse;
}
@media (max-width: 767.98px) {
  .hero-item.reverse {
    flex-direction: row;
  }
}

.advantages-wrapper {
  background: white;
}
.advantages-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.advantages-wrapper::-webkit-scrollbar-thumb {
  background-color: #d0d0d0;
  border-radius: 3px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.advantages-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #999999;
}
@media (max-width: 767.98px) {
  .advantages-wrapper {
    flex-direction: column;
    overflow-y: scroll;
    height: 300px;
    max-width: 100%;
  }
  .advantages-wrapper::-webkit-scrollbar {
    width: 8px;
  }
  .advantages-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .advantages-wrapper::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 3px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  .advantages-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #999999;
  }
}

.advantage-item {
  background-color: #F5F4F5;
  transition: all 0.3s ease;
}
.advantage-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  font-family: "Decathlon-VF-Regular";
  line-height: 1.5;
}
.advantage-item p {
  font-family: "Decathlon-VF-Regular";
  font-size: 14px;
  color: #616161;
  line-height: 1.5;
}

.product-price {
  font-family: "Decathlon-VF-Regular";
  font-size: 24px;
  font-weight: 700;
  color: #212529 !important;
  background-color: #ffcd4e;
}

.product-image-wrapper {
  overflow: visible;
  position: relative;
}
.product-image-wrapper .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 20px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .product-image-wrapper .img-overlay {
    padding: 15px 20px;
    position: -webkit-sticky;
    position: sticky;
  }
}
.product-image-wrapper .img-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Decathlon-VF-Regular";
  letter-spacing: 0.15em;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.98px) {
  .product-image-wrapper .img-title {
    font-size: 12px;
  }
}
.product-image-wrapper .inner-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-image-wrapper .inner-img-wrap img:first-child {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 250ms, filter 250ms;
  transform-origin: center top;
}
.product-image-wrapper .inner-img-wrap img:first-child:hover {
  cursor: zoom-in;
  transform: scale(1.05);
}
.product-image-wrapper .inner-img-wrap img:nth-child(2),
.product-image-wrapper .inner-img-wrap img:nth-child(3) {
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, filter 0.5s ease;
}
.product-image-wrapper .inner-img-wrap img:nth-child(2):hover,
.product-image-wrapper .inner-img-wrap img:nth-child(3):hover {
  transform: scale(1.2);
  z-index: 10;
}
.product-image-wrapper .inner-img-wrap::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  z-index: 11;
  pointer-events: none;
  border-top: 2px solid #0056b3;
  border-left: 2px solid #0056b3;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  opacity: 0;
}
.product-image-wrapper .inner-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  z-index: 11;
  pointer-events: none;
  border-bottom: 2px solid #0056b3;
  border-right: 2px solid #0056b3;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  opacity: 0;
}
.product-image-wrapper .inner-img-wrap:hover::before {
  width: 55px;
  height: 55px;
  opacity: 1;
}
.product-image-wrapper .inner-img-wrap:hover::after {
  width: 55px;
  height: 55px;
  opacity: 1;
}

.price-button-container .product-price {
  font-size: 1.5rem;
  font-weight: 600;
}

.p-style-css {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #101010;
  font-family: "Decathlon-VF-Regular";
}

.hero-full-bleed {
  background-color: #F5F5F5;
  box-shadow: 0 0 0 100vmax #F5F5F5;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  position: relative;
}

.sorting-buttons.is-stuck {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table-info {
  font-weight: 600;
  color: #101010;
  padding: 10px;
}

.comparator-table {
  border-collapse: collapse;
}

.table-images {
  padding-bottom: 30px;
  vertical-align: baseline;
}

.table-images .product-image-container img {
  -o-object-fit: fill !important;
     object-fit: fill !important;
  height: auto !important;
}

@media (max-width: 767.98px) {
  .comparator-container {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .comparator-container::-webkit-scrollbar {
    display: none;
  }
  .comparator-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

.section--classic_grid .products {
  width: 33.3%;
}
@media (max-width: 575.98px) {
  .section--classic_grid .products {
    width: auto;
  }
}

.attribute-values {
  border-bottom: 1px solid #E1E0DF;
}

.table-data:not(:last-child) {
  border-right: 1px solid #E1E0DF;
}
.table-data:hover {
  background-color: #F7F7F7;
}
.table-data {
  font-family: "Decathlon-VF-Regular";
}

.table-images:not(:last-child) {
  border-right: 1px solid #E1E0DF;
}
.table-images .product-image-container img {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.comparator-container .product-image-container img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
@media (max-width: 767.98px) {
  .product-image-wrapper .inner-img-wrap img:first-child {
    transition: none;
  }
  .product-image-wrapper .inner-img-wrap img:first-child:hover {
    cursor: default;
    transform: none;
  }
  .product-image-wrapper .inner-img-wrap img:nth-child(2),
  .product-image-wrapper .inner-img-wrap img:nth-child(3) {
    transition: none;
    cursor: default;
  }
  .product-image-wrapper .inner-img-wrap img:nth-child(2):hover,
  .product-image-wrapper .inner-img-wrap img:nth-child(3):hover {
    transform: none;
    z-index: auto;
  }
  .product-image-wrapper .inner-img-wrap::before, .product-image-wrapper .inner-img-wrap::after {
    display: none;
  }
  .product-image-wrapper .inner-img-wrap:hover::before, .product-image-wrapper .inner-img-wrap:hover::after {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
}
.sticky-logo {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.sticky-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.sorting-buttons.is-stuck .sticky-logo {
  opacity: 1;
  width: 50px;
}

.product-button {
  border: 2px solid #3643BA;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  outline: none;
  background-color: #3643BA;
  display: flex;
  white-space: nowrap;
  font-family: "Decathlon-VF-Regular";
  position: relative;
  overflow: hidden;
  transition: color 0.8s ease;
  font-size: 14px;
  border-radius: 5px;
  margin-right: 15px;
}
.product-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 250%;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(15deg);
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}
.product-button:hover::before {
  width: 85%;
}
.product-button:hover {
  color: #3643BA;
}
.product-button span {
  position: relative;
  z-index: 1;
}

.section--classic_grid img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
@media (max-width: 599.98px) {
  .section--classic_grid img {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
}

.section--classic_grid .products .prdoucts-container .swiper-slide,
.section--comparator_1 .products .prdoucts-container .swiper-slide,
.section--comparator_2 .products .prdoucts-container .swiper-slide {
  overflow: hidden;
}
.section--classic_grid .products .prdoucts-container img,
.section--comparator_1 .products .prdoucts-container img,
.section--comparator_2 .products .prdoucts-container img {
  transition: transform 0.3s ease;
}
.section--classic_grid .products .prdoucts-container img:hover,
.section--comparator_1 .products .prdoucts-container img:hover,
.section--comparator_2 .products .prdoucts-container img:hover {
  transform: scale(1.05);
}

.carousel-scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  .carousel-scrollbar {
    display: block;
  }
  .carousel-scrollbar .scrollbar-track {
    background: #e0e0e0;
    border-radius: 2px;
  }
  .carousel-scrollbar .scrollbar-thumb {
    background: #000;
    border-radius: 2px;
    transition: transform 0.1s ease;
  }
  .carousel-scrollbar .scrollbar-thumb.thumb-toggle {
    border-radius: 8px;
  }
}

@media (max-width: 767.98px) {
  .comparator-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
  .comparator-container .comparator-table {
    display: flex;
    flex-wrap: nowrap;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .comparator-container .comparator-table .table-images,
  .comparator-container .comparator-table .table-info-product {
    flex: 0 0 auto;
    width: 80vw;
    scroll-snap-align: start;
  }
}

.comparator-table {
  table-layout: fixed;
}
.comparator-table .table-row .table-info-product {
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .comparator-table .table-row .table-info-product {
    text-align: left;
  }
}
.comparator-table .desktop-title {
  text-align: center;
  font-family: "Decathlon-VF-Regular";
}
.comparator-table .desktop-title td {
  padding: 15px;
  color: gray;
  background-color: #F7F7F7;
}
@media (max-width: 767.98px) {
  .comparator-table .desktop-title {
    display: none;
  }
}
.comparator-table .mobile-title {
  display: none;
}
@media (max-width: 767.98px) {
  .comparator-table .mobile-title {
    display: table-row;
  }
  .comparator-table .mobile-title td {
    font-family: "Decathlon-VF-Regular";
    padding: 15px;
    color: gray;
    background-color: #F7F7F7;
  }
}
@media (max-width: 767.98px) {
  .comparator-table .table-images,
  .comparator-table .table-info-product {
    width: 65vw;
    min-width: 65vw;
  }
}
@media (max-width: 767.98px) {
  .comparator-table .table-images {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.section--comparator_1 .prdoucts-container .discount,
.section--comparator_2 .prdoucts-container .discount {
  display: none !important;
}
.section--comparator_1 .prdoucts-container .product-info,
.section--comparator_1 .prdoucts-container .price-container,
.section--comparator_2 .prdoucts-container .product-info,
.section--comparator_2 .prdoucts-container .price-container {
  padding-left: 10px;
}

.table-images .products,
.table-images .prdoucts-container,
.table-info-product a {
  width: 100%;
  display: block;
}

.table-images img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.advantages-arrow-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  color: black;
}
.advantages-arrow-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #999;
}

.advantages-arrow-btn:disabled {
  border-color: #e0e0e0;
  color: #ccc;
  cursor: none;
  pointer-events: none;
}
.advantages-arrow-btn:disabled img {
  opacity: 0.3;
}

@media (max-width: 767.98px) {
  .product-image-wrapper {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .product-image-wrapper::-webkit-scrollbar {
    display: none;
  }
  .product-image-wrapper .inner-img-wrap {
    min-width: 85%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    flex-shrink: 0;
  }
  .product-image-wrapper .price-button-container {
    display: none;
  }
}
.img-title-hero {
  display: none;
}
@media (max-width: 767.98px) {
  .img-title-hero {
    font-size: 12px;
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-family: "Decathlon-VF-Bold";
    color: #1A1A1A;
    letter-spacing: 0.12em;
    display: inline-block;
    padding-left: 10px;
    border-left: 3px solid #3643BA;
  }
}

@media (max-width: 767.98px) {
  .img-overlay {
    display: none;
  }
}

.cta-btn {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background: #3643BA;
  color: white;
  padding: 15px 30px;
  margin: 30px auto 0 auto;
  text-decoration: none;
  font-size: 16px;
  font-family: "Decathlon-VF-Regular";
}

.table-cta {
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .layout-4 {
    font-size: 26px !important;
  }
}

