Sweeps

Entenmann’s is giving away Scented Wrapping Paper that smells like baked goods

View saved
How does this find feel?

/* — GLOBAL STYLES (Entenmann’s Bakery Theme) — */
:root {
–primary: #005596; /* Entenmann’s Blue */
–secondary: #d4a017; /* Golden Crust */
–accent: #e1f5fe; /* Light Frosting Blue */
–text-dark: #333333;
–card-shadow: 0 10px 40px rgba(0, 85, 150, 0.2);
}

body { margin: 0; padding: 0; box-sizing: border-box; }

/* Main Container */
.lp-container {
font-family: ‘Georgia’, serif; /* Classic Serif for Bakery Vibe */
line-height: 1.8;
color: #333;
background-color: #fff;
max-width: 880px;
margin: 20px auto;
padding: 0 10px;
overflow-x: hidden;
font-size: 18px;
}

/* IMAGE STYLE */
.lp-featured-img {
width: 100%;
max-width: 700px;
height: auto;
display: block;
margin: 0 auto 30px auto;
border-radius: 4px;
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
border: 1px solid #ddd;
border-bottom: 5px solid var(–primary);
}

/* HERO SECTION */
.lp-hero {
background: linear-gradient(180deg, #ffffff 0%, #e1f5fe 100%);
color: var(–primary);
padding: 50px 20px;
text-align: center;
border-radius: 12px;
margin-bottom: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
border-top: 5px solid var(–primary);
}

.lp-hero h1 {
font-size: 2.6rem;
font-weight: 700;
margin: 0 0 15px 0;
line-height: 1.2;
color: var(–primary);
letter-spacing: -1px;
}

.lp-hero p { opacity: 0.9; max-width: 650px; margin: 0 auto; font-size: 1.2rem; font-style: italic; color: #555; }

/* TEXT & HEADINGS */
.lp-h2 {
font-size: 2rem;
font-weight: 700;
color: var(–text-dark);
margin-top: 50px;
margin-bottom: 20px;
border-left: 6px solid var(–secondary);
padding-left: 20px;
line-height: 1.2;
}

.lp-p { margin-bottom: 25px; color: #444; }

/* SCENT BOX */
.scent-box {
background: #fff;
border: 2px dashed var(–primary);
border-radius: 12px;
padding: 30px;
margin: 30px 0;
text-align: center;
position: relative;
}
.scent-box::before {
content: “🍩”;
position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
font-size: 40px; background: #fff; padding: 0 10px;
}

/* GIVEAWAY BOX */
#sweeps-box {
margin-top: 60px;
background: #fff;
border: 4px solid var(–primary);
border-radius: 4px; /* Boxy like a donut box */
padding: 40px 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
text-align: center;
scroll-margin-top: 50px;
}

#sweeps-box h3 {
font-size: 32px;
font-weight: 700;
color: var(–primary);
margin-bottom: 10px;
text-transform: uppercase;
}

/* TIMER */
#sweeps-timer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
margin-bottom: 25px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
#sweeps-timer .cell {
background: var(–primary);
border-radius: 4px;
padding: 10px;
color: #fff;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#sweeps-timer .num {
font-size: 26px;
font-weight: 700;
line-height: 1;
color: #fff;
}
#sweeps-timer .lbl {
font-size: 10px;
text-transform: uppercase;
color: #e1f5fe;
margin-top: 4px;
}

/* ENTER BUTTON */
#final-enter {
display: block;
background: linear-gradient(135deg, #005596 0%, #004070 100%);
color: #fff;
font-size: 22px;
font-weight: 700;
padding: 20px 30px;
border-radius: 50px;
text-decoration: none;
margin: 30px auto;
max-width: 450px;
box-shadow: 0 10px 20px rgba(0, 85, 150, 0.3);
transition: transform 0.2s, box-shadow 0.2s;
letter-spacing: 1px;
animation: pulse 2s infinite;
}
#final-enter:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 85, 150, 0.4); }

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}

/* RULES SCROLL */
.rules-scroll {
height: 160px;
overflow-y: scroll;
background: #f9f9f9;
border: 1px solid #ddd;
padding: 15px;
font-size: 13px;
color: #777;
margin-top: 30px;
text-align: left;
border-radius: 4px;
}

/* OVERLAY & POPUP */
#sweeps-overlay {
position: fixed; inset: 0; background: rgba(255,255,255,0.95);
display: flex; align-items: center; justify-content: center;
z-index: 99999;
}
#sweeps-overlay .box {
background: #fff;
border: 4px solid var(–primary);
border-radius: 12px;
padding: 40px;
width: 90%; max-width: 420px;
text-align: center;
box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
#sweeps-start {
background: var(–primary); color: #fff;
font-size: 20px; font-weight: bold; border: none;
padding: 15px 35px; border-radius: 50px; cursor: pointer;
margin-top: 20px; width: 100%;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#sweeps-popup {
display: none; position: fixed; top: 50%; left: 50%;
transform: translate(-50%, -50%);
background: #fff; padding: 25px; border-radius: 12px;
box-shadow: 0 20px 50px rgba(0,0,0,0.2);
z-index: 9998; font-size: 18px; font-weight: bold;
color: var(–primary); text-align: center; border: 3px solid var(–secondary);
width: 80%; max-width: 350px;
}

canvas#sweeps-confetti { position: fixed; inset: 0; pointer-events: none; z-index: 9997; display: none; }

SMELLS LIKE A WIN! 🍪

Entenmann’s is giving away Scented Wrapping Paper that smells like baked goods! 50 Winners. Ends Tomorrow. Let’s get you entered.

