<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
.collection-hero-section {
    background: linear-gradient(135deg, #000000, #131a1a);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    direction: ltr;
}
.collection-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.collection-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
}
.wisdom-quote {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 174, 147, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.wisdom-text {
    font-size: 1.1rem;
    color: #80ae93;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}
.collection-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #80ae93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.2;
}
.collection-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px auto;
    font-weight: 300;
}
.ingredients-section { margin-top: 40px; padding: 20px 0; }
.ingredients-title { text-align: center; font-size: 1rem; letter-spacing: 2px; color: #80ae93; margin-bottom: 30px; font-weight: 600;}
.ingredients-grid {
    display: flex; gap: 16px; overflow-x: auto;
    padding: 20px 20px 30px 20px; scroll-behavior: smooth;
    margin: 0 -20px; direction: ltr;
}
.ingredient-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 90px;
    min-width: 140px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    direction: ltr;
}
.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(128, 174, 147, 0.15), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.ingredient-card:hover {
    transform: translateY(-5px);
    border-color: #80ae93;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.ingredient-card:hover::before { opacity: 1; }
.ingredient-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: #fff; position: relative; z-index: 2;}
.ingredient-benefit { font-size: 0.75rem; color: #80ae93; font-weight: 500; position: relative; z-index: 2;}
.modal-overlay {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px); z-index: 1000;
    animation: fadeIn 0.3s ease;
    direction: ltr;
}
.modal-overlay.active { display: flex; align-items: center; justify-content: center; padding: 20px;}
.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #80ae93;
    border-radius: 20px;
    max-width: 500px; width: 100%;
    padding: 40px 30px; position: relative;
    animation: slideUp 0.4s ease; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6); direction: ltr;
}
.modal-close {
    position: absolute; top: 15px; right: 15px;
    background: rgba(255,255,255,0.1);
    border: none; color: #fff; font-size: 24px; width: 35px; height: 35px;
    border-radius: 50%; cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(128, 174, 147, 0.3); transform: rotate(90deg);}
.modal-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: #80ae93; text-align: center; direction: ltr;}
.modal-subtitle { font-size: 0.9rem; color: rgba(255,255,255,0.7); text-align: center; margin-bottom: 20px; font-style: italic; direction: ltr;}
.modal-description { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 20px; text-align: left; direction: ltr;}
.modal-benefits {
    background: rgba(128, 174, 147, 0.1); border-left: 3px solid #80ae93;
    padding: 15px 20px; border-radius: 8px; margin-top: 20px;
}
.modal-benefits h4 { color: #80ae93; font-size: 0.85rem; margin-bottom: 10px; font-weight: 600;}
.modal-benefits ul { list-style: none; padding: 0;}
.modal-benefits li {
    padding: 6px 0; color: rgba(255,255,255,0.9); position: relative;
    padding-left: 20px; font-size: 0.9rem; text-align: left; direction: ltr;
}
.modal-benefits li::before { content: '✓'; position: absolute; left: 0; color: #80ae93; font-weight: bold;}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
@keyframes slideUp { from {opacity: 0; transform:translateY(30px);} to {opacity: 1; transform:translateY(0);} }
@media (max-width: 768px) {
    .collection-hero-section { padding: 40px 15px; }
    .collection-title { font-size: 2.5rem; }
    .collection-description { font-size: 1rem; }
    .ingredients-grid { gap: 12px; padding: 20px 15px 30px 15px; margin: 0 -15px;}
    .ingredient-card { min-height: 80px; min-width: 120px; padding: 12px 8px;}
    .ingredient-name { font-size: 0.85rem; }
    .ingredient-benefit { font-size: 0.7rem;}
    .wisdom-text { font-size: 1rem;}
    .modal-content { padding: 30px 20px; margin: 10px;}
}
</style>
<div class="collection-hero-section">
<div class="collection-content">
<div class="wisdom-quote">
<p class="wisdom-text">Full lashes and brows: change the whole look and bring your eyes to life.</p>
</div>
<h1 class="collection-title">Lash & Brow Thickening</h1>
<p class="collection-description">Thick, full brows and lashes make your face naturally striking and your eyes dramatically expressive. The smart way to grow them starts with research-backed ingredients and real nutrients proven to activate follicles, fight patchiness, and feed every individual strand from root to tip—find the most powerful boosting formulas and clinical results right here.</p>
<div class="ingredients-section">
<h2 class="ingredients-title">Key Ingredients</h2>
<div class="ingredients-grid">
<div class="ingredient-card"><h3 class="ingredient-name">Peptides</h3><p class="ingredient-benefit">Stimulate growth & strengthen follicles</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Biotin (Vitamin B7)</h3><p class="ingredient-benefit">Strengthens & thickens</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Castor Oil</h3><p class="ingredient-benefit">Intense nourishment & strong roots</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Panthenol</h3><p class="ingredient-benefit">Hydrates & renews hairs</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Keratin</h3><p class="ingredient-benefit">Repairs & builds each strand</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Black Seed Oil</h3><p class="ingredient-benefit">Natural strengthening & protection</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Arginine</h3><p class="ingredient-benefit">Boosts bloodflow to roots</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Vitamin E</h3><p class="ingredient-benefit">Antioxidant for healthy hair</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Hyaluronic Acid</h3><p class="ingredient-benefit">Locks in moisture & prevents breakage</p></div>
<div class="ingredient-card"><h3 class="ingredient-name">Caffeine</h3><p class="ingredient-benefit">Stimulates growth & activates follicles</p></div>
</div>
</div>
</div>
</div>
<div class="modal-overlay" id="modal">
<div class="modal-content" id="modalContent">
<button class="modal-close" onclick="closeModal()">×</button>
<div id="modalBody"></div>
</div>
</div>
<script>
function closeModal() {
    document.getElementById('modal').classList.remove('active');
}
</script>

Filters

Sort by
  • Featured
  • Best selling
  • Alphabetically, A-Z
  • Alphabetically, Z-A
  • Price, low to high
  • Price, high to low
  • Date, old to new
  • Date, new to old

Recently Viewed Products