.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem 1.25rem;
    background: rgba(26, 32, 44, 0.97);
    color: #f7fafc;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 280px;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__text a {
    color: #f0b27a;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: none;
    border-radius: 4px;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--reject:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-banner__btn--accept {
    background: var(--accent-orange, #c96a2b);
    color: #fff;
}

body.has-cookie-banner.has-mobile-sticky-bar {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

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

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }
}
