.product-listing-nav-tabs::-webkit-scrollbar {
  display: none;
}
.product-container {
  scrollbar-width: none;
}
.product-container::-webkit-scrollbar {
  display: none;
}
.product-listing-title {
  font-size: 32px;
  font-family: "Playfair Display";
}
.product-listing-sub-title {
  color: #a2a2a2;
  font-size: 20px;
}
.product-listing-nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}
.product-listing-nav-link {
  color: #a2a2a2;
  font-size: 20px;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 2px solid transparent;
}
.product-listing-nav-link:hover {
  border-bottom: 2px solid #ed1b24 !important;
  color: #000;
  isolation: unset !important;
}
.product-listing-nav-link.active {
  border-bottom: 2px solid #ed1b24 !important;
}
.product-listing-item {
  width: 630px;
  height: 600px;
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
/* 3+ products: smaller card */
.product-listing-item-sm {
  width: 520px;
  height: 500px;
}
/* 1 product: full width card */
.product-listing-item-full {
  width: 100%;
}
.product-listing-item-mask {
  background: linear-gradient(180deg, rgba(229, 229, 229, 0) 0%, #e5e5e5 60%);
  padding: 24px 16px;
  border-radius: 0 0 8px 8px;
}
.product-listing-item-category {
  color: #595959;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.product-listing-item-name {
  color: #000;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 8px;
}
.vas-listing-item-name {
  font-size: 24px;
}
.product-listing-item-description {
  color: #595959;
  font-size: 16px;
  margin-bottom: 16px;
}
.product-listing-item-explore {
  color: #1A1A1A;
  font-weight: 600;
}
.product-listing-item-explore:hover {
  text-decoration: underline;
}
/* Carousel */
.product-carousel-wrapper {
  position: relative;
}
.product-carousel {
  overflow: hidden !important;
  scrollbar-width: none;
}
.product-carousel::-webkit-scrollbar {
  display: none;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.carousel-prev-btn { left: -22px; }
.carousel-next-btn { right: -22px; }
/* 1 product: text left, image right */
.product-listing-item-single {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 500px;
  gap: 16px;
  opacity: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e5e5e5;
}
.product-listing-item-single-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
}
.product-listing-item-single-image {
  width: 500px;
  min-height: 500px;
  flex-shrink: 0;
  overflow: hidden;
}
.product-listing-item-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .product-listing-item-single {
    flex-direction: column;
  }
  .product-listing-item-single-image {
    width: 100%;
    height: 300px;
  }
  .product-listing-item-single-content {
    padding: 24px 16px;
  }
}
