.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    font-size: 0.875rem;
    line-height: 1.45;
}

.dark .cookie-consent {
    background: rgba(17, 24, 39, 0.96);
    border-top-color: #374151;
    color: #e5e7eb;
}

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

.cookie-consent p {
    margin: 0;
    max-width: 42rem;
    color: #4b5563;
}

.dark .cookie-consent p {
    color: #d1d5db;
}

.cookie-consent a {
    color: #4f46e5;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dark .cookie-consent a {
    color: #a5b4fc;
}

.cookie-consent-accept {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    background: #4f46e5;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.cookie-consent-accept:hover {
    background: #4338ca;
}