.zssp * { box-sizing: border-box; margin: 0; padding: 0; }
.zssp {
--aqua: #0077B6;
--aqua-dark: #005F8E;
--aqua-light: #EBF7FF;
--cream: #F5F2ED;
--white: #FFFFFF;
--charcoal: #141414;
--soft: #383838;
--muted: #717171;
--border: #DDDAD4;
--green-bg: #ECFDF5;
--green-text: #065F46;
--green-dot: #10B981;
font-family: 'DM Sans', sans-serif;
color: var(--charcoal);
max-width: 780px;
margin: 0 auto;
padding: 60px 24px 80px;
}
/* HERO */
.zssp-hero {
background: var(--aqua);
border-radius: 20px;
padding: 48px 40px;
text-align: center;
margin-bottom: 40px;
}
.zssp-eyebrow {
display: inline-block;
background: rgba(255,255,255,0.15);
border: 1px solid rgba(255,255,255,0.25);
color: white;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
padding: 6px 18px;
border-radius: 100px;
margin-bottom: 16px;
}
.zssp-headline {
font-family: 'Barlow Condensed', sans-serif;
font-size: 52px;
font-weight: 900;
text-transform: uppercase;
color: white;
line-height: 0.95;
margin-bottom: 14px;
}
.zssp-headline span { color: #7DD3FC; }
.zssp-sub {
font-size: 16px;
color: rgba(255,255,255,0.8);
line-height: 1.6;
max-width: 480px;
margin: 0 auto;
}
/* QUICK PERKS */
.zssp-perks {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-bottom: 32px;
}
.zssp-perk {
background: var(--white);
border: 1px solid var(--border);
border-radius: 14px;
padding: 20px 16px;
text-align: center;
}
.zssp-perk-icon {
width: 40px;
height: 40px;
border-radius: 10px;
background: var(--aqua-light);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 10px;
}
.zssp-perk-icon svg {
width: 20px;
height: 20px;
stroke: var(--aqua);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.zssp-perk-num {
font-family: 'Barlow Condensed', sans-serif;
font-size: 30px;
font-weight: 900;
color: var(--aqua);
line-height: 1;
margin-bottom: 4px;
}
.zssp-perk-label {
font-size: 13px;
color: var(--muted);
line-height: 1.4;
}
/* FREE SHIPPING BADGE */
.zssp-badge {
background: var(--green-bg);
border-radius: 16px;
padding: 24px 28px;
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 32px;
border: 1px solid #A7F3D0;
}
.zssp-badge-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: white;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.zssp-badge-icon svg {
width: 24px;
height: 24px;
stroke: var(--green-text);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.zssp-badge-title {
font-size: 16px;
font-weight: 700;
color: var(--green-text);
margin-bottom: 3px;
}
.zssp-badge-text {
font-size: 14px;
color: var(--green-text);
opacity: 0.8;
line-height: 1.5;
}
/* SECTIONS */
.zssp-section {
background: var(--white);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px 32px;
margin-bottom: 16px;
}
.zssp-section-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.zssp-section-icon {
width: 36px;
height: 36px;
border-radius: 10px;
background: var(--aqua-light);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.zssp-section-icon svg {
width: 18px;
height: 18px;
stroke: var(--aqua);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.zssp-section-title {
font-size: 17px;
font-weight: 700;
color: var(--charcoal);
}
.zssp-section p {
font-size: 14.5px;
color: var(--soft);
line-height: 1.8;
margin-bottom: 12px;
}
.zssp-section p:last-child { margin-bottom: 0; }
.zssp-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.zssp-list li {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14.5px;
color: var(--soft);
line-height: 1.6;
}
.zssp-check {
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--green-bg);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 10px;
color: var(--green-text);
font-weight: 700;
margin-top: 2px;
}
/* SHIPPING TABLE */
.zssp-table {
width: 100%;
border-collapse: collapse;
margin-top: 8px;
}
.zssp-table th {
background: var(--aqua-light);
color: var(--aqua-dark);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 12px 16px;
text-align: left;
}
.zssp-table th:first-child { border-radius: 10px 0 0 10px; }
.zssp-table th:last-child { border-radius: 0 10px 10px 0; }
.zssp-table td {
padding: 14px 16px;
font-size: 14px;
color: var(--soft);
border-bottom: 1px solid var(--border);
}
.zssp-table tr:last-child td { border-bottom: none; }
.zssp-free-tag {
display: inline-block;
background: var(--green-bg);
color: var(--green-text);
font-size: 11px;
font-weight: 700;
padding: 3px 10px;
border-radius: 100px;
margin-left: 6px;
}
/* CONTACT */
.zssp-contact {
background: var(--aqua);
border-radius: 16px;
padding: 32px;
text-align: center;
margin-top: 32px;
}
.zssp-contact-title {
font-family: 'Barlow Condensed', sans-serif;
font-size: 28px;
font-weight: 900;
text-transform: uppercase;
color: white;
margin-bottom: 10px;
}
.zssp-contact-text {
font-size: 15px;
color: rgba(255,255,255,0.8);
margin-bottom: 20px;
line-height: 1.6;
}
.zssp-contact-btn {
display: inline-block;
background: white;
color: var(--aqua-dark);
padding: 13px 32px;
border-radius: 100px;
font-size: 14px;
font-weight: 700;
text-decoration: none;
font-family: 'DM Sans', sans-serif;
}
@media (max-width: 600px) {
.zssp-perks { grid-template-columns: 1fr; }
.zssp-headline { font-size: 38px; }
.zssp-hero { padding: 36px 24px; }
.zssp-section { padding: 24px 20px; }
}
Fast & Free Delivery
Shipping Policy
Free 2-day express shipping on every order. No minimums, no exceptions — we get your Zen Spring to you fast.
Free
Shipping on every order
Free 2-Day Express Shipping — Always
Every Zen Spring order ships free with 2-day express delivery. No minimum order, no shipping fees at checkout — ever.
| Shipping Method |
Delivery Time |
Cost |
|
2-Day Express FREE
|
2 business days |
$0.00 |
Orders placed before 2:00 PM EST Monday–Friday are processed and shipped the same day. Orders placed after 2:00 PM or on weekends ship the next business day.
Once your order ships you'll receive a tracking confirmation email with a live tracking link so you can follow your package every step of the way.
-
✓
All 50 U.S. states including Alaska and Hawaii
-
✓
U.S. territories (Puerto Rico, Guam, U.S. Virgin Islands)
-
✓
APO/FPO military addresses
A tracking number will be emailed to you as soon as your order ships. You can also track your order at any time by visiting our Track My Order page or contacting our support team.
If you haven't received a tracking email within 24 hours of placing your order, check your spam folder or contact us at support@zenspring.store.
If your package is lost in transit or arrives damaged, contact us within 7 days of the expected delivery date. We'll ship a replacement immediately at no cost — no return required, no waiting around.