/* Smart Badge Styles - Loaded on all pages */
/* Most styles are in injector.phtml for dynamic loading */
/* This file exists to prevent LESS compilation errors */

.smart-badges-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
}

.smart-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--badge-color, #3b82f6);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    width: fit-content;
    animation: badgeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-delay: calc(var(--i, 0) * 0.1s);
    animation-fill-mode: both;
}
