/* theCaja Drops Plugin Styles */

/* Live badge */
.thecaja-live-badge {
    background: #00C853 !important;
    color: white !important;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1em;
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
}

/* Premium early access badge */
.thecaja-premium-early {
    background: linear-gradient(135deg, #FFD700, #FFA000) !important;
    color: #1A1A2E !important;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
}

/* Countdown premium CTA */
.countdown-premium-cta { margin-top: 15px; }

.thecaja-premium-link {
    color: #FFD700 !important;
    text-decoration: none;
    font-size: 0.85em;
    border-bottom: 1px dashed #FFD700;
    transition: all 0.3s ease;
}
.thecaja-premium-link:hover {
    color: #FFA000 !important;
    border-bottom-color: #FFA000;
}

/* Urgency badge */
.thecaja-urgency {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #FF1744;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: 600;
    margin: 10px 0;
    animation: pulse-urgency 2s infinite;
}
.thecaja-urgency-small {
    color: #FF1744;
    font-size: 0.8em;
    font-weight: 700;
    margin-top: 5px;
}
.urgency-icon { margin-right: 4px; }

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Sold out badge */
.thecaja-sold-out {
    background: #333;
    color: #999;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2em;
    text-align: center;
    margin: 10px 0;
    letter-spacing: 2px;
}

/* Social proof */
.thecaja-social-proof {
    color: #A0A0B0;
    font-size: 0.85em;
    padding: 8px 0;
    margin: 5px 0;
}
.proof-icon { margin-right: 4px; }

/* Premium status on My Account */
.thecaja-premium-status {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 160, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.thecaja-premium-cta-box {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}
.thecaja-premium-cta-box h3 { color: #FFD700; margin-bottom: 8px; }
.thecaja-btn-premium {
    background: linear-gradient(135deg, #FFD700, #FFA000) !important;
    color: #1A1A2E !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
}

/* Early access notice */
.thecaja-early-access-notice {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Add to cart animation */
.thecaja-added {
    background-color: #00C853 !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.thecaja-added::after { content: ' \2713'; }

/* Flash sale banner */
.thecaja-flash-sale .flash-icon { margin-right: 8px; font-size: 1.2em; }
.thecaja-flash-sale .flash-timer { margin-left: 10px; font-weight: 800; }