/* Carousel Product List Fragment CSS */

/* Container styling */
.deals-container {
    background-color: #ffcdd2; /* Light pink background */
}

/* Badge styling */
.lowest-badge {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 1.8rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    transform: rotate(0deg);
    z-index: 10;
}

/* Price tag styling */
.price-tag {
    background-color: #ff4081; /* Pink */
    color: white;
    font-weight: bold;
    padding: 8px 15px;
    font-size: 1.2rem;
    text-align: center;
}

/* Scrolling container */
.product-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Product image container */
.product-image-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container img {
    max-height: 100%;
    object-fit: contain;
}

/* Responsive styles */
@media (max-width: 768px) {
    .product-col {
        width: 80%;
        min-width: 200px;
        scroll-snap-align: start;
    }
    
    .lowest-badge {
        font-size: 1.5rem;
    }
    
    .product-image-container {
        height: 150px;
    }
}
