<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VITALEA — Collection</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background:#f4efe9;
font-family:'Inter',sans-serif;
color:#1f1f1f;
overflow-x:hidden;
}
.collection-page{
padding:140px 8%;
}
.section-tag{
text-transform:uppercase;
letter-spacing:3px;
font-size:0.8rem;
color:#8d7d6d;
margin-bottom:20px;
}
.collection-title{
font-family:'Cormorant Garamond',serif;
font-size:4.5rem;
line-height:1;
margin-bottom:30px;
font-weight:500;
}
.collection-sub{
max-width:760px;
line-height:1.9;
color:#666;
font-size:1.05rem;
margin-bottom:80px;
}
.collection-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}
.product-card{
background:rgba(255,255,255,0.65);
backdrop-filter:blur(12px);
padding:40px;
border-radius:30px;
transition:0.4s;
position:relative;
overflow:hidden;
}
.product-card:hover{
transform:translateY(-10px);
}
.product-image{
width:100%;
height:260px;
object-fit:cover;
border-radius:22px;
margin-bottom:25px;
}
.product-title{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
margin-bottom:15px;
}
.product-desc{
line-height:1.8;
color:#666;
margin-bottom:30px;
}
.coming-tag{
display:inline-block;
padding:12px 22px;
background:#e8ddd0;
border-radius:50px;
font-size:0.9rem;
letter-spacing:1px;
}
.cta-section{
padding:140px 8%;
text-align:center;
}
.cta-title{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
margin-bottom:30px;
font-weight:500;
}
.cta-sub{
max-width:700px;
margin:auto;
line-height:1.9;
color:#666;
margin-bottom:40px;
}
.cta-btn{
display:inline-block;
padding:18px 34px;
background:#d6c3af;
border-radius:50px;
text-decoration:none;
color:#111;
font-weight:500;
transition:0.3s;
}
.cta-btn:hover{
transform:translateY(-4px);
}
@media(max-width:768px){
.collection-title{
font-size:3rem;
}
.cta-title{
font-size:2.8rem;
}
}
</style>
</head>
<body>
<section class="collection-page">
<div class="section-tag">
Advanced Peptide Science
</div>
<h1 class="collection-title">
Cosmetic Peptides Collection
</h1>
<p class="collection-sub">
Advanced peptide formulations designed to support firmer, smoother, and visibly rejuvenated skin through luxury biotech-inspired skincare science.
</p>
<div class="collection-grid">
<div class="product-card">
<img src="YOUR-IMAGE-1.png" class="product-image">
<h2 class="product-title">
Matrixyl 3000
</h2>
<p class="product-desc">
Advanced peptide technology designed to support collagen production and improve the appearance of fine lines and skin texture.
</p>
<div class="coming-tag">
COMING SOON
</div>
</div>
<div class="product-card">
<img src="YOUR-IMAGE-2.png" class="product-image">
<h2 class="product-title">
Argireline
</h2>
<p class="product-desc">
A next-generation peptide known for helping soften the appearance of expression lines and supporting smoother-looking skin.
</p>
<div class="coming-tag">
COMING SOON
</div>
</div>
<div class="product-card">
<img src="YOUR-IMAGE-3.png" class="product-image">
<h2 class="product-title">
Copper Peptides
</h2>
<p class="product-desc">
Luxury biotech ingredient that supports skin renewal, elasticity, firmness, and antioxidant protection.
</p>
<div class="coming-tag">
COMING SOON
</div>
</div>
</div>
</section>
<section class="cta-section">
<div class="section-tag">
Exclusive Launch
</div>
<h2 class="cta-title">
Don't Miss The Pre-Sale
</h2>
<p class="cta-sub">
Be among the first to access VITALEA and receive exclusive launch benefits before the official release.
</p>
<a href="#" class="cta-btn">
Join The Pre-Sale
</a>
</section>
</body>
</html>