.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;
    padding: 20px;
    box-sizing: border-box;
}

.gpcf-popup {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 35px 30px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.gpcf-logo {
    width: 100px;
    display: block;
    margin: 0 auto 18px;
}

.gpcf-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin: 0 0 22px;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Header dugmad iznad tabele */
.gpcf-headers {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.gpcf-store-btn {
    flex: 1;
    display: block;
    background: #d81111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 12px 6px;
    border-radius: 5px;
}

.gpcf-store-btn:hover {
    background: #b90f0f;
}

/* Tabela: 2 kolone (RS/EU) x 2 reda (SR/EN) = 4 kvadranta.
   Jedna vertikalna i jedna horizontalna linija, tačno na sredini, bez prekida. */
.gpcf-table {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 18px;
    padding: 4px 0;
}

.gpcf-table::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #e2e2e2;
}

.gpcf-table::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    height: 1px;
    background: #e2e2e2;
}

.gpcf-quad {
    text-align: left;
    padding: 0 14px;
}

.gpcf-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gpcf-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.gpcf-list li:last-child {
    margin-bottom: 0;
}

.gpcf-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
    object-fit: cover;
}

.gpcf-icon-check {
    border-radius: 50%;
}

.gpcf-list li span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: #333;
}

/* Responsivnost za mobilne */
@media (max-width: 480px) {
    .gpcf-popup {
        padding: 28px 18px 20px;
    }

    .gpcf-list li span {
        font-size: 12.5px;
    }
}
