/* Уведомление о куках */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 20px;
    z-index: 9999;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
    border-top: 1px solid #e0e0e0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-notice-text {
    flex: 1;
}

.cookie-notice-text p {
    margin: 0;
    color: #555;
}

.cookie-notice-text a {
    color: #4a90e2;
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #357abd;
}

.cookie-notice-button {
    background: #4a90e2;
    color: white;
    border: 1px solid #4a90e2;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.cookie-notice-button:hover {
    background: #357abd;
    border-color: #357abd;
    box-shadow: 0 3px 6px rgba(74, 144, 226, 0.3);
    transform: translateY(-1px);
}

.cookie-notice-button:active {
    background: #2968a3;
    border-color: #2968a3;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(74, 144, 226, 0.2);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-notice-button {
        width: 100%;
        padding: 14px 24px;
    }
}