.gpcf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.45);
    z-index: 9999999;
}

.gpcf-popup {
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 40px 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gpcf-logo {
    width: 110px;
    display: block;
    margin: 0 auto 10px;
}

.gpcf-subtitle {
    font-size: 15px;
    color: #a4a4a4;
    margin-top: 0;
}

.gpcf-title {
    font-family: 'Peshka', sans-serif;
    font-size: 26px;
    font-weight: 400;
    margin: 10px 0 20px;
}

.gpcf-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gpcf-choose {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Inter Tight', sans-serif !important;

}

.gpcf-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.gpcf-btn {
    flex: 1;
    padding: 12px 18px;
    background: #d81111;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.gpcf-btn:hover {
    background: #b90f0f;
}

.gpcf-note {
    font-size: 12px;
    color: #777;
}

/* Responsivnost za mobilne */
@media (max-width: 480px) {
    .gpcf-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
