/**
 * Smoco Essentials V2 — Shared button styles for Elementor widgets.
 *
 * Variants: Gelb (candle), Hellblau (malibu), Transparent (outline).
 */

.sev-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.sev-btn--yellow {
    padding: 16px 36px;
    background: var(--candle, #feda1d);
    color: var(--regal, #003f7d);
    font-weight: 800;
}

.sev-btn--yellow:hover {
    transform: translateY(-2px);
    color: var(--regal, #003f7d);
}

.sev-btn--malibu {
    background: var(--malibu, #60adfd);
    color: #fff;
}

.sev-btn--malibu:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    color: #fff;
}

.sev-btn--outline {
    background: transparent;
    border-color: var(--sev-btn-outline-border, rgba(0, 63, 125, 0.35));
    color: var(--sev-btn-outline-color, var(--regal, #003f7d));
}

.sev-btn--outline:hover {
    border-color: var(--sev-btn-outline-border-hover, var(--regal, #003f7d));
    background: var(--sev-btn-outline-bg-hover, rgba(0, 63, 125, 0.06));
    color: var(--sev-btn-outline-color-hover, var(--regal, #003f7d));
}

.sev-btn__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    line-height: 1;
}

.sev-btn__icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.sev-btn--icon-right {
    flex-direction: row-reverse;
}

.sev-btn__text {
    display: inline-block;
}
