/* TPS Product Description Styles */
.tps-product-desc {
font-family: inherit;
color: #333;
line-height: 1.6;
}
/* Section Headers */
.tps-product-desc h2 {
font-size: 22px;
font-weight: 700;
color: #1a1a1a;
margin: 32px 0 16px 0;
padding-bottom: 8px;
border-bottom: 3px solid #45aad3;
display: inline-block;
}
.tps-product-desc h2:first-of-type {
margin-top: 0;
}
.tps-product-desc h3 {
font-size: 17px;
font-weight: 600;
color: #333;
margin: 24px 0 12px 0;
}
/* Intro Paragraph */
.tps-intro {
font-size: 16px;
color: #444;
margin-bottom: 24px;
padding: 16px;
background: #f8fafc;
border-left: 4px solid #45aad3;
border-radius: 0 8px 8px 0;
}
/* Lab Verification Box */
.tps-lab-box {
background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
border: 2px solid #22c55e;
border-radius: 12px;
padding: 20px;
margin-bottom: 28px;
}
.tps-lab-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.tps-lab-icon {
width: 48px;
height: 48px;
background: #22c55e;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.tps-lab-icon svg {
width: 28px;
height: 28px;
stroke: white;
fill: none;
stroke-width: 2;
}
.tps-lab-title h4 {
margin: 0 0 2px 0;
font-size: 16px;
font-weight: 700;
color: #166534;
}
.tps-lab-title p {
margin: 0;
font-size: 13px;
color: #15803d;
}
.tps-lab-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin-bottom: 12px;
}
.tps-lab-stat {
text-align: center;
padding: 10px 8px;
background: white;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tps-lab-stat .value {
font-size: 17px;
font-weight: 800;
color: #166534;
display: block;
line-height: 1.2;
}
.tps-lab-stat .label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #6b7280;
margin-top: 2px;
display: block;
}
.tps-lab-footer {
padding-top: 12px;
border-top: 1px solid rgba(34, 197, 94, 0.3);
font-size: 12px;
color: #6b7280;
}
.tps-lab-footer strong {
color: #166534;
}
/* Specs Grid */
.tps-specs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 12px;
margin: 20px 0 28px 0;
}
.tps-spec-item {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 14px;
text-align: center;
transition: all 0.2s ease;
}
.tps-spec-item:hover {
border-color: #45aad3;
box-shadow: 0 4px 12px rgba(69, 170, 211, 0.15);
}
.tps-spec-item .spec-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.5px;
color: #64748b;
margin-bottom: 4px;
}
.tps-spec-item .spec-value {
font-size: 15px;
font-weight: 700;
color: #1a1a1a;
}
/* Benefits List */
.tps-benefits {
list-style: none;
padding: 0;
margin: 16px 0;
}
.tps-benefits li {
position: relative;
padding: 10px 0 10px 32px;
border-bottom: 1px solid #f1f5f9;
font-size: 15px;
}
.tps-benefits li:last-child {
border-bottom: none;
}
.tps-benefits li::before {
content: ”;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background: #45aad3;
border-radius: 50%;
background-image: url(“data:image/svg+xml,%3Csvg xmlns=’http://www.w3.org/2000/svg’ viewBox=’0 0 24 24′ fill=’none’ stroke=’white’ stroke-width=’3’%3E%3Cpath d=’M5 12l5 5L20 7’/%3E%3C/svg%3E”);
background-size: 12px;
background-position: center;
background-repeat: no-repeat;
}
/* Verified Reseller Badge – Quanta */
.tps-verified-reseller {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 14px 18px;
background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
border: 1px solid #e0e0e0;
border-radius: 8px;
margin: 28px 0;
position: relative;
overflow: hidden;
}
.tps-verified-reseller::before {
content: ”;
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.4),
transparent
);
animation: tps-reseller-shimmer 4s ease-in-out infinite;
}
@keyframes tps-reseller-shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
.tps-quanta-logo {
width: 28px;
height: 28px;
object-fit: contain;
flex-shrink: 0;
filter: brightness(0.2);
animation: tps-iridescent 3s ease-in-out infinite;
}
@keyframes tps-iridescent {
0%, 100% {
filter: brightness(0.3) sepia(1) saturate(5) hue-rotate(0deg);
}
25% {
filter: brightness(0.4) sepia(1) saturate(5) hue-rotate(90deg);
}
50% {
filter: brightness(0.3) sepia(1) saturate(5) hue-rotate(180deg);
}
75% {
filter: brightness(0.4) sepia(1) saturate(5) hue-rotate(270deg);
}
}
.tps-verified-reseller span {
font-size: 13px;
color: #333;
font-weight: 500;
position: relative;
z-index: 1;
}
.tps-verified-reseller strong {
color: #0a1628;
font-weight: 700;
}
/* Disclaimer Box */
.tps-dosage-box {
background: #fffbeb;
border: 1px solid #fcd34d;
border-radius: 10px;
padding: 16px 20px;
margin: 20px 0;
}
.tps-dosage-box h4 {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 700;
color: #92400e;
display: flex;
align-items: center;
gap: 8px;
}
.tps-dosage-box p {
margin: 0;
font-size: 14px;
color: #78350f;
}
/* Mobile Optimizations */
@media (max-width: 600px) {
.tps-specs-grid {
grid-template-columns: repeat(2, 1fr);
}
.tps-verified-reseller {
padding: 12px 14px;
}
.tps-product-desc h2 {
font-size: 19px;
}
.tps-lab-stats {
grid-template-columns: repeat(2, 1fr);
}
.tps-lab-stat .value {
font-size: 15px;
}
}

