/* Lemon Hero Core */
.lemon-hero-core {
    --lt-hero-ratio: 16 / 9;
    --lt-hero-min-height: 480px;
    --lt-hero-content-padding: 40px;
    --lt-hero-transition-duration: 600ms;
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: var(--lt-hero-min-height);
    aspect-ratio: var(--lt-hero-ratio);
    background: #111;
}

.lemon-hero-core.lt-hero-ratio-original {
    aspect-ratio: auto;
}

.lemon-hero-core * {
    box-sizing: border-box;
}

.lemon-hero-stage,
.lemon-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* Background Slideshow: the rotating backgrounds are a backdrop layer behind
 * the fixed content, so the stage is absolutely positioned to fill the widget. */
.lemon-hero-bg-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    z-index: 0;
}


/* Elementor's editor loads native nested accordion rules with higher specificity
 * than the generic .lemon-hero-slide-item selector. If they win, each slide
 * becomes position:relative and stacks vertically; then the Navigator scrolls
 * to Slide #2 below the Hero instead of switching the visible layer.
 */
.lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides {
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    min-height: inherit !important;
}

.lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    max-height: none !important;
    overflow: hidden !important;
}

.lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item > .lemon-hero-content-container,
.lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item > .elementor-element.e-con {
    position: relative !important;
    inset: auto !important;
    z-index: 3;
    width: 100%;
    max-width: var(--lt-hero-content-max-width, 100%);
}

.lemon-hero-slide-item,
.lemon-bg-slide {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--lt-hero-transition-duration) ease, visibility 0s linear var(--lt-hero-transition-duration);
}

.lemon-hero-slide-item[open],
.lemon-hero-slide-item.e-normal {
    display: flex;
}

.lemon-hero-slide-item.is-active,
.lemon-bg-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transition: opacity var(--lt-hero-transition-duration) ease, visibility 0s linear 0s;
}

.lemon-hero-slide-summary,
.lemon-hero-editor-summary {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

.lemon-hero-bg,
.lemon-hero-overlay,
.lemon-hero-link,
.lemon-bg-media,
.lemon-bg-overlay {
    position: absolute;
    inset: 0;
}

.lemon-hero-bg,
.lemon-bg-media {
    z-index: 0;
    background-size: var(--lt-hero-bg-fit, cover);
    background-position: var(--lt-hero-bg-position, center center);
    background-repeat: no-repeat;
    background-color: var(--lt-hero-bg-color, transparent);
}

.lemon-hero-bg img,
.lemon-hero-bg video,
.lemon-bg-media img,
.lemon-bg-media video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: var(--lt-hero-bg-fit, cover);
    object-position: var(--lt-hero-bg-position, center center);
}

.lemon-hero-overlay,
.lemon-bg-overlay {
    z-index: 1;
    background: var(--lt-hero-overlay, transparent);
    pointer-events: none;
}

.lemon-hero-link {
    z-index: 2;
    display: block;
}

/* Content frame.
 * Hero Slides: the nested Elementor child is injected as a DIRECT child of
 * .lemon-hero-slide-item (see Widget_Nested_Base), so the slide item itself is
 * the flex frame that positions the content. The absolute bg/overlay/summary
 * are out of flow, so flex only lays out the real content child.
 * Background Slideshow: the single fixed child lives inside .lemon-bg-fixed-content.
 */
.lemon-hero-slide-item {
    display: flex;
}

.lemon-bg-fixed-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    padding: var(--lt-hero-content-padding);
    pointer-events: auto;
}

/* Content position drives the flex alignment of the content frame. */
.lemon-hero-content-pos-top-left .lemon-hero-slide-item,
.lemon-hero-content-pos-center-left .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-left .lemon-hero-slide-item,
.lemon-hero-content-pos-top-left .lemon-bg-fixed-content,
.lemon-hero-content-pos-center-left .lemon-bg-fixed-content,
.lemon-hero-content-pos-bottom-left .lemon-bg-fixed-content { justify-content: flex-start; }

