.swipe-arrows {
    position: fixed;
    top: 50%;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    transform: translateY(-50%);
    display: none; /* Oculto por defecto */
}

.swipe-arrow {
    position: absolute;
    width: 50px;
    height: 100px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    opacity: 0.9;
}

.swipe-arrow:hover {
    opacity: 1;
    background-color: rgba(0,0,0,0.9);
}

.swipe-prev {
    left: 0;
    border-radius: 0 5px 5px 0;
    transform: translateX(-10px);
    transition: transform 0.2s ease;
}

.swipe-next {
    right: 0;
    border-radius: 5px 0 0 5px;
    transform: translateX(10px);
    transition: transform 0.2s ease;
}

.swipe-prev.active, .swipe-next.active {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .swipe-arrow {
        width: 40px;
        height: 80px;
        font-size: 24px;
    }
}