Quanta Pharma 5-Amino-1MQ 50mg is a pharmaceutical-grade selective NNMT inhibitor (nicotinamide N-methyltransferase), a small molecule compound researched for its effects on metabolic regulation, fat metabolism, NAD+ preservation, and cellular energy balance. This lyophilised vial from Quanta Pharma offers researchers a high-purity compound for advanced studies in adipogenesis, obesity models, longevity pathways, and mitochondrial function. Independent Analiza Białek testing confirms the finished vial at 52.53mg content and 99% purity. Available for UK delivery with fast dispatch.

Analiza Białek Finished Product Verified

Independent testing of the sealed vial by a leading EU laboratory

52.53mg
Actual Content
50mg
Label Claim
105%
Accuracy
99%
Purity
Sample: Sealed production vial  |  Order: 100014035  |  Tested: April 2026  |  Verification Key: H4A29M5E

Quanta Pharma 5-Amino-1MQ Specifications

Compound
5-Amino-1MQ
Also Known As
5-Amino-1-methylquinolinium
Dosage
50mg/vial
Class
NNMT Inhibitor
Form
Orange Powder
Molecule Type
Small Molecule
Storage
2-8°C, Dry
Research Route
Oral

Quanta Pharma
5-Amino-1MQ 50mg by Quanta Pharma

Quanta Pharma 5-Amino-1MQ Research Benefits

  • NNMT inhibition: Selectively blocks nicotinamide N-methyltransferase, the enzyme responsible for degrading NAD+ precursors and SAM methyl donors
  • Reduced adipogenesis: Preclinical research demonstrates significant reduction in fat cell formation and white adipose tissue accumulation
  • NAD+ preservation: By inhibiting NNMT, cellular nicotinamide is conserved and available for NAD+ synthesis, supporting mitochondrial function
  • Metabolic regulation: Investigated for effects on insulin sensitivity, glucose metabolism, and cellular energy expenditure
  • Anti-obesity research: Studies in diet-induced obesity models have shown reductions in body weight and adipose mass without affecting food intake
  • Orally bioavailable: As a small molecule rather than a peptide, it maintains activity via oral administration in research protocols, avoiding the need for injection

How Quanta Pharma 5-Amino-1MQ Works

5-Amino-1MQ (5-Amino-1-methylquinolinium iodide) is a small molecule selective inhibitor of nicotinamide N-methyltransferase, or NNMT. NNMT is an enzyme expressed at particularly high levels in adipose tissue and the liver, where its role is to transfer a methyl group from S-adenosylmethionine (SAM) onto nicotinamide, producing 1-methylnicotinamide as a waste product. This process depletes both the methyl donor pool and the body’s reserve of nicotinamide, the direct precursor to NAD+.

By inhibiting NNMT, Quanta Pharma 5-Amino-1MQ preserves both of these critical metabolic substrates. Research in diet-induced obese mouse models has shown that selective NNMT inhibition reduces fat mass, lowers adipocyte size, and improves insulin sensitivity, without suppressing appetite or caloric intake. The compound appears to work primarily by preventing the metabolic “drain” that NNMT imposes on adipose tissue, allowing fat cells to burn energy more efficiently.

Additionally, Quanta Pharma 5-Amino-1MQ has drawn significant interest in longevity research, given the central role NAD+ plays in sirtuin activity, mitochondrial biogenesis, and DNA repair. Its small molecule structure makes it a practical orally-administered research tool, setting it apart from the injectable peptides that dominate this research space.

Quanta Pharma 5-Amino-1MQ vs Traditional NAD+ Precursors

While NAD+ precursors like NMN and NR aim to raise NAD+ levels by supplying more raw material, 5-Amino-1MQ takes the opposite approach: it prevents NAD+ precursors from being destroyed in the first place. This makes Quanta Pharma 5-Amino-1MQ a mechanistically distinct research tool, particularly suited to studies focused on adipose tissue metabolism, where NNMT expression is highest. Researchers studying obesity, metabolic syndrome, or adipocyte biology often prefer NNMT inhibition over simple precursor supplementation because the effect is concentrated where it matters most.

Why Choose Quanta Pharma 5-Amino-1MQ?

Quanta Pharma is renowned for producing pharmaceutical-grade research compounds with exceptional purity and accurate dosing. The 50mg vial of Quanta Pharma 5-Amino-1MQ has been independently verified by Analiza Białek, one of Europe’s most respected analytical laboratories, with confirmed content of 52.53mg against a 50mg label claim and 99% purity on the finished product. Combined with pharmaceutical-grade production, precise fill accuracy, and UK-based stock for fast dispatch, it is the confident choice for serious researchers working in metabolic and longevity studies.

⚠️ FOR LABORATORY RESEARCH USE ONLY

NOT FOR HUMAN OR VETERINARY DIAGNOSTIC OR THERAPEUTIC USE

Safety Classification:
For use by qualified research personnel only. Keep detailed records of usage and storage as per UK research regulations.

Legal Notice: This product is exclusively intended for in vitro laboratory research conducted in controlled environments by qualified research staff. It is not for pharmaceutical, domestic, or any other applications. The purchaser accepts that acquiring and using this material is governed by all relevant UK regulations concerning research chemicals.