Free 4.67 oz Box of Andes Mints Coupon Sweepstakes — 25 Winners
/* ================================
ANDES BRAND COLOR PALETTE
================================ */
:root {
–andes-green-dark: #0b6b41;
–andes-green-mid: #10824f;
–andes-green-light: #41b97a;
–andes-red-dark: #8b0000;
–andes-red-mid: #b30000;
–andes-red-light: #ffb3b3;
}
/* ================================
BOX 1 — TIMER
================================ */
#andes-box1 {
margin-bottom: 20px;
max-width: 860px;
margin-left: auto;
margin-right: auto;
}
#andes-box1 .wrap {
background: #f8fffa;
border-radius: 22px;
padding: 20px;
color: var(–andes-green-dark);
border: 1px solid rgba(0, 0, 0, .1);
box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
#andes-box1 .bar {
height: 6px;
border-radius: 6px;
background: linear-gradient(90deg, var(–andes-green-dark), var(–andes-green-mid), var(–andes-green-light));
margin-bottom: 14px;
}
#andes-box1 h3 {
margin: 0 0 10px;
font-size: 21px;
font-weight: 800;
text-transform: uppercase;
color: var(–andes-green-dark);
}
#andes-box1 .meta {
font-size: 14px;
opacity: .85;
margin-bottom: 14px;
}
#andes-box1 .timer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
#andes-box1 .cell {
background: #f4fff8;
border: 1px solid rgba(0, 0, 0, .1);
border-radius: 14px;
padding: 10px;
text-align: center;
}
#andes-box1 .num {
font-size: 30px;
font-weight: 900;
color: var(–andes-green-dark);
}
#andes-box1 .lbl {
font-size: 12px;
text-transform: uppercase;
opacity: .8;
}
/* ================================
BOX 1 — OVERLAY
================================ */
#andes-overlay {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, .65);
z-index: 99999;
}
#andes-overlay .box {
background: #fffdfd;
border: 3px solid var(–andes-red-mid);
border-radius: 22px;
padding: 34px;
text-align: center;
max-width: 420px;
box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}
#andes-overlay h2 {
font-size: 24px;
color: var(–andes-red-mid);
font-weight: 900;
margin-bottom: 10px;
}
#andes-overlay p {
font-size: 16px;
color: #333;
margin-bottom: 20px;
}
#andes-overlay button {
background: linear-gradient(90deg, var(–andes-red-dark), var(–andes-red-mid));
color: #fff;
font-weight: 800;
border: none;
border-radius: 16px;
padding: 14px 26px;
cursor: pointer;
box-shadow: 0 6px 20px rgba(139, 0, 0, .4);
}
#andes-skip {
display: none;
margin-top: 10px;
font-size: 13px;
color: var(–andes-red-mid);
opacity: .8;
cursor: pointer;
text-decoration: underline;
}
Andes Mints Coupon Giveaway
FIRST I NEED TO TELL YOU THE RULES!
This will only take a few seconds before the entry link appears.
#andes-box2 {
margin-bottom: 20px;
max-width: 860px;
margin-left: auto;
margin-right: auto;
}
#andes-box2 .card {
background: #ffffff;
border: 2px solid var(–andes-green-dark);
border-radius: 22px;
padding: 26px;
text-align: center;
box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}
#andes-box2 h3 {
margin: 6px 0 12px;
font-size: 22px;
color: var(–andes-green-dark);
font-weight: 900;
}
#andes-box2 .sub {
font-size: 15px;
margin-bottom: 12px;
color: #333;
opacity: .85;
}
#andes-box2 .cta {
display: inline-block;
margin-top: 12px;
background: linear-gradient(90deg, var(–andes-green-dark), var(–andes-green-mid));
color: #fff;
border-radius: 16px;
padding: 14px 34px;
font-weight: 800;
font-size: 18px;
text-decoration: none;
box-shadow: 0 6px 20px rgba(16, 130, 79, .35);
}
/* POPUP FACT BOX */
#andes-popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #f2fff8;
padding: 24px;
border-radius: 18px;
box-shadow: 0 0 32px rgba(0, 0, 0, .25);
z-index: 9999;
font-size: 18px;
font-weight: 800;
color: var(–andes-green-dark);
text-align: center;
}
/* CONFETTI CANVAS */
canvas#andes-confetti {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 9998;
display: none;
}
Win a Free Box of Andes Mints!
document.addEventListener(“DOMContentLoaded”, () => {
/* ================
TIMER LOGIC
================ */
const d = document.getElementById(“a-d”);
const h = document.getElementById(“a-h”);
const m = document.getElementById(“a-m”);
const s = document.getElementById(“a-s”);
const end = new Date(“2025-11-22T05:59:59Z”).getTime(); // 11:59PM CST → 5:59UTC next day
function pad(n){ return n < 10 ? "0" + n : n; }
function tick() {
const now = Date.now();
const diff = end – now;
if (diff { skipBtn.style.display = “block”; }, 5000);
function removeOverlay(e){
e.preventDefault();
overlay.remove();
andesBegin();
}
startBtn.addEventListener(“click”, removeOverlay);
skipBtn.addEventListener(“click”, removeOverlay);
overlay.addEventListener(“click”, (e) => {
if (e.target === overlay) overlay.remove();
});
/* ================
CONFETTI ENGINE
================ */
const confettiCanvas = document.getElementById(“andes-confetti”);
function launchConfetti() {
const ctx = confettiCanvas.getContext(“2d”);
confettiCanvas.width = window.innerWidth;
confettiCanvas.height = window.innerHeight;
confettiCanvas.style.display = “block”;
let parts = [];
const cols = [ “#0b6b41”, “#10824f”, “#41b97a”, “#8b0000”, “#b30000” ];
for (let i = 0; i confettiCanvas.height) p.y = -10;
}
requestAnimationFrame(draw);
})();
}
/* ================
POPUPS + SCROLL SETUP
================ */
const popup = document.getElementById(“andes-popup”);
let timeouts = [];
let scrollFrame = null;
const facts = [
“This giveaway is ONE-TIME ENTRY only!”,
“25 winners get a free 4.67 oz box of Andes Mints!”,
“Your coupon is redeemable for the classic mint-chocolate favorite!”,
“Continental U.S. residents only for this promo!”,
“Keep watching — scrolling to the official entry link!”
];
function showPopupSequence(){
timeouts.forEach(clearTimeout);
timeouts = [];
facts.forEach((fact, i) => {
const showT = setTimeout(() => {
popup.textContent = fact;
popup.style.display = “block”;
const hideT = setTimeout(() => popup.style.display = “none”, 9500);
timeouts.push(hideT);
}, 1000 + 10000 * i);
timeouts.push(showT);
});
}
/* ================
MAIN EXPERIENCE LAUNCHER
================ */
const finalEntryBtn = document.getElementById(“andes-entry”);
const backupEnter = document.getElementById(“backup-enter”);
function andesBegin(){
launchConfetti();
showPopupSequence();
setTimeout(() => {
if (!finalEntryBtn) return;
if (scrollFrame) cancelAnimationFrame(scrollFrame);
const startY = window.pageYOffset;
const endY = finalEntryBtn.getBoundingClientRect().top + startY;
const distance = endY – startY;
const duration = window.innerWidth < 768 ? 45000 : 30000;
let startTime = null;
function animateScroll(ts){
if (!startTime) startTime = ts;
const p = Math.min((ts – startTime)/duration, 1);
window.scrollTo(0, startY + distance*p);
if (p {
e.preventDefault();
andesBegin();
});
/* CANCEL POPUPS + SCROLL ON USER INTERACTION */
window.addEventListener(“mousedown”, () => {
popup.style.display = “none”;
timeouts.forEach(clearTimeout);
timeouts = [];
if (scrollFrame){
cancelAnimationFrame(scrollFrame);
scrollFrame = null;
}
});
});
Do you love that unmistakable mint-chocolate crunch of an Andes Mints thin—then how about scoring a free box with zero cost? Right now you can enter to win one of 25 coupons redeemable for a free 4.67 oz box of Andes Mints in this exclusive sweepstakes. The prize is small but sweet—and perfect for anyone who loves a little gourmet snack treat or wants something fun to share at a party, holiday get-together or just indulge solo. Because the grand prize here isn’t thousands of dollars—it’s candy. And honestly, sometimes that’s enough.
Prize Breakdown
- (25) Winners: Each winner receives a coupon redeemable for one free 4.67 oz box of Andes Mints.
The prize is identical for each winner rather than tiered. So when you see “prize breakdown,” you simply get that one coupon. Think of it as the golden ticket for mint-chocolate heaven: a 4.67 oz box—which is a standard retail size for Andes. It’s ideal for wallet-friendly enjoyment, sharing at a movie night, or stocking your snack drawer.
What You Can Do With the Prize if You Win
Winning this coupon means you get to claim a free box of Andes Mints, and there are plenty of fun, creative ways to make that moment count. If you’re the kind of person who loves snack-time glam, picture yourself opening that green-wrapped bundle of mint chocolates after dinner while everyone else buys dessert. Or stash it in your purse for an impromptu treat when you heck-yes a spontaneous Friday night. For the host-with-the-most vibe, pop your free box at your next gathering—drop them in a fancy bowl on the coffee table and watch people dive in. Even better: use the Andes box as part of a holiday cookie swap platter or hot-cocoa bar. You could break the pieces, sprinkle them over brownies or melt a few into a decadent mint-chocolate bark—boom, you just elevated snack hour. If you win, you win—no purchase required (aside from maybe the drink to pair it with). It’s small scale but high fun—and when you’re getting something free that tastes like a treat, the value is in the vibe.
Q&A
Is this legitimate? Yes—this sweepstakes is real and offered by the brand or its promotional team (via the official rules linked on the giveaway page). As always, you should review the official rules for full details, eligibility, redemption instructions and fulfillment process.
How many entries are allowed? According to trusted sweepstakes guides, entry is limited to one time per person for this specific giveaway.
Are there bonus entries? No, this appears to be a straightforward single-entry sweepstakes, with no bonus or daily entries listed.
How many prizes can you win? Each entrant is eligible to win one of the 25 coupons (and you cannot win multiple prizes in this offer).
#andes-box3 .shell {
background: #f8fffa;
border: 2px solid var(–andes-green-mid);
border-radius: 22px;
padding: 20px;
box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}
#andes-box3 h3 {
margin: 6px 0 14px;
font-size: 21px;
color: var(–andes-green-dark);
font-weight: 900;
text-align: center;
}
#andes-box3 .cta {
display: block;
text-align: center;
background: var(–andes-green-dark);
color: #fff;
border-radius: 14px;
padding: 16px;
font-weight: 900;
margin: 18px auto;
max-width: 320px;
text-decoration: none;
box-shadow: 0 6px 14px rgba(16, 130, 79, .4);
font-size: 20px;
animation: pulseAndes 1.5s infinite;
}
@keyframes pulseAndes {
0%,100% { transform: scale(1); }
50% { transform: scale(1.07); }
}
#andes-box3 .grid {
display: grid;
gap: 16px;
margin-top: 20px;
}
#andes-box3 .recap {
background: #ffffff;
border: 1px solid var(–andes-green-light);
border-radius: 14px;
padding: 14px;
}
#andes-box3 .recap h3 {
font-size: 18px;
margin-bottom: 12px;
color: var(–andes-green-dark);
}
#andes-box3 .recap ul,
#andes-box3 .recap dl {
margin: 0;
padding: 0;
}
#andes-box3 .recap li {
margin-bottom: 6px;
font-size: 14px;
}
#andes-box3 .recap dt {
font-weight: 800;
color: var(–andes-green-dark);
}
#andes-box3 .recap dd {
margin: 0 0 6px;
font-size: 14px;
}
You’ve Reached the Giveaway — Enter Below!
ENTER HERE
Prize Breakdown
- 25 Winners total
- Each receives a coupon for 1 free 4.67 oz box of Andes Mints
- No cash value; coupon redeemable at participating retailers
Giveaway Recap
- Sponsor
- Andes (Tootsie)
- Entry Type
- One-Time Entry
- Eligibility
- Continental U.S. residents only
- Promotion Period
- Ends November 21, 2025 at 11:59 PM CST
- Entry Link
- Official Entry Page
document.addEventListener(“DOMContentLoaded”, () => {
const entryBtn = document.getElementById(“andes-entry”);
const confettiCanvas = document.getElementById(“andes-confetti”);
entryBtn.addEventListener(“click”, () => {
if (!confettiCanvas) return;
const ctx = confettiCanvas.getContext(“2d”);
confettiCanvas.width = window.innerWidth;
confettiCanvas.height = window.innerHeight;
confettiCanvas.style.display = “block”;
let parts = [];
const cols = [ “#0b6b41”, “#10824f”, “#41b97a”, “#8b0000”, “#b30000” ];
for (let i = 0; i confettiCanvas.height) p.y = -10;
}
requestAnimationFrame(draw);
})();
});
});
Helpful Freebie Mom Guides
Keep going