body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    width: 250px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card h2 {
    font-size: 1.2rem;
    margin: 10px 0 5px;
    color: #222;
}

.price {
    color: #e91e63;
    font-weight: bold;
    margin: 5px 0;
}

.desc {
    font-size: 0.95rem;
    color: #555;
}