.carousel-container {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  padding: 20px;
  overflow: hidden;

}

.carousel-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  background: white;
  border-radius: 8px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.banner {
  min-width: 520px;
  height: 420px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card {
  min-width: 280px;
  height: 420px;
  padding: 20px;
  border-left: 1px solid #eee;
  position: relative;
  background: white;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.offer {
  position: absolute;
  top: 15px;
  left: 20px;
  background: red;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 18px;
}

.discount {
  color: red;
  font-size: 14px;
}

.product-card h3 {
  font-size: 22px;
  margin: 8px 0;
}

.product-card small {
  color: #777;
  text-decoration: line-through;
  font-size: 14px;
}

.product-card p {
  margin: 4px 0;
  color: #555;
}

.product-card h4 {
  font-size: 18px;
  margin-top: 6px;
  font-weight: normal;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #999;
  font-size: 36px;
  cursor: pointer;
  box-shadow: 0 2px 8px #ddd;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.boton-ver{
  position:absolute;
  bottom:20px;
  left:20px;

  background:#000;
  color:#fff;

  padding:10px 18px;
  text-decoration:none;
  font-size:12px;
  letter-spacing:1px;

  border-radius:4px;
  transition:.3s;
}

.boton-ver:hover{
  background:#ff0000;
  transform:scale(1.05);
}