/* Simple RODO – Cookie Consent Popup */

/* Overlay */
.simple-rodo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999998;
    background: rgba(0, 0, 0, 0.5);
}

/* Popup wycentrowany na środku */
.simple-rodo-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
}

.simple-rodo-banner__inner {
    padding: 30px;
}

/* Nagłówek */
.simple-rodo-banner__header {
    text-align: center;
    margin-bottom: 20px;
}

.simple-rodo-banner__header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Tekst */
.simple-rodo-banner__text {
    margin-bottom: 20px;
    text-align: center;
}

.simple-rodo-banner__text p {
    margin: 0 0 8px;
    color: #555;
    font-size: 13px;
}

.simple-rodo-banner__text a {
    color: #0073aa;
    text-decoration: underline;
}

.simple-rodo-banner__text a:hover {
    color: #005177;
}

/* Accordion */
.simple-rodo-banner__accordion {
    margin-top: 12px;
}

.simple-rodo-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.simple-rodo-accordion-toggle:hover {
    color: #444;
}

.simple-rodo-accordion-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.simple-rodo-accordion-toggle[aria-expanded="true"] .simple-rodo-accordion-icon {
    transform: rotate(180deg);
}

.simple-rodo-accordion-body {
    padding-top: 12px;
}

/* Kategorie */
.simple-rodo-banner__categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
}

.simple-rodo-category {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
}

.simple-rodo-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #333;
}

.simple-rodo-category input[disabled] {
    opacity: 0.7;
}

.simple-rodo-category span {
    font-weight: 500;
}

/* Przyciski */
.simple-rodo-banner__buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.simple-rodo-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
    width: 100%;
}

.simple-rodo-btn:active {
    transform: scale(0.98);
}

.simple-rodo-btn--accept {
    background: #333;
    color: #fff;
}

.simple-rodo-btn--accept:hover {
    background: #555;
}

.simple-rodo-btn--save {
    background: #e8e8e8;
    color: #333;
}

.simple-rodo-btn--save:hover {
    background: #ddd;
}

.simple-rodo-btn--reject {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
}

.simple-rodo-btn--reject:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* Branding */
.simple-rodo-banner__branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    color: #999;
    font-size: 11px;
}

.simple-rodo-banner__branding svg {
    opacity: 0.5;
}

/* Przycisk "Ustawienia cookies" – mała ikonka w lewym dolnym rogu */
.simple-rodo-settings-btn {
    position: fixed;
    bottom: 12px;
    left: 12px;
    z-index: 999997;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.35;
    transition: opacity 0.2s ease;
}

.simple-rodo-settings-btn:hover {
    opacity: 0.8;
}

/* Responsywność */
@media (max-width: 600px) {
    .simple-rodo-banner {
        width: 94%;
        max-height: 85vh;
        border-radius: 10px;
    }

    .simple-rodo-banner__inner {
        padding: 20px 16px;
    }

    .simple-rodo-banner__header h2 {
        font-size: 16px;
    }

    .simple-rodo-banner__text p {
        font-size: 12px;
    }

    .simple-rodo-banner__categories {
        padding: 12px;
        gap: 8px;
    }

    .simple-rodo-category {
        font-size: 12px;
    }

    .simple-rodo-category input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .simple-rodo-btn {
        padding: 14px 20px;
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    .simple-rodo-banner__buttons {
        flex-direction: column;
    }

    .simple-rodo-settings-btn {
        bottom: 8px;
        left: 8px;
        font-size: 20px;
        font-size: 11px;
    }
}
