.sets-and-kits-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 120px;
  margin-bottom: 120px;
}

/* Left part */
.sets-and-kits-products {
  overflow: hidden;
}

/* tabs */
.category-tabs-swiper {
  margin: 24px 0;
}

.category-tabs-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.category-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: unset;
  border: unset;
  cursor: pointer;
  white-space: nowrap;
  color: var(--grey1);
}

.category-tab svg {
  width: 6px;
  height: 6px;
  color: var(--white1);
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.category-tab:hover svg {
  color: var(--brand1);
}

.category-tab.active,
.category-tab.active svg {
  color: var(--black1);
}

/* Products */
.sets-products-grid .products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.sets-products-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.woocommerce-loop-product__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/* view all */
.sets-and-kits-products .sets-products-grid .view-all-link {
  text-align: start;
}

.sets-products-grid .view-all-link a {
  text-decoration: underline;
  color: var(--black1);
  transition: color 0.3s ease;
}

.sets-products-grid .view-all-link a:hover {
  color: var(--grey1);
}

/* Right video part */
.sets-video-wrapper {
  width: 100%;
  max-height: 670px;
  border-radius: 8px;
  overflow: hidden;
}

.sets-video-wrapper .sets-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Mobile */
@media (max-width: 1030px) {
  .sets-and-kits-section {
    grid-template-columns: 1fr;
  }

  .sets-video-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  .sets-and-kits-section {
    margin-top: 70px;
    margin-bottom: 50px;
  }

  .category-tabs-swiper {
    margin: 20px 0;
  }

  .sets-and-kits-section {
    gap: 32px;
  }

  .view-link {
    margin-top: 32px;
  }

  .sets-products-grid .products {
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 16px;
    display: grid;
  }

  .sets-products-grid .products > li:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .sets-products-grid
    .products
    > li:nth-child(odd):last-of-type
    .product-card-media {
    height: 320px;
  }

  .sets-products-grid
    .products
    > li:nth-child(odd):last-of-type
    .product-card-media
    img {
    height: 100%;
  }
}

@media (max-width: 630px) {
  .sets-video-wrapper {
    height: 318px;
  }
}

@media (min-width: 768px) {
  .sets-products-grid .product:nth-child(n + 3) {
    display: none;
  }
}
