.consent-root {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    font-family: 'Clash Display', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.consent-root * {
    box-sizing: border-box;
}

.consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 55px;
    max-width: 760px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
    display: none;
    pointer-events: auto;
}

.consent-root.is-open .consent-banner {
    display: block;
}

.consent-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consent-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.consent-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #475569;
}

.consent-links {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.consent-links a {
    color: #0f172a;
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.consent-btn {
    border: 1px solid #0f172a;
    background: #0f172a;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.consent-btn.secondary {
    background: #ffffff;
    color: #0f172a;
}

.consent-btn.ghost {
    background: transparent;
    color: #0f172a;
    border-color: transparent;
    text-decoration: underline;
}

.consent-preferences {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.consent-root.is-customize .consent-preferences {
    display: block;
}

.consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 13px;
    color: #0f172a;
}

.consent-option:last-child {
    border-bottom: 0;
}

.consent-option label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
}

.consent-manage {
    position: fixed;
    bottom: 0;
    right: 0;
    display: none;
    pointer-events: auto;
    border: 1px solid #0f172a;
    background: rgb(238 236 228 / var(--tw-bg-opacity, 1));
    color: #0f172a;
    border-radius: 20px 20px 0 0;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.consent-root.has-consent .consent-manage {
    display: inline-flex;
}

.consent-root:not(.has-consent) [data-consent-action="revoke"] {
    display: none;
}

.consent-root.position-left .consent-manage {
    right: auto;
    left: 1.5rem;
}

.consent-root.position-left .consent-banner {
    margin-left: 0;
    margin-right: auto;
}

@media (max-width: 640px) {
    .consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .consent-manage {
        bottom: 0;
        right: 0;
    }


    .consent-root.position-left .consent-manage {
        right: auto;
        left: 0;
        margin-bottom: 150px;
        margin-left: -45px;
        transform: rotate(90deg);
        bottom: 0px;
        z-index: 40;
        padding: 7px 15px;
        font-size: 0.6em;
    }
}
