/* Cookie Consent Banner Styles */

.consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-banner.consent-visible {
    bottom: 0;
}

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

.consent-text {
    flex: 1;
    min-width: 280px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.consent-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.consent-text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

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

.consent-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
}

.consent-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.consent-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.consent-btn-decline {
    background: #e5e7eb;
    color: #374151;
}

.consent-btn-decline:hover {
    background: #d1d5db;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .consent-banner {
        padding: 16px;
    }

    .consent-content {
        flex-direction: column;
        text-align: center;
    }

    .consent-text {
        min-width: 100%;
    }

    .consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .consent-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Dark Theme */
[data-theme="night"] .consent-banner {
    background: rgba(20, 20, 30, 0.98);
}

[data-theme="night"] .consent-text {
    color: #e0e0e0;
}

[data-theme="night"] .consent-text a {
    color: #8b9bea;
}

[data-theme="night"] .consent-text a:hover {
    color: #a5b4fc;
}

[data-theme="night"] .consent-btn-decline {
    background: #374151;
    color: #e0e0e0;
}

[data-theme="night"] .consent-btn-decline:hover {
    background: #4b5563;
}
