/* Carousel Navigation */
.carousel-container {
    position: relative;
    max-width: 1280px;
    /* Slightly wider to accommodate buttons */
    margin: 0 auto;
    padding: 0 20px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    /* Orange */
    color: white;
    border: none;
    border-radius: 50%;
    /* Circle */
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    opacity: 0.8;
}

.nav-btn:hover {
    opacity: 1;
    background: white;
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.nav-btn.prev {
    left: -25px;
    /* Outside on desktop */
}

.nav-btn.next {
    right: -25px;
    /* Outside on desktop */
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1350px) {
    .nav-btn.prev {
        left: 10px;
        /* Inside on smaller screens */
    }

    .nav-btn.next {
        right: 10px;
        /* Inside on smaller screens */
    }
}

@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 107, 0, 0.9);
        /* Slightly transparent on mobile */
    }
}