*{

margin:0;

padding:0;

box-sizing:border-box;

}


html{

scroll-behavior:smooth;

}


body{

font-family:'Inter', sans-serif;

color:#222;

background:#fff;

line-height:1.6;

}


img{

max-width:100%;

display:block;

}


a{

text-decoration:none;

color:inherit;

}



h1,
h2,
h3{

font-family:'Cormorant Garamond', serif;

font-weight:700;

}



section{

padding:90px 8%;

}



/* ======================
GLOBAL BUTTONS
====================== */


.gold-btn{

display:inline-block;

background:#c9a96a;

color:white;

padding:15px 35px;

border-radius:50px;

font-weight:600;

transition:.3s;

}


.gold-btn:hover{

transform:translateY(-3px);

box-shadow:0 12px 30px rgba(0,0,0,.15);

}



.outline-btn{

display:inline-block;

padding:14px 35px;

border-radius:50px;

border:1px solid #c9a96a;

color:#c9a96a;

font-weight:600;

transition:.3s;

}


.outline-btn:hover{

background:#c9a96a;

color:white;

}





/* ======================
LOADER
====================== */


.luxury-loader{

position:fixed;

inset:0;

background:#faf8f4;

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

animation:fadeLoader 2s forwards;

}


.loader-logo{

font-family:'Cormorant Garamond',serif;

font-size:3rem;

font-weight:700;

}


.loader-logo span{

color:#c9a96a;

}


@keyframes fadeLoader{


0%{

opacity:1;

}


80%{

opacity:1;

}


100%{

opacity:0;

visibility:hidden;

}


}




/* ======================
HEADER
====================== */


.luxury-header{

position:sticky;

top:0;

z-index:999;

background:rgba(255,255,255,.95);

backdrop-filter:blur(10px);

display:flex;

justify-content:space-between;

align-items:center;

padding:20px 8%;

transition:.3s;

}



.luxury-header.scrolled{

box-shadow:0 10px 35px rgba(0,0,0,.12);

}



.logo{

font-family:'Cormorant Garamond',serif;

font-size:2rem;

font-weight:700;

}



.logo span{

color:#c9a96a;

}



.luxury-nav{

display:flex;

align-items:center;

gap:30px;

}



.luxury-nav a{

font-weight:500;

position:relative;

}



.luxury-nav a:not(.nav-btn)::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#c9a96a;

transition:.3s;

}


.luxury-nav a:hover::after{

width:100%;

}



.nav-btn{

background:#c9a96a;

color:white!important;

padding:12px 25px;

border-radius:50px;

}



.menu-toggle{

display:none;

background:none;

border:0;

font-size:28px;

color:#c9a96a;

}/* ======================
ANNOUNCEMENT BAR
====================== */


.announcement{

background:#c9a96a;

color:white;

padding:14px 8%;

display:flex;

justify-content:center;

align-items:center;

gap:25px;

text-align:center;

}


.announcement a{

font-weight:700;

border-bottom:1px solid white;

}





/* ======================
HERO SECTION
====================== */


.hero{

min-height:85vh;

display:flex;

align-items:center;

background:

linear-gradient(
rgba(255,255,255,.45),
rgba(255,255,255,.45)
),

url("images/hero.jpg");

background-size:cover;

background-position:center;

}



.hero-content{

max-width:650px;

animation:heroFade 1.4s ease;

}



.hero h1{

font-size:5rem;

line-height:1.05;

margin-bottom:25px;

}



.hero p{

font-size:1.2rem;

color:#555;

margin-bottom:35px;

}



.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}



@keyframes heroFade{

from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}

}





/* ======================
BENEFITS
====================== */


.benefits{

background:#faf8f4;

text-align:center;

}



.benefits h2,
.beauty-gallery h2,
.trust-section h2,
.comparison h2,
.reviews h2,
.faq h2{

font-size:3rem;

margin-bottom:50px;

}



.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:30px;

}



.card{

background:white;

padding:40px 30px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.07);

transition:.3s;

}



.card:hover{

transform:translateY(-8px);

}



.card h3{

font-size:1.8rem;

margin-bottom:15px;

}



.card p{

color:#666;

}






/* ======================
ABOUT SECTION
====================== */


.about{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}



.about-image img{

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}



.about-text h2{

font-size:3rem;

margin-bottom:25px;

}



.about-text p{

color:#666;

margin-bottom:20px;

}





/* ======================
PRODUCT SHOWCASE
====================== */


.product-showcase{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}



.product-image img{

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}



.product-content h2{

font-size:3rem;

margin-bottom:25px;

}



.product-content p{

color:#666;

margin-bottom:25px;

}



.product-content ul{

list-style:none;

margin-bottom:35px;

}



.product-content li{

margin-bottom:15px;

font-size:1.05rem;

}





/* ======================
BEAUTY RITUAL
====================== */


.results-section{

background:#fff;

}



.results-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}



.results-content h2{

font-size:3rem;

margin-bottom:25px;

}



.results-content>p{

color:#666;

margin-bottom:35px;

}



.result-item{

display:flex;

gap:20px;

margin-bottom:25px;

}



.result-icon{

width:45px;

height:45px;

min-width:45px;

background:#c9a96a;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

}



.result-item h3{

margin-bottom:5px;

}



.result-item p{

color:#666;

}



.results-image img{

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

}/* ======================
BEAUTY GALLERY
====================== */


.beauty-gallery{

background:#faf8f4;

text-align:center;

}



.gallery-intro{

max-width:650px;

margin:0 auto 45px;

color:#666;

}



.gallery-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}



.gallery-item{

overflow:hidden;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}



