/* Hero Carousel Styles */
.hero-slide {
    transition: opacity 0.5s ease;
    opacity: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* Slider Styles */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #9CA3AF, #3B82F6, #EF4444);
    height: 8px;
    border-radius: 4px;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #16366B;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #16366B;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Moving Clock Animation */
@keyframes moveClock {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400px);
    }
}

.moving-clock {
    animation: moveClock 2s linear infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slide h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
}

/* Hide scrollbar for snap scrolling */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Snap scrolling for agents */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

/* Card hover effects */
.retail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.retail-card:hover {
    transform: translateY(-8px);
}

/* Gradient mask for carousel */
.mask-gradient-x {
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}