/* Scrollbar Hiding */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Minimal visible scrollbar */
.scrollbar-apple {
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.34) rgba(17, 17, 17, 0.08);
}

.scrollbar-apple::-webkit-scrollbar {
    width: 10px;
}

.scrollbar-apple::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.08);
    border-radius: 999px;
}

.scrollbar-apple::-webkit-scrollbar-thumb {
    background: rgba(17, 17, 17, 0.32);
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.scrollbar-apple::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 17, 17, 0.42);
    background-clip: padding-box;
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee {
    animation: marquee 25s linear infinite;
}
@keyframes marquee2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0%); }
}
.animate-marquee2 {
    animation: marquee2 25s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 3s linear infinite;
}

/* Simulator Items */
.sim-item {
    transition: transform 0.5s ease-in-out;
}

/* Scroll Animation Trigger */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Comparison Slider Cursor */
.cursor-ew-resize {
    cursor: ew-resize;
}
