.ao-slideshow-section {
    position: relative;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    background: transparent;
    padding: 20px;
}

.ao-slideshow-section .splide__track {
    border-radius: 20px;
    overflow: hidden;
}

.slideshow-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.desktop-fixed-height {
    height: 650px;
}

.mobile-fixed-height {
    height: 650px;
}

.slideshow-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-md-none {
    display: none !important;
}

.d-md-block {
    display: block !important;
}

@media (max-width: 767px) {
    .d-md-none {
        display: block !important;
    }

    .d-md-block {
        display: none !important;
    }
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.slideshow-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 60px 60px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.slideshow-content {
    max-width: 700px;
    color: #fff;
}

.slideshow-content.small-width {
    max-width: 500px;
}

.slideshow-content.medium-width {
    max-width: 800px;
}

.slideshow-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.slideshow-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #fff;
}

/* ── Slider hero button (liquid-fill lb-btn style) ─────────────────── */
.shop-now-btn {
    /* White button with black fill bubble on hover */
    --color-btn: 10, 10, 10;
    --color-btn-text: 255, 255, 255;

    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 15px 40px;
    border-radius: clamp(1em, 1.7vw, 1.7em);
    border: 2px solid #fff;
    background: #ffffff;
    text-decoration: none;
    outline: none;
    line-height: 1;
    transition: border-color 0.15s ease;
}

/* Bubble fill — starts below, slides up on hover */
.shop-now-btn .btn-fill {
    display: block;
    position: absolute;
    border-radius: 50%;
    width: 150%;
    height: 200%;
    top: -50%;
    left: -25%;
    background-color: rgb(10, 10, 10);
    pointer-events: none;
    z-index: 0;
    /* Initial position is set by JS (translate3d 76%) */
}

/* Text layer */
.shop-now-btn .btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(10, 10, 10);
    white-space: nowrap;
    transition: color 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}


.text-reveal-content {
    display: block !important;
    overflow: hidden !important;
}

.ao-animate {
    opacity: 0;
    transform: translateY(100%);
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.is-active .ao-animate {
    opacity: 1;
    transform: translateY(0);
}

.splide__slide:not(.is-active) .ao-animate {
    opacity: 0;
    transform: translateY(100%);
    transition: none !important;
}

.ao-slideshow-section .splide__pagination {
    position: absolute !important;
    bottom: 50px !important;
    right: 50px !important;
    left: auto !important;
    width: auto !important;
    padding: 0 !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    z-index: 10;
}

.splide__pagination__page {
    background: #fff !important;
    width: 8px !important;
    height: 8px !important;
    border: none !important;
    margin: 0 !important;
    opacity: 0.5 !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: none !important;
}

.splide__pagination__page.is-active {
    background: #fff !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 1024px) {
    .desktop-fixed-height {
        height: 650px;
    }
}

@media (max-width: 767px) {
    .ao-slideshow-section {
        padding: 10px;
    }

    .slideshow-content-wrapper {
        padding: 0 25px 60px;
        align-items: flex-end;
        justify-content: center;
    }

    .slideshow-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slideshow-heading {
        font-size: 2.4rem;
    }

    .mobile-fixed-height {
        height: 650px;
    }

    .splide__pagination {
        padding-right: 20px !important;
        right: 0 !important;
        left: 0 !important;
        justify-content: center !important;
        bottom: 20px !important;
    }
}