/**
 * DreamNoos Cookie Consent Styles
 * GDPR/CCPA Compliant
 */

/* Cookie Banner Container */
.cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    pointer-events: none;
}

.cookie-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: all;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

/* Cookie Content */
.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    color: #ffd700;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cookie-links a {
    color: white;
    text-decoration: underline;
    font-size: 0.85rem;
    opacity: 0.9;
}

.cookie-links a:hover {
    opacity: 1;
}

/* Cookie Actions */
.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: white;
    color: #667eea;
}

.btn-accept:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-icon {
        font-size: 1.5rem;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-links a {
        font-size: 0.8rem;
    }
    
    .btn-cookie {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    }
}

