/* ============================================================
   Fancybox 3 – Font Awesome 6 Pro icon overrides
   ============================================================ */

/* Hide default SVG icons */
.fancybox-button svg {
    display: none !important;
}

/* Shared pseudo-element for all overridden buttons */
.fancybox-button::before {
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 18px;
    pointer-events: none;
}

/* Close button */
.fancybox-button--close::before {
    content: "\f00d";
}

/* Navigation arrow buttons */
.fancybox-button--arrow_left::before {
    content: "\f104";
    font-size: 24px;
}
.fancybox-button--arrow_right::before {
    content: "\f105";
    font-size: 24px;
}

/* Download button */
.fancybox-button--download::before {
    content: "\f019";
}

/* Zoom button */
.fancybox-button--zoom::before {
    content: "\f00e";
}
