.featured-products{

    width:90%;

    max-width:1400px;

    margin:90px auto;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.product-card{

    background:#221133;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 60px rgba(90,42,131,.45);

}

.product-card img{

    width:100%;

    display:block;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-info{

    padding:25px;

    text-align:center;

}

.product-info h3{

    color:#D4AF37;

    font-size:28px;

    margin-bottom:15px;

}

.price{

    color:#fff;

    font-size:20px;

    margin-bottom:20px;

}

.buy-button{

    display:inline-block;

    padding:12px 30px;

    background:#5A2A83;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    transition:.3s;

}

.buy-button:hover{

    background:#D4AF37;

    color:#14081F;

}

@media(max-width:1100px){

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:700px){

    .products-grid{

        grid-template-columns:1fr;

    }

}
