.product-attachments-wrapper {
    margin: 20px 0;
}

.attachments-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.attachment-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #FFFFFF;
    color: #193567 !important; /* <== Forceren tekstkleur */
    text-decoration: none;
    border: 1px solid rgba(25, 53, 103, 0.29);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: normal !important; /* <== Niet dikgedrukt */
    font-size: 14px;
}

.attachment-button:hover {
    background-color: #f0f4ff;
    border-color: #193567;
    color: #193567 !important;
}

.attachment-button svg {
    stroke: #193567;
}

.download-icon {
    width: 18px;
    height: auto;
    flex-shrink: 0;
}

/* Popup overlay gecentreerd */
.gpfpa-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

/* Forceer flex ook als JS inline display:block toevoegt */
.gpfpa-video-overlay.is-active {
    display: flex !important;
}

.gpfpa-video-overlay .video-popup-inner {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    max-width: 750px;
    width: 92%;
    animation: fadeInScale 0.25s ease;
}

.gpfpa-video-overlay .video-popup-inner .video-frame {
    width: 100%;
    height: 420px;
    border: none;
}

.gpfpa-video-overlay .video-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

@keyframes fadeInScale {
    from {opacity:0; transform:scale(0.9);}
    to {opacity:1; transform:scale(1);}
}

