/* ──────────────────────────────────────────────────────────────────────────────── */
/* LEVELS HAIR COMPANY - SHOPIFY THEME */
/* Luxury Hair Extensions E-Commerce */
/* ──────────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');
:root {
--black: #0a0a0a;
--white: #fafaf8;
--cream: #f8f6f3;
--beige: #ebe7e1;
--wine-pink: #8b5a6e;
--deep-mauve: #7a4d63;
--dusty-rose: #a67a8a;
--charcoal: #1a1a1a;
--text-dark: #0a0a0a;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
overflow-x: hidden;
}
body {
font-family: 'Jost', sans-serif;
background: var(--white);
color: var(--text-dark);
line-height: 1.6;
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* NAVIGATION */
/* ──────────────────────────────────────────────────────────────────────────────── */
header {
position: sticky;
top: 0;
width: 100%;
background: var(--white);
border-bottom: 1px solid var(--beige);
z-index: 1000;
backdrop-filter: blur(10px);
background: rgba(250, 250, 248, 0.95);
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.2rem 2rem;
max-width: 1500px;
margin: 0 auto;
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.05em;
color: var(--black);
cursor: pointer;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: var(--charcoal);
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.05em;
transition: color 0.3s ease;
cursor: pointer;
}
.nav-links a:hover {
color: var(--wine-pink);
}
.nav-actions {
display: flex;
gap: 1.5rem;
align-items: center;
}
.search-btn, .cart-btn {
background: none;
border: none;
cursor: pointer;
font-size: 1.1rem;
color: var(--charcoal);
transition: color 0.3s ease;
}
.search-btn:hover, .cart-btn:hover {
color: var(--wine-pink);
}
.cart-count {
position: absolute;
top: -8px;
right: -8px;
background: var(--wine-pink);
color: var(--white);
width: 20px;
height: 20px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 600;
}
.cart-btn {
position: relative;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* HERO BANNER */
/* ──────────────────────────────────────────────────────────────────────────────── */
.hero-banner {
width: 100%;
min-height: 60vh;
background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
}
.hero-banner::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, rgba(139, 90, 110, 0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero-content {
max-width: 800px;
padding: 2rem;
z-index: 2;
}
.hero-label {
font-family: 'Cormorant Garamond', serif;
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--wine-pink);
font-weight: 500;
margin-bottom: 1rem;
}
.hero-content h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.5rem, 7vw, 4.5rem);
font-weight: 700;
line-height: 1.1;
color: var(--black);
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
}
.hero-content p {
font-size: 1.1rem;
color: var(--charcoal);
line-height: 1.8;
margin-bottom: 2rem;
font-weight: 300;
}
.hero-cta {
display: inline-block;
padding: 1rem 2.5rem;
background: var(--wine-pink);
color: var(--white);
text-decoration: none;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 0.85rem;
transition: all 0.4s ease;
box-shadow: 0 10px 30px rgba(139, 90, 110, 0.2);
border: none;
cursor: pointer;
}
.hero-cta:hover {
background: var(--deep-mauve);
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(139, 90, 110, 0.3);
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* COLLECTIONS */
/* ──────────────────────────────────────────────────────────────────────────────── */
.collections {
padding: 4rem 2rem;
max-width: 1500px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-label {
font-family: 'Cormorant Garamond', serif;
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--wine-pink);
font-weight: 500;
margin-bottom: 0.5rem;
}
.section-header h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.2;
color: var(--black);
letter-spacing: -0.01em;
}
.collections-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}
.collection-card {
position: relative;
overflow: hidden;
border: 1px solid var(--beige);
background: var(--cream);
transition: all 0.4s ease;
cursor: pointer;
}
.collection-card:hover {
border-color: var(--wine-pink);
box-shadow: 0 15px 40px rgba(139, 90, 110, 0.12);
transform: translateY(-5px);
}
.collection-image {
width: 100%;
height: 300px;
background: linear-gradient(135deg, #f0ebe5 0%, #e8dfd7 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
overflow: hidden;
}
.collection-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.collection-info {
padding: 1.5rem;
text-align: center;
}
.collection-info h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--black);
}
.collection-info p {
font-size: 0.9rem;
color: var(--charcoal);
margin-bottom: 1rem;
font-weight: 300;
}
.collection-link {
display: inline-block;
color: var(--wine-pink);
text-decoration: none;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.05em;
transition: all 0.3s ease;
cursor: pointer;
}
.collection-link:hover {
letter-spacing: 0.1em;
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* PRODUCTS */
/* ──────────────────────────────────────────────────────────────────────────────── */
.products {
padding: 4rem 2rem;
background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
max-width: 1500px;
margin: 0 auto;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.product-card {
background: var(--white);
border: 1px solid var(--beige);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.product-card:hover {
border-color: var(--wine-pink);
box-shadow: 0 15px 40px rgba(139, 90, 110, 0.15);
transform: translateY(-5px);
}
.product-image {
width: 100%;
height: 280px;
background: linear-gradient(135deg, #f0ebe5 0%, #e8dfd7 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
position: relative;
overflow: hidden;
}
.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.product-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--wine-pink);
color: var(--white);
padding: 0.4rem 0.8rem;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
z-index: 10;
}
.product-info {
padding: 1.5rem;
}
.product-category {
font-size: 0.75rem;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--wine-pink);
font-weight: 600;
margin-bottom: 0.5rem;
}
.product-name {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
color: var(--black);
margin-bottom: 0.5rem;
cursor: pointer;
}
.product-description {
font-size: 0.9rem;
color: var(--charcoal);
margin-bottom: 1rem;
line-height: 1.6;
font-weight: 300;
}
.product-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.product-price {
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-weight: 700;
color: var(--black);
}
.add-to-cart {
background: var(--wine-pink);
color: var(--white);
border: none;
padding: 0.6rem 1.2rem;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s ease;
}
.add-to-cart:hover {
background: var(--deep-mauve);
transform: translateY(-2px);
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* WHY CHOOSE US */
/* ──────────────────────────────────────────────────────────────────────────────── */
.why-us {
padding: 5rem 2rem;
background: var(--cream);
max-width: 1500px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
}
.feature-item {
text-align: center;
padding: 2rem;
border: 1px solid var(--beige);
background: var(--white);
transition: all 0.4s ease;
}
.feature-item:hover {
border-color: var(--wine-pink);
box-shadow: 0 10px 30px rgba(139, 90, 110, 0.1);
transform: translateY(-3px);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-item h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--black);
}
.feature-item p {
font-size: 0.9rem;
color: var(--charcoal);
line-height: 1.7;
font-weight: 300;
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* FOOTER */
/* ──────────────────────────────────────────────────────────────────────────────── */
footer {
background: var(--black);
color: var(--white);
padding: 4rem 2rem 2rem;
margin-top: 4rem;
}
.footer-content {
max-width: 1500px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
letter-spacing: -0.01em;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.7rem;
}
.footer-section a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
cursor: pointer;
}
.footer-section a:hover {
color: var(--wine-pink);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
text-align: center;
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.5);
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* RESPONSIVE */
/* ──────────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
nav {
padding: 1rem;
}
.logo {
font-size: 1.2rem;
}
.nav-links {
display: none;
}
.hero-content h1 {
font-size: 2rem;
}
.collections-grid,
.products-grid,
.features-grid {
grid-template-columns: 1fr;
}
.collections,
.products,
.why-us {
padding: 2rem 1rem;
}
}
/* ──────────────────────────────────────────────────────────────────────────────── */
/* ANIMATIONS */
/* ──────────────────────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeInUp 0.8s ease-out forwards;
}
html {
scroll-behavior: smooth;
}
::selection {
background: var(--wine-pink);
color: var(--white);
}