.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--bright-orange); /* Using the orange from your theme */
    border-color: var(--bright-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Ensure controls are visible on mobile but smaller */
@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .prev-btn { left: 15px; }
    .next-btn { right: 15px; }
}
