/* 
 * Cookie Bar - Industrial Luxury Design
 * Featuring: Glassmorphism, Micro-interactions, Liquid UI
 */

.cookie-consent-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    z-index: 999999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

.cookie-consent-bar.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-content {
    display: flex;
    gap: 25px;
    align-items: center;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--highlight);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.cookie-text h4 {
    margin: 0 0 5px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-blue);
    color: white;
}

.cookie-btn.accept:hover {
    background: #000;
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-blue);
}

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

.cookie-btn.decline {
    background: transparent;
    color: #718096;
    font-weight: 500;
}

.cookie-btn.decline:hover {
    color: var(--primary-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-bar {
        bottom: 20px;
        padding: 20px;
        width: calc(100% - 40px);
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
