/* Стили для окна подтверждения cookie - OpenRust */

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(42, 42, 34, 0.95), rgba(25, 30, 24, 0.95));
    color: white;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--rust-primary);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
}

#cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    #cookie-consent {
        padding: 10px 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}
