/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 44, 95, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-banner__content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: #e0e0e0;
}

.cookie-banner__text a {
    color: #4CAF50;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner__text a:hover {
    color: #66BB6A;
}

.cookie-banner__button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__button:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner__button:active {
    transform: translateY(0);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner__container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner__title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .cookie-banner__text {
        font-size: 13px;
    }
    
    .cookie-banner__button {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* Анимация появления */
.cookie-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Анимация скрытия */
.cookie-banner.hide {
    animation: slideDown 0.3s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
} 