/* featured product collection css */
.featured-section {
        background: linear-gradient(120deg, #dbe8f8, #f2f6ff);
        padding: 25px;
        border-radius: 12px;
		width:1150px;
}

.slider-container {
        position: relative;
        overflow: hidden;
}

.slider-track {
        display: flex;
        gap: 20px;
        transition: transform .3s ease;
        padding: 10px 0;
}

.product-card {
        min-width: 230px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.1);
        border-radius: 10px;
        overflow: hidden;
        background: white;
}

.product-card img {
        width: 100%;
        height: auto;
}

.featured_price {
        color: #d60000;
        font-weight: bold;
        font-size: 18px;
}

.slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        z-index: 10;
        font-size: 15px;
        padding: 5px 12px;
        border-radius: 50%;
        transition: .2s;
}

.slider-btn:hover {
        background: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.btn-left { left: 0; }
.btn-right { right: 0; }
/*  featured product collection ending jumpotron css */

