.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a2e;
    color: #f0f0f0;
    border-top: 3px solid #FFE893;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

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

.cookie-banner__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__link {
    color: #FFE893;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #fff;
}

.cookie-banner__btn {
    background: #FFE893;
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-banner__btn:hover {
    background: #ffd84d;
}

@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}
