/*
* Filename: cookie_consent.css
* Directory: /www/css/
* File path: /www/css/cookie_consent.css
* Description: Samtykkebanner for WEBoracle.
* Language: Norwegian
* Copyright: Webmasterinfo.no
*/

.wo-cookie-consent {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 99999;
    padding: 18px;
    background: linear-gradient(180deg, rgba(9, 14, 22, 0), rgba(9, 14, 22, 0.92));
}

.wo-cookie-consent__panel {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(216, 132, 53, 0.45);
    border-radius: 18px;
    background: #101923;
    color: #eef3f8;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.wo-cookie-consent__panel h2 {
    margin: 0 0 10px;
    color: #f0b36f;
}

.wo-cookie-consent__panel p {
    margin: 0 0 10px;
    color: #d7dee7;
    line-height: 1.55;
}

.wo-cookie-consent__panel a {
    color: #f0b36f;
    font-weight: 700;
}

.wo-cookie-consent__choices {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.wo-cookie-consent__option {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.wo-cookie-consent__option strong {
    display: block;
    color: #ffffff;
    margin-bottom: 3px;
}

.wo-cookie-consent__option small {
    display: block;
    color: #c6cfda;
    line-height: 1.4;
}

.wo-cookie-consent__option--locked {
    opacity: 0.9;
}

.wo-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

.wo-cookie-btn {
    border: 1px solid rgba(216, 132, 53, 0.55);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 800;
}

.wo-cookie-btn--primary {
    background: #d88435;
    color: #101923;
}

.wo-cookie-btn--secondary {
    background: transparent;
    color: #eef3f8;
}

.wo-cookie-btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 760px) {
    .wo-cookie-consent {
        padding: 10px;
    }

    .wo-cookie-consent__panel {
        padding: 16px;
        border-radius: 14px;
    }

    .wo-cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .wo-cookie-btn {
        width: 100%;
    }
}
