

.lit-cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: #171717;
    border: 1px solid #404040;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    z-index: 9999;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease-out;
    display: none;
    /* Controlled by JS */
}

.lit-cookie-consent.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lit-cookie-consent-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f5f5f5;
}

.lit-cookie-consent-text {
    font-size: 0.875rem;
    color: #d4d4d4;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.lit-cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.lit-cookie-consent-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: var(--font-dax-sans, sans-serif);
}

.lit-cookie-consent-btn-decline {
    background: transparent;
    border: 1px solid #404040;
    color: #d4d4d4;
}

.lit-cookie-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lit-cookie-consent-btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.lit-cookie-consent-btn-accept:hover {
    background: #1d4ed8;
}

@media (min-width: 768px) {
    .lit-cookie-consent {
        right: auto;
        width: 24rem;
    }
}