body.b2b-body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: #f4f6fb;
    color: #1f2937;
}

.b2b-navbar {
    background: #ffffff;
    min-height: 74px;
    border-bottom: 1px solid #e6eaf2;
    box-shadow: 0 1px 4px rgba(31, 41, 55, 0.05);
}

.b2b-logo-desktop {
    height: 44px;
}

.b2b-logo-mobile {
    height: 32px;
}

.b2b-cart-icon {
    background: #14b87a;
    color: #fff;
    border: 0;
}

.b2b-user-name {
    color: #4b5563;
}

.b2b-logout {
    color: #1f2937;
    border-color: #d1d5db;
}

.b2b-logout:hover {
    background: #f3f4f6;
    color: #111827;
}

.b2b-mobile-chips {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
}

.b2b-mobile-chips .chip-btn {
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid #dbe1ec;
    background: #fff;
    color: #4b5563;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.b2b-mobile-chips .chip-btn.active {
    background: #14b87a;
    color: #fff;
    border-color: #14b87a;
}

.b2b-sidebar {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(31, 41, 55, 0.06);
    position: sticky;
    top: 84px;
}

.b2b-side-item {
    display: block;
    text-decoration: none;
    color: #6b7280;
    padding: 10px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 6px;
}

.b2b-side-item.active,
.b2b-side-item:hover {
    background: #14b87a;
    color: #fff;
}

.b2b-product-card {
    border-radius: 14px;
    transition: all 180ms ease;
}

.b2b-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.1) !important;
}

.b2b-img-wrap {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6eaf2;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b2b-img-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.b2b-price {
    font-size: 18px;
    font-weight: 700;
}

.b2b-qty-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.b2b-qty-inline .product-qty-btn {
    width: 30px;
    height: 30px;
    padding: 0;
    line-height: 1;
    border-radius: 8px;
}

.product-qty-label {
    min-width: 16px;
    text-align: center;
    font-weight: 600;
    color: #374151;
}

.product-qty-minus.is-hidden {
    display: none;
}

.b2b-badge-stock-high {
    background: rgba(20, 184, 122, 0.15);
    color: #0f7f57;
}

.b2b-badge-stock-low {
    background: rgba(255, 107, 61, 0.15);
    color: #cf4f29;
}

.b2b-cart-drawer {
    width: 420px !important;
}

.cart-row {
    border: 1px solid #e6eaf2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cart-row-main {
    flex: 1;
    min-width: 0;
}

.cart-row-actions {
    width: 140px;
}

.b2b-cart-thumb {
    width: 64px;
    height: 64px;
    border: 1px solid #e6eaf2;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b2b-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.drawer-footer {
    background: #fff;
}

.b2b-login-card {
    border-radius: 14px;
}

.b2b-quote-card {
    border-radius: 14px;
}

.b2b-quote-actions .btn {
    border-radius: 10px;
}

.b2b-cart-card {
    position: relative;
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(31, 41, 55, 0.06);
    padding: 10px;
}

.b2b-cart-card-img {
    width: 64px;
    height: 64px;
    border: 1px solid #e6eaf2;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.b2b-cart-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.b2b-cart-card-body {
    flex: 1;
    min-width: 0;
}

.b2b-cart-card-controls {
    display: grid;
    grid-template-columns: 1fr 92px;
    gap: 8px;
    align-items: center;
}

.b2b-cart-card-remove {
    position: absolute;
    top: 8px;
    right: 10px;
}

.b2b-cart-remove-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    background: rgba(220, 38, 38, 0.08);
}

.b2b-cart-card-total {
    margin-top: 8px;
    font-size: 15px;
}

.b2b-toast {
    background: #1f2937;
    color: #fff;
}

@media (max-width: 767.98px) {
    .b2b-cart-drawer {
        width: 100% !important;
    }
}

