.ehs-horizontal-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ehs-horizontal-scroll-container {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.ehs-scroll-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    will-change: transform;
    transition: none;
}

.ehs-snap-enabled .ehs-scroll-container {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ehs-scroll-item {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ehs-scroll-item.ehs-transition-enabled {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ehs-item-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

/* Progress Bar */
.ehs-progress-bar {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.ehs-progress-bar.ehs-progress-top {
    top: 0;
}

.ehs-progress-bar.ehs-progress-bottom {
    bottom: 0;
}

.ehs-progress-fill {
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ehs-horizontal-scroll-wrapper.ehs-disable-mobile {
        height: auto !important;
    }
    
    .ehs-horizontal-scroll-wrapper.ehs-disable-mobile .ehs-horizontal-scroll-container {
        position: relative;
        height: auto;
    }
    
    .ehs-horizontal-scroll-wrapper.ehs-disable-mobile .ehs-scroll-container {
        flex-direction: column;
        transform: none !important;
    }
    
    .ehs-horizontal-scroll-wrapper.ehs-disable-mobile .ehs-scroll-item {
        width: 100% !important;
        min-width: 100% !important;
        height: auto;
        min-height: 100vh;
    }
}

/* Anchor Navigation */
.ehs-anchor-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ehs-anchor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ehs-anchor-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.ehs-anchor-dot.active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}