.lim-consent-banner {
    align-items: center;
    background: #102f28;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    bottom: 18px;
    box-shadow: 0 18px 54px rgba(7, 25, 19, 0.3);
    color: #ffffff;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr auto;
    left: 50%;
    max-width: 900px;
    padding: 18px 20px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 10000;
}

.lim-consent-banner[hidden] {
    display: none;
}

.lim-consent-copy strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 4px;
}

.lim-consent-copy p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.lim-consent-copy a {
    color: #ffd2a8;
}

.lim-consent-actions {
    display: flex;
    gap: 8px;
}

.lim-consent-actions button {
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 14px;
}

.lim-consent-decline {
    background: transparent;
    color: #ffffff;
}

.lim-consent-accept {
    background: #ef984e;
    border-color: #ef984e !important;
    color: #172e26;
}

@media (max-width: 680px) {
    .lim-consent-banner {
        bottom: 10px;
        grid-template-columns: 1fr;
    }

    .lim-consent-actions button {
        flex: 1;
    }
}