.lemon-hero-content-pos-top-center .lemon-hero-slide-item,
.lemon-hero-content-pos-center .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-center .lemon-hero-slide-item,
.lemon-hero-content-pos-top-center .lemon-bg-fixed-content,
.lemon-hero-content-pos-center .lemon-bg-fixed-content,
.lemon-hero-content-pos-bottom-center .lemon-bg-fixed-content { justify-content: center; }

.lemon-hero-content-pos-top-right .lemon-hero-slide-item,
.lemon-hero-content-pos-center-right .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-right .lemon-hero-slide-item,
.lemon-hero-content-pos-top-right .lemon-bg-fixed-content,
.lemon-hero-content-pos-center-right .lemon-bg-fixed-content,
.lemon-hero-content-pos-bottom-right .lemon-bg-fixed-content { justify-content: flex-end; }

.lemon-hero-content-pos-top-left .lemon-hero-slide-item,
.lemon-hero-content-pos-top-center .lemon-hero-slide-item,
.lemon-hero-content-pos-top-right .lemon-hero-slide-item,
.lemon-hero-content-pos-top-left .lemon-bg-fixed-content,
.lemon-hero-content-pos-top-center .lemon-bg-fixed-content,
.lemon-hero-content-pos-top-right .lemon-bg-fixed-content { align-items: flex-start; }

.lemon-hero-content-pos-center-left .lemon-hero-slide-item,
.lemon-hero-content-pos-center .lemon-hero-slide-item,
.lemon-hero-content-pos-center-right .lemon-hero-slide-item,
.lemon-hero-content-pos-center-left .lemon-bg-fixed-content,
.lemon-hero-content-pos-center .lemon-bg-fixed-content,
.lemon-hero-content-pos-center-right .lemon-bg-fixed-content { align-items: center; }

.lemon-hero-content-pos-bottom-left .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-center .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-right .lemon-hero-slide-item,
.lemon-hero-content-pos-bottom-left .lemon-bg-fixed-content,
.lemon-hero-content-pos-bottom-center .lemon-bg-fixed-content,
.lemon-hero-content-pos-bottom-right .lemon-bg-fixed-content { align-items: flex-end; }

.lemon-bg-fixed-content-inner {
    width: 100%;
    max-width: var(--lt-hero-content-max-width, 100%);
}

