﻿.carousel-item {
    padding: 0px 0;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

    .product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 15px;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.carousel-indicators li {
    background-color: black;
}

.quantity-container {
    display: flex;
    align-items: center;
}

.quantity-button {
    height: 40px;
}

.quantity-display {
    width: 40%;
    text-align: center;
    border: none;
    background: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}
