.sb-slideshow-section {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 20px;
}
.sb-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: 600px;
}
.mobile-fixed-height {
    height: 500px;
}
.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;
    height: 100%;
    display: flex;
    align-items: center;
}
.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;
}
.shop-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    color: #1a1a1a;
    padding: 14px 14px 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: color 0.4s ease;
    z-index: 1;
}
.shop-now-btn .btn-bg {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.shop-now-btn .btn-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.shop-now-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}
.shop-now-btn:hover {
    color: #ffffff;
}
.shop-now-btn:hover .btn-bg {
    right: 0;
    top: 0;
    transform: translateY(0);
    width: 100%;
    height: 100%;
    border-radius: 50px;
}
.shop-now-btn:hover .btn-icon {
    transform: rotate(45deg);
}
.text-reveal-content {
    display: block !important;
    overflow: hidden !important;
}
.sb-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 .sb-animate {
    opacity: 1;
    transform: translateY(0);
}
.splide__slide:not(.is-active) .sb-animate {
    opacity: 0;
    transform: translateY(100%);
    transition: none !important;
}
.sb-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: 550px;
    }
}
@media (max-width: 767px) {
    .sb-slideshow-section {
        padding: 10px;
    }
    .slideshow-content-wrapper {
        padding: 0 25px;
        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: 500px;
    }
    .splide__pagination {
        padding-right: 20px !important;
        right: 0 !important;
        left: 0 !important;
        justify-content: center !important;
        bottom: 20px !important;
    }
}