/* Стили для уведомления о файлах cookie */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-notice-content {
    flex: 1;
    padding-right: 20px;
}

.cookie-notice-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice-content a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-notice-content a:hover {
    color: #fff;
}

.cookie-notice-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: #000;
}

.cookie-btn-accept:hover {
    background-color: #fff;
}

.cookie-btn-settings {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-btn-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-notice-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-notice-content {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }
}