.gallery-item img{

width:100%;

height:350px;

object-fit:cover;

transition:.5s;

}



.gallery-item:hover img{

transform:scale(1.08);

}







/* ======================
TRUST SECTION
====================== */


.trust-section{

background:white;

text-align:center;

}



.trust-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

gap:30px;

}



.trust-card{

background:#fff;

padding:40px 30px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.07);

transition:.3s;

}



.trust-card:hover{

transform:translateY(-8px);

}



.trust-icon{

width:60px;

height:60px;

margin:0 auto 20px;

background:#c9a96a;

color:white;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:25px;

}



.trust-card h3{

font-size:1.7rem;

margin-bottom:15px;

}



.trust-card p{

color:#666;

}







/* ======================
COMPARISON SECTION
====================== */


.comparison{

background:#faf8f4;

text-align:center;

}



.comparison-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}



.comparison-card{

background:white;

padding:40px 30px;

border-radius:25px;

border:1px solid #eee;

}



.comparison-card h3{

font-size:1.8rem;

margin-bottom:15px;

}



.comparison-card p{

color:#666;

}







/* ======================
NEWSLETTER
====================== */


.newsletter{

background:white;

text-align:center;

}



.newsletter-box{

max-width:850px;

margin:auto;

padding:60px 40px;

background:linear-gradient(
135deg,
#fff,
#f7f0e5
);

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}



.newsletter-box h2{

font-size:3rem;

margin-bottom:20px;

}



.newsletter-box p{

color:#666;

margin-bottom:35px;

}



.newsletter-form{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}



.newsletter-form input{

width:320px;

padding:16px 22px;

border-radius:50px;

border:1px solid #ddd;

font-size:1rem;

}



.trust-badges{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin-top:40px;

}



.trust-badges div{

background:white;

padding:15px 25px;

border-radius:50px;

box-shadow:0 8px 20px rgba(0,0,0,.06);

}







/* ======================
REVIEWS
====================== */


.reviews{

background:#faf8f4;

text-align:center;

}



.review-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}



.review-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 15px 35px rgba(0,0,0,.07);

}



.review-card p{

font-style:italic;

color:#555;

margin-bottom:20px;

}



.review-card h3{

color:#c9a96a;

}







/* ======================
FAQ
====================== */


.faq{

background:white;

max-width:1000px;

margin:auto;

}



.faq-item{

padding:25px;

border-bottom:1px solid #eee;

}



.faq-item h3{

font-size:1.5rem;

margin-bottom:10px;

}



.faq-item p{

color:#666;

}/* ======================
FINAL CTA
====================== */


.cta{

background:

linear-gradient(
135deg,
#191919,
#302820
);

color:white;

text-align:center;

padding:100px 8%;

}



.cta h2{

font-size:3.5rem;

margin-bottom:20px;

}



.cta p{

color:#ddd;

margin-bottom:35px;

font-size:1.1rem;

}







/* ======================
FOOTER
====================== */


.luxury-footer{

background:#191919;

color:white;

padding:80px 8% 30px;

}



.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

}



.footer-brand h2{

font-size:2.5rem;

}



.footer-brand span{

color:#c9a96a;

}



.footer-brand p{

color:#bbb;

margin-top:20px;

}



.footer-links{

display:flex;

flex-direction:column;

gap:14px;

}



.footer-links h3{

font-size:1.5rem;

margin-bottom:10px;

}



.footer-links a{

color:#ccc;

transition:.3s;

}



.footer-links a:hover{

color:#c9a96a;

}



.footer-bottom{

border-top:1px solid rgba(255,255,255,.15);

margin-top:50px;

padding-top:25px;

text-align:center;

color:#aaa;

font-size:.9rem;

}







/* ======================
FLOATING SHOP BUTTON
====================== */


.floating-shop{

display:none;

position:fixed;

bottom:25px;

left:50%;

transform:translateX(-50%);

background:#c9a96a;

color:white;

padding:15px 40px;

border-radius:50px;

font-weight:600;

z-index:9999;

box-shadow:0 15px 35px rgba(0,0,0,.2);

}







/* ======================
MOBILE RESPONSIVE
====================== */


@media(max-width:1000px){


.gallery-grid{

grid-template-columns:repeat(2,1fr);

}


.hero h1{

font-size:4rem;

}


.about,
.product-showcase,
.results-container{

grid-template-columns:1fr;

}


}





@media(max-width:700px){



section{

padding:70px 5%;

}



/* Mobile Header */


.menu-toggle{

display:block;

}



.luxury-nav{

display:none;

position:absolute;

top:80px;

left:0;

width:100%;

background:white;

padding:30px;

flex-direction:column;

box-shadow:0 20px 40px rgba(0,0,0,.1);

}



.luxury-nav.active{

display:flex;

}



.announcement{

flex-direction:column;

gap:10px;

}



.hero{

min-height:75vh;

}



.hero h1{

font-size:3rem;

}



.hero-buttons{

flex-direction:column;

align-items:flex-start;

}



.benefits h2,
.beauty-gallery h2,
.trust-section h2,
.comparison h2,
.reviews h2,
.faq h2{

font-size:2.3rem;

}



.gallery-grid{

grid-template-columns:1fr;

}



.gallery-item img{

height:300px;

}



.newsletter-box{

padding:45px 25px;

}



.newsletter-box h2{

font-size:2.3rem;

}



.newsletter-form input{

width:100%;

}



.cta h2{

font-size:2.5rem;

}



.floating-shop{

display:block;

}



.footer-grid{

text-align:center;

}



.footer-links{

align-items:center;

}



}