The Ultimate Holiday Hack: Wrapping Paper That Smells Like Cookies

Forget the pine scent. Entenmann’s is giving away 50 rolls of “Baked Goods” scented wrapping paper.

Entenmann's Holiday Scented Wrapping Paper

The holidays are all about nostalgia. The smell of the fireplace, the fresh pine tree… and the undeniable aroma of a fresh box of Entenmann’s. This year, the legendary bakery brand is doing something a little crazy and totally genius.

They have created Scented Gift Wrap infused with the aromas of their classic baked goods. It’s the perfect way to make your gifts stand out under the tree (and maybe make everyone a little hungry).

1. Why Scented Wrap?

In a sea of generic red and green paper, engaging the senses is the ultimate “Gift Gifting” hack. It adds a layer of warmth and nostalgia before the box is even opened.

Entenmann’s calls it the “Sweetest Smell of the Season.” Whether you are wrapping a toy for the kids or a sweater for dad, making it smell like chocolate chip cookies is a power move.

🎁 What Does It Smell Like?
Imagine the “Nostalgic Aromas” of classic Entenmann’s treats. Soft cookies, rich chocolate, and sweet glaze.

2. How to Win (50 Lucky Fans)

This is an Instagram-exclusive giveaway, and the barrier to entry is super low. They are picking 50 Winners, which are great odds for a social media contest.

The Deadline is Tight: This ends on December 18, 2025. That is literally right now. Winners will be notified via DM the same day, meaning you could have this unique wrap in hand just in time for Christmas.

Entenmann’s Holiday Giveaway

Win a Roll of Scented Gift Wrap!

Days
Hours
Mins
Secs

(Ending Soon: Dec 18)

ENTER ON INSTAGRAM

OFFICIAL RULES SNAPSHOT:

NO PURCHASE NECESSARY. Enter via Instagram.
Ends: December 18, 2025.
Winners: 50 Winners will be selected.
Prize: Entenmann’s Scented Gift Wrap.
How to Enter:
1. Follow @entenmanns on Instagram.
2. Like the giveaway post.
3. Tag a friend in the comments.
(See full official rules on the Entenmann’s Instagram post).

document.addEventListener(“DOMContentLoaded”,()=>{
const overlay=document.getElementById(“sweeps-overlay”);
const startBtn=document.getElementById(“sweeps-start”);
const popup=document.getElementById(“sweeps-popup”);
const confetti=document.getElementById(“sweeps-confetti”);
const targetBox=document.getElementById(“sweeps-box”);

// TIMER (Dec 18, 2025)
const end=new Date(“2025-12-18T23:59:59”).getTime();
setInterval(()=>{
let t=end-Date.now(); if(t<0)t=0;
let d=Math.floor(t/86400000), h=Math.floor(t%86400000/3600000),
m=Math.floor(t%3600000/60000), s=Math.floor(t%60000/1000);
document.getElementById("d").innerText=d<10?"0"+d:d;
document.getElementById("h").innerText=h<10?"0"+h:h;
document.getElementById("m").innerText=m<10?"0"+m:m;
document.getElementById("s").innerText=s<10?"0"+s:s;
},1000);

// CONFETTI
function fireConfetti(){
const c=confetti, ctx=c.getContext("2d");
c.width=window.innerWidth; c.height=window.innerHeight; c.style.display="block";
let p=[]; for(let i=0;i{
ctx.fillStyle=[“#005596″,”#d4a017″,”#fff”][Math.floor(Math.random()*3)]; // Blue, Gold, White
ctx.fillRect(part.x, part.y, 6, 8);
part.x+=part.vx; part.y+=part.vy; if(part.y>c.height) part.y=-10;
});
requestAnimationFrame(draw);
}
draw();
}

// START CLICK
startBtn.addEventListener(“click”, ()=>{
overlay.style.display=”none”; // Hide overlay
fireConfetti();

// 6 FACTS SPECIFIC TO ENTENMANNS
const facts = [
“50 WINNERS Selected!”,
“Prize: Scented Gift Wrap”,
“Smells Like Baked Goods”,
“Enter on Instagram”,
“Ends Dec 18 (Tomorrow!)”,
“Loading Entry Link…”
];

facts.forEach((txt, i) => {
setTimeout(() => {
popup.innerText = txt;
popup.style.display = “block”;
setTimeout(() => popup.style.display=”none”, 4500); // 4.5s duration
}, i * 5000); // New one every 5s
});

// START SLOW LINEAR SCROLL after 1.5 seconds
setTimeout(() => {
const startY = window.pageYOffset || document.documentElement.scrollTop;
const targetY = targetBox.getBoundingClientRect().top + startY – 20;
const distance = targetY – startY;

const duration = 30000; // 30 SECONDS
let startTime = null;

function loop(currentTime) {
if (!startTime) startTime = currentTime;
const timeElapsed = currentTime – startTime;
const run = linearTween(timeElapsed, startY, distance, duration);
window.scrollTo(0, run);
if (timeElapsed < duration) requestAnimationFrame(loop);
}

function linearTween(t, b, c, d) {
return c * t / d + b;
}

requestAnimationFrame(loop);
}, 1500);
});
});

Helpful Freebie Mom Guides

Keep going

More Freebie Mom guides worth checking

Instant Win GamesQuick plays, fast prizes, and daily chances.Best Sweepstakes to Enter TodayStart with the strongest current prizes.Sweepstakes DatabaseSearch active sweeps by prize, deadline, and entry type.