.lemon-hero-arrow,
.lemon-hero-dot {
    border: 0;
    cursor: pointer;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.lemon-hero-arrows {
    position: absolute;
    z-index: 10;
    display: flex;
    gap: var(--lt-hero-arrows-gap, 12px);
    pointer-events: auto;
}

.lemon-hero-arrows-pos-sides {
    inset: 50% var(--lt-hero-arrows-offset, 24px) auto var(--lt-hero-arrows-offset, 24px);
    justify-content: space-between;
    transform: translateY(-50%);
}

.lemon-hero-arrows-pos-bottom-center { left: 50%; bottom: var(--lt-hero-arrows-offset, 24px); transform: translateX(-50%); }
.lemon-hero-arrows-pos-bottom-left { left: var(--lt-hero-arrows-offset, 24px); bottom: var(--lt-hero-arrows-offset, 24px); }
.lemon-hero-arrows-pos-bottom-right { right: var(--lt-hero-arrows-offset, 24px); bottom: var(--lt-hero-arrows-offset, 24px); }
.lemon-hero-arrows-pos-top-center { left: 50%; top: var(--lt-hero-arrows-offset, 24px); transform: translateX(-50%); }
.lemon-hero-arrows-pos-top-left { left: var(--lt-hero-arrows-offset, 24px); top: var(--lt-hero-arrows-offset, 24px); }
.lemon-hero-arrows-pos-top-right { right: var(--lt-hero-arrows-offset, 24px); top: var(--lt-hero-arrows-offset, 24px); }

.lemon-hero-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--lt-hero-arrow-size, 44px);
    height: var(--lt-hero-arrow-size, 44px);
    padding: var(--lt-hero-arrow-padding, 0px);
    border-radius: var(--lt-hero-arrow-radius, 999px);
    color: var(--lt-hero-arrow-color, #fff);
    background: var(--lt-hero-arrow-bg, rgba(0,0,0,.35));
    border: var(--lt-hero-arrow-border-width, 0px) solid var(--lt-hero-arrow-border-color, transparent);
    box-shadow: var(--lt-hero-arrow-shadow, none);
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lemon-hero-arrow:hover {
    color: var(--lt-hero-arrow-hover-color, var(--lt-hero-arrow-color, #fff));
    background: var(--lt-hero-arrow-hover-bg, var(--lt-hero-arrow-bg, rgba(0,0,0,.35)));
    border-color: var(--lt-hero-arrow-hover-border-color, var(--lt-hero-arrow-border-color, transparent));
    box-shadow: var(--lt-hero-arrow-hover-shadow, var(--lt-hero-arrow-shadow, none));
}

.lemon-hero-dots {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: var(--lt-hero-dots-gap, 8px);
}

.lemon-hero-dots-pos-bottom-center { left: 50%; bottom: var(--lt-hero-dots-offset, 24px); transform: translateX(-50%); }
.lemon-hero-dots-pos-bottom-left { left: var(--lt-hero-dots-offset-x, 24px); bottom: var(--lt-hero-dots-offset, 24px); }
.lemon-hero-dots-pos-bottom-right { right: var(--lt-hero-dots-offset-x, 24px); bottom: var(--lt-hero-dots-offset, 24px); }
.lemon-hero-dots-pos-top-center { left: 50%; top: var(--lt-hero-dots-offset, 24px); transform: translateX(-50%); }
.lemon-hero-dots-pos-top-left { left: var(--lt-hero-dots-offset-x, 24px); top: var(--lt-hero-dots-offset, 24px); }
.lemon-hero-dots-pos-top-right { right: var(--lt-hero-dots-offset-x, 24px); top: var(--lt-hero-dots-offset, 24px); }

.lemon-hero-dot {
    width: var(--lt-hero-dot-size, 10px);
    height: var(--lt-hero-dot-size, 10px);
    border-radius: var(--lt-hero-dot-radius, 999px);
    background: var(--lt-hero-dot-bg, rgba(255,255,255,.5));
    border: var(--lt-hero-dot-border-width, 0px) solid var(--lt-hero-dot-border-color, transparent);
    box-shadow: var(--lt-hero-dot-shadow, none);
    transition: width .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lemon-hero-dot:hover {
    background: var(--lt-hero-dot-hover-bg, var(--lt-hero-dot-bg, rgba(255,255,255,.5)));
    border-color: var(--lt-hero-dot-hover-border-color, var(--lt-hero-dot-border-color, transparent));
    box-shadow: var(--lt-hero-dot-hover-shadow, var(--lt-hero-dot-shadow, none));
}

.lemon-hero-dot.is-active {
    width: var(--lt-hero-dot-active-size, var(--lt-hero-dot-size, 10px));
    background: var(--lt-hero-dot-active-bg, #fff);
    border-color: var(--lt-hero-dot-active-border-color, var(--lt-hero-dot-border-color, transparent));
    box-shadow: var(--lt-hero-dot-active-shadow, var(--lt-hero-dot-shadow, none));
}

@media (max-width: 1024px) {
    .lemon-hero-core {
        --lt-hero-ratio: var(--lt-hero-ratio-tablet, var(--lt-hero-ratio));
        --lt-hero-min-height: var(--lt-hero-min-height-tablet, var(--lt-hero-min-height));
    }
}

@media (max-width: 767px) {
    .lemon-hero-core {
        --lt-hero-ratio: var(--lt-hero-ratio-mobile, var(--lt-hero-ratio-tablet, var(--lt-hero-ratio)));
        --lt-hero-min-height: var(--lt-hero-min-height-mobile, var(--lt-hero-min-height-tablet, var(--lt-hero-min-height)));
    }
}

/* Elementor nested child injected by Widget_Nested_Base inside each slide.
 * This IS the content box: it carries padding and max-width and is positioned
 * by the flex alignment on .lemon-hero-slide-item (content position control).
 * Height is intentionally auto so vertical content position works. */
.lemon-hero-slide-item > .elementor-element.e-con,
.lemon-hero-slide-item > .lemon-hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--lt-hero-content-max-width, 100%);
    padding: var(--lt-hero-content-padding);
    pointer-events: auto;
}

.lemon-hero-slide-item > .elementor-element.e-con > .e-con-inner {
    width: 100%;
}

/* 1.16.31 — Hero Slides: the nested slide container must fill the whole hero.
 * The user should position/design the content inside that full-size Elementor
 * container, not inside a small centered child box. */
.lemon-hero-slides-widget .lemon-hero-slide-item > .elementor-element.e-con,
.lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-content-container {
    align-self: stretch !important;
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: inherit !important;
    margin: 0 !important;
    --width: 100%;
    --min-height: 100%;
    --content-width: 100%;
}

.lemon-hero-slides-widget .lemon-hero-slide-item > .elementor-element.e-con > .e-con-inner,
.lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-content-container > .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    height: 100% !important;
    flex: 1 1 auto !important;
}

/* Arrow icons must sit visually centered inside the circular button. */
.lemon-hero-arrow,
.lemon-hero-arrow * {
    line-height: 1 !important;
}

.lemon-hero-arrow > i,
.lemon-hero-arrow > svg,
.lemon-hero-arrow .eicon,
.lemon-hero-arrow .fas,
.lemon-hero-arrow .far,
.lemon-hero-arrow .fab {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1 !important;
}

.lemon-hero-arrow svg {
    margin: 0;
}


/* =====================================================================
 * v1.16.56 — Hero Slides editor: active slide fills Hero min-height.
 *
 * Based on the working 1.16.54 click-selection behaviour. This only fixes the
 * editor layout: the active slide, its background and the nested Elementor
 * container all use the Hero min-height, and the Hero content-position control
 * is applied to the slide's root nested container.
 * ===================================================================== */
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    overflow: visible !important;
    background: transparent !important;
}

.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage,
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    overflow: visible !important;
}

