/* =====================================================
   PTTK - POPUP INFORMACYJNY SKLEPU
   Autor: Janus IT
   ===================================================== */

#pttk-shop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#pttk-shop-popup {
    background: #ffffff;
    color: #222222;
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    text-align: center;
}

#pttk-shop-popup h2 {
    color: #b00000;
    font-size: 24px;
    margin: 0 0 18px 0;
}

#pttk-shop-popup p {
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

#pttk-shop-popup .pttk-important {
    font-weight: bold;
    font-size: 16px;
}

#pttk-shop-popup label {
    display: block;
    margin: 22px 0 16px;
    font-size: 14px;
    cursor: pointer;
}

#pttk-shop-popup input {
    margin-right: 8px;
}

#pttk-shop-popup button {
    background: #b00000;
    color: #ffffff;
    border: 0;
    padding: 11px 28px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#pttk-shop-popup button:hover:not(:disabled) {
    background: #8d0000;
}

#pttk-shop-popup button:disabled {
    background: #aaaaaa;
    cursor: not-allowed;
}

@media (max-width: 600px) {

    #pttk-shop-overlay {
        padding: 15px;
    }

    #pttk-shop-popup {
        padding: 22px 16px;
    }

    #pttk-shop-popup h2 {
        font-size: 21px;
    }

    #pttk-shop-popup p {
        font-size: 14px;
    }

    #pttk-shop-popup .pttk-important {
        font-size: 15px;
    }
}