/* Main product image */
.main-img {
  height: 320px;
  object-fit: cover;
  width: 100%;
}

/* Thumbnail images */
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.thumb-img:hover {
  transform: scale(1.05);
}

/* Title */
h2 {
  font-size: 1.5rem;
}

/* Price styling like Zepto */
.text-success {
  color:#030303 !important;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
   
}

.mt-auto {
    margin-top: auto !important;
    /* background: #3dcf3d; */
    border-radius: 50px;
}

.btn:hover {
    color: black;
     background-color: #eb6e2f;
    /* border-color: #3fa760; */
    border-radius: 50px;

}

@media (min-width: 1024px) {
    .product-scroll-wrapper {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
}
