
/* Product List Styling */
#product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Product Card Styling */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Product Image Styling */
.product-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

/* Product Details Styling */
.product-details {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-transform: capitalize;
    text-decoration: none;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 10px;
}

.product-rating {
    font-size: 0.9rem;
    color: #ffc107;
}

/* Responsive Design */
@media screen and (min-width: 768px) {
    #product-list {
        justify-content: flex-start;
    }

    .product-card {
        width: calc(33.33% - 20px);
    }
}

@media screen and (min-width: 1024px) {
    .product-card {
        width: calc(25% - 20px);
    }
}
