/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.cookie-consent-banner.cookie-consent-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

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

.cookie-consent-icon {
    color: #10b981;
    flex-shrink: 0;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
}

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cookie-btn:active::before {
    width: 300px;
    height: 300px;
}

.cookie-btn-reject {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.cookie-btn-reject:hover {
    background: #e2e8f0;
    color: #334155;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.cookie-consent-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cookie-consent-close:hover {
    background: #f1f5f9;
    color: #64748b;
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .cookie-consent-banner {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-top-color: #334155;
    }
    
    .cookie-consent-text h3 {
        color: #f1f5f9;
    }
    
    .cookie-consent-text p {
        color: #94a3b8;
    }
    
    .cookie-btn-reject {
        background: #334155;
        color: #cbd5e1;
        border-color: #475569;
    }
    
    .cookie-btn-reject:hover {
        background: #475569;
        color: #e2e8f0;
    }
    
    .cookie-consent-close {
        color: #64748b;
    }
    
    .cookie-consent-close:hover {
        background: #334155;
        color: #cbd5e1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 12px 16px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-consent-icon {
        align-self: center;
    }
    
    .cookie-consent-text {
        text-align: center;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-banner,
    .cookie-btn,
    .cookie-consent-close {
        transition: none;
    }
    
    .cookie-btn:hover,
    .cookie-consent-close:hover {
        transform: none;
    }
}