/**
 * Carousel Navigation Widget Styles
 *
 * @package YourDirection
 */

/* ==========================================================================
   Layout
   ========================================================================== */

.yd-carousel-nav {
    display: flex;
    align-items: center;
    gap: 0 !important;
}

/* Hidden until JS connects to a valid carousel */
.yd-carousel-nav:not(.yd-carousel-nav--connected) {
    visibility: hidden;
}

/* Hidden when no overflow (both buttons disabled) */
.yd-carousel-nav--hidden {
    display: none;
}

/* In Elementor editor, always show for editing convenience */
.elementor-editor-active .yd-carousel-nav {
    visibility: visible !important;
}

/* ==========================================================================
   Button Base
   ========================================================================== */

.yd-carousel-nav__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 25px;
    transition: opacity 0.2s ease, transform 0.15s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.yd-carousel-nav__btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.yd-carousel-nav__btn svg {
    width: 1em !important;
    height: auto !important;
    display: block;
    pointer-events: none;
}

/* ==========================================================================
   Disabled State
   ========================================================================== */

.yd-carousel-nav__btn[disabled] {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ==========================================================================
   Light Theme
   ========================================================================== */

.yd-carousel-nav--light .yd-carousel-nav__btn {
    background-color: transparent;
    color: #3F616D;
}

.yd-carousel-nav--light .yd-carousel-nav__btn:not([disabled]):hover {
    background-color: #39434712;
}

.yd-carousel-nav--light .yd-carousel-nav__btn:not([disabled]):active {
    transform: scale(0.95);
}

/* ==========================================================================
   Dark Theme
   ========================================================================== */

.yd-carousel-nav--dark .yd-carousel-nav__btn {
    background-color: transparent;
    color: #ffffff;
}

.yd-carousel-nav--dark .yd-carousel-nav__btn:not([disabled]):hover {
    background-color: #39434712;
}

.yd-carousel-nav--dark .yd-carousel-nav__btn:not([disabled]):active {
    transform: scale(0.95);
}
