.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 1rem;
    pointer-events: none;
}

.cookie-consent__inner {
    max-width: 42rem;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    pointer-events: auto;
}

.cookie-consent__text {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #1f2937;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-consent__btn {
    border: 0;
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.cookie-consent__btn--accept {
    background: #2563eb;
    color: #fff;
}

.cookie-consent__btn--deny {
    background: #e5e7eb;
    color: #111827;
}
