.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
    padding: 14px 18px;
    background: #ffffff;
    color: #2b2b2b;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    font-size: 14px;
    line-height: 1.45;
}

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

.cookie-banner__text {
    flex: 1;
}

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

.cookie-banner__text a:hover {
    text-decoration: none;
}

.cookie-banner__accept {
    flex-shrink: 0;
    padding: 10px 22px;
    background: #44b9d1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cookie-banner__accept:hover {
    background: #2fa3bb;
}

@media (max-width: 560px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .cookie-banner__accept {
        width: 100%;
    }
}
