.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #1a1a1a;
    color: #fff;
    padding: 20px 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .3);
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1 1 420px;
}

.cookie-consent-title {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.cookie-consent-body {
    margin: 0;
}

.cookie-consent-body a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-consent-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .15s, color .15s, border-color .15s;
}

.cookie-consent-btn-primary {
    background: #fff;
    color: #1a1a1a;
}

.cookie-consent-btn-primary:hover {
    background: #f0f0f0;
}

.cookie-consent-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

.cookie-consent-btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

@media (max-width: 575px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: flex-end;
    }
}
