.orvp-carousel-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.orvp-inner-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  justify-content: center;
}
.orvp-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 15px;
  width: 100%;
}
.orvp-card-container {
  width: 100%; 
  height: auto;
  box-sizing: border-box;

}
.orvp-card {
    width: 100%;
    height: 250px;
    background-color: #fff;
    border-radius: 5px;
    max-width: 100%;
}
.orvp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.orvp-card-container a{
  text-decoration: none;
}
.orvp-title-price {
  width: 100%;
  margin-top: 10px; 
  color: black;
  text-align: left;
}
.orvp-title-price h4 {
    margin-bottom: 5px;
}
.orvp-price-container {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}
.orvp-compare-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}
.orvp-buynow {
  padding: 5px 10px;
  cursor: pointer;
  width: 100%;
  background-color: #000000; 
  color: white; 
  border: none; 
  padding: 10px 20px; 
  border-radius: 5px; 
  cursor: pointer; 
  font-size: 16px; 
}
.orvp-nav button {
  position: absolute;
  top: 40%;
  transform: translatey(-100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  border: 1px solid;
}
.orvp-prev, .orvp-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.orvp-prev {
  left: 0;
}
.orvp-next {
  right: 0;
}
.hide {
  display: none;
}
.orvp-price-container {
  gap: 5px;
  align-items: center;
  margin: 0;

}

/* Compare at price (strikethrough) */
.orvp-compare-price {
  opacity: 0.7;
  text-decoration: line-through;
}
.orvp-price{
  opacity: 0.7;
}

/* Product type label */
.orvp-product-type, .orvp-vendor {
  margin: 0;
}

/* Quick Add Button */
.orvp-quick-add, .orvp-view-more{
  all: unset;
  display: inline-block;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 15px 0 0 0;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .orvp-price-container,
  .orvp-product-type,
  .orvp-vendor {
    margin: 0;
  }

  .orvp-quick-add {
    padding: 6px 10px;
  }
}