.yt-most-viewed-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.yt-most-viewed-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.yt-product-card {
  flex: 0 0 auto;
  width: 200px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.yt-product-card:hover {
  transform: translateY(-4px);
}

.yt-product-card a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 10px;
}

.yt-product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

.yt-title {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #000000;
  min-height: 38px;
  line-height: 1.3;
}

.yt-price {
  color: #7C0A01;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Medium screens: tablets */
@media (min-width: 768px) {
  .yt-most-viewed-container {
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
  }
}

/* Large screens: desktops */
@media (min-width: 1024px) {
  .yt-most-viewed-container {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
    gap: 20px;
  }

  .yt-product-card {
    width: 220px;
  }
}
