/* Popular products */

.teko-products {
  padding: 0 0 96px;
  background: var(--teko-neutral-50);
}

.teko-products__head {
  margin-bottom: 32px;
}

.teko-products__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.teko-products__title {
  margin: 0;
  color: var(--teko-neutral-1000);
  font-family: var(--teko-heading-h2-font-family);
  font-size: var(--teko-heading-h2-font-size-64px);
  font-weight: var(--teko-weight-regular);
  line-height: var(--teko-heading-h2-line-height-68px);
  letter-spacing: var(--teko-heading-h2-letter-spacing-minus-05px);
}

.teko-products__tabs {
  display: flex;
  align-items: center;
  gap: 12px;
}

.teko-products__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border: 1px solid var(--teko-neutral-200);
  border-radius: 2px;
  background: transparent;
  color: var(--teko-neutral-700);
  font-family: var(--teko-label-1-font-family);
  font-size: var(--teko-label-1-font-size-16px);
  font-weight: var(--teko-weight-regular);
  line-height: var(--teko-label-1-line-height-22px);
  letter-spacing: var(--teko-label-1-letter-spacing-minus-018px);
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.teko-products__tab:hover {
  border-color: var(--teko-neutral-700);
  color: var(--teko-neutral-1000);
}

.teko-products__tab.is-active {
  border-color: var(--teko-neutral-1000);
  background: var(--teko-neutral-1000);
  color: var(--teko-neutral-0);
}

.teko-products__panel {
  display: block;
}

.teko-products__panel[hidden] {
  display: none;
}

.teko-products__slider {
  overflow: hidden;
  width: 100%;
}

.teko-products__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.teko-products__track::-webkit-scrollbar {
  display: none;
}

.teko-product-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.teko-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 312 / 420;
  padding: 32px;
  border-radius: 4px;
  background: var(--teko-neutral-0);
  text-decoration: none;
  overflow: hidden;
}

.teko-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.teko-product-card:hover .teko-product-card__image {
  transform: scale(1.03);
}

.teko-product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--teko-neutral-1000);
  color: var(--teko-neutral-0);
  font-family: var(--teko-label-3-font-family);
  font-size: var(--teko-label-3-font-size-12px);
  font-weight: var(--teko-weight-semibold);
  line-height: var(--teko-label-3-line-height-16px);
  letter-spacing: var(--teko-label-3-letter-spacing-minus-012px);
}

.teko-product-card__wishlist,
.teko-product-card__cart {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  border-radius: 2px;
  background: var(--teko-neutral-200);
  color: var(--teko-neutral-1000);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.teko-product-card__wishlist {
  top: 16px;
  right: 16px;
}

.teko-product-card__cart {
  right: 16px;
  bottom: 16px;
}

.teko-product-card__wishlist:hover,
.teko-product-card__cart:hover {
  background: var(--teko-brown-400);
  color: var(--teko-neutral-0);
  transform: translateY(-1px);
}

.teko-product-card__body {
  padding-top: 12px;
}

.teko-product-card__colors {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.teko-product-card__color {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--teko-neutral-300);
  border-radius: 2px;
  background: var(--teko-neutral-200);
}

.teko-product-card__title {
  margin: 0 0 4px;
  font-family: var(--teko-body-2-font-family);
  font-size: var(--teko-body-2-font-size-16px);
  font-weight: var(--teko-weight-light);
  line-height: var(--teko-body-2-line-height-24px);
  letter-spacing: var(--teko-body-2-letter-spacing-0px);
}

.teko-product-card__title a {
  color: var(--teko-neutral-1000);
  text-decoration: none;
}

.teko-product-card__title a:hover {
  color: var(--teko-brown-500);
}

.teko-product-card__price {
  color: var(--neutral-1000, #111);
  /* Heading/H6/SemiBold */
  font-family: var(--teko-font-primary);
  font-size: var(--teko-heading-h6-font-size-20px);
  font-style: normal;
  font-weight: var(--teko-weight-medium, 500);
  line-height: var(--teko-heading-h6-line-height-24px); /* 120% */
  letter-spacing: var(--teko-heading-h6-letter-spacing-0px);
}

.teko-product-card__price del {
  margin-right: 6px;
  color: var(--teko-neutral-500);
  font-weight: var(--teko-weight-regular);
}

.teko-product-card__price ins {
  text-decoration: none;
}

.teko-products__catalog-btn {
  margin-top: 32px;
  width: 284px;
  background-color: var(--teko-brown-400);
  color: var(--neutral-0, #fff);
  font-family: var(--Label-Label-1-fontFamily, Manrope);
  font-size: var(--Label-Label-1-fontSize, 16px);
  font-style: normal;
  font-weight: var(--teko-weight-medium, 500);
  line-height: var(--Label-Label-1-lineHeight, 22px); /* 137.5% */
  letter-spacing: var(--Label-Label-1-letterSpacing, -0.18px);
}

/* responsive */

@media (max-width: 1199px) {
  .teko-product-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 767px) {
  .teko-products {
    padding-bottom: 64px;
  }

  .teko-products__top {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .teko-products__tabs {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .teko-products__tabs::-webkit-scrollbar {
    display: none;
  }

  .teko-products__tab {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 10px 16px;
    font-size: var(--teko-label-2-font-size-14px);
    line-height: var(--teko-label-2-line-height-20px);
  }

  .teko-product-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .teko-products__track {
    gap: 16px;
  }

  .teko-product-card__media {
    padding: 20px;
  }

  .teko-products__catalog-btn {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .teko-product-card {
    flex-basis: 78%;
  }
}
