/* Button Wrapper */
.lcake-kit-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    box-sizing: border-box;
}

/* Core Button Style */
.lcake-kit-button.elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* space between icon and text */
    padding: 13px 28px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--lcake-btn-bg, #3b82f6);
    color: var(--lcake-btn-color, #fff);
    box-shadow: 0 4px 14px -2px rgba(59, 130, 246, 0.35);
}

/* Hover Effect */
.lcake-kit-button.elementor-button:hover {
    background-color: var(--lcake-btn-bg-hover, #2563eb);
    color: var(--lcake-btn-color-hover, #fff);
    box-shadow: 0 10px 20px -4px rgba(59, 130, 246, 0.4);
}
.lcake-kit-button.elementor-button:not([class*="elementor-animation-"]):hover {
    transform: translateY(-3px);
}

/* Icon */
.lcake-kit-button-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    font-size: inherit; /* lets Elementor control it */
}

/* Icon SVG respects font-size */
.lcake-kit-button-icon svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
}

/* Badge */
.lcake-button-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #ef4444;
    border-radius: 999px;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .lcake-kit-button.elementor-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .lcake-button-badge {
        font-size: 10px;
    }
}


/* Remove text decoration for a tags */
.elementor-widget-lcake-kit-button a,
.lcake-button a,
.lcake-kit-button a,
.lc-header-footer-button a {
    text-decoration: none !important;
}
