/* =============================================================
   Neogenesis B2B Wholesale — Styles
   Brand: dark navy bg, purple-to-pink gradient, gold accents
   ============================================================= */

:root {
    --ng-navy:      #0b0f1e;
    --ng-navy-light:#121830;
    --ng-purple:    #7c3aed;
    --ng-pink:      #ec4899;
    --ng-gold:      #d4a732;
    --ng-gold-light:#f0c84a;
    --ng-white:     #f0f2f8;
    --ng-muted:     #8892aa;
    --ng-border:    rgba(124, 58, 237, 0.25);
    --ng-grad:      linear-gradient(135deg, #7c3aed, #ec4899);
    --ng-grad-gold: linear-gradient(135deg, #d4a732, #f0c84a);
    --ng-radius:    10px;
    --ng-radius-lg: 16px;
}

/* ── Status Messages ─────────────────────────────────────── */
.ngb2b-status {
    padding: 16px 20px;
    border-radius: var(--ng-radius);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}
.ngb2b-status a { color: inherit; text-decoration: underline; }
.ngb2b-approved  { background: rgba(124,58,237,0.12); border: 1px solid var(--ng-purple); color: #c4b5fd; }
.ngb2b-pending   { background: rgba(212,167,50,0.12); border: 1px solid var(--ng-gold);   color: var(--ng-gold-light); }
.ngb2b-success   { background: rgba(16,185,129,0.12); border: 1px solid #10b981; color: #6ee7b7; }
.ngb2b-error     { background: rgba(239,68,68,0.12);  border: 1px solid #ef4444;  color: #fca5a5; }

/* ── Application Form ────────────────────────────────────── */
.ngb2b-application-wrap {
    background: var(--ng-navy-light);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 36px 40px;
    max-width: 760px;
    margin: 0 auto;
}

.ngb2b-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ngb2b-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .ngb2b-form-row { grid-template-columns: 1fr; }
    .ngb2b-application-wrap { padding: 24px 20px; }
}

.ngb2b-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ngb2b-form-group label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ng-muted);
}

.ngb2b-form-group .req { color: var(--ng-pink); }

.ngb2b-form-group input,
.ngb2b-form-group select,
.ngb2b-form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    color: var(--ng-white);
    font-size: 15px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.ngb2b-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.ngb2b-form-group input:focus,
.ngb2b-form-group select:focus,
.ngb2b-form-group textarea:focus {
    border-color: var(--ng-purple);
    background: rgba(124,58,237,0.08);
}

.ngb2b-form-group textarea { resize: vertical; min-height: 100px; }

.ngb2b-submit-btn {
    background: var(--ng-grad);
    color: #fff;
    border: none;
    border-radius: var(--ng-radius);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    align-self: flex-start;
    margin-top: 4px;
}
.ngb2b-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.ngb2b-submit-btn:active { transform: translateY(0); }

/* ── Portal ──────────────────────────────────────────────── */
.ngb2b-portal-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.ngb2b-portal-header {
    background: var(--ng-navy-light);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ngb2b-portal-greeting {
    color: var(--ng-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.ngb2b-portal-greeting strong { color: var(--ng-white); }

/* ── Tier Badges ─────────────────────────────────────────── */
.ngb2b-tier-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.ngb2b-tier-rp_associate {
    background: rgba(148,163,184,0.12);
    border: 1px solid rgba(148,163,184,0.4);
    color: #cbd5e1;
}
.ngb2b-tier-rp_gold {
    background: rgba(212,167,50,0.12);
    border: 1px solid rgba(212,167,50,0.5);
    color: var(--ng-gold-light);
}
.ngb2b-tier-rp_elite {
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.5);
    color: #c4b5fd;
}
.ngb2b-tier-rp_vip {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(236,72,153,0.2));
    border: 1px solid rgba(236,72,153,0.5);
    color: #f9a8d4;
}
.ngb2b-tier-rp_vip_plus {
    background: var(--ng-grad-gold);
    border: none;
    color: var(--ng-navy);
    box-shadow: 0 0 16px rgba(212,167,50,0.35);
}

/* ── Portal Action Buttons ───────────────────────────────── */
.ngb2b-portal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.ngb2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ng-radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 11px 22px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.ngb2b-btn:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.ngb2b-btn:active { transform: translateY(0); }

.ngb2b-btn-primary {
    background: var(--ng-grad);
    color: #fff;
}
.ngb2b-btn-secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--ng-border);
    color: var(--ng-white);
}
.ngb2b-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--ng-muted);
}
.ngb2b-btn-small {
    font-size: 13px;
    padding: 8px 16px;
    width: 100%;
    margin-top: auto;
}

