/* 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: 10px 20px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    background-color: var(--lcake-btn-bg, #4a4a4a);
    color: var(--lcake-btn-color, #fff);
}

/* Hover Effect */
.lcake-kit-button.elementor-button:hover {
    background-color: var(--lcake-btn-bg-hover, #333);
    color: var(--lcake-btn-color-hover, #fff);
    transform: translateY(-1px);
}

/* 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 6px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #e63946;
    border-radius: 12px;
    vertical-align: middle;
}

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