CSS
/* ─── 06 Flash Sale Command Center — ignited deals mega menu ────────
Imports Syne + Syne Mono + Outfit. The "ignited" Deals trigger gets
a red background tint, pulsing live dot, fire-glow box-shadow.
The promo ticker animates an infinite horizontal scroll. Everything
scoped under .mm-dea so the dark palette / fire glow doesn't leak. */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Syne+Mono&family=Outfit:wght@200;300;400;500;600&display=swap');
.mm-dea {
--mm-dea-void: #0e0e0e;
--mm-dea-surface: #141414;
--mm-dea-panel: #1a1a1a;
--mm-dea-raised: #202020;
--mm-dea-border: rgba(255, 255, 255, 0.07);
--mm-dea-border-mid: rgba(255, 255, 255, 0.12);
--mm-dea-text: #e8e8e8;
--mm-dea-text-mid: rgba(232, 232, 232, 0.55);
--mm-dea-text-dim: rgba(232, 232, 232, 0.3);
--mm-dea-azure: #3b82f6;
--mm-dea-azure-dim: rgba(59, 130, 246, 0.15);
--mm-dea-fire: #ff3030;
--mm-dea-fire-dim: rgba(255, 48, 48, 0.12);
--mm-dea-fire-glow: rgba(255, 48, 48, 0.3);
--mm-dea-gold: #f5c242;
--mm-dea-gold-dim: rgba(245, 194, 66, 0.15);
--mm-dea-green: #22c55e;
--mm-dea-green-dim: rgba(34, 197, 94, 0.12);
position: relative;
background: var(--mm-dea-void);
font-family: 'Outfit', system-ui, sans-serif;
width: 100%;
min-height: 620px;
overflow: hidden;
box-sizing: border-box;
}
.mm-dea *,
.mm-dea *::before,
.mm-dea *::after { box-sizing: border-box; }
/* ── Promo ticker ── */
.mm-dea .ticker-wrap {
background: var(--mm-dea-fire);
overflow: hidden;
height: 32px;
display: flex;
align-items: center;
position: relative;
}
.mm-dea .ticker-wrap::before,
.mm-dea .ticker-wrap::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 60px;
z-index: 2;
}
.mm-dea .ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--mm-dea-fire), transparent); }
.mm-dea .ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--mm-dea-fire), transparent); }
.mm-dea .ticker-content {
display: flex;
gap: 60px;
animation: mm-dea-ticker 22s linear infinite;
white-space: nowrap;
padding-left: 100%;
}
@keyframes mm-dea-ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.mm-dea .ticker-item {
font-family: 'Syne', system-ui, sans-serif;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #fff;
display: inline-flex;
align-items: center;
gap: 12px;
}
.mm-dea .ticker-item .t-sep { color: rgba(255, 255, 255, 0.4); font-size: 14px; }
/* ── Nav bar ── */
.mm-dea .nav-bar {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: stretch;
background: var(--mm-dea-surface);
border-bottom: 1px solid var(--mm-dea-border);
position: relative;
z-index: 3;
}
.mm-dea .nav-item { position: relative; list-style: none; }
.mm-dea .nav-trigger {
display: inline-flex;
align-items: center;
gap: 7px;
height: 54px;
padding: 0 22px;
font-family: 'Syne', system-ui, sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--mm-dea-text-mid);
background: transparent;
border: 0;
border-right: 1px solid var(--mm-dea-border);
cursor: pointer;
user-select: none;
transition: color 0.2s, background 0.2s;
position: relative;
}
.mm-dea .nav-item:hover .nav-trigger,
.mm-dea .nav-item.mm-open .nav-trigger { color: var(--mm-dea-text); }
.mm-dea .nav-trigger .chevron {
font-size: 9px;
opacity: 0.4;
transition: transform 0.3s, opacity 0.2s;
margin-left: 2px;
}
.mm-dea .nav-item:hover .nav-trigger .chevron,
.mm-dea .nav-item.mm-open .nav-trigger .chevron { transform: rotate(180deg); opacity: 0.7; }
/* DEALS trigger — special red styling */
.mm-dea .nav-item.deals-item .nav-trigger {
background: var(--mm-dea-fire-dim);
border-right: 1px solid rgba(255, 48, 48, 0.2);
border-left: 1px solid rgba(255, 48, 48, 0.2);
color: var(--mm-dea-fire);
padding: 0 26px;
}
.mm-dea .nav-item.deals-item .nav-trigger .live-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--mm-dea-fire);
box-shadow: 0 0 6px var(--mm-dea-fire);
animation: mm-dea-pulse 1.4s ease-in-out infinite;
flex-shrink: 0;
}
@keyframes mm-dea-pulse {
0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--mm-dea-fire); }
50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 12px var(--mm-dea-fire); }
}
.mm-dea .nav-item.deals-item:hover .nav-trigger,
.mm-dea .nav-item.deals-item.mm-open .nav-trigger {
background: rgba(255, 48, 48, 0.18);
color: #ff6060;
}
/* ── Mega panel ── */
.mm-dea .mega {
position: absolute;
top: 100%;
left: 0;
background: var(--mm-dea-panel);
border: 1px solid var(--mm-dea-border-mid);
border-top: 2px solid var(--mm-dea-border-mid);
opacity: 0;
pointer-events: none;
transform: translateY(-8px);
transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
display: grid;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
overflow: hidden;
max-width: calc(100vw - 24px);
z-index: 5;
}
.mm-dea .nav-item:hover .mega,
.mm-dea .nav-item.mm-open .mega { opacity: 1; pointer-events: all; transform: translateY(0); }
.mm-dea .nav-item.deals-item .mega {
border-top: 2px solid var(--mm-dea-fire);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--mm-dea-fire-glow);
}
.mm-dea .mega-regular { grid-template-columns: 1fr 1fr 1fr; min-width: min(640px, calc(100vw - 24px)); }
.mm-dea .mega-deals { grid-template-columns: 260px 1fr 1fr 1fr; min-width: min(920px, calc(100vw - 24px)); }
/* ── Regular columns ── */
.mm-dea .reg-col {
padding: 22px 20px;
border-right: 1px solid var(--mm-dea-border);
}
.mm-dea .reg-col:last-of-type { border-right: none; }
.mm-dea .reg-col-title {
font-family: 'Syne', system-ui, sans-serif;
font-size: 9px;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--mm-dea-text-dim);
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 1px solid var(--mm-dea-border);
}
.mm-dea .reg-links { list-style: none; margin: 0; padding: 0; }
.mm-dea .reg-links li { list-style: none; }
.mm-dea .reg-links li a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 9px 0;
font-family: 'Outfit', system-ui, sans-serif;
font-size: 14px;
font-weight: 300;
color: var(--mm-dea-text-mid);
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
transition: color 0.2s, padding-left 0.25s;
}
.mm-dea .reg-links li a:hover { color: var(--mm-dea-text); padding-left: 8px; }
.mm-dea .reg-links li a .badge {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 8px;
padding: 2px 6px;
border-radius: 3px;
letter-spacing: 0.05em;
flex-shrink: 0;
}
.mm-dea .badge-new { background: var(--mm-dea-azure-dim); color: var(--mm-dea-azure); border: 1px solid rgba(59, 130, 246, 0.25); }
.mm-dea .badge-sale { background: var(--mm-dea-fire-dim); color: var(--mm-dea-fire); border: 1px solid rgba(255, 48, 48, 0.3); }
/* ── Deals hero ── */
.mm-dea .deals-hero {
background: linear-gradient(160deg, #1f0808 0%, #140404 100%);
border-right: 1px solid rgba(255, 48, 48, 0.2);
padding: 22px 20px;
display: flex;
flex-direction: column;
min-height: 400px;
position: relative;
overflow: hidden;
}
.mm-dea .deals-hero::before {
content: '';
position: absolute;
top: -40px;
left: -40px;
width: 220px;
height: 220px;
background: radial-gradient(circle, rgba(255, 48, 48, 0.2) 0%, transparent 70%);
pointer-events: none;
}
.mm-dea .deals-hero-label {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 8px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--mm-dea-fire);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
position: relative;
}
.mm-dea .deals-hero-label .live-badge {
background: var(--mm-dea-fire);
color: #fff;
font-family: 'Syne', system-ui, sans-serif;
font-size: 7px;
font-weight: 700;
letter-spacing: 0.12em;
padding: 2px 6px;
animation: mm-dea-flicker 2.5s ease-in-out infinite;
}
@keyframes mm-dea-flicker {
0%, 90%, 100% { opacity: 1; }
95% { opacity: 0.6; }
}
.mm-dea .deals-hero-title {
font-family: 'Syne', system-ui, sans-serif;
font-size: 40px;
font-weight: 800;
color: var(--mm-dea-fire);
line-height: 0.95;
letter-spacing: -0.02em;
text-transform: uppercase;
margin-bottom: 6px;
position: relative;
}
.mm-dea .deals-hero-sub {
font-family: 'Outfit', system-ui, sans-serif;
font-size: 12px;
font-weight: 200;
color: rgba(255, 48, 48, 0.6);
letter-spacing: 0.04em;
margin-bottom: 22px;
position: relative;
}
/* Countdown */
.mm-dea .countdown {
display: flex;
gap: 8px;
margin-bottom: 22px;
position: relative;
}
.mm-dea .cd-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mm-dea .cd-num {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 22px;
font-weight: 400;
color: #fff;
background: rgba(255, 48, 48, 0.15);
border: 1px solid rgba(255, 48, 48, 0.35);
width: 46px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
letter-spacing: -0.05em;
}
.mm-dea .cd-label {
font-family: 'Syne', system-ui, sans-serif;
font-size: 7px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(255, 48, 48, 0.5);
}
.mm-dea .cd-sep {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 18px;
color: rgba(255, 48, 48, 0.4);
align-self: flex-start;
margin-top: 8px;
}
/* Savings pills */
.mm-dea .savings-pills {
display: flex;
flex-direction: column;
gap: 7px;
margin-top: auto;
position: relative;
}
.mm-dea .savings-pill {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
background: rgba(255, 48, 48, 0.08);
border: 1px solid rgba(255, 48, 48, 0.2);
text-decoration: none;
transition: background 0.2s, border-color 0.2s;
}
.mm-dea .savings-pill:hover { background: rgba(255, 48, 48, 0.15); border-color: rgba(255, 48, 48, 0.4); }
.mm-dea .savings-pill .sp-label {
font-family: 'Outfit', system-ui, sans-serif;
font-size: 12px;
font-weight: 400;
color: var(--mm-dea-text);
}
.mm-dea .savings-pill .sp-pct {
font-family: 'Syne', system-ui, sans-serif;
font-size: 14px;
font-weight: 700;
color: var(--mm-dea-fire);
letter-spacing: -0.02em;
}
/* Deal columns */
.mm-dea .deal-col {
padding: 18px 18px;
border-right: 1px solid var(--mm-dea-border);
position: relative;
}
.mm-dea .deal-col:last-of-type { border-right: none; }
.mm-dea .deal-col-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid var(--mm-dea-border);
}
.mm-dea .deal-col-title {
font-family: 'Syne', system-ui, sans-serif;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--mm-dea-text);
}
.mm-dea .deal-col-type {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 8px;
letter-spacing: 0.12em;
padding: 3px 7px;
border-radius: 2px;
}
.mm-dea .type-clearance { background: var(--mm-dea-fire-dim); color: var(--mm-dea-fire); border: 1px solid rgba(255, 48, 48, 0.3); }
.mm-dea .type-promo { background: var(--mm-dea-gold-dim); color: var(--mm-dea-gold); border: 1px solid rgba(245, 194, 66, 0.3); }
.mm-dea .type-flash { background: var(--mm-dea-green-dim); color: var(--mm-dea-green); border: 1px solid rgba(34, 197, 94, 0.3); }
.mm-dea .deal-links { list-style: none; margin: 0; padding: 0; }
.mm-dea .deal-links li { list-style: none; }
.mm-dea .deal-links li a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
font-family: 'Outfit', system-ui, sans-serif;
font-size: 13px;
font-weight: 300;
color: var(--mm-dea-text-mid);
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
transition: color 0.2s, padding-left 0.25s, background 0.2s;
gap: 8px;
}
.mm-dea .deal-links li a .d-name { flex: 1; }
.mm-dea .deal-links li a .d-off {
font-family: 'Syne', system-ui, sans-serif;
font-size: 12px;
font-weight: 700;
color: var(--mm-dea-fire);
flex-shrink: 0;
letter-spacing: -0.01em;
}
.mm-dea .deal-links li a .d-off.gold { color: var(--mm-dea-gold); }
.mm-dea .deal-links li a .d-off.green { color: var(--mm-dea-green); }
.mm-dea .deal-links li a:hover {
color: var(--mm-dea-text);
padding-left: 8px;
background: rgba(255, 255, 255, 0.02);
}
/* Promo code block */
.mm-dea .promo-block {
margin-top: 12px;
padding: 12px;
background: var(--mm-dea-raised);
border: 1px solid var(--mm-dea-border-mid);
}
.mm-dea .promo-block .pb-label {
font-family: 'Syne', system-ui, sans-serif;
font-size: 8px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--mm-dea-text-dim);
margin-bottom: 8px;
}
.mm-dea .promo-block .pb-code {
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
}
.mm-dea .promo-block .pb-code .code {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 14px;
font-weight: 400;
color: var(--mm-dea-gold);
letter-spacing: 0.08em;
background: var(--mm-dea-gold-dim);
border: 1px dashed rgba(245, 194, 66, 0.4);
padding: 6px 12px;
flex: 1;
text-align: center;
}
.mm-dea .promo-block .pb-code .copy-btn {
font-family: 'Syne', system-ui, sans-serif;
font-size: 8px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--mm-dea-void);
background: var(--mm-dea-gold);
border: none;
padding: 8px 14px;
cursor: pointer;
text-decoration: none;
transition: background 0.2s;
}
.mm-dea .promo-block .pb-code .copy-btn:hover { background: #ffd060; }
/* Flash items */
.mm-dea .flash-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mm-dea .flash-item .fi-info { flex: 1; }
.mm-dea .flash-item .fi-name {
font-family: 'Outfit', system-ui, sans-serif;
font-size: 13px;
font-weight: 300;
color: var(--mm-dea-text-mid);
}
.mm-dea .flash-item .fi-stock {
font-family: 'Syne Mono', ui-monospace, monospace;
font-size: 8px;
color: var(--mm-dea-green);
margin-top: 2px;
letter-spacing: 0.05em;
}
.mm-dea .flash-item .fi-pct {
font-family: 'Syne', system-ui, sans-serif;
font-size: 14px;
font-weight: 700;
color: var(--mm-dea-green);
letter-spacing: -0.01em;
}
/* Footer */
.mm-dea .mega-footer {
grid-column: 1 / -1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 20px;
background: var(--mm-dea-raised);
border-top: 1px solid var(--mm-dea-border);
flex-wrap: wrap;
gap: 10px;
}
.mm-dea .mega-footer .f-links { display: flex; gap: 18px; flex-wrap: wrap; }
.mm-dea .mega-footer .f-links a {
font-family: 'Outfit', system-ui, sans-serif;
font-size: 11px;
font-weight: 300;
color: var(--mm-dea-text-dim);
text-decoration: none;
transition: color 0.2s;
}
.mm-dea .mega-footer .f-links a:hover { color: var(--mm-dea-text); }
.mm-dea .mega-footer .f-links a.hot { color: var(--mm-dea-fire); font-weight: 500; }
.mm-dea .mega-footer .f-right a {
font-family: 'Syne', system-ui, sans-serif;
font-size: 10px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--mm-dea-fire);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: gap 0.3s;
}
.mm-dea .mega-footer .f-right a::after { content: '\2192'; }
.mm-dea .mega-footer .f-right a:hover { gap: 14px; }
.mm-dea .mega-footer .f-right a.hot-cta { color: var(--mm-dea-fire); }
/* Stagger */
.mm-dea .nav-item:hover .reg-links li,
.mm-dea .nav-item:hover .deal-links li,
.mm-dea .nav-item.mm-open .reg-links li,
.mm-dea .nav-item.mm-open .deal-links li { animation: mm-dea-up 0.3s ease both; }
.mm-dea .nav-item:hover .reg-links li:nth-child(1),
.mm-dea .nav-item:hover .deal-links li:nth-child(1),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(1),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(1) { animation-delay: 0.04s; }
.mm-dea .nav-item:hover .reg-links li:nth-child(2),
.mm-dea .nav-item:hover .deal-links li:nth-child(2),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(2),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(2) { animation-delay: 0.08s; }
.mm-dea .nav-item:hover .reg-links li:nth-child(3),
.mm-dea .nav-item:hover .deal-links li:nth-child(3),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(3),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(3) { animation-delay: 0.12s; }
.mm-dea .nav-item:hover .reg-links li:nth-child(4),
.mm-dea .nav-item:hover .deal-links li:nth-child(4),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(4),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(4) { animation-delay: 0.16s; }
.mm-dea .nav-item:hover .reg-links li:nth-child(5),
.mm-dea .nav-item:hover .deal-links li:nth-child(5),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(5),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(5) { animation-delay: 0.20s; }
.mm-dea .nav-item:hover .reg-links li:nth-child(6),
.mm-dea .nav-item:hover .deal-links li:nth-child(6),
.mm-dea .nav-item.mm-open .reg-links li:nth-child(6),
.mm-dea .nav-item.mm-open .deal-links li:nth-child(6) { animation-delay: 0.24s; }
@keyframes mm-dea-up {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
.mm-dea .nav-trigger { padding: 0 14px; font-size: 11px; }
.mm-dea .nav-item.deals-item .nav-trigger { padding: 0 16px; }
.mm-dea .mega-regular,
.mm-dea .mega-deals {
grid-template-columns: 1fr;
min-width: calc(100vw - 24px);
}
.mm-dea .deals-hero { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 48, 48, 0.2); }
.mm-dea .deal-col,
.mm-dea .reg-col { border-right: 0; border-bottom: 1px solid var(--mm-dea-border); }
}
@media (prefers-reduced-motion: reduce) {
.mm-dea .ticker-content,
.mm-dea .nav-item.deals-item .nav-trigger .live-dot,
.mm-dea .deals-hero-label .live-badge { animation: none; }
.mm-dea .mega,
.mm-dea .reg-links li,
.mm-dea .deal-links li,
.mm-dea .reg-links li a,
.mm-dea .deal-links li a { transition: none; animation: none; }
}