/**
 * BizAds Badge Styles
 */

.bizads-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    position: relative;
}

.bizads-badge-default {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 12px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.bizads-badge-icon {
    color: #ffd700;
    animation: sparkle 2s ease-in-out infinite;
}

.bizads-badge-text {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}