#cookie-consent-root {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 0.75rem;
    pointer-events: none;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent-panel {
    pointer-events: auto;
    margin: 0 auto;
    max-width: 42rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
    padding: 1rem 1.125rem;
}

.dark .cookie-consent-panel {
    border-color: #334155;
    background: #0f172a;
}

.cookie-consent-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.dark .cookie-consent-title {
    color: #f8fafc;
}

.cookie-consent-text {
    margin-top: 0.375rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #64748b;
}

.cookie-consent-text a {
    color: #e11d48;
    font-weight: 600;
    text-decoration: none;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.cookie-consent-btn {
    border: 1px solid #cbd5e1;
    border-radius: 0.65rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: #fff;
    color: #334155;
    cursor: pointer;
}

.cookie-consent-btn.primary {
    border-color: #e11d48;
    background: #e11d48;
    color: #fff;
}

.dark .cookie-consent-btn {
    border-color: #475569;
    background: #1e293b;
    color: #e2e8f0;
}

.dark .cookie-consent-btn.primary {
    border-color: #e11d48;
    background: #e11d48;
    color: #fff;
}

@media (max-width: 640px) {
    #cookie-consent-root {
        padding: 0.5rem;
    }
}