/* ── Product Grid ────────────────────────────────────────── */
.ngb2b-catalog-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--ng-white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.ngb2b-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 480px) {
    .ngb2b-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.ngb2b-product-card {
    background: var(--ng-navy-light);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s, transform 0.2s;
}
.ngb2b-product-card:hover {
    border-color: rgba(124,58,237,0.5);
    transform: translateY(-2px);
}

.ngb2b-product-link { text-decoration: none; }
.ngb2b-product-link:hover { text-decoration: none; }

.ngb2b-product-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    margin-bottom: 2px;
}
.ngb2b-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ngb2b-no-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.ngb2b-no-thumb span {
    color: var(--ng-muted);
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.ngb2b-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ng-white);
    margin: 0;
    line-height: 1.4;
}

.ngb2b-product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}
.ngb2b-retail-price {
    font-size: 12px;
    color: var(--ng-muted);
    text-decoration: line-through;
}
.ngb2b-wholesale-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--ng-gold-light);
}

/* ── Cart pricing ────────────────────────────────────────── */
.ngb2b-cart-retail {
    color: var(--ng-muted);
    font-size: 0.88em;
    margin-right: 6px;
}
.ngb2b-cart-wholesale {
    color: var(--ng-gold-light);
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
}

.ngb2b-form-group option { color: #111; background: #fff; }
.ngb2b-form-group option { color: #111; background: #fff; }
/* hide gold and vip+ badges if they ever appear */
.ngb2b-tier-rp_gold,
.ngb2b-tier-rp_vip_plus { display: none; }

.ngb2b-divider {
    border: none;
    border-top: 1px solid rgba(124,58,237,0.2);
    margin: 8px 0 4px;
}
.ngb2b-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7c3aed;
    margin: 0 0 4px;
}

.ngb2b-portal-nav-item a {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ngb2b-portal-nav-item { display: none !important; }
.logged-in.rp_associate .ngb2b-portal-nav-item,
.logged-in.rp_elite .ngb2b-portal-nav-item,
.logged-in.rp_vip .ngb2b-portal-nav-item { display: list-item !important; }


/* Tier Tracker */
.ngb2b-tier-tracker{background:var(--ng-navy-light);border:1px solid var(--ng-border);border-radius:var(--ng-radius-lg);padding:28px 32px;margin-bottom:28px;display:flex;flex-direction:column;gap:20px}
.ngb2b-tracker-stats{display:flex;gap:16px;flex-wrap:wrap}
.ngb2b-tracker-stat{background:rgba(255,255,255,0.04);border:1px solid var(--ng-border);border-radius:var(--ng-radius);padding:16px 20px;display:flex;flex-direction:column;gap:6px;flex:1;min-width:160px}
.ngb2b-tracker-stat__label{font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--ng-muted)}
.ngb2b-tracker-stat__value{font-size:20px;font-weight:700;color:var(--ng-gold-light)}
.ngb2b-tracker-atrisk{display:flex;align-items:flex-start;gap:14px;background:rgba(239,68,68,0.08);border:1px solid rgba(239,68,68,0.35);border-radius:var(--ng-radius);padding:16px 20px}
.ngb2b-tracker-atrisk__icon{font-size:20px;flex-shrink:0;line-height:1.4}
.ngb2b-tracker-atrisk__text{font-size:14px;color:#fca5a5;line-height:1.6}
.ngb2b-tracker-atrisk__text strong{color:#fff}
.ngb2b-progress-bar-wrap{display:flex;flex-direction:column;gap:8px}
.ngb2b-progress-bar-labels{display:flex;justify-content:space-between;font-size:12px;font-weight:600;color:var(--ng-muted)}
.ngb2b-progress-bar{width:100%;height:8px;background:rgba(255,255,255,0.07);border-radius:99px;overflow:hidden}
.ngb2b-progress-bar__fill{height:100%;background:var(--ng-grad);border-radius:99px;min-width:4px}
.ngb2b-progress-bar__pct{font-size:12px;color:var(--ng-muted);text-align:right}
.ngb2b-tracker-vip-msg{font-size:15px;color:var(--ng-gold-light);font-weight:600;text-align:center;padding:8px 0}

/* Tier Benefits */
.ngb2b-portal-benefits{margin-bottom:40px}
.ngb2b-tier-benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
@media(max-width:768px){.ngb2b-tier-benefits-grid{grid-template-columns:1fr}.ngb2b-tier-tracker{padding:20px}.ngb2b-tracker-stat{min-width:120px}}
.ngb2b-tier-card{background:var(--ng-navy-light);border:1px solid var(--ng-border);border-radius:var(--ng-radius-lg);padding:28px 24px;display:flex;flex-direction:column;gap:16px;position:relative;transition:border-color 0.2s,transform 0.2s}
.ngb2b-tier-card:hover{transform:translateY(-2px)}
.ngb2b-tier-card--current{border-color:rgba(124,58,237,0.6);box-shadow:0 0 24px rgba(124,58,237,0.12)}
.ngb2b-tier-card__badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--ng-grad);color:#fff;font-size:11px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;padding:4px 14px;border-radius:99px;white-space:nowrap}
.ngb2b-tier-card__header{display:flex;flex-direction:column;gap:6px;padding-top:8px}
.ngb2b-tier-card__name{font-size:16px;font-weight:700;color:var(--ng-white);margin:0}
.ngb2b-tier-card__discount{font-size:28px;font-weight:800;color:var(--ng-gold-light);line-height:1}
.ngb2b-tier-card__threshold{font-size:12px;color:var(--ng-muted);font-weight:500}
.ngb2b-tier-card__benefits{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:9px}
.ngb2b-tier-card__benefits li{font-size:13px;color:var(--ng-muted);padding-left:18px;position:relative;line-height:1.4}
.ngb2b-tier-card__benefits li::before{content:"\2713";position:absolute;left:0;color:var(--ng-purple);font-weight:700;font-size:12px}
.ngb2b-tier-rp_associate .ngb2b-tier-card__discount{color:#cbd5e1}
.ngb2b-tier-rp_elite .ngb2b-tier-card__discount{color:#c4b5fd}
.ngb2b-tier-rp_vip .ngb2b-tier-card__discount{color:var(--ng-gold-light)}

/* ── Tier Tracker ────────────────────────────────────────── */
.ngb2b-tier-tracker {
    background: var(--ng-navy-light);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ngb2b-tracker-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ngb2b-tracker-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 160px;
}

.ngb2b-tracker-stat__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ng-muted);
}

.ngb2b-tracker-stat__value {
    font-size: 20px;
    font-weight: 700;
    color: var(--ng-gold-light);
}

.ngb2b-tracker-atrisk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.35);
    border-radius: var(--ng-radius);
    padding: 16px 20px;
}

