/* STICKY SCROLL FIX - MAXIMUM SPECIFICITY */

/* Remove BW theme interference */
body>section.sticky-features-wrapper,
section.sticky-features-wrapper,
.sticky-features-wrapper {
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

/* Force grid layout */
.sticky-features-wrapper .sticky-features-container,
.sticky-features-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 100vh !important;
    width: 100% !important;
    gap: 0 !important;
}

/* LEFT SIDE - FORCE VISIBILITY */
.sticky-features-wrapper .scrolling-descriptions,
.scrolling-descriptions {
    background: transparent !important;
    order: 1 !important;
    z-index: 10 !important;
}

.sticky-features-wrapper .feature-scroll-item,
.feature-scroll-item {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 60px !important;
    background: transparent !important;
    scroll-snap-align: center !important;
    /* Snap to center */
    scroll-snap-stop: always !important;
    /* Force stop at each item */
}

.sticky-features-wrapper .feature-scroll-item p,
.feature-scroll-item p {
    font-size: 1.25rem !important;
    color: #000000 !important;
    max-width: 600px !important;
    line-height: 1.8 !important;
    opacity: 0 !important;
    /* Start hidden */
    transform: translateY(50px) !important;
    /* Start from bottom */
    opacity: 0 !important;
    /* Start hidden */
    transform: translateY(50px) !important;
    /* Start from bottom */
    transition: all 0.8s ease-out !important;
    visibility: visible !important;
    text-align: center !important;
    /* Center the text itself */
    margin: 0 auto !important;
    /* Ensure block is centered if width < max-width */
}

.sticky-features-wrapper .feature-scroll-item p.active,
.feature-scroll-item p.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.sticky-features-wrapper .feature-scroll-item p.exit-up,
.feature-scroll-item p.exit-up {
    opacity: 0 !important;
    transform: translateY(-50px) !important;
    /* Exit to top */
}

.sticky-features-wrapper .feature-scroll-item *,
.feature-scroll-item *,
.sticky-features-wrapper .scrolling-descriptions *,
.scrolling-descriptions * {
    color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* RIGHT SIDE - FORCE STICKY WITH ARTISTIC STYLING */
.sticky-features-wrapper .sticky-heading-panel,
.sticky-heading-panel {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 20px !important;
    height: calc(100vh - 40px) !important;
    background: #000000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    z-index: 5 !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(156, 39, 176, 0.3) !important;
    overflow: hidden !important;
}

/* Add subtle gradient overlay for artistic effect */
.sticky-heading-panel::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, transparent 50%, rgba(156, 39, 176, 0.05) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.sticky-features-wrapper .sticky-heading-panel h2,
.sticky-heading-panel h2,
#sticky-feature-heading {
    font-size: 3rem !important;
    color: #9c27b0 !important;
    padding: 60px !important;
    text-align: center !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2 !important;
}

.sticky-features-wrapper .sticky-heading-panel *,
.sticky-heading-panel * {
    color: #9c27b0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}