.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 500px;
    z-index: 100;
    background-color: #161616;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner--show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media screen and (max-width: 575px) {
    .cookie-banner {
        left: 10px;
        width: calc(100% - 20px);
        padding: 15px 0;
        border-radius: 15px;
    }
}

.cookie-banner__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    gap: 20px;
    padding: 0 20px;
}

@media screen and (max-width: 450px) {
    .cookie-banner__wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cookie-banner--full .cookie-banner__wrap {
    flex-direction: column;
}

.cookie-banner__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-banner__text {
    font-size: 14px;
}

.cookie-banner__full {
    font-size: 14px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.cookie-banner--full .cookie-banner__full {
    max-height: 500px;
    margin-top: 10px;
}

.cookie-banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

@media screen and (max-width: 450px) {
    .cookie-banner__buttons {
        flex-direction: row;
    }
}

.cookie-banner__button {
    background: #fff;
    color: #161616;
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-banner__button:hover {
    background: #f0f0f0;
}

.cookie-banner__button:focus {
    outline: 2px solid #999;
}