.cookie-consent {
    position: fixed;
    inset-inline: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 980px;
    margin-inline: auto;
    padding: 20px 24px;
    color: #ffffff;
    background: #0b2341;
    border-radius: 16px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

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

.cookie-consent__title {
    margin: 0 0 6px;
    color: inherit;
    font-size: 1.05rem;
}

.cookie-consent__text {
    max-width: 650px;
    margin: 0;
    color: inherit;
    font-size: 0.92rem;
    line-height: 1.6;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent__button {
    min-width: 132px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__button--primary {
    color: #0b2341;
    background: #ffffff;
}

.cookie-consent__button--secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.cookie-consent__button:focus-visible {
    outline: 3px solid #24b7ed;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .cookie-consent {
        inset-inline: 12px;
        bottom: 12px;
        display: block;
        padding: 18px;
    }

    .cookie-consent__actions {
        margin-top: 16px;
    }

    .cookie-consent__button {
        flex: 1 1 140px;
    }
}
