.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 15px;
}

.search-container {
    margin: 20px auto;
    text-align: center;
}

.search-container input {
    width: 50%;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.product-card .product-name {
    font-weight: bold;
    margin-top: 10px;
}

.product-card .product-price {
    color: #28a745;
    font-size: 18px;
    margin-top: 5px;
}