/* Moduł: FOMO / Social Proof Bar - ULTRA PREMIUM */

.fomo-premium-container {
    background: linear-gradient(135deg, #0d0e12 0%, #171923 100%);
    width: 100%;
    padding: 70px 20px;
    font-family: var(--font-family, Inter, sans-serif);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

/* Subtelny glow w tle */
.fomo-premium-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.04) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.fomo-premium-wrapper {
    max-width: var(--container, 1200px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fomo-premium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.fomo-premium-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 40px;
    color: var(--accent-color, #d4af37);
}

.fomo-premium-icon svg {
    fill: currentColor;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
}

.fomo-premium-value {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-title, #ffffff);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.fomo-premium-value strong {
    font-weight: 800;
    color: var(--accent-color, #d4af37);
}

.fomo-premium-label {
    font-size: 0.85rem;
    color: var(--text-muted, #8b8e98);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.fomo-premium-divider {
    width: 1px;
    height: 90px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0));
}

/* Subtelna animacja (oddech) zamiast chamskiego migania */
.fomo-premium-item.urgent .fomo-premium-icon {
    animation: premiumBreathe 4s ease-in-out infinite;
}

@keyframes premiumBreathe {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.1)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)); transform: scale(1.05); }
}

/* Responsywność */
@media (max-width: 900px) {
    .fomo-premium-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .fomo-premium-divider {
        display: none;
    }
    
    .fomo-premium-container {
        padding: 50px 20px;
    }
}
