/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #132042;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.cookie-banner__text a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s ease;
}

.cookie-banner__text a:hover {
    border-bottom-color: #fff;
}

.cookie-banner__button {
    flex-shrink: 0;
    padding: 12px 32px;
    background-color: #4778f5;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__button:hover {
    background-color: #3461d9;
}

.cookie-banner__button:active {
    background-color: #2b51bd;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }

    .cookie-banner__container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__text {
        font-size: 13px;
        text-align: center;
    }

    .cookie-banner__button {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

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

    .cookie-banner__button {
        padding: 12px 20px;
        font-size: 13px;
    }
}
