.wlt-cc-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111827;
    color: #fff;
    padding: 20px;
    z-index: 999999;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wlt-cc-banner.is-top {
    top: 0;
    bottom: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.wlt-cc-banner.is-visible {
    display: flex;
}

.wlt-cc-content {
    flex: 1 1 320px;
    min-width: 260px;
}

.wlt-cc-content h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
}

.wlt-cc-content p {
    margin: 0;
    color: #d1d5db;
}

.wlt-cc-links {
    margin-top: 10px !important;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wlt-cc-links a {
    color: #93c5fd;
    text-decoration: underline;
}

.wlt-cc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wlt-cc-button {
    appearance: none;
    border: 0;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.wlt-cc-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.wlt-cc-button:focus-visible {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}

.wlt-cc-button-accept {
    background: #22c55e;
    color: #fff;
}

.wlt-cc-button-reject {
    background: #374151;
    color: #fff;
}

.wlt-cc-button-settings {
    background: transparent;
    color: #93c5fd;
    border: 1px solid #93c5fd;
}

.wlt-cc-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1000000;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

.wlt-cc-modal.is-active {
    display: flex;
}

.wlt-cc-modal-content {
    background: #fff;
    color: #111827;
    width: min(100%, 620px);
    max-height: 85vh;
    overflow: auto;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.wlt-cc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.wlt-cc-modal-close {
    background: transparent;
    border: 0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #111827;
}

.wlt-cc-consent-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.wlt-cc-consent-item {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
}

.wlt-cc-modal-actions {
    margin-top: 18px;
}

@media (max-width: 640px) {
    .wlt-cc-banner {
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .wlt-cc-buttons {
        flex-direction: column;
    }

    .wlt-cc-button {
        width: 100%;
        text-align: center;
    }

    .wlt-cc-modal {
        padding: 12px;
    }
}