.cookie-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    display: none;
}

.cookie-consent-banner.cookie-consent-visible {
    display: block;
}

.cookie-consent-content {
    max-width: 920px;
    margin: 0 auto;
    background: #1f2937;
    color: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
