.custom-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.custom-card{
    background:#f4f1e8;
    padding:20px;
    border-radius:16px;
}

.custom-card img{
    width:100%;
    border-radius:12px;
}

.product-title{
    font-size:18px;
    font-weight:600;
    margin:12px 0 6px;
}

.price{
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

.variation-wrapper{
    margin-bottom:10px;
}

.var-pill{
    padding:6px 14px;
    border-radius:30px;
    border:1px solid #ccc;
    background:#fff;
    margin:4px 6px 6px 0;
    cursor:pointer;
    font-size:14px;
}

.var-pill.active{
    background:#6DBE45;
    color:#fff;
    border-color:#6DBE45;
}

.add-cart{
    width:100%;
    margin-top:10px;
    padding:12px;
    background:#000;
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    font-size:16px;
}