/* Inactive slides: keep them in the DOM for Elementor/Navigator mapping, but
 * remove them from the visible editor canvas and from pointer hit-testing. */
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    display: flex !important;
    width: 100% !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transition: none !important;
    border-radius: 10px !important;
    z-index: 0 !important;
}

/* Active/selected slide: one visible slide, full Hero min-height, real flex
 * frame. The background fills this same frame instead of only the content box. */
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item.is-active,
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item:has(> .elementor-element-editable),
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item:has(.elementor-element-editable),
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item:has(.elementor-selected) {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: hidden !important;
    z-index: 2 !important;
}

/* Real background/overlay DOM stays behind the nested content and always fills
 * the full editor Hero height. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-bg,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-overlay,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-link {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    pointer-events: none !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-bg {
    z-index: 0 !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-bg img,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-bg video {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: var(--lt-hero-bg-fit, cover) !important;
    object-position: var(--lt-hero-bg-position, center center) !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-overlay {
    z-index: 1 !important;
}

/* The injected Elementor container remains the real editable target, but now it
 * occupies the whole Hero frame in the editor. This fixes the white empty area
 * below the content and makes the canvas height match the frontend min-height. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .elementor-element.e-con,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-content-container {
    position: relative !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    margin: 0 !important;
    padding: var(--lt-hero-content-padding) !important;
    flex: 1 1 auto !important;
    pointer-events: auto !important;
    overflow: visible !important;
}

/* Boxed containers use .e-con-inner. Let the inner box keep its natural height
 * so the root slide container can vertically align it. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .elementor-element.e-con > .e-con-inner,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-content-container > .e-con-inner {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto !important;
}

/* Apply the Hero content-position control to the root nested container in the
 * editor. Elementor e-con containers are flex boxes, so this centres/top/bottoms
 * the editable widgets without blocking inline editing. */
.elementor-editor-active .lemon-hero-content-pos-top-left .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-top-left .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-start !important; align-items: flex-start !important; }
.elementor-editor-active .lemon-hero-content-pos-top-center .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-top-center .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-start !important; align-items: center !important; }
.elementor-editor-active .lemon-hero-content-pos-top-right .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-top-right .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-start !important; align-items: flex-end !important; }

