/<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>USMile Creations — Handmade with Love</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--sage: #7A9E7E;
--rose: #D4847A;
--cream: #FBF7F0;
--charcoal:#2C2C2C;
--gold: #C9A84C;
--light-sage: #E8F0E9;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Lato', sans-serif;
background: var(--cream);
color: var(--charcoal);
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 18px 48px;
background: rgba(251,247,240,0.92);
backdrop-filter: blur(8px);
border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--charcoal);
letter-spacing: 0.02em;
}
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
text-decoration: none;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--charcoal);
transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-etsy {
background: var(--gold);
color: #fff;
padding: 9px 22px;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
text-decoration: none;
transition: background 0.2s, transform 0.15s;
}
.nav-etsy:hover { background: var(--rose); transform: translateY(-1px); }
/* ── HERO ── */
.hero {
min-height: 100vh;
display: flex; align-items: center; justify-content: center;
text-align: center;
padding: 120px 24px 80px;
position: relative;
overflow: hidden;
background: var(--cream);
}
/* Decorative background blobs */
.hero::before {
content: '';
position: absolute; top: -80px; right: -80px;
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(122,158,126,0.18) 0%, transparent 70%);
border-radius: 50%; pointer-events: none;
}
.hero::after {
content: '';
position: absolute; bottom: -60px; left: -60px;
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(212,132,122,0.15) 0%, transparent 70%);
border-radius: 50%; pointer-events: none;
}
/* Floating craft icons */
.float-icons {
position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.float-icons span {
position: absolute;
font-size: 1.6rem;
opacity: 0.18;
animation: floatUp 12s ease-in-out infinite;
}
.float-icons span:nth-child(1) { left: 8%; top: 15%; animation-delay: 0s; font-size: 2rem; }
.float-icons span:nth-child(2) { left: 18%; top: 70%; animation-delay: 2s; }
.float-icons span:nth-child(3) { left: 80%; top: 20%; animation-delay: 4s; font-size: 2.2rem; }
.float-icons span:nth-child(4) { left: 90%; top: 65%; animation-delay: 1s; }
.float-icons span:nth-child(5) { left: 50%; top: 8%; animation-delay: 3s; font-size: 1.4rem; }
.float-icons span:nth-child(6) { left: 35%; top: 80%; animation-delay: 5s; font-size: 2rem; }
.float-icons span:nth-child(7) { left: 68%; top: 50%; animation-delay: 6s; font-size: 1.2rem; }
@keyframes floatUp {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-18px) rotate(8deg); }
}
/* Ribbon banner — the signature element */
.ribbon-wrap {
position: relative; display: inline-block; margin-bottom: 32px;
}
.ribbon {
background: var(--sage);
color: #fff;
font-family: 'Lato', sans-serif;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 7px 28px;
display: inline-block;
position: relative;
}
.ribbon::before, .ribbon::after {
content: '';
position: absolute; top: 0; bottom: 0;
width: 14px;
background: var(--sage);
clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.ribbon::before { right: 100%; }
.ribbon::after { left: 100%; clip-path: polygon(100% 50%, 0 0, 0 100%); }
.hero-title {
font-family: 'Playfair Display', serif;
font-size: clamp(3rem, 7vw, 6rem);
font-weight: 700;
line-height: 1.08;
color: var(--charcoal);
margin-bottom: 12px;
}
.hero-title em {
font-style: italic;
color: var(--rose);
}
.hero-subtitle {
font-size: 1.1rem;
font-weight: 300;
color: #666;
max-width: 480px;
margin: 0 auto 40px;
line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
background: var(--rose);
color: #fff;
padding: 15px 38px;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.05em;
text-decoration: none;
transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
box-shadow: 0 4px 18px rgba(212,132,122,0.35);
}
.btn-primary:hover { background: #c46e63; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,132,122,0.45); }
.btn-secondary {
background: transparent;
color: var(--charcoal);
padding: 15px 38px;
border-radius: 50px;
border: 2px solid var(--charcoal);
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.05em;
text-decoration: none;
transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.hero-scroll-hint {
position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
display: flex; flex-direction: column; align-items: center; gap: 6px;
opacity: 0.4;
animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
/* ── SECTION LABELS ── */
.section-eyebrow {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 12px;
}
.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 16px;
}
.section-sub {
font-size: 1rem;
color: #777;
max-width: 520px;
line-height: 1.75;
}
/* ── CATEGORIES ── */
.categories {
padding: 90px 48px;
background: var(--cream);
text-align: center;
}
.categories .section-sub { margin: 0 auto 52px; }
.cat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
gap: 24px;
max-width: 1100px;
margin: 0 auto;
}
.cat-card {
background: #fff;
border-radius: 20px;
padding: 40px 24px 32px;
cursor: pointer;
transition: transform 0.22s, box-shadow 0.22s;
border: 2px solid transparent;
text-decoration: none;
color: inherit;
display: block;
}
.cat-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 40px rgba(0,0,0,0.09);
border-color: var(--sage);
}
.cat-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.cat-name {
font-family: 'Playfair Display', serif;
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 8px;
}
.cat-desc { font-size: 0.85rem; color: #888; line-height: 1.6; }
/* ── FEATURED PRODUCTS ── */
.featured {
padding: 90px 48px;
background: var(--light-sage);
}
.featured-header {
display: flex; align-items: flex-end; justify-content: space-between;
max-width: 1100px; margin: 0 auto 48px; flex-wrap: wrap; gap: 16px;
}
.featured-header .btn-secondary { font-size: 0.8rem; padding: 10px 26px; }
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 28px;
max-width: 1100px;
margin: 0 auto;
}
.product-card {
background: #fff;
border-radius: 18px;
overflow: hidden;
transition: transform 0.22s, box-shadow 0.22s;
text-decoration: none; color: inherit;
display: block;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.1); }
.product-img {
height: 220px;
display: flex; align-items: center; justify-content: center;
font-size: 4.5rem;
position: relative;
}
.product-badge {
position: absolute; top: 12px; right: 12px;
background: var(--rose);
color: #fff;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 20px;
}
.product-info { padding: 20px; }
.product-name {
font-family: 'Playfair Display', serif;
font-size: 1rem;
font-weight: 700;
margin-bottom: 4px;
}
.product-desc { font-size: 0.82rem; color: #888; margin-bottom: 12px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
font-weight: 700;
font-size: 1rem;
color: var(--rose);
}
.product-etsy {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--sage);
}
/* ── ABOUT ── */
.about {
padding: 100px 48px;
display: flex; align-items: center; gap: 72px;
max-width: 1100px; margin: 0 auto;
flex-wrap: wrap;
}
.about-visual {
flex: 0 0 380px;
height: 420px;
background: linear-gradient(135deg, var(--sage) 0%, #9abf9e 100%);
border-radius: 32px 8px 32px 8px;
display: flex; align-items: center; justify-content: center;
font-size: 8rem;
position: relative;
overflow: hidden;
}
.about-visual::after {
content: '';
position: absolute; bottom: 0; right: 0;
width: 120px; height: 120px;
background: var(--gold);
border-radius: 50% 0 0 0;
opacity: 0.35;
}
.about-content { flex: 1; min-width: 280px; }
.about-content .section-sub { margin-bottom: 20px; }
.about-content p { font-size: 1rem; color: #666; line-height: 1.8; margin-bottom: 16px; }
.about-content .btn-primary { display: inline-block; margin-top: 8px; }
/* ── PROCESS STRIP ── */
.process {
background: var(--charcoal);
padding: 72px 48px;
text-align: center;
}
.process .section-eyebrow { color: var(--gold); }
.process .section-title { color: #fff; margin-bottom: 48px; }
.process-steps {
display: flex; gap: 0; justify-content: center;
max-width: 900px; margin: 0 auto;
flex-wrap: wrap;
}
.process-step {
flex: 1; min-width: 180px;
position: relative;
padding: 0 20px;
}
.process-step:not(:last-child)::after {
content: '→';
position: absolute; right: -4px; top: 20px;
color: var(--gold); font-size: 1.2rem;
opacity: 0.6;
}
.step-num {
width: 48px; height: 48px;
background: var(--rose);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-family: 'Playfair Display', serif;
font-size: 1.1rem;
font-weight: 700;
color: #fff;
margin: 0 auto 16px;
}
.step-title { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.step-desc { color: #aaa; font-size: 0.8rem; line-height: 1.6; }
/* ── TESTIMONIALS ── */
.testimonials {
padding: 90px 48px;
background: var(--cream);
text-align: center;
}
.testimonials .section-sub { margin: 0 auto 52px; }
.testi-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
max-width: 1000px; margin: 0 auto;
}
.testi-card {
background: #fff;
border-radius: 20px;
padding: 32px 28px;
text-align: left;
border-left: 4px solid var(--sage);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testi-text { font-size: 0.92rem; color: #555; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { font-weight: 700; font-size: 0.85rem; color: var(--charcoal); }
.testi-source { font-size: 0.75rem; color: #aaa; }
/* ── ETSY CTA BANNER ── */
.etsy-banner {
background: linear-gradient(135deg, var(--rose) 0%, #c46e63 100%);
padding: 80px 48px;
text-align: center;
position: relative;
overflow: hidden;
}
.etsy-banner::before {
content: '✂';
position: absolute; font-size: 12rem; opacity: 0.07;
top: -30px; right: 60px; transform: rotate(-25deg);
}
.etsy-banner h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 4vw, 3.2rem);
color: #fff;
margin-bottom: 16px;
}
.etsy-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
.btn-white {
background: #fff;
color: var(--rose);
padding: 16px 44px;
border-radius: 50px;
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.05em;
text-decoration: none;
transition: transform 0.18s, box-shadow 0.18s;
box-shadow: 0 6px 24px rgba(0,0,0,0.15);
display: inline-block;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
/* ── FOOTER ── */
footer {
background: var(--charcoal);
padding: 56px 48px 32px;
}
.footer-top {
display: flex; justify-content: space-between; align-items: flex-start;
max-width: 1100px; margin: 0 auto 40px;
flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.footer-brand p { color: #888; font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
color: #fff; font-size: 0.8rem; letter-spacing: 0.15em;
text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
display: block; color: #888; text-decoration: none;
font-size: 0.88rem; margin-bottom: 10px; transition: color 0.18s;
}
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.08);
padding-top: 24px;
display: flex; justify-content: space-between; align-items: center;
max-width: 1100px; margin: 0 auto;
flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: #555; font-size: 0.8rem; }
.footer-heart { color: var(--rose); }
.social-links { display: flex; gap: 16px; }
.social-links a {
color: #666; text-decoration: none; font-size: 0.8rem;
transition: color 0.18s;
}
.social-links a:hover { color: var(--rose); }
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
nav { padding: 16px 20px; }
.nav-links { display: none; }
.categories, .featured, .testimonials, .etsy-banner, .process, footer { padding-left: 20px; padding-right: 20px; }
.about { padding: 60px 20px; }
.about-visual { flex: 0 0 100%; height: 240px; font-size: 5rem; }
.process-step:not(:last-child)::after { display: none; }
.featured-header { flex-direction: column; align-items: flex-start; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="nav-logo">USMile<span>Creations</span></div>
<ul class="nav-links">
<li><a href="#categories">Shop</a></li>
<li><a href="#about">Our Story</a></li>
<li><a href="#testimonials">Reviews</a></li>
</ul>
<a href="https://www.etsy.com" target="_blank" class="nav-etsy">Shop on Etsy</a>
</nav>
<!-- HERO -->
<section class="hero">
<div class="float-icons">
<span>🧵</span><span>🌸</span><span>✂️</span>
<span>🎀</span><span>🌿</span><span>🪡</span><span>⭐</span>
</div>
<div style="position:relative; z-index:1;">
<div class="ribbon-wrap">
<div class="ribbon">Handmade in the USA</div>
</div>
<h1 class="hero-title">Crafted with<br><em>love & care</em></h1>
<p class="hero-subtitle">
One-of-a-kind handmade creations — from cozy home décor to heartfelt gifts — made just for you, straight from our hands to your heart.
</p>
<div class="hero-ctas">
<a href="https://www.etsy.com" target="_blank" class="btn-primary">Shop Our Etsy Store →</a>
<a href="#about" class="btn-secondary">Our Story</a>
</div>
</div>
<div class="hero-scroll-hint">
<span>Scroll</span>
<svg width="16" height="24" viewBox="0 0 16 24" fill="none"><rect x="6" y="1" width="4" height="6" rx="2" fill="currentColor"/><path d="M8 18L3 12h10L8 18z" fill="currentColor"/></svg>
</div>
</section>
<!-- CATEGORIES -->
<section class="categories" id="categories">
<p class="section-eyebrow">What We Make</p>
<h2 class="section-title">Browse by Category</h2>
<p class="section-sub">Every item is designed and handcrafted with care. Find something that speaks to you.</p>
<div class="cat-grid">
<a href="https://www.etsy.com" target="_blank" class="cat-card">
<span class="cat-icon">🏡</span>
<div class="cat-name">Home Décor</div>
<p class="cat-desc">Wreaths, signs, table centerpieces & more to brighten your space.</p>
</a>
<a href="https://www.etsy.com" target="_blank" class="cat-card">
<span class="cat-icon">🎁</span>
<div class="cat-name">Gift Sets</div>
<p class="cat-desc">Thoughtfully curated handmade bundles for every occasion.</p>
</a>
<a href="https://www.etsy.com" target="_blank" class="cat-card">
<span class="cat-icon">🎀</span>
<div class="cat-name">Personalized</div>
<p class="cat-desc">Custom name plaques, monograms & keepsakes made just for you.</p>
</a>
<a href="https://www.etsy.com" target="_blank" class="cat-card">
<span class="cat-icon">🌸</span>
<div class="cat-name">Seasonal</div>
<p class="cat-desc">Holiday & seasonal pieces that make your home feel festive year-round.</p>
</a>
</div>
</section>
<!-- FEATURED PRODUCTS -->
<section class="featured" id="shop">
<div class="featured-header">
<div>
<p class="section-eyebrow">Fresh Arrivals</p>
<h2 class="section-title">Featured Creations</h2>
</div>
<a href="https://www.etsy.com" target="_blank" class="btn-secondary">View All on Etsy →</a>
</div>
<div class="products-grid">
<a href="https://www.etsy.com" target="_blank" class="product-card">
<div class="product-img" style="background:#E8F0E9;">
🌿
<span class="product-badge">New</span>
</div>
<div class="product-info">
<div class="product-name">Eucalyptus Wreath</div>
<p class="product-desc">Handwoven with dried botanicals — perfect for front doors or above the mantle.</p>
<div class="product-footer">
<span class="product-price">From $38</span>
<span class="product-etsy">On Etsy →</span>
</div>
</div>
</a>
<a href="https://www.etsy.com" target="_blank" class="product-card">
<div class="product-img" style="background:#FDE8E6;">
🎀
<span class="product-badge">Bestseller</span>
</div>
<div class="product-info">
<div class="product-name">Custom Name Sign</div>
<p class="product-desc">Personalized wooden signs in your choice of font and finish. Great gifts!</p>
<div class="product-footer">
<span class="product-price">From $24</span>
<span class="product-etsy">On Etsy →</span>
</div>
</div>
</a>
<a href="https://www.etsy.com" target="_blank" class="product-card">
<div class="product-img" style="background:#FBF3E0;">
🕯️
</div>
<div class="product-info">
<div class="product-name">Soy Candle Set</div>
<p class="product-desc">Hand-poured soy candles in seasonal scents. Beautifully packaged and ready to gift.</p>
<div class="product-footer">
<span class="product-price">From $18</span>
<span class="product-etsy">On Etsy →</span>
</div>
</div>
</a>
<a href="https://www.etsy.com" target="_blank" class="product-card">
<div class="product-img" style="background:#EDE8F0;">
🪡
<span class="product-badge">Popular</span>
</div>
<div class="product-info">
<div class="product-name">Macramé Wall Hanging</div>
<p class="product-desc">Boho-chic knotted wall art in natural cotton rope. Each piece is unique.</p>
<div class="product-footer">
<span class="product-price">From $45</span>
<span class="product-etsy">On Etsy →</span>
</div>
</div>
</a>
</div>
</section>
<!-- ABOUT -->
<section style="background:var(--cream);">
<div class="about" id="about">
<div class="about-visual">🧵</div>
<div class="about-content">
<p class="section-eyebrow">Our Story</p>
<h2 class="section-title">Made by hand,<br>sent with heart</h2>
<p>USMile Creations was born from a love of crafting and a belief that handmade gifts carry something special — a little bit of the maker's time, care, and joy.</p>
<p>Every item in our shop is made by hand, one piece at a time. No mass production, no shortcuts — just quality materials and genuine craftsmanship. We believe in making things that last, and in bringing a smile to everyone who receives one.</p>
<a href="https://www.etsy.com" target="_blank" class="btn-primary">Visit Our Etsy Shop →</a>
</div>
</div>
</section>
<!-- PROCESS -->
<section class="process">
<p class="section-eyebrow">How It Works</p>
<h2 class="section-title" style="color:#fff;">From our hands to your door</h2>
<div class="process-steps">
<div class="process-step">
<div class="step-num">1</div>
<div class="step-title">Browse & Choose</div>
<p class="step-desc">Find your perfect piece on our Etsy store — or request something custom.</p>
</div>
<div class="process-step">
<div class="step-num">2</div>
<div class="step-title">We Handcraft It</div>
<p class="step-desc">Your item is made with care, using quality materials and a lot of love.</p>
</div>
<div class="process-step">
<div class="step-num">3</div>
<div class="step-title">Carefully Packed</div>
<p class="step-desc">Every order is wrapped and packed to arrive safe and beautifully presented.</p>
</div>
<div class="process-step">
<div class="step-num">4</div>
<div class="step-title">Delivered to You</div>
<p class="step-desc">Sit back and wait for the smile when your handmade creation arrives.</p>
</div>
</div>
</section>
<!-- TESTIMONIALS -->
<section class="testimonials" id="testimonials">
<p class="section-eyebrow">Happy Customers</p>
<h2 class="section-title">What people are saying</h2>
<p class="section-sub">Real reviews from real Etsy customers who love their handmade pieces.</p>
<div class="testi-grid">
<div class="testi-card">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"Absolutely gorgeous wreath — better than the photos! Arrived quickly and was packaged so beautifully. I'll definitely be ordering again."</p>
<div class="testi-author">Sarah M.</div>
<div class="testi-source">Verified Etsy Buyer</div>
</div>
<div class="testi-card">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"Ordered a custom name sign for my daughter's nursery. It came out PERFECT. The quality is amazing and it looks even better in person!"</p>
<div class="testi-author">Jessica T.</div>
<div class="testi-source">Verified Etsy Buyer</div>
</div>
<div class="testi-card">
<div class="testi-stars">★★★★★</div>
<p class="testi-text">"Bought the candle set as a gift and my friend was obsessed. The packaging is beautiful and the scents are amazing. Highly recommend!"</p>
<div class="testi-author">Amanda R.</div>
<div class="testi-source">Verified Etsy Buyer</div>
</div>
</div>
</section>
<!-- ETSY CTA BANNER -->
<section class="etsy-banner">
<h2>Ready to find your next favorite handmade piece?</h2>
<p>Browse our full collection on Etsy — and don't forget to save our shop for new arrivals!</p>
<a href="https://www.etsy.com" target="_blank" class="btn-white">🛍️ Visit USMile Creations on Etsy</a>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-top">
<div class="footer-brand">
<span class="nav-logo">USMile<span>Creations</span></span>
<p>Handmade crafts made with love, shipped right to your door. Every piece is one of a kind.</p>
</div>
<div class="footer-col">
<h4>Shop</h4>
<a href="https://www.etsy.com" target="_blank">Home Décor</a>
<a href="https://www.etsy.com" target="_blank">Gift Sets</a>
<a href="https://www.etsy.com" target="_blank">Personalized Items</a>
<a href="https://www.etsy.com" target="_blank">Seasonal</a>
</div>
<div class="footer-col">
<h4>Info</h4>
<a href="#">Our Story</a>
<a href="https://www.etsy.com" target="_blank">Etsy Reviews</a>
<a href="https://www.etsy.com" target="_blank">Shipping & Returns</a>
<a href="https://www.etsy.com" target="_blank">Custom Orders</a>
</div>
<div class="footer-col">
<h4>Connect</h4>
<a href="#">Instagram</a>
<a href="#">Pinterest</a>
<a href="https://www.etsy.com" target="_blank">Etsy Shop</a>
<a href="#">Contact Us</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 USMile Creations. All rights reserved.</p>
<p>Made with <span class="footer-heart">♥</span> in the USA</p>
<div class="social-links">
<a href="#">Privacy</a>
<a href="#">Terms</a>
</div>
</div>
</footer>
</body>
</html>