/* ============================================
   POPUP POTVRDA — dodaj na kraj style.css
   ============================================ */

#potvrda-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

#potvrda-popup.vidljiv {
    opacity: 1;
}

.potvrda-inner {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

#potvrda-popup.vidljiv .potvrda-inner {
    transform: translateY(0);
}

.potvrda-ikona {
    width: 70px;
    height: 70px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
}

.potvrda-inner h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.potvrda-inner p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.potvrda-inner .btn-primary {
    min-width: 140px;
}
