#zc-popup-cookies {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    width: 100vw;
    z-index: 8500;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
    pointer-events: none;
}

.zc-popup-content {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 -2px 16px rgba(80,100,140,0.12);
    margin: 0;
    padding: 9px 0 5px 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    pointer-events: all;
    font-family: Arial, sans-serif;
    font-size: 12.5px;
}

#zc-popup-header {
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    color: #1e2948;
    margin: 0 18px 1px 18px;
    line-height: 1.19;
    padding: 0;
}

#zc-popup-body {
    font-size: 12px;
    line-height: 1.38;
    color: #36373d;
    margin: 0 18px 4px 18px;
    padding: 0;
    max-height: 48px;     /* desktop - kompaktowy */
    overflow-y: auto;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: #e2e4ea #fff;
}

#zc-popup-body a {
    color: #406ee6;
    text-decoration: none;
    transition: color 0.18s;
    font-weight: 500;
}
#zc-popup-body a:hover, #zc-popup-body a:focus {
    color: #1845a2;
    outline: none;
}

.zc-popup-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 18px 0 18px;
    justify-content: flex-start;
}

#zc-popup-btn {
    border: none;
    border-radius: 7px;
    font-weight: bold;
    padding: 6px 18px;
    cursor: pointer;
    box-shadow: 0 2px 7px rgba(0,0,0,0.06);
    background: #2755C2;
    color: #fff;
    font-size: 12px;
    transition: background 0.18s;
    margin-top: 3px;
}
#zc-popup-btn:hover,
#zc-popup-btn:active {
    background: #18377a;
}

@media (max-width: 600px) {
    .zc-popup-content {
        width: 100vw;
        min-width: 0;
        max-width: 100vw;
        border-radius: 0;
        padding: 7px 0 4px 0;
    }
    #zc-popup-header {
        font-size: 12px;
        margin: 0 6px 1px 6px;
    }
    #zc-popup-body {
        font-size: 11px;
        margin: 0 6px 4px 6px;
        max-height: 78px;
    }
    .zc-popup-actions {
        margin: 0 6px 0 6px;
        width: 100%;
        justify-content: center;
    }
    #zc-popup-btn {
        display: block;
        width: 80%;
        min-width: 110px;
        max-width: 310px;
        margin: 7px auto 0 auto;
        padding: 9px 0;
        font-size: 12.5px;
        border-radius: 7px;
        text-align: center;
    }
}
