/* =============================================
   FAO Zone — Single Product Badge + Popup
   ============================================= */

.gth-fao-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    margin-bottom: .5rem;
    font-size: .85rem;
    color: var(--color-text, #333);
}

.gth-fao-badge a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--color-primary, #0a5c36);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-primary, #0a5c36);
    transition: opacity .15s;
}

.gth-fao-badge a:hover {
    opacity: .75;
    text-decoration: none;
}

.gth-fao-badge a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* --- Overlay --- */
.gth-fao-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gth-fao-overlay.active {
    display: flex;
}

/* --- Modal --- */
.gth-fao-modal {
    background: #fff;
    border-radius: 10px;
    max-width: 860px;
    width: 100%;
    padding: 1.25rem;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.gth-fao-modal img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.gth-fao-modal__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .75rem;
    color: var(--color-primary, #0a5c36);
}

.gth-fao-close {
    position: absolute;
    top: .6rem;
    right: .75rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: .25rem .5rem;
}

.gth-fao-close:hover {
    color: #000;
}
