.cookie-consent-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: none;
    justify-content: center;
    pointer-events: none;
}
.cookie-consent-banner.is-visible {
    display: flex;
}
.cookie-consent-box {
    width: min(760px, 100%);
    background: rgba(255, 255, 255, 0.98);
    color: #10201d;
    border: 1px solid rgba(219, 229, 226, 0.95);
    border-radius: 22px;
    box-shadow: 0 22px 70px rgba(16, 32, 29, 0.22);
    padding: 18px;
    pointer-events: auto;
}
.cookie-consent-box h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
}
.cookie-consent-box p {
    margin: 0;
    color: #5f706c;
    line-height: 1.55;
    font-size: 14px;
}
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}
.cookie-consent-button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 11px 15px;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
}
.cookie-consent-button.accept {
    background: #0f766e;
    color: #fff;
}
.cookie-consent-button.reject {
    background: #edf5f3;
    color: #10201d;
}
.cookie-consent-button:hover,
.cookie-settings-link:hover {
    filter: brightness(0.96);
}
.cookie-consent-link {
    color: #0f766e;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}
.cookie-consent-link:hover {
    text-decoration: underline;
}
.cookie-settings-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: #0f766e;
    font: inherit;
    font-weight: 800;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}
.cookie-settings-link:hover {
    text-decoration: underline;
}
.cookie-consent-status {
    margin-top: 10px !important;
    font-size: 13px !important;
    color: #5f706c !important;
}
@media (max-width: 620px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .cookie-consent-box {
        padding: 16px;
        border-radius: 18px;
    }
    .cookie-consent-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .cookie-consent-button,
    .cookie-consent-link {
        width: 100%;
        text-align: center;
    }
}
