.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00aaff;
    z-index: 9999;
    padding: 30px 40px;
    box-sizing: border-box;
    transition: transform 0.4s ease;
    display: none;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-banner__text h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 700;
}

.cookie-banner__text p {
    color: black;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px;
    opacity: 0.9;
    font-family: 'Roboto Light';
}

.cookie-banner__buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    min-width: 220px;
    height: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-family: 'Roboto Light';
    box-sizing: border-box;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn--accept {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-family: 'Roboto Light';
}

.cookie-btn--more {
    background: #2c2c2c;
    color: #fff;
    border: 1px solid #2c2c2c;
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 20px;
    }
    .cookie-banner__buttons {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}
