/* Container & Wrapper */
    .product-slider-wrap {
        width: 100%;
        padding: 10px 0 20px;
        box-sizing: border-box;
    }

    .product-slider-wrap .owl-stage {
        display: flex !important;
    }

    .product-slider-wrap .owl-item {
        display: flex !important;
        height: auto !important;
    }

    .product-slider-wrap .item {
        width: 100%;
        display: flex;
    }

    /* Product Card Layout */
    .product-slider-wrap .product-card {
        width: 100%;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        margin: 0;
    }

    .product-slider-wrap .product-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        border-color: #cbd5e1;
    }

    /* Product Image Box Fix */
    .product-slider-wrap .product-image {
        width: 100% !important;
        height: 140px !important;
        /* Height kam kar ke proportion fit kiya gaya h */
        max-height: 140px !important;
        background: #f8fafc !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 8px 8px 0 0 !important;
    }

    .product-slider-wrap .product-image a {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slider-wrap .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        /* Image poori fill ho jayegi */
        border-radius: 8px !important;
    }

    /* Product Content */
    .product-slider-wrap .product-content {
        padding: 12px 14px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-slider-wrap .product-name {
        font-size: 14px;
        line-height: 1.35;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 6px;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 38px;
    }

    .product-slider-wrap .product-name:hover {
        color: #0b5d2a;
    }

    .product-slider-wrap .product-description {
        font-size: 12px;
        line-height: 1.4;
        color: #64748b;
        margin: 0 0 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 34px;
    }

    .product-slider-wrap .product-price {
        font-size: 17px;
        line-height: 1.2;
        font-weight: 800;
        color: #0b5d2a;
        margin: 0 0 10px;
    }

    /* Product Actions (Buttons Bottom Par Pin Honge) */
    .product-slider-wrap .product-actions {
        margin-top: auto;
    }

    .product-slider-wrap .qty-cart-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .add-cart-btn.added {
        background: #0b5d2a;
        color: #fff;
    }

    .product-slider-wrap .qty-box {
        display: flex;
        align-items: center;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        overflow: hidden;
        height: 36px;
        flex-shrink: 0;
    }

    .product-slider-wrap .qty-btn {
        width: 28px;
        height: 100%;
        font-size: 16px;
        border: 0;
        background: #f1f5f9;
        color: #0b5d2a;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .product-slider-wrap .qty-btn:hover {
        background: #e2e8f0;
    }

    .product-slider-wrap .qty-input {
        width: 28px;
        height: 100%;
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        border: 0;
        border-left: 1px solid #cbd5e1;
        border-right: 1px solid #cbd5e1;
        padding: 0;
        color: #0f172a;
    }

    .product-slider-wrap .add-cart-btn {
        flex: 1;
        height: 36px;
        border: 0;
        border-radius: 6px;
        background: #0b5d2a;
        color: #fff;
        font-size: 12.5px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
        padding: 0 8px;
    }

    .product-slider-wrap .add-cart-btn:hover {
        background: #08491f;
    }

    .product-slider-wrap .view-detail {
        display: block;
        text-align: center;
        margin-top: 8px;
        font-size: 11.5px;
        font-weight: 600;
        color: #0b5d2a;
        text-decoration: none;
    }

    .product-slider-wrap .view-detail:hover {
        text-decoration: underline;
    }

    /* Owl Carousel Custom Nav Arrows */
    .product-slider-wrap .owl-nav button.owl-prev,
    .product-slider-wrap .owl-nav button.owl-next {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        background: #fff !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        color: #0f172a !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .product-slider-wrap .owl-nav button.owl-prev {
        left: -12px;
    }

    .product-slider-wrap .owl-nav button.owl-next {
        right: -12px;
    }

    @media(max-width: 767px) {
        .product-slider-wrap .product-image {
            height: 150px;
        }
    }








    .product-slider-wrap .owl-stage {
        display: flex !important;
    }

    .product-slider-wrap .owl-item {
        box-sizing: border-box !important;
    }

    .product-slider-wrap .item {
        width: 100%;
    }



    @media(max-width:991px) {
        .product-slider-wrap.few-products .owl-carousel {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media(max-width:575px) {
        .product-slider-wrap.few-products .owl-carousel {
            grid-template-columns: 1fr;
        }
    }




    /* Discount Badge */
.product-slider-wrap .discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 5;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 7px;
    border-radius: 4px;
}

/* Price Row */
.product-slider-wrap .product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* MRP */
.product-slider-wrap .product-mrp {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
    text-decoration: line-through;
}

/* Selling Price */
.product-slider-wrap .product-selling-price {
    color: #0b5d2a;
    font-size: 15px;
    font-weight: 800;
}

/* Discount % */
.product-slider-wrap .product-discount {
    color: #e53935;
    font-size: 10px;
    font-weight: 700;
    background: #fff1f1;
    padding: 3px 5px;
    border-radius: 3px;
}

/* Saving */
.product-slider-wrap .product-saving {
    color: #0b5d2a;
    font-size: 10.5px;
    font-weight: 600;
    margin-top: -7px;
    margin-bottom: 8px;
}


