/*
 * Product Video Gallery for WooCommerce (nickx)
 * ------------------------------------------------------------
 * Custom styling for slider navigation arrows.
 *
 * Notes:
 * - Plugin uses inline background styles on `.main_arrow`
 *   → requires `!important` to override.
 * - Uses custom classes like `.nswiper-button-*` (not standard Swiper).
 * - Arrows are styled as rounded, semi-transparent buttons.
 * - Keep selectors scoped to `.images.nickx_product_images_with_video`
 *   to avoid conflicts with other sliders.
 */

.images.nickx_product_images_with_video .main_arrow {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28) !important; /* override inline style */
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.images.nickx_product_images_with_video .main_arrow::after {
    font-size: 18px !important;
/*     color: #fff; is in settings plugin */
}


