/* Small additions for the PHP build (lightbox, price slider, swiper nav) */

.avro-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.avro-lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}
.avro-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.single-certificate img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    transition: transform .3s;
}
.single-certificate img:hover { transform: translateY(-4px); }

/* Price range: stack the two sliders */
.price-range-wrap {
    position: relative;
    height: 34px;
}
.price-range-wrap input[type="range"] {
    position: absolute;
    left: 0;
    top: 6px;
    width: 100%;
    margin: 0;
    background: transparent;
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
}
.price-range-wrap input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #e5e5e5;
    border-radius: 4px;
}
.price-range-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6px;
    border-radius: 50%;
    background: var(--color-primary, #0d6efd);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.partner-img { max-width: 200px; max-height: 120px; object-fit: contain; }
.single-partner { display: flex; align-items: center; justify-content: center; }

/* Product detail swiper nav arrows */
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev { color: #333; }
