FREE Box of Nails + FREE Shipping

/* โโ TOKENS โ all solid, no transparency leaking through parent โโ */
:root {
–bg: #0a0f1e;
–bg2: #0e1526;
–surface: #111827;
–surface2: #141d2e;
–surface3: #192033;
–border: #1e2d45;
–border2: #243350;
–text: #f0f4ff;
–muted: #8fa3c0;
–faint: #5a7090;
–gold: #ffd54a;
–gold2: #ffb703;
–gold-dim: #3d2e00;
–gold-bg: #1e1800;
–gold-surf: #251f00;
–green: #22c55e;
–green-bg: #0a2018;
–green-bd: #1a5c35;
–amber: #f59e0b;
–amber-bg: #1f1400;
–amber-bd: #5c3a00;
–radius-sm: 12px;
–radius: 18px;
–radius-lg: 24px;
–shadow: 0 20px 60px rgba(0,0,0,.7);
–shadow-sm: 0 8px 24px rgba(0,0,0,.5);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* โโ SCOPED WRAPPER โ isolates from any parent theme โโ */
.grizzly-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;
}
.grizzly-page *, .grizzly-page *::before, .grizzly-page *::after {
box-sizing: border-box;
}
/* โโ STICKY CTA BAR โโ */
.sticky-bar {
position: fixed;
bottom: 0; left: 0; right: 0;
z-index: 9999;
background: #070c18;
border-top: 1px solid #2a3d5a;
padding: 10px 18px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.sticky-bar p {
margin: 0;
font-size: 13px;
color: var(–muted);
line-height: 1.35;
font-family: inherit;
}
.sticky-bar strong { color: var(–gold); }
.sticky-btn {
flex: 0 0 auto;
display: inline-block;
text-decoration: none;
font-weight: 900;
font-size: 14px;
white-space: nowrap;
padding: 11px 20px;
border-radius: var(–radius-sm);
background: linear-gradient(180deg, var(–gold), var(–gold2));
color: #120e00;
box-shadow: 0 6px 20px rgba(255,183,3,.35);
transition: transform .12s, filter .12s;
font-family: inherit;
}
.sticky-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.sticky-btn:active { transform: translateY(1px); filter: brightness(.96); }
/* โโ LAYOUT โโ */
.wrap {
max-width: 1000px;
margin: 0 auto;
padding: 36px 18px 0;
}
/* โโ HERO โโ */
.hero {
position: relative;
overflow: hidden;
border-radius: var(–radius-lg);
border: 1px solid #2a3d1a;
background: #0d1a0a;
padding: 32px 28px 28px;
box-shadow: var(–shadow);
}
/* subtle gold glow top-right */
.hero::before {
content: “”;
position: absolute;
top: -60px; right: -80px;
width: 280px; height: 280px;
background: radial-gradient(circle, #ffd54a, transparent 60%);
filter: blur(40px);
opacity: .12;
pointer-events: none;
}
/* subtle green glow bottom-left */
.hero::after {
content: “”;
position: absolute;
bottom: -50px; left: -50px;
width: 220px; height: 220px;
background: radial-gradient(circle, #22c55e, transparent 60%);
filter: blur(40px);
opacity: .10;
pointer-events: none;
}
/* live badge */
.kicker {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 14px;
border-radius: 999px;
border: 1px solid #2e4a1a;
background: #0f1f0a;
font-size: 13px;
font-weight: 700;
letter-spacing: .3px;
color: #c8e6a0;
margin-bottom: 14px;
position: relative;
z-index: 1;
}
.kdot {
width: 9px; height: 9px;
border-radius: 50%;
background: var(–green);
box-shadow: 0 0 0 5px #0d3020;
animation: kdot-pulse 2s ease-in-out infinite;
flex: 0 0 auto;
}
@keyframes kdot-pulse {
0%, 100% { box-shadow: 0 0 0 5px #0d3020; }
50% { box-shadow: 0 0 0 9px #071a10; }
}
.hero-title {
position: relative;
z-index: 1;
font-size: clamp(26px, 3.5vw, 44px);
font-weight: 900;
line-height: 1.12;
letter-spacing: -0.8px;
margin: 0 0 12px;
color: var(–text);
}
.hero-title em {
font-style: normal;
background: linear-gradient(90deg, var(–gold), var(–gold2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-sub {
position: relative;
z-index: 1;
margin: 0 0 22px;
color: var(–muted);
font-size: 16px;
max-width: 72ch;
}
/* stat row */
.stat-row {
display: flex;
flex-wrap: wrap;
gap: 10px;
position: relative;
z-index: 1;
margin-bottom: 22px;
}
.stat {
display: flex;
flex-direction: column;
gap: 2px;
padding: 12px 16px;
border-radius: var(–radius-sm);
border: 1px solid var(–border);
background: var(–surface);
min-width: 120px;
}
.stat-val {
font-size: 22px;
font-weight: 900;
color: var(–gold);
line-height: 1;
}
.stat-lbl {
font-size: 12px;
color: var(–muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: .5px;
}
/* hero grid */
.hero-grid {
display: grid;
grid-template-columns: 1.4fr .6fr;
gap: 12px;
position: relative;
z-index: 1;
}
@media (max-width: 700px) {
.hero-grid { grid-template-columns: 1fr; }
}
.panel {
background: var(–surface2);
border: 1px solid var(–border);
border-radius: var(–radius);
padding: 16px;
}
.panel-label {
font-size: 11px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .8px;
color: var(–faint);
margin-bottom: 10px;
}
.pillrow {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.pill {
border: 1px solid var(–border2);
background: var(–surface3);
border-radius: 999px;
padding: 7px 12px;
color: #d0dff5;
font-weight: 700;
font-size: 13px;
line-height: 1.3;
}
.pill-gold {
border-color: #3d3000;
background: #1e1800;
color: var(–gold);
}
/* callout */
.callout {
margin-top: 14px;
padding: 12px 14px;
border-left: 3px solid var(–gold2);
background: #1a1400;
border-radius: 0 var(–radius-sm) var(–radius-sm) 0;
font-size: 14px;
color: #d4c080;
}
.callout strong { color: var(–gold); }
/* badge */
.badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 5px 10px;
border-radius: 999px;
font-size: 12px;
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: 12px 0; }
/* โโ AD BLOCK โโ */
.adblock {
margin: 20px 0;
padding: 14px;
border-radius: var(–radius);
border: 1px dashed var(–border2);
background: var(–surface);
}
/* โโ SECTIONS โโ */
.section {
margin-top: 20px;
background: var(–surface);
border: 1px solid var(–border);
border-radius: var(–radius-lg);
padding: 24px;
box-shadow: var(–shadow-sm);
}
.section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.section-icon {
width: 38px; height: 38px;
border-radius: 10px;
background: var(–gold-surf);
border: 1px solid var(–gold-dim);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
flex: 0 0 auto;
}
.grizzly-page h1,
.grizzly-page h2,
.grizzly-page h3 {
color: var(–text);
}
.grizzly-page h2 {
margin: 0;
font-size: clamp(17px, 2vw, 21px);
font-weight: 900;
letter-spacing: -0.3px;
}
.grizzly-page h3 {
margin: 20px 0 8px;
font-size: 17px;
font-weight: 800;
letter-spacing: -0.2px;
color: #e8f0ff;
}
.grizzly-page h3:first-child { margin-top: 0; }
.grizzly-page p {
margin: 10px 0;
color: #b8cce0;
font-size: 15px;
}
.grizzly-page ul {
margin: 10px 0 0 0;
padding-left: 0;
list-style: none;
color: #b0c8e0;
}
.grizzly-page ul li {
padding: 7px 0 7px 26px;
position: relative;
font-size: 15px;
border-bottom: 1px solid var(–border);
}
.grizzly-page ul li:last-child { border-bottom: none; }
.grizzly-page ul li::before {
content: “โ”;
position: absolute;
left: 0;
color: var(–green);
font-weight: 900;
font-size: 13px;
top: 8px;
}
/* โโ PRIZE TABLE โโ */
.prize-table {
width: 100%;
border-collapse: collapse;
margin-top: 14px;
font-size: 14px;
}
.prize-table th {
text-align: left;
padding: 10px 14px;
background: var(–gold-surf);
border-bottom: 2px solid var(–gold-dim);
color: var(–gold);
font-weight: 800;
font-size: 12px;
text-transform: uppercase;
letter-spacing: .5px;
}
.prize-table td {
padding: 11px 14px;
border-bottom: 1px solid var(–border);
color: #b8cce0;
vertical-align: top;
}
.prize-table tr:last-child td { border-bottom: none; }
.prize-table tr:hover td { background: var(–surface2); }
.prize-table td strong { color: var(–text); }
/* โโ STEPS โโ */
.steps {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-top: 14px;
}
@media (max-width: 700px) {
.steps { grid-template-columns: 1fr; }
}
.step {
position: relative;
border: 1px solid var(–border);
background: var(–surface2);
border-radius: var(–radius);
padding: 18px;
transition: border-color .2s, box-shadow .2s;
}
.step:hover {
border-color: #3d3000;
box-shadow: 0 0 0 1px #2a2000, var(–shadow-sm);
}
.num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 34px; height: 34px;
border-radius: 10px;
background: var(–gold-surf);
border: 1px solid var(–gold-dim);
font-weight: 900;
font-size: 16px;
color: var(–gold);
margin-bottom: 10px;
}
.step p { margin: 6px 0; font-size: 14px; color: #a8bcd8; }
.step p:first-of-type { font-size: 15px; font-weight: 700; color: var(–text); }
/* โโ TIPS GRID โโ */
.tips-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 14px;
}
@media (max-width: 700px) {
.tips-grid { grid-template-columns: 1fr; }
}
.tip-card {
padding: 14px;
border: 1px solid var(–border);
border-radius: var(–radius-sm);
background: var(–surface2);
font-size: 14px;
color: #a8bcd8;
display: flex;
gap: 10px;
align-items: flex-start;
}
.tip-icon {
font-size: 18px;
flex: 0 0 auto;
line-height: 1;
margin-top: 1px;
}
.tip-card strong { color: var(–text); display: block; margin-bottom: 3px; }
/* โโ FAQ โโ */
.faq-list { margin-top: 14px; }
details {
border: 1px solid var(–border);
border-radius: var(–radius-sm);
background: var(–surface2);
margin-bottom: 8px;
overflow: hidden;
transition: border-color .2s;
}
details[open] {
border-color: var(–gold-dim);
background: var(–gold-bg);
}
summary {
cursor: pointer;
padding: 14px 16px;
font-weight: 700;
font-size: 15px;
color: var(–text);
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
user-select: none;
font-family: inherit;
}
summary::-webkit-details-marker { display: none; }
summary::after {
content: “+”;
font-size: 20px;
font-weight: 300;
color: var(–gold);
flex: 0 0 auto;
transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-body {
padding: 0 16px 14px;
font-size: 14px;
color: #a8bcd8;
line-height: 1.65;
}
.faq-body strong { color: var(–text); }
/* โโ CTA WRAP โโ */
.ctaWrap {
margin-top: 20px;
padding: 32px 28px;
border-radius: var(–radius-lg);
border: 1px solid var(–gold-dim);
background: #0f1200;
box-shadow: var(–shadow);
text-align: center;
position: relative;
overflow: hidden;
}
.ctaWrap::before {
content: “”;
position: absolute;
top: -80px; right: -80px;
width: 260px; height: 260px;
background: radial-gradient(circle, var(–gold), transparent 60%);
filter: blur(50px);
opacity: .10;
pointer-events: none;
}
.ctaTitle {
position: relative;
z-index: 1;
margin: 0 0 10px;
font-size: clamp(20px, 2.5vw, 28px);
font-weight: 900;
letter-spacing: -0.4px;
color: var(–text);
}
.ctaSub {
position: relative;
z-index: 1;
margin: 0 auto 20px;
color: var(–muted);
font-size: 15px;
max-width: 56ch;
}
.ctaBtn {
position: relative;
z-index: 1;
display: inline-block;
text-decoration: none;
font-weight: 900;
font-size: 18px;
padding: 18px 40px;
border-radius: var(–radius);
background: linear-gradient(180deg, var(–gold) 0%, var(–gold2) 100%);
color: #120e00;
border: 0;
box-shadow: 0 16px 40px rgba(255,183,3,.4), 0 4px 12px rgba(0,0,0,.5);
transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
letter-spacing: .2px;
font-family: inherit;
}
.ctaBtn:hover {
transform: translateY(-2px);
filter: brightness(1.07);
box-shadow: 0 22px 50px rgba(255,183,3,.5), 0 4px 12px rgba(0,0,0,.5);
}
.ctaBtn:active {
transform: translateY(1px);
filter: brightness(.95);
}
.ctaNote {
position: relative;
z-index: 1;
margin: 14px 0 0;
color: var(–faint);
font-size: 13px;
}
/* trust row */
.trust-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 18px;
position: relative;
z-index: 1;
}
.trust-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: var(–muted);
font-weight: 600;
}
.trust-item span { font-size: 15px; }
/* โโ DISCLOSURE โโ */
.disclosure {
margin-top: 20px;
padding: 16px 18px;
border-radius: var(–radius-sm);
border: 1px solid var(–border);
background: var(–surface);
font-size: 13px;
color: var(–muted);
line-height: 1.6;
}
.disclosure strong { color: #8fa3c0; }
/* โโ RESPONSIVE โโ */
@media (max-width: 500px) {
.hero { padding: 22px 16px 20px; }
.section { padding: 18px 16px; }
.ctaWrap { padding: 22px 16px; }
.stat-val { font-size: 18px; }
.sticky-bar { flex-direction: column; align-items: stretch; gap: 8px; }
.sticky-btn { text-align: center; }
}
Grizzly Rewards Freebie โ While Supplies Last
Score Free Grip-Rite Nails
+ a $3 Grizzly Mobile Coupon
Grizzly is giving away 10,500 prize bundles โ a real box of nails plus a digital coupon.
No surveys, no tricks. Here’s everything you need to know to claim yours before they’re gone.
Total Winners
Est. Prize Value
Total ARV Pool
Prize Limit
๐ท๏ธ $3 off 2 cans of Grizzly (mobile coupon)
Limit 1 per person / username
10,500 winners total
Promos like this can disappear fast once they get traction.
You’ll need a phone to redeem the mobile coupon later.
You can start on desktop, but keep your phone nearby.
Prizes are subject to availability while supplies last.
Coupon redemption is subject to applicable laws and terms.
What Is This Grizzly Freebie, Exactly?
This is a rewards-style promotion from Grizzly where 10,500 winners can receive a prize bundle.
You’re getting a real, physical item โ a box of nails โ plus a digital coupon you redeem on your phone.
No entry fee, no subscription required. Just claim it through the official Grizzly Rewards page.
If you’ve ever gone to the hardware store for “just one thing” and walked out $78 poorer with a cart full of mystery,
you already understand the appeal here. Nails are a consumable โ you always need more, and free is always better.
Official Prize Details
| Prize Component | Details | ARV |
|---|---|---|
| Grip-Rite Nails | One (1) 90-count box ยท 2-1/2″ ยท 10-gauge | $44,625 total |
| Mobile Coupon | $3.00 off two (2) cans of Grizzly | $31,500 total |
| Total Pool | 10,500 prizes ยท limit 1 per person/username | $76,125 |
Who Should Grab This?
Honestly, anyone who likes free stuff is welcome. But this one is especially great for:
- Homeowners doing repairs, upgrades, or weekend projects
- Renters who like having a “fix-it” kit ready to go
- DIYers, woodworkers, and anyone who lives in the hardware aisle
- People who keep saying “I need to organize the garage” and want a reason to start
- Anyone who stacks coupons and loves small wins that add up
How to Claim (Simple, No Confusion)
Four steps. Takes about two minutes. Here’s exactly what to do:
Open the Grizzly Rewards page
Use the button at the bottom of this post (or the sticky bar at the bottom of your screen).
If you’re already signed in, you’ll move faster. If not, create an account or sign in.
Find the nails reward / promo offer
Look for the Grip-Rite nails listing and follow the on-screen steps.
Keep an eye out for any availability message โ prizes are limited and can run out quickly.
Save your mobile coupon immediately
The $3 coupon typically lives in a phone-friendly format or within your account.
Screenshot it if allowed, or save it where the site directs you โ don’t lose it.
Check your email for confirmation
Some promos confirm instantly; others send a follow-up email.
If you don’t see anything, check your spam/promotions folder right away.
Tips to Avoid Annoying Hiccups
The offer involves a mobile coupon, so claiming and redeeming on your phone is the smoothest experience.
The promo limits one prize per person/username. Duplicate accounts can get you disqualified entirely.
You’ll need it to retrieve confirmations or coupon links. Don’t use a throwaway address.
“While supplies last” means exactly what it says. 10,500 prizes sounds like a lot โ until it doesn’t.
Some rewards programs have a “Redeem” button you must click to lock in your prize. Don’t skip it.
If it’s out of stock when you arrive, bookmark it and check back. Restocks do happen occasionally.
Is This Affiliated With Freebie Mom?
Nope. This post is simply sharing a reward offer from Grizzly that was found and verified.
Freebie Mom is not the sponsor of this promotion and is not responsible for fulfillment,
stock levels, coupon terms, or account rules.
Always rely on the
and is subject to the promotion’s terms and conditions. For redemption issues, contact Grizzly support
through their official site.
Frequently Asked Questions
Do I have to pay for shipping?
Check what the Grizzly site shows during the claim process โ it should be clear before you confirm.
Can I win more than once?
One and done โ don’t try to game it with multiple accounts.
What if it says it’s out of stock?
If it’s out, bookmark the page and check back โ but don’t count on a restock unless the site says so explicitly.
Is the $3 coupon the same as cash?
Treat it like a standard manufacturer’s coupon: redeemable per the instructions and restrictions on the offer.
What are the Grip-Rite nails good for?
framing, decking, fencing, and general construction. Always match nail type and length to your specific
project and materials. When in doubt, ask someone at your local hardware store.
What if I have trouble redeeming the coupon?
Freebie Mom has no control over fulfillment, coupon validity, or account issues.
Ready to Grab Your Free Nails?
10,500 prizes available โ a box of Grip-Rite nails plus a $3 mobile coupon.
Tap below to go straight to the official Grizzly Rewards page.
๐ฉ CLAIM ON GRIZZLY REWARDS
If the page doesn’t load, try a different browser or open it on your phone.
๐ No Payment Required
โก While Supplies Last
๐ฑ Mobile-Friendly
Availability can change without notice. The prize limit is one per person/username and is subject to
the promotion’s full terms and conditions. Mobile coupon redemption is subject to applicable federal,
state, and local laws and regulations. If you have redemption issues, contact Grizzly support through
their official site.
Helpful Freebie Mom Guides
Keep going