.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(20, 24, 32, 0.96);
    color: #f5f7fb;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
}

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

.cookie-consent__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

.cookie-consent__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    flex: 1 1 240px;
}

.cookie-consent__link {
    color: #ffb86b;
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent__btn {
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-consent__btn--primary {
    background: #f68b1e;
    color: #fff;
}

.cookie-consent__btn--ghost {
    background: transparent;
    color: #d7dce5;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
