.product-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 12px;
            transition: all 0.3s ease-in-out;
        }

          .product-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease-in-out;
        }

        .product-price {
            font-size: 18px;
            color: #28a745;
            font-weight: bold;
            margin-top: 10px;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .seller-name {
            background-color: #ff6600;
            color: white;
            font-weight: bold;
            font-size: 14px;
            padding: 4px 8px;
            border-radius: 4px;
            margin-top: 8px;
            display: inline-block;
        }
  .filter-section {
        background-color: white !important;
    }
.swal2-cancel {
    background-color: #dc3545 !important; 
    border-color: #dc3545 !important; 
    color: white !important;
}

.swal2-confirm {
    background-color: #28a745 !important;
    border-color: #28a745 !important; 
    color: white !important; 
}
.premium-product {
    border: 2px solid #FF0000; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    position: relative;
}

.premium-product .product-card img {
    border-radius: 8px;
    border: 3px solid #FFD700; 
}

.premium-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFCC00; 
    color: #000; 
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); 
    z-index: 10;
}