/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

:root[data-theme='dark'] .cookie-consent-banner {
    background: rgba(26, 15, 46, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner--visible {
    transform: translateY(0);
}

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

.cookie-consent-banner__text {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text, #212529);
}

.cookie-consent-banner__link {
    color: var(--accent-purple, #8B5CF6);
    text-decoration: underline;
}

.cookie-consent-banner__link:hover {
    color: var(--accent-pink, #EC4899);
}

.cookie-consent-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-banner__btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-banner__btn--accept {
    background: var(--accent-purple, #8B5CF6);
    color: white;
}

.cookie-consent-banner__btn--accept:hover {
    background: var(--accent-pink, #EC4899);
}

.cookie-consent-banner__btn--decline {
    background: var(--bg-secondary, rgba(0, 0, 0, 0.05));
    color: var(--text, #212529);
}

:root[data-theme='dark'] .cookie-consent-banner__btn--decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text, #E8E4ED);
}

.cookie-consent-banner__btn--decline:hover {
    background: var(--bg-secondary-hover, rgba(0, 0, 0, 0.1));
}

:root[data-theme='dark'] .cookie-consent-banner__btn--decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-consent-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    z-index: 10001;
    max-width: 90%;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-consent-message--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }

    .cookie-consent-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-banner__text {
        font-size: 0.875rem;
    }

    .cookie-consent-banner__actions {
        width: 100%;
    }

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