.all-products-page {
  padding-top: 70px;
}

/* page hero */
.hero-section {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  padding-top: 125px;
  background-color: aliceblue;
  max-width: 1920px;
  margin: auto;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.hero-overlay .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 16px;
  padding-bottom: 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-subtitle {
  width: 650px;
}

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

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

.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 list */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
ul.products img {
  width: 100%;
}

ul.products p {
  font-family: "HalisR";
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
}

ul.products a {
  /* position: relative; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Price */
ul.products .price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}
.price,
.price * {
  font-family: "HalisR", sans-serif;
  font-size: 16px;
  line-height: 21px;
}

/* Notice */
.woocommerce-info {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  color: var(--black1);
  font-family: "HalisR";
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
}

.woocommerce-info:before {
  content: none;
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .all-products-page {
    padding-top: 50px;
  }

  ul.products {
    display: grid;
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  ul.products li.product img {
    width: 100%;
  }

  .hero-section .breadcrumb-wrapper {
    margin-top: -10px;
  }

  .hero-overlay .container {
    padding-bottom: 24px;
    padding-top: 0px;
  }

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

  .products-list {
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-subtitle {
    width: 100%;
  }

  .hero-section {
    height: 600px;
  }
}
