VonGIFTY™ Shipping Policy
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
color: #333;
line-height: 1.6;
}
.hero {
background: linear-gradient(135deg, #d32f2f 0%, #7b1fa2 100%);
padding: 60px 20px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '📦';
position: absolute;
font-size: 15em;
opacity: 0.05;
top: -30px;
right: -30px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.hero h1 {
font-size: 3em;
color: white;
margin-bottom: 10px;
text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
position: relative;
z-index: 1;
}
.hero .subtitle {
font-size: 1.3em;
color: #ffd700;
position: relative;
z-index: 1;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.content-section {
background: white;
border-radius: 15px;
padding: 40px;
margin: 30px 0;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.highlight-box {
background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
border-left: 5px solid #d32f2f;
padding: 25px;
margin: 25px 0;
border-radius: 10px;
}
.highlight-box h3 {
color: #d32f2f;
margin-bottom: 15px;
font-size: 1.4em;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin: 30px 0;
}
.info-card {
background: linear-gradient(135deg, #f3e5f5 0%, #ffebee 100%);
padding: 30px;
border-radius: 15px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
border: 2px solid transparent;
}
.info-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(211, 47, 47, 0.3);
border-color: #d32f2f;
}
.info-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
transition: left 0.5s;
}
.info-card:hover::before {
left: 100%;
}
.info-icon {
font-size: 3.5em;
margin-bottom: 15px;
display: block;
}
.info-card h3 {
color: #7b1fa2;
margin-bottom: 10px;
font-size: 1.3em;
}
.info-card p {
color: #555;
line-height: 1.7;
}
.timeline {
position: relative;
padding: 40px 0;
margin: 40px 0;
}
.timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, #d32f2f 0%, #7b1fa2 100%);
transform: translateX(-50%);
}
.timeline-item {
display: flex;
justify-content: space-between;
align-items: center;
margin: 30px 0;
position: relative;
}
.timeline-content {
width: 45%;
background: linear-gradient(135deg, #f3e5f5 0%, #fff3e0 100%);
padding: 25px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.timeline-content:hover {
transform: scale(1.05);
box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}
.timeline-item:nth-child(even) .timeline-content {
margin-left: auto;
}
.timeline-dot {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 25px;
height: 25px;
background: #ffd700;
border: 4px solid #d32f2f;
border-radius: 50%;
z-index: 1;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: translateX(-50%) scale(1); }
50% { transform: translateX(-50%) scale(1.2); }
}
.timeline-content h4 {
color: #d32f2f;
margin-bottom: 10px;
font-size: 1.2em;
}
.accordion {
margin: 40px 0;
}
.accordion-item {
background: linear-gradient(135deg, #f3e5f5 0%, #ffebee 100%);
margin: 15px 0;
border-radius: 12px;
overflow: hidden;
border: 2px solid #e0e0e0;
transition: border-color 0.3s ease;
}
.accordion-item:hover {
border-color: #d32f2f;
}
.accordion-header {
background: linear-gradient(135deg, #7b1fa2 0%, #d32f2f 100%);
color: white;
padding: 20px 25px;
cursor: pointer;
font-size: 1.2em;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.accordion-header:hover {
background: linear-gradient(135deg, #8e24aa 0%, #e53935 100%);
}
.accordion-icon {
font-size: 1.5em;
transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
transform: rotate(180deg);
}
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease, padding 0.4s ease;
padding: 0 25px;
background: white;
}
.accordion-item.active .accordion-content {
max-height: 500px;
padding: 25px;
}
.cta-box {
background: linear-gradient(135deg, #d32f2f 0%, #7b1fa2 100%);
color: white;
padding: 50px 30px;
text-align: center;
border-radius: 20px;
margin: 50px 0;
position: relative;
overflow: hidden;
}
.cta-box::before {
content: '✨';
position: absolute;
font-size: 20em;
opacity: 0.05;
top: -50px;
left: -50px;
animation: spin 20s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.cta-box h2 {
font-size: 2.5em;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.cta-box p {
font-size: 1.3em;
margin-bottom: 30px;
position: relative;
z-index: 1;
}
.cta-button {
background: #ffd700;
color: #1a1a2e;
border: none;
padding: 18px 45px;
font-size: 1.3em;
border-radius: 50px;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
position: relative;
z-index: 1;
text-decoration: none;
display: inline-block;
}
.cta-button:hover {
background: #ffab00;
transform: scale(1.1);
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}
.tracking-box {
background: linear-gradient(135deg, #e8f5e9 0%, #fff3e0 100%);
padding: 30px;
border-radius: 15px;
margin: 30px 0;
border: 3px solid #388e3c;
}
.tracking-input {
width: 70%;
padding: 15px;
font-size: 1.1em;
border: 2px solid #7b1fa2;
border-radius: 10px 0 0 10px;
outline: none;
}
.tracking-button {
width: 28%;
padding: 15px;
font-size: 1.1em;
background: linear-gradient(135deg, #d32f2f 0%, #7b1fa2 100%);
color: white;
border: none;
border-radius: 0 10px 10px 0;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
}
.tracking-button:hover {
background: linear-gradient(135deg, #e53935 0%, #8e24aa 100%);
transform: translateY(-2px);
}
.guarantee-badge {
display: inline-block;
background: linear-gradient(135deg, #ffd700 0%, #ffab00 100%);
color: #1a1a2e;
padding: 15px 30px;
border-radius: 50px;
font-weight: bold;
font-size: 1.2em;
margin: 20px 0;
box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.footer-contact {
background: linear-gradient(135deg, #2d1b3d 0%, #1a1a2e 100%);
color: white;
padding: 40px;
text-align: center;
border-radius: 15px;
margin-top: 40px;
}
.footer-contact h3 {
color: #ffd700;
margin-bottom: 20px;
font-size: 2em;
}
.contact-email {
color: #ffd700;
font-size: 1.3em;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
}
.contact-email:hover {
color: #ffab00;
text-decoration: underline;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2em;
}
.timeline::before {
left: 20px;
}
.timeline-content {
width: calc(100% - 60px);
margin-left: 60px !important;
}
.timeline-dot {
left: 20px;
}
.tracking-input,
.tracking-button {
width: 100%;
border-radius: 10px;
margin: 5px 0;
}
.info-grid {
grid-template-columns: 1fr;
}
}
.benefits-list {
list-style: none;
padding: 0;
}
.benefits-list li {
padding: 15px;
margin: 10px 0;
background: linear-gradient(135deg, #f3e5f5 0%, #fff3e0 100%);
border-left: 5px solid #7b1fa2;
border-radius: 8px;
transition: all 0.3s ease;
}
.benefits-list li:hover {
background: linear-gradient(135deg, #e1bee7 0%, #ffe0b2 100%);
transform: translateX(10px);
}
.benefits-list li::before {
content: '✓';
color: #388e3c;
font-weight: bold;
font-size: 1.5em;
margin-right: 15px;
}
VonGIFTY™ Shipping Policy
Fast, Reliable Delivery for Your Wellness Journey
🚚 5-7 Business Day Delivery Guarantee
Your Health Doesn't Wait—Neither Do We
At VonGIFTY™, we understand that when you order supplements, you're making an investment in your health and wellness. That's why we've streamlined our shipping process to ensure your Her Red ReFill™ Iron Strips and other wellness products reach you quickly and safely.
📦 Standard Shipping: 5-7 Business Days
All supplement orders are processed and shipped within 1-2 business days. Your wellness products will arrive at your doorstep in 5-7 business days from the date of shipment. We've partnered with trusted carriers to ensure your supplements arrive fresh, secure, and ready to support your health goals.
⚡
Fast Processing
Orders placed before 2 PM EST ship same day! Orders after 2 PM ship the next business day.
📍
Real-Time Tracking
Track your order every step of the way with instant notifications and live updates.
🌡️
Temperature Safe
Supplements packaged with care to maintain quality during transit.
🔒
Secure Packaging
Discreet, protective packaging ensures your products arrive in perfect condition.
Your Order Journey
📝 Day 0: Order Placed
Order confirmed! You'll receive an email confirmation with your order details.
🏭 Day 1-2: Processing
Your supplements are carefully packaged and quality-checked before shipment.
🚚 Day 2-3: Shipped
Your order is on its way! Tracking number sent to your email.
📦 Day 5-7: Delivered
Your wellness journey begins! Package arrives at your doorstep.
What's Included with Every Order
-
Free Shipping on Orders Over $50 - Stock up and save on shipping!
-
Email & SMS Tracking Updates - Stay informed at every step
-
Secure Packaging - Discreet boxes that protect your privacy
-
Quality Guarantee - Products arrive fresh with proper storage instructions
-
Easy Returns - 30-day satisfaction guarantee on all supplements
📍 Track Your Order
Enter your tracking number to see real-time updates:
Track Now
Frequently Asked Questions
Orders placed before 2 PM EST Monday-Friday ship the same business day. Orders placed after 2 PM EST or on weekends/holidays will ship the next business day. You'll receive a tracking number via email once your order ships, typically within 1-2 business days of placing your order.
Currently, we ship supplements within the United States only, including Alaska, Hawaii, and Puerto Rico. International shipping will be available soon! Sign up for our newsletter to be notified when we expand our shipping regions.
While rare, delays can occur due to weather, carrier issues, or high-volume periods. If your order hasn't arrived within 10 business days, please contact us at vongiftyinfo@gmail.com with your order number, and we'll investigate immediately. We may offer a replacement shipment or refund depending on the situation.
If your order hasn't shipped yet, we can update your address. Contact us immediately at vongiftyinfo@gmail.com with your order number and new address. Once shipped, we cannot modify the delivery address, but you may be able to request a redirect through the carrier's tracking portal.
Yes! We offer expedited 2-3 day shipping for customers who need their supplements faster. This option is available at checkout for an additional fee. Express overnight shipping may be available for urgent orders—contact us directly for availability and pricing.
We take great care in packaging, but if your order arrives damaged, please take photos of the package and products, then contact us within 48 hours at vongiftyinfo@gmail.com. We'll send a replacement immediately at no cost to you. Your satisfaction and safety are our top priorities.
Our supplements comply with FDA regulations and can be shipped to all 50 states. However, extreme weather conditions (very hot summers or freezing winters) may require us to delay shipments to ensure product quality. We'll notify you if weather affects your order and offer expedited shipping when conditions improve.
Questions About Your Order?
Our customer care team is here to help you every step of the way
Contact Support
Important Information
🗓️ Processing & Delivery Times
-
Processing Time: 1-2 business days
-
Standard Shipping: 5-7 business days after processing
-
Total Delivery: 6-9 business days from order date
-
Business Days: Monday-Friday (excluding federal holidays)
-
Weekend/Holiday Orders: Process on next business day
⚠️ Important Notes
Shipping estimates do not include weekends or holidays. While we strive for timely delivery, VonGIFTY™ is not responsible for delays caused by:
- Weather events (hurricanes, snowstorms, floods)
- Natural disasters or emergencies
- Carrier delays or disruptions
- Incorrect shipping addresses provided by customer
- Customs delays (for territories)
- Undeliverable addresses or access issues
If you experience any issues, please contact us immediately so we can assist in resolving the situation.
🌟 VonGIFTY™ Commitment
We're committed to getting your wellness products to you quickly and safely. Every order is handled with care, packaged securely, and shipped with trusted carriers. If you ever have concerns about your shipment, our customer care team is just an email away.
function toggleAccordion(header) {
const item = header.parentElement;
const wasActive = item.classList.contains('active');
// Close all accordion items
document.querySelectorAll('.accordion-item').forEach(i => {
i.classList.remove('active');
});
// Open clicked item if it wasn't active
if (!wasActive) {
item.classList.add('active');
}
}
function trackOrder() {
const trackingNumber = document.getElementById('trackingInput').value;
if (trackingNumber.trim() === '') {
alert('Please enter a tracking number');
return;
}
// In production, this would link to actual tracking
alert('Tracking feature coming soon! Please check your email for the carrier tracking link, or contact us at vongiftyinfo@gmail.com with your tracking number for assistance.');
}