.mt-elementor-hero-slider {
    width: 100%;
    aspect-ratio: 1440 / 700;
    position: relative;
    overflow: hidden;
    background: #eef3f8;
}

.mt-elementor-hero-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.mt-elementor-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.mt-elementor-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mt-elementor-hero-slider .mt-elementor-hero-slide-image {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center;
}

.mt-elementor-hero-slide-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(143, 137, 250, 0.16), rgba(46, 240, 214, 0.14)),
        #eef3f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-family: var(--vape-font-brand);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
}

.mt-elementor-hero-slide-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: min(520px, 42vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.mt-elementor-hero-slide-content h1 {
    margin: 0;
    color: #ffffff;
    font-family: var(--vape-font-brand);
    font-size: clamp(42px, 4.8vw, 76px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mt-elementor-hero-slide-content p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--vape-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.mt-elementor-hero-slide-button {
    position: absolute;
    top: 60%;
    left: 58%;
    z-index: 3;
    width: 173px;
    height: 32px;
    padding: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #0d0d0d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vape-font-brand);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mt-elementor-hero-slide-button:hover,
.mt-elementor-hero-slide-button:focus {
    color: #0d0d0d;
    background: #ffffff;
    text-decoration: none;
    opacity: 0.88;
    transform: translateY(-1px);
}

.mt-elementor-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 12px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mt-elementor-hero-arrow img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.mt-elementor-hero-arrow span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 54px;
    font-weight: 200;
    line-height: 1;
    pointer-events: none;
}

.mt-elementor-hero-arrow-prev {
    left: 10px;
}

.mt-elementor-hero-arrow-next {
    right: 10px;
}

.mt-elementor-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mt-elementor-hero-slider .mt-elementor-hero-dots button.mt-elementor-hero-dot {
    width: 13px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #F2F2F2;
    background-color: #F2F2F2;
    background-image: none;
    padding: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.2s ease, width 0.2s ease, opacity 0.2s ease;
}

.mt-elementor-hero-slider .mt-elementor-hero-dots button.mt-elementor-hero-dot.is-active {
    width: 100px;
    background: #2EF0D6;
    background-color: #2EF0D6;
    background-image: none;
}

.mt-elementor-hero-dot:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    /* Hero text is baked into the landscape image (2560x1244, product left / copy right).
       Preserve the native ratio so the full composition (headline + subtitle) stays
       visible instead of cropping it to a center strip. */
    .mt-elementor-hero-slider {
        aspect-ratio: 2560 / 1244;
        height: auto;
    }

    .mt-elementor-hero-slide-image {
        object-fit: cover;
        object-position: center;
    }

    /* baked copy lives on the right; content div is empty, so nothing to reflow */
    .mt-elementor-hero-slide-content {
        display: none;
    }

    /* park "Shop Now" just under the baked subtitle on the right */
    .mt-elementor-hero-slide-button {
        top: 60%;
        left: auto;
        right: 12%;
        bottom: auto;
        transform: none;
        width: clamp(88px, 24vw, 150px);
        height: clamp(24px, 6.6vw, 34px);
        padding: 0 12px;
        font-size: clamp(10px, 3vw, 14px);
    }

    .mt-elementor-hero-slide-button:hover,
    .mt-elementor-hero-slide-button:focus {
        transform: translateY(-1px);
    }

    .mt-elementor-hero-arrow {
        display: none;
    }

    .mt-elementor-hero-dots {
        bottom: clamp(8px, 2.5vw, 18px);
    }

    .mt-elementor-hero-slider .mt-elementor-hero-dots button.mt-elementor-hero-dot.is-active {
        width: 48px;
    }
}