.ngb2b-tracker-atrisk__icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.ngb2b-tracker-atrisk__text {
    font-size: 14px;
    color: #fca5a5;
    line-height: 1.6;
}

.ngb2b-tracker-atrisk__text strong { color: #fff; }

.ngb2b-progress-bar-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ngb2b-progress-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--ng-muted);
    letter-spacing: 0.03em;
}

.ngb2b-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    overflow: hidden;
}

.ngb2b-progress-bar__fill {
    height: 100%;
    background: var(--ng-grad);
    border-radius: 99px;
    transition: width 0.6s ease;
    min-width: 4px;
}

.ngb2b-progress-bar__pct {
    font-size: 12px;
    color: var(--ng-muted);
    text-align: right;
}

.ngb2b-tracker-vip-msg {
    font-size: 15px;
    color: var(--ng-gold-light);
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
}

/* ── Tier Benefits Grid ──────────────────────────────────── */
.ngb2b-portal-benefits {
    margin-bottom: 40px;
}

.ngb2b-tier-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .ngb2b-tier-benefits-grid { grid-template-columns: 1fr; }
    .ngb2b-tier-tracker { padding: 20px; }
    .ngb2b-tracker-stat { min-width: 120px; }
}

.ngb2b-tier-card {
    background: var(--ng-navy-light);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.ngb2b-tier-card:hover {
    transform: translateY(-2px);
}

.ngb2b-tier-card--current {
    border-color: rgba(124,58,237,0.6);
    box-shadow: 0 0 24px rgba(124,58,237,0.12);
}

.ngb2b-tier-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ng-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 99px;
    white-space: nowrap;
}

.ngb2b-tier-card__header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
}

.ngb2b-tier-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ng-white);
    margin: 0;
}

.ngb2b-tier-card__discount {
    font-size: 28px;
    font-weight: 800;
    color: var(--ng-gold-light);
    line-height: 1;
}

.ngb2b-tier-card__threshold {
    font-size: 12px;
    color: var(--ng-muted);
    font-weight: 500;
}

.ngb2b-tier-card__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ngb2b-tier-card__benefits li {
    font-size: 13px;
    color: var(--ng-muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.ngb2b-tier-card__benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ng-purple);
    font-weight: 700;
    font-size: 12px;
}

.ngb2b-tier-rp_associate .ngb2b-tier-card__discount { color: #cbd5e1; }
.ngb2b-tier-rp_elite .ngb2b-tier-card__discount     { color: #c4b5fd; }
.ngb2b-tier-rp_vip .ngb2b-tier-card__discount       { color: var(--ng-gold-light); }

/* ── Kit Pricing ─────────────────────────────────────────── */
.ngb2b-kit-note {
    font-size: 13px;
    color: var(--ng-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.ngb2b-kit-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ngb2b-kit-row {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    align-items: center;
    gap: 4px;
}

.ngb2b-kit-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ng-muted);
}

.ngb2b-kit-total-row {
    border-top: 1px solid var(--ng-border);
    padding-top: 6px;
    margin-top: 2px;
}

.ngb2b-kit-total-row .ngb2b-wholesale-price {
    font-size: 17px;
}

.ngb2b-var-select {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--ng-border);
    border-radius: var(--ng-radius);
    color: var(--ng-white);
    font-size: 13px;
    padding: 9px 32px 9px 12px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.ngb2b-var-select:focus {
    outline: none;
    border-color: var(--ng-purple);
}

.ngb2b-var-select option {
    background: #1a1f35;
    color: #fff;
}

.ngb2b-atc-form,
.ngb2b-product-card form {
    margin-top: auto;
}

.ngb2b-atc-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* Product page kit pricing */
.ngb2b-pdp-pricing { display: flex; flex-direction: column; gap: 8px; margin: 8px 0; }
.ngb2b-pdp-row { display: flex; align-items: center; gap: 12px; }
.ngb2b-pdp-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ng-muted, #8892aa); min-width: 60px; }
.ngb2b-pdp-price del { color: #8892aa; font-size: 14px; }
.ngb2b-pdp-price ins { color: #f0c84a; font-weight: 700; text-decoration: none; font-size: 18px; }
.ngb2b-pdp-kit .ngb2b-pdp-price ins { font-size: 22px; }
.ngb2b-pdp-kit { border-top: 1px solid rgba(124,58,237,0.2); padding-top: 8px; margin-top: 4px; }

/* Product page kit pricing */
.ngb2b-pdp-pricing { display: flex; flex-direction: column; gap: 8px; margin: 8px 0; }
.ngb2b-pdp-row { display: flex; align-items: center; gap: 12px; }
.ngb2b-pdp-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ng-muted, #8892aa); min-width: 60px; }
.ngb2b-pdp-price del { color: #8892aa; font-size: 14px; }
.ngb2b-pdp-price ins { color: #f0c84a; font-weight: 700; text-decoration: none; font-size: 18px; }
.ngb2b-pdp-kit .ngb2b-pdp-price ins { font-size: 22px; }
.ngb2b-pdp-kit { border-top: 1px solid rgba(124,58,237,0.2); padding-top: 8px; margin-top: 4px; }

.ngb2b-kit-order-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #c4b5fd;
    font-weight: 500;
    margin-bottom: 16px;
}
.ngb2b-kit-order-label svg { flex-shrink: 0; color: #c4b5fd; }

.ngb2b-kit-unit {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ng-muted, #8892aa);
    margin-left: 6px;
}

/* Cart kit display */
.ngb2b-cart-qty-wrap { display: flex; flex-direction: column; gap: 2px; }
.ngb2b-cart-kits { font-weight: 700; color: #f0f2f8; font-size: 15px; }
.ngb2b-cart-vials { font-size: 11px; color: #8892aa; }
.ngb2b-cart-subtotal { display: block; font-weight: 700; color: #f0c84a; font-size: 16px; }
.ngb2b-cart-subtotal-label { display: block; font-size: 11px; color: #8892aa; margin-top: 2px; }

/* Cart kit display */
.ngb2b-cart-qty-wrap { display: flex; flex-direction: column; gap: 2px; }
.ngb2b-cart-kits { font-weight: 700; color: #f0f2f8; font-size: 15px; }
.ngb2b-cart-vials { font-size: 11px; color: #8892aa; }
.ngb2b-cart-subtotal { display: block; font-weight: 700; color: #f0c84a; font-size: 16px; }
.ngb2b-cart-subtotal-label { display: block; font-size: 11px; color: #8892aa; margin-top: 2px; }

.ngb2b-kit-badge {
    font-size: 13px;
    font-weight: 700;
    color: #f0c84a;
    margin-top: 4px;
    line-height: 1.3;
}
.ngb2b-kit-badge span {
    font-weight: 400;
    color: #8892aa;
    font-size: 11px;
}

.ngb2b-cart-kit-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #f0c84a;
    margin-top: 3px;
}
/* Hide product short description in block cart for B2B users */
body.rp_associate .wc-block-cart-item__description,
body.rp_elite .wc-block-cart-item__description,
body.rp_vip .wc-block-cart-item__description {
}

/* Hide cart item descriptions for B2B users immediately via CSS */
body.rp_associate .wc-block-cart-item__description,
body.rp_elite .wc-block-cart-item__description,
body.rp_vip .wc-block-cart-item__description,
body.rp_associate .wc-block-components-product-details,
body.rp_elite .wc-block-components-product-details,
body.rp_vip .wc-block-components-product-details,
body.rp_associate .cart_item .product-description,
body.rp_elite .cart_item .product-description,
body.rp_vip .cart_item .product-description {
}

/* Hide product short description in block cart */
body.rp_associate .wc-block-cart-item__description p,
body.rp_elite .wc-block-cart-item__description p,
body.rp_vip .wc-block-cart-item__description p,
body.rp_associate .wc-block-cart-item__description,
body.rp_elite .wc-block-cart-item__description,
body.rp_vip .wc-block-cart-item__description {
}

/* Hide product description in block cart for B2B users */
body.rp_associate .wc-block-components-product-metadata__description,
body.rp_elite .wc-block-components-product-metadata__description,
body.rp_vip .wc-block-components-product-metadata__description {
}

/* Fix kit pricing layout in portal cards */
.ngb2b-kit-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.ngb2b-kit-row .ngb2b-retail-price {
    font-size: 11px;
    white-space: nowrap;
}
.ngb2b-kit-row .ngb2b-wholesale-price {
    font-size: 13px;
    white-space: nowrap;
}
.ngb2b-kit-total-row .ngb2b-wholesale-price {
    font-size: 15px;
}
.ngb2b-retail-price del,
.ngb2b-retail-price {
    text-decoration: line-through;
    color: var(--ng-muted);
}

.ngb2b-kit-unit {
}
.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Force kit price wrap visible on variable products when dosage selected */
body.rp_associate #ngb2b-kit-price-wrap,
body.rp_elite #ngb2b-kit-price-wrap,
body.rp_vip #ngb2b-kit-price-wrap {
}

.menu-item--nav-sep {
    width: 1px;
    background: rgba(255,255,255,0.15);
    margin: 4px 4px;
    list-style: none;
}

/* Remove the space separator and use border instead */
@media (max-width: 768px) {
    .menu-item--b2b {
    }
}

@media (max-width: 768px) {
    .menu-item--b2b a.site-nav__b2b-btn,
    .menu-item--wholesale a.site-nav__b2b-btn {
    }
}
