Freebie

Free Sample of The Mantle MiniCeramide Moisturizer

View saved
How does this find feel?

Free Sample: Try The Mantle Mini Ceramide Moisturiser — No Commitment

:root {
–bg: #ffffff;
–bg2: #f8f9fb;
–surface: #f3f4f6;
–border: #e5e7eb;
–border2: #d1d5db;
–text: #111827;
–muted: #6b7280;
–faint: #9ca3af;
–accent: #be185d;
–accent2: #9d174d;
–accent-bg: #fdf2f8;
–accent-bd: #fbcfe8;
–green: #16a34a;
–green-bg: #f0fdf4;
–green-bd: #bbf7d0;
–amber: #d97706;
–amber-bg: #fffbeb;
–amber-bd: #fde68a;
–radius-sm: 10px;
–radius: 14px;
–radius-lg: 20px;
–shadow: 0 4px 24px rgba(0,0,0,.08);
–shadow-sm: 0 2px 10px rgba(0,0,0,.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.fm-page {
all: initial;
display: block;
font-family: system-ui, -apple-system, “Segoe UI”, Roboto, Arial, sans-serif;
background: var(–bg);
color: var(–text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
padding: 0 0 80px;
}
.fm-page *, .fm-page *::before, .fm-page *::after { box-sizing: border-box; }

/* STICKY BAR */
.sticky-bar {
position: fixed;
bottom: 0; left: 0; right: 0;
z-index: 9999;
background: #fff;
border-top: 2px solid var(–accent-bd);
padding: 10px 18px;
display: flex; align-items: center; justify-content: space-between; gap: 12px;
box-shadow: 0 -2px 16px rgba(0,0,0,.08);
}
.sticky-bar p { margin: 0; font-size: 13px; color: var(–muted); line-height: 1.35; font-family: inherit; }
.sticky-bar strong { color: var(–accent); }
.sticky-btn {
flex: 0 0 auto;
display: inline-block; text-decoration: none;
font-weight: 800; font-size: 14px; white-space: nowrap;
padding: 11px 20px; border-radius: var(–radius-sm);
background: var(–accent);
color: #fff;
box-shadow: 0 4px 14px rgba(190,24,93,.25);
transition: transform .12s, filter .12s; font-family: inherit;
}
.sticky-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.sticky-btn:active { transform: translateY(1px); filter: brightness(.95); }

/* LAYOUT */
.wrap { max-width: 860px; margin: 0 auto; padding: 32px 18px 0; }

/* HERO */
.hero {
border-radius: var(–radius-lg);
border: 1px solid var(–accent-bd);
background: var(–accent-bg);
padding: 28px 24px;
box-shadow: var(–shadow);
}

.kicker {
display: inline-flex; align-items: center; gap: 8px;
padding: 5px 12px; border-radius: 999px;
border: 1px solid var(–accent-bd); background: #fff;
font-size: 12px; font-weight: 700; letter-spacing: .3px;
color: var(–accent); margin-bottom: 12px;
}
.kdot {
width: 8px; height: 8px; border-radius: 50%;
background: var(–green);
animation: kdot-pulse 2s ease-in-out infinite; flex: 0 0 auto;
}
@keyframes kdot-pulse {
0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
50% { box-shadow: 0 0 0 6px rgba(22,163,74,.08); }
}

.hero-title {
font-size: clamp(24px, 3vw, 38px); font-weight: 900;
line-height: 1.15; letter-spacing: -0.6px; margin: 0 0 10px; color: var(–text);
}
.hero-title em { font-style: normal; color: var(–accent); }
.hero-sub { margin: 0 0 20px; color: var(–muted); font-size: 15px; max-width: 68ch; }

/* STAT ROW */
.stat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.stat {
display: flex; flex-direction: column; gap: 1px;
padding: 10px 14px; border-radius: var(–radius-sm);
border: 1px solid var(–border); background: #fff;
min-width: 100px;
}
.stat-val { font-size: 18px; font-weight: 900; color: var(–accent); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(–faint); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }

/* HERO GRID */
.hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 10px; }
@media (max-width: 640px) { .hero-grid { grid-template-columns: 1fr; } }

.panel { background: #fff; border: 1px solid var(–border); border-radius: var(–radius); padding: 14px; }
.panel-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; color: var(–faint); margin-bottom: 8px; }

.pillrow { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { border: 1px solid var(–border); background: var(–surface); border-radius: 999px; padding: 5px 11px; color: var(–text); font-weight: 600; font-size: 13px; }
.pill-accent { border-color: var(–accent-bd); background: var(–accent-bg); color: var(–accent); }

.callout { margin-top: 12px; padding: 10px 12px; border-left: 3px solid var(–accent); background: var(–accent-bg); border-radius: 0 var(–radius-sm) var(–radius-sm) 0; font-size: 13px; color: var(–text); }
.callout strong { color: var(–accent); }

.badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }
.badge-green { background: var(–green-bg); border: 1px solid var(–green-bd); color: var(–green); }
.badge-amber { background: var(–amber-bg); border: 1px solid var(–amber-bd); color: var(–amber); }
.divider { height: 1px; background: var(–border); margin: 10px 0; }

/* SECTIONS */
.section { margin-top: 16px; background: #fff; border: 1px solid var(–border); border-radius: var(–radius-lg); padding: 22px; box-shadow: var(–shadow-sm); }
.section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.section-icon { width: 36px; height: 36px; border-radius: 9px; background: var(–accent-bg); border: 1px solid var(–accent-bd); display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }

.fm-page h2 { margin: 0; font-size: clamp(16px, 1.8vw, 20px); font-weight: 900; letter-spacing: -0.3px; color: var(–text); }
.fm-page h3 { margin: 18px 0 7px; font-size: 16px; font-weight: 800; color: var(–text); }
.fm-page h3:first-child { margin-top: 0; }
.fm-page p { margin: 8px 0; color: #374151; font-size: 15px; }

.fm-page ul { margin: 8px 0 0 0; padding-left: 0; list-style: none; }
.fm-page ul li { padding: 6px 0 6px 24px; position: relative; font-size: 15px; color: #374151; border-bottom: 1px solid var(–border); }
.fm-page ul li:last-child { border-bottom: none; }
.fm-page ul li::before { content: “✓”; position: absolute; left: 0; color: var(–green); font-weight: 900; font-size: 12px; top: 8px; }

/* INGREDIENT CARDS */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
@media (max-width: 640px) { .ing-grid { grid-template-columns: 1fr; } }
.ing-card { padding: 12px; border: 1px solid var(–border); border-radius: var(–radius-sm); background: var(–bg2); }
.ing-name { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(–accent); margin-bottom: 3px; }
.ing-desc { font-size: 13px; color: var(–muted); line-height: 1.5; }

/* STEPS */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
@media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(–border); background: var(–bg2); border-radius: var(–radius); padding: 16px; }
.num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 8px; background: var(–accent-bg); border: 1px solid var(–accent-bd); font-weight: 900; font-size: 14px; color: var(–accent); margin-bottom: 8px; }
.step p { margin: 5px 0; font-size: 13px; color: var(–muted); }
.step p:first-of-type { font-size: 14px; font-weight: 700; color: var(–text); }

/* FAQ */
.faq-list { margin-top: 12px; }
details { border: 1px solid var(–border); border-radius: var(–radius-sm); background: #fff; margin-bottom: 6px; overflow: hidden; }
details[open] { border-color: var(–accent-bd); background: var(–accent-bg); }
summary { cursor: pointer; padding: 13px 15px; font-weight: 700; font-size: 14px; color: var(–text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; user-select: none; font-family: inherit; }
summary::-webkit-details-marker { display: none; }
summary::after { content: “+”; font-size: 18px; font-weight: 400; color: var(–accent); flex: 0 0 auto; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 15px 13px; font-size: 14px; color: var(–muted); line-height: 1.65; }
.faq-body strong { color: var(–text); }

/* CTA */
.ctaWrap {
margin-top: 16px; padding: 28px 24px;
border-radius: var(–radius-lg);
border: 2px solid var(–accent-bd);
background: var(–accent-bg);
box-shadow: var(–shadow);
text-align: center;
}
.ctaTitle { margin: 0 0 8px; font-size: clamp(18px, 2.2vw, 24px); font-weight: 900; letter-spacing: -0.3px; color: var(–text); }
.ctaSub { margin: 0 auto 18px; color: var(–muted); font-size: 14px; max-width: 52ch; }
.ctaBtn {
display: inline-block; text-decoration: none;
font-weight: 900; font-size: 17px;
padding: 16px 38px; border-radius: var(–radius);
background: var(–accent);
color: #fff; border: 0;
box-shadow: 0 8px 24px rgba(190,24,93,.3);
transition: transform .12s ease, filter .12s ease;
letter-spacing: .1px; font-family: inherit;
}
.ctaBtn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.ctaBtn:active { transform: translateY(1px); filter: brightness(.95); }
.ctaNote { margin: 12px 0 0; color: var(–faint); font-size: 12px; }

.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(–muted); font-weight: 600; }

/* ADSENSE */
.ad-unit { margin: 16px 0; }

/* DISCLOSURE */
.disclosure { margin-top: 16px; padding: 14px 16px; border-radius: var(–radius-sm); border: 1px solid var(–border); background: var(–bg2); font-size: 12px; color: var(–faint); line-height: 1.6; }

@media (max-width: 480px) {
.wrap { padding: 20px 14px 0; }
.hero { padding: 20px 16px; }
.section { padding: 18px 14px; }
.ctaWrap { padding: 22px 16px; }
.sticky-bar { flex-direction: column; align-items: stretch; gap: 8px; }
.sticky-btn { text-align: center; }
}

Limited Offer — While Samples Last

Free Sample of The Mantle Mini
Ceramide Moisturiser — On Them

Moumoujus is sending out complimentary minis of their science-backed ceramide moisturiser.
Free worldwide shipping, no purchase, no commitment. Just tell them where to send it.

FreeSample
FreeWorldwide Shipping
ZeroCommitment
45+Active Ingredients

What you get
✨ Mantle Mini ceramide moisturiser sample
🚚 Free worldwide shipping
Cruelty-Free & Vegan
Made in UK · Small Batch
No strings attached
Worth knowing: The full-size Mantle retails for £48. This is a genuine no-risk way to see if it works for your skin before spending a penny.

✓ Quick Check

Ships to UK, US, Canada, Australia, and Ireland. Fill out the short form — name, email, and address. That’s it.

⚠ Heads Up

This is a limited offer. Moumoujus is a small-batch UK brand — samples won’t last forever.

🧴

What Is The Mantle Mini?

The Mantle is a ceramide moisturiser and skin barrier repair cream made by Moumoujus, an independent skincare lab in Manchester, UK.
It’s formulated with their proprietary STRATA-3™ Technology — a triple ceramide matrix combined with fermented botanicals — designed to seal and reinforce the skin barrier, lock in moisture, and shield against environmental aggressors.

The full-size version retails for £48 and contains 45+ clinically studied actives. The Mini sample gives you a real taste of the formula — enough to actually feel what it does before committing to the full size.
Fragrance-free, dermatologist-tested, and suitable for sensitive, reactive, and compromised skin.

Key Ingredients

Triple Ceramide Complex (NP, AP, EOP)
Mirrors your skin’s natural barrier lipids. Prevents moisture loss and locks in hydration for up to 72 hours.

Ectoin
Shields skin cells from UV, pollution, and blue light. Calms inflammation and soothes sensitive skin.

Sodium Hyaluronate
Holds up to 1,000x its weight in water. Plumps fine lines and delivers intense, sustained hydration.

Palmitoyl Tripeptide-56
Stimulates collagen and elastin production for visible firmness and anti-ageing results.

Apple Stem Cells
Supports skin vitality and longevity. Backed by published clinical research.

Fermented Kombucha Complex
Delivers antioxidant protection and supports the skin microbiome for a balanced complexion.

Who Is This For?

  • Anyone with dry, dehydrated, or tight-feeling skin
  • People dealing with sensitive, reactive, or compromised skin barriers
  • Those managing eczema, rosacea, or psoriasis-prone skin
  • Anyone who wants a fragrance-free, science-backed moisturiser
  • Skincare fans who like trying before committing to full size

📋

How to Claim Your Free Sample

Takes about 60 seconds. No account required, no credit card, no catch.

1

Tap the claim button

Use the button below or the bar at the bottom of your screen to go to the Moumoujus free sample page.

2

Fill in the short form

Enter your first name, last name, email address, and shipping address. That’s the whole form.

3

Select your country

Choose from UK, US, Canada, Australia, or Ireland. Free shipping included to all.

4

Hit “Request Free Sample”

Done. Watch your inbox for a confirmation. Your mini should arrive within a few weeks.

Ready to Try The Mantle Mini for Free?

Ceramide moisturiser with 45+ actives, free worldwide shipping, zero commitment.


✨ Claim Your Free Sample

Ships to UK, US, Canada, Australia & Ireland · Limited quantities

✓ Official Moumoujus Link
🚚 Free Worldwide Shipping
🔒 No Payment Required
🌿 Cruelty-Free & Vegan

Frequently Asked Questions

Is the shipping really free?
Yes. Moumoujus states free worldwide shipping on the sample. You won’t be asked for a card or payment at any point.
Which countries can claim this?
The form supports United Kingdom, United States, Canada, Australia, and Ireland.
How long does delivery take?
Moumoujus doesn’t specify an exact timeframe, but allow a few weeks — especially for international orders. Check your confirmation email for any shipping estimates.
Will I be signed up for anything?
The offer says “no commitment, cancel anytime.” You may receive marketing emails from Moumoujus — easily unsubscribed. They are not signing you up for a paid subscription.
What’s the difference between the Mini and the full size?
The full-size Mantle is 30ml / 1.0 fl oz and retails for £48. The Mini sample is a smaller trial size — enough to test the formula on your skin before deciding on the full version.
Is this affiliated with Freebie Mom?
Nope. We’re just sharing this offer. Freebie Mom is not the sponsor and has no responsibility for fulfillment, shipping times, or sample availability.

Freebie Mom is not affiliated with or sponsored by Moumoujus. This post shares a publicly available free sample offer. Sample availability can change without notice. Freebie Mom is not responsible for fulfillment, shipping delays, or changes to the offer terms. For questions about your sample, contact Moumoujus directly through their official site.

Helpful Freebie Mom Guides

Keep going

More Freebie Mom guides worth checking

Free Food DealsRestaurant freebies, snacks, rewards, and food offers.Birthday FreebiesBirthday clubs, free treats, and rewards.Browse All Freebie Mom FindsFresh freebies, sweeps, deals, and more.