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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #31353e;
    color: #fff;
    padding: 16px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    max-width: 100vw;
    box-sizing: border-box;
}

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

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

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__text p {
    margin: 0;
}

.cookie-banner__text a {
    color: #f0cf4c;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-banner__text a:hover {
    opacity: 0.8;
}

.cookie-banner__btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #f0cf4c 0%, #d4b73f 100%);
    color: #1f2937;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.cookie-banner__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(240, 207, 76, 0.3);
}

/* Мобильная версия */
@media (max-width: 640px) {
    .cookie-banner {
        padding: 14px 16px;
    }

    .cookie-banner__content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .cookie-banner__btn {
        width: 100%;
        padding: 12px 24px;
    }
}