/* =========================
   PG ARROWS – main product image (FIXED)
   ========================= */

.p-main-image,
.p-image {
    position: relative;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,182,237,.45);
    border: 0;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    opacity: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.product-gallery-arrow:hover {
    background: rgba(0,182,237,.65);
    transform: translateY(-50%) scale(1.05);
}

.product-gallery-arrow::before {
    font-family: shoptet, 'Open Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    line-height: 1;
}

/* levá / pravá šipka – VŽDY uvnitř obrázku */
.product-gallery-arrow.prev {
    left: 0;
}

.product-gallery-arrow.prev::before {
    content: '\e90f'; /* shoptet šipka doleva */
}

.product-gallery-arrow.next {
    right: 0;
}

.product-gallery-arrow.next::before {
    content: '\e910'; /* shoptet šipka doprava */
}