.product-list-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: #fff;
}

.product-item:hover {
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
}

.product-info {
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    display: inline-block;
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.product-vendor {
    display: flex;
    justify-content: center;
}

.product-vendor img {
    width: 100px;
}

.product-title {
    text-align: center; 
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.card-content {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.br-vendor-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.vendor-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    color: #ffcc00;
    margin-right: 3px;
}

.empty {
    color: #ccc;
}

.product-delivery p {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.product-price p {
    font-size: 18px;
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .product-list-section {
        grid-template-columns: 1fr;
    }
    .product-item {
        padding: 12px;
    }
}
