/* =========================================================
   COOKIE NOTICE
   ========================================================= */

.cs-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9998;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    max-width: 1180px;
    margin: 0 auto;

    padding: 18px 22px;

    background:
        linear-gradient(
            135deg,
            rgba(18, 18, 24, 0.98),
            rgba(10, 10, 14, 0.98)
        );

    border: 1px solid rgba(255, 0, 170, 0.42);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(255, 0, 170, 0.08);

    backdrop-filter: blur(12px);
}

.cs-cookie-banner[hidden] {
    display: none;
}

.cs-cookie-copy {
    min-width: 0;
}

.cs-cookie-copy strong {
    display: block;
    margin-bottom: 4px;

    color: #fff;

    font-size: 15px;
    line-height: 1.3;
}

.cs-cookie-copy p {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
    line-height: 1.5;
}

.cs-cookie-copy a {
    color: #ff00aa;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cs-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    flex: 0 0 auto;
}

.cs-cookie-actions button,
.cs-cookie-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 10px 18px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    cursor: pointer;
}

.cs-cookie-policy-link {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.cs-cookie-accept {
    border: 1px solid #ff00aa;
    color: #fff;
    background: #ff00aa;
}

.cs-cookie-accept:hover {
    filter: brightness(1.08);
}

.cs-cookie-policy-link:hover {
    border-color: rgba(255, 0, 170, 0.65);
}

.cs-footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 22px;
}

.cs-footer-policy-links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    text-decoration: none;
}

.cs-footer-policy-links a:hover {
    color: #ff00aa;
}

@media (max-width: 760px) {

    .cs-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        flex-direction: column;
        align-items: stretch;

        gap: 15px;

        padding: 17px;
    }

    .cs-cookie-actions {
        width: 100%;
    }

    .cs-cookie-actions button,
    .cs-cookie-actions a {
        flex: 1;
    }

}
