/* Badge/Button Styles */
.badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.badge {
    background: black;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    transition: transform 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.badge:hover {
    transform: translateY(-3px);
}

.badge-icon {
    width: 28px;
    height: 28px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-small {
    font-size: 0.6rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.badge-large {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .badges {
        justify-content: center;
    }
}
