/* Featured Products Slider - Mobile Styles */

.featured-products-slider {
    position: relative;
}

@media (max-width: 768px) {
    .products-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 16px 16px; /* Add padding for shadow and scrollbar */
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .products-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, and Opera */
    }

    .products-container .product-card {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
        min-width: calc(50% - 8px);
    }

    .slider-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 20px;
        margin-top: 10px;
    }

    .slider-indicators .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #ccc;
        margin: 0 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slider-indicators .indicator-dot.active {
        background-color: #333;
    }
}

@media (min-width: 769px) {
    .slider-indicators {
        display: none;
    }
}
