/* PRODUCTS SECTION */

.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
    gap:14px;
    padding-top:15px;
}

/* CARD */

.product-card{
    background:#fff;
    border-radius:14px;
    padding:12px;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    position:relative;
    transition:.2s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-2px);
}

/* DELIVERY */

.delivery{
    font-size:11px;
    color:#e67e22;
    margin-top:5px;
    margin-bottom:5px;
    font-weight:500;
}

/* DISCOUNT */

.discount{
    position:absolute;
    top:10px;
    left:10px;
    z-index:10;
    background:#2563eb;
    color:#fff;
    font-size:11px;
    padding:3px 8px;
    border-radius:5px;
    font-weight:bold;
}

/* PRODUCT NAME */

.name{
    font-size:14px;
    font-weight:600;
    line-height:1.4;
    height:38px;
    overflow:hidden;
    margin-bottom:8px;
}

/* STARTING */

.starting{
    font-size:11px;
    color:#888;
    margin-top:5px;
}

/* PRICE */

.price{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

/* OPTIONS */

.options{
    font-size:11px;
    color:#16a34a;
    margin-bottom:12px;
}

/* ADD BUTTON */

.add-btn{
    display:inline-block;
    padding:7px 20px;
    border:1px solid #16a34a;
    border-radius:8px;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    color:#16a34a;
    background:#fff;
}

.add-btn:hover{
    background:#16a34a;
    color:#fff;
}

/* VIEW ICON */

.eye{
    position:absolute;
    top:10px;
    right:10px;
    font-size:15px;
    text-decoration:none;
    color:#444;
}

/* ========================= */
/* SLIDER */
/* ========================= */

.card-slider{
    width:100%;
    height:120px;
    overflow:hidden;
    position:relative;
    margin-bottom:10px;
}

.card-slider .slides{
    display:flex;
    flex-direction:row;
    flex-wrap:nowrap;
    width:100%;
    height:100%;
    transition:transform .5s ease;
}

.card-slider .slides img{
    display:block;
    flex:0 0 100%;
    width:100%;
    min-width:100%;
    max-width:100%;
    height:120px;
    object-fit:contain;
    margin:0;
    padding:0;
}

/* MOBILE */

@media(max-width:768px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .product-card{
        padding:10px;
    }

    .price{
        font-size:18px;
    }

    .name{
        font-size:12px;
        height:34px;
    }

    .card-slider{
        height:90px;
    }

    .card-slider .slides img{
        height:90px;
    }
}