/* Products Page Styles */
.products {
    padding: 20px;
    text-align: center;
}

.products h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    border: 1px solid #ddd;
    padding: 15px;
    background: white;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s ease;
    width: 250px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.product:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}
