/* PRODUCT GRID */

#products-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:16px;
}

/* CARD */

.product-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 8px 25px
    rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    min-height:370px;

    border:
    1px solid
    rgba(255,107,0,.10);
}

.product-card:hover{
    transform:
    translateY(-8px);

    box-shadow:
    0 18px 40px
    rgba(0,0,0,.18);
}

/* BADGE */

.card-badge{

    position:absolute;

    top:14px;
    right:14px;

    z-index:5;

    background:
    linear-gradient(
        135deg,
        #b71c1c,
        #ff6b00
    );

    color:#fff;

    padding:7px 12px;

    border-radius:999px;

    font-size:11px;
    font-weight:700;

    box-shadow:
    0 8px 18px
    rgba(255,107,0,.18);
}

/* IMAGE */

.product-image-wrap{
    height:300px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:12px;

    background:
    linear-gradient(
        180deg,
        #f8fafc,
        #eef2ff
    );

    overflow:hidden;
}

.product-image-wrap img{
    width:100%;
    height:100%;

    object-fit:contain;

    transition:.35s ease;
}

.product-card:hover
.product-image-wrap img{

    transform:scale(1.12);
}

/* CONTENT */

.product-content{

    padding:18px;

    display:flex;
    flex-direction:column;

    flex:1;
}

.product-category{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    margin-bottom:10px;

    background:
    linear-gradient(
        90deg,
        #b71c1c,
        #ff6b00
    );

    -webkit-background-clip:
    text;

    -webkit-text-fill-color:
    transparent;
}
/* TITLE */

.product-content h3{
    color:#111827;

    font-size:18px;
    line-height:1.45;

    margin-bottom:12px;

    min-height:52px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* DESCRIPTION */

.product-content p{
    color:#64748b;

    font-size:14px;
    line-height:1.7;

    margin-bottom:20px;

    flex:1;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

/* BUTTON */

.buy-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    background:
    linear-gradient(
        135deg,
        #b71c1c,
        #ff6b00
    );

    color:#fff;

    padding:14px;

    border-radius:14px;

    font-size:15px;
    font-weight:700;

    transition:.3s ease;

    box-shadow:
    0 10px 25px
    rgba(255,107,0,.15);
}

.buy-btn:hover{

    transform:
    translateY(-2px);

    box-shadow:
    0 15px 30px
    rgba(255,107,0,.25);
}

