.eb-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(15, 23, 42, 0.97);
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.35);
    padding: 14px 12px;
}

.eb-consent-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.eb-consent-banner__text {
    font-size: 14px;
    line-height: 1.35;
}

.eb-consent-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.eb-consent-btn {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.eb-consent-btn--primary {
    background: #0ea5e9;
    color: #001018;
    border-color: rgba(255,255,255,0.05);
}

.eb-consent-btn--secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.eb-consent-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0,0,0,0.55);
    padding: 20px;
}

.eb-consent-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eb-consent-modal__box {
    width: 100%;
    max-width: 560px;
    background: #fff;
    color: #111827;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    overflow: hidden;
}

.eb-consent-modal__title {
    padding: 14px 16px;
    font-weight: 700;
    border-bottom: 1px solid #e5e7eb;
}

.eb-consent-modal__content {
    padding: 14px 16px;
}

.eb-consent-row {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.eb-consent-row--toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.eb-consent-modal__actions {
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
}

.eb-consent-placeholder {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #fafafa;
    text-align: center;
}

.eb-consent-placeholder__text {
    font-size: 14px;
    color: #111827;
    margin-bottom: 10px;
}

.eb-consent-placeholder__button {
    border: 1px solid #cbd5e1;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .eb-consent-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .eb-consent-banner__actions {
        width: 100%;
        justify-content: flex-start;
    }
}
