/* Custom styles for Price Comparison Plugin */

.price-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.best-price {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 2px solid #059669;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.best-price:hover {
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.savings-badge {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

#wpc-product-image {
    transition: transform 0.3s ease;
}

#wpc-product-image:hover {
    transform: scale(1.05);
}

