/**
 * Product Effects - Minecraft Theme
 * Hover effects, animations, and interactive elements
 */

/* Modern Sale Badge */
.woocommerce .onsale {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%) !important;
    color: white !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4) !important;
    z-index: 10 !important;
    animation: salePulse 2s infinite !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

@keyframes salePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Modern Hover Effects with Quick View */
.woocommerce .product:hover img {
    transform: scale(1.08) !important;
}

/* Quick View Overlay - Simplified without ::before */
.woocommerce .product:hover {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(162, 89, 255, 0.1) 100%) !important;
}

/* Product Content Positioning */
.woocommerce .product > * {
    position: relative !important;
    z-index: 3 !important;
}
