/**
 * Fab Woo Cartes PRO Styles
 *
 * @package FabWooCartes_Pro
 */

/* PRO Feature Styles */

/* Floating Mode */
.fab-woo-cartes .fab-wc-card-image.floating {
    position: absolute;
    z-index: 10;
}

.fab-woo-cartes .fab-wc-card-image-placeholder {
    display: block;
}

/* LED Animations */
@keyframes fab-led-rotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes fab-led-blink {
    0% { opacity: 0.5; filter: brightness(0.8); }
    100% { opacity: 1; filter: brightness(1.2); }
}

@keyframes fab-led-zen {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.fab-woo-cartes .fab-wc-image-led-rotate img {
    animation: fab-led-rotate 2s linear infinite;
}

.fab-woo-cartes .fab-wc-image-led-blink img {
    animation: fab-led-blink 0.5s ease-in-out infinite alternate;
}

.fab-woo-cartes .fab-wc-image-led-zen img {
    animation: fab-led-zen 3s ease-in-out infinite;
}

/* Price Animations */
@keyframes fab-price-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes fab-price-pulse-glow {
    0%, 100% { text-shadow: 0 0 5px currentColor; }
    50% { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
}

@keyframes fab-price-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fab-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes fab-neon-glow {
    0% { text-shadow: 0 0 5px currentColor, 0 0 10px currentColor; }
    100% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor; }
}

.fab-woo-cartes .fab-wc-price-animated {
    transition: transform 0.3s ease;
}

.fab-woo-cartes .fab-wc-price-bounce {
    animation: fab-price-bounce 0.6s ease infinite;
}

.fab-woo-cartes .fab-wc-price-pulse-glow {
    animation: fab-price-pulse-glow 1.5s ease-in-out infinite;
}

.fab-woo-cartes .fab-wc-price-float {
    animation: fab-price-float 2s ease-in-out infinite;
}

.fab-woo-cartes .fab-wc-price-shimmer {
    position: relative;
    overflow: hidden;
}

.fab-woo-cartes .fab-wc-price-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: fab-shimmer 2s infinite;
}

.fab-woo-cartes .fab-wc-price-neon-glow {
    animation: fab-neon-glow 2s ease-in-out infinite alternate;
}

/* Button Icon Animations */
@keyframes fab-icon-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.fab-woo-cartes .fab-wc-button-icon-zoom svg {
    transition: transform 0.3s ease;
}

.fab-woo-cartes .fab-wc-button-icon-zoom:hover svg {
    transform: scale(1.3);
}

.fab-woo-cartes .fab-wc-button-icon-shake:hover svg {
    animation: fab-icon-shake 0.5s ease infinite;
}

/* PRO Badge */
.fab-woo-cartes-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* PRO Feature Active Indicator */
.fab-woo-cartes .pro-feature-active {
    position: relative;
}

.fab-woo-cartes .pro-feature-active::after {
    content: 'PRO';
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 6px;
    background: #764ba2;
    color: white;
    font-size: 8px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 100;
}
