.comingsoon {
display:block;
margin:0 auto;
padding:100px 0;

}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}



.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.2s;
}



.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



.product-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}



.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}



.product-price {
    font-size: 16px;
    color: #28a745;
    font-weight: bold;
}



@media (max-width: 768px) {
.comingsoon {
width:250px;
padding:50px 0;
}
    .product-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }



    .product-item {
        padding: 15px;
    }



    .product-name {
        font-size: 16px;
    }



    .product-price {
        font-size: 15px;
    }
}