/* Navigation Buttons */
.nav-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 0;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: none;
    padding: 0;
    margin: 0;
    position: relative;
    outline: none;
    font-weight: 700;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-btn iconify-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    margin: 0;
    padding: 0;
    display: block;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
}

.nav-btn.bottom-nav {
    position: absolute;
    bottom: 40px;
    transform: translateY(0);
    opacity: 0;
    pointer-events: none;
}

.nav-btn.bottom-nav.visible {
    opacity: 1;
    pointer-events: all;
}

.nav-btn:hover {
    background: transparent;
    border: none;
    transform: scale(1.2);
    box-shadow: none;
    opacity: 0.8;
    cursor: pointer;
}

.nav-btn.bottom-nav:hover {
    transform: scale(1.1);
}

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* Slide Indicators */
.slide-indicators {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 99;
    padding-bottom: 10px;
}

.indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #ff6666;
    width: 12px;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255, 102, 102, 0.6);
    border-color: rgba(255, 102, 102, 0.3);
}

@media (max-width: 768px) {
    .nav-btn {
        width: auto;
        height: auto;
        font-size: 1.5rem;
    }

    .nav-btn.bottom-nav {
        bottom: 100px;
    }

    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }

    .slide-indicators {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        width: auto;
        height: auto;
        font-size: 1.25rem;
    }

    .nav-btn.bottom-nav {
        bottom: 80px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .slide-indicators {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: 10px;
    }
}