.elementor-editor-active .lemon-hero-content-pos-center-left .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-center-left .lemon-hero-slide-item > .elementor-element.e-con { justify-content: center !important; align-items: flex-start !important; }
.elementor-editor-active .lemon-hero-content-pos-center .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-center .lemon-hero-slide-item > .elementor-element.e-con { justify-content: center !important; align-items: center !important; }
.elementor-editor-active .lemon-hero-content-pos-center-right .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-center-right .lemon-hero-slide-item > .elementor-element.e-con { justify-content: center !important; align-items: flex-end !important; }

.elementor-editor-active .lemon-hero-content-pos-bottom-left .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-bottom-left .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-end !important; align-items: flex-start !important; }
.elementor-editor-active .lemon-hero-content-pos-bottom-center .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-bottom-center .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-end !important; align-items: center !important; }
.elementor-editor-active .lemon-hero-content-pos-bottom-right .lemon-hero-slide-item > .lemon-hero-content-container,
.elementor-editor-active .lemon-hero-content-pos-bottom-right .lemon-hero-slide-item > .elementor-element.e-con { justify-content: flex-end !important; align-items: flex-end !important; }

/* Empty slides remain large enough to drop content. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .elementor-element.e-con.e-empty,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item > .lemon-hero-content-container.e-empty {
    min-height: var(--lt-hero-min-height, 480px) !important;
}

/* Slide name shown as a small non-interactive badge. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-summary {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    z-index: 5 !important;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    clip-path: none !important;
    overflow: visible !important;
    white-space: nowrap !important;
    opacity: 1 !important;
    pointer-events: none !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(0, 0, 0, .5) !important;
}

/* Slideshow navigation is frontend-only; hide it in the editor. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-arrows,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-dots {
    display: none !important;
}

/* =====================================================================
 * v1.16.57 — Hero Slides editor: empty slide full-width + no canvas jump.
 *
 * Keep the 1.16.54/1.16.56 working click selection, but make new/empty
 * nested containers occupy the full editable Hero width in the editor.
 * ===================================================================== */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con.e-empty,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container.e-empty {
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con.e-empty > .e-con-inner,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container.e-empty > .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    align-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 100% !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con.e-empty .elementor-empty-view,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container.e-empty .elementor-empty-view,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con.e-empty .elementor-add-section,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container.e-empty .elementor-add-section,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con.e-empty .elementor-add-section-inner,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container.e-empty .elementor-add-section-inner {
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
}


/* =====================================================================
 * v1.16.58 — Hero Slides editor: full-width active/empty slide.
 *
 * Keep only one slide visible in the editor, but force the active Elementor
 * nested container and the empty-drop placeholder to stretch across the full
 * Hero frame. This is intentionally editor-only and does not affect frontend.
 * ===================================================================== */
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget,
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage,
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides,
.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item.is-active {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.elementor-editor-active .lemon-hero-core.lemon-hero-slides-widget > .lemon-hero-stage > .lemon-hero-slides > .lemon-hero-slide-item.is-active {
    align-items: stretch !important;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container {
    align-self: stretch !important;
    flex: 1 1 100% !important;
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: var(--lt-hero-min-height, 480px) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    --width: 100%;
    --min-height: var(--lt-hero-min-height, 480px);
    --content-width: 100%;
    --container-widget-width: 100%;
    --container-widget-flex-grow: 1;
}

.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .elementor-element.e-con > .e-con-inner,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active > .lemon-hero-content-container > .e-con-inner {
    align-self: stretch !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    box-sizing: border-box !important;
}

/* Elementor empty containers otherwise render a small centred drop area. In a
 * Hero slide that makes a newly-added slide look narrow, even though the slide
 * itself is full width. Stretch the empty view, not the widget content. */
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active .elementor-empty-view,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active .elementor-add-section,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active .elementor-add-section-inner,
.elementor-editor-active .lemon-hero-slides-widget .lemon-hero-slide-item.is-active .e-view.elementor-add-new-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    box-sizing: border-box !important;
}
