:root {
    --sbd-green:  #6fb82e;
    --sbd-orange: #ec511d;
}

/* ── My Account panel ─────────────────────────────── */
.sbd-account-box {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--sbd-green);
    padding: 18px 20px;
    margin-bottom: 24px;
    background: #f8fafc;
}
.sbd-account-box h2 { margin-top: 0; margin-bottom: 10px; }
.sbd-account-cols { display: flex; flex-wrap: wrap; gap: 24px; }
.sbd-account-col { flex: 1 1 240px; }
.sbd-account-meta { margin: 0; padding: 0; list-style: none; }
.sbd-account-meta li { margin-bottom: 6px; }
.sbd-account-label { font-weight: 600; }
.sbd-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: var(--sbd-green);
    color: #fff;
    margin-left: 6px;
}
.sbd-tag.light { background: var(--sbd-orange); }

/* ── Wholesale price badge (само за едро клиенти) ─── */
.sbd-wholesale-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    padding: 6px 13px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 8px;
    line-height: 1.3;
}
.sbd-wp-label {
    font-weight: 700;
    font-size: .9em;
    color: #166534;
    white-space: nowrap;
}
.sbd-wp-amount {
    font-weight: 700;
    font-size: 1.1em;
    color: #15803d;
}
.sbd-wp-amount .woocommerce-Price-amount { color: #15803d; }

@media (max-width: 640px) {
    .sbd-wholesale-price-badge { flex-direction: column; align-items: flex-start; gap: 2px; }
}
