{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:'Vazirmatn',sans-serif;
}

body{
background:#fffaf7;
overflow-x:hidden;
color:#333;
}

/ HEADER /

header{
position:fixed;
top:0;
right:0;
left:0;
z-index:1000;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 8%;

background:rgba(204, 151, 181, 0.65);
backdrop-filter:blur(15px);

box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.logo-box{
display:flex;
align-items:center;
gap:12px;
}

.logo-circle{
width:55px;
height:55px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:24px;
font-weight:800;

background:linear-gradient(135deg,#ffb7c5,#f7d6ff);

color:#a78686;

box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.logo-text h2{
font-size:22px;
font-weight:800;
}

nav{
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#8a38a3;
}

/ HERO /

.hero{
height:100vh;

background-image:
linear-gradient(rgba(255,255,255,.25),rgba(255,255,255,.25)),
url("https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

text-align:center;
position:relative;
}

.hero-content{
max-width:800px;
padding:20px;
}

.hero h1{
font-size:70px;
font-weight:800;
margin-bottom:20px;
color:#222;
}

.hero p{
font-size:22px;
line-height:2;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-primary{
padding:15px 35px;
border-radius:40px;
text-decoration:none;
background:#80acc2;
color:#fff;
font-weight:700;
transition:.4s;
}

.btn-secondary{
padding:15px 35px;
border-radius:40px;
text-decoration:none;
background:#fff;
color:#333;
font-weight:700;
transition:.4s;
}

.btn-primary:hover,
.btn-secondary:hover{
transform:translateY(-4px);
}

/ TITLES /

.section-title{
text-align:center;
font-size:40px;
margin-bottom:50px;
font-weight:800;
}

/ CATEGORIES /

.categories{
padding:120px 8%;
}

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.category-card{
height:220px;

border-radius:25px;

background:
linear-gradient(135deg,#ffe1ea,#f7ddff);

display:flex;
justify-content:center;
align-items:center;

font-size:24px;
font-weight:700;

transition:.4s;

cursor:pointer;
}

.category-card:hover{
transform:translateY(-12px);
box-shadow:0 15px 30px rgba(0,0,0,.12);
}

/ PRODUCTS /

.products{
padding:120px 8%;
background:#fff;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.product-card{
background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.4s;
}

.product-card:hover{
transform:translateY(-10px);
}

.product-card img{
width:100%;
height:280px;
object-fit:cover;
}

.product-card h3{
padding:15px;
}

.price{
padding:0 15px;
color:#ff6392;
font-weight:700;
}

.product-card button{
margin:15px;
width:calc(100% - 30px);

border:none;

padding:14px;

border-radius:12px;

background:#ffb7c5;

color:#fff;

font-size:16px;

cursor:pointer;
}

/ DISCOUNT /

.discount{
padding:100px 8%;
}

.discount-box{
padding:70px;

border-radius:35px;

text-align:center;

background:
linear-gradient(135deg,#ffd9e4,#f5ddff,#fff0d9);
}

.discount-box h2{
font-size:45px;
margin-bottom:20px;
}

.discount-box p{
font-size:20px;
margin-bottom:30px;
}

.discount-box a{
padding:15px 35px;

background:#fff;

border-radius:40px;

text-decoration:none;

font-weight:700;

color:#333;
}

/ ABOUT /

.about{
padding:120px 8%;
}

.about-card{
max-width:900px;

margin:auto;

background:#fff;

padding:50px;

border-radius:30px;

line-height:2.2;

font-size:18px;

box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/ TESTIMONIALS /

.testimonials{
padding:120px 8%;
background:#fff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.testimonial-card{
background:#fff5f8;

padding:40px;

border-radius:25px;

font-size:18px;

line-height:2;

box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* CONTACT */

.contact{
padding:120px 8%;
text-align:center;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-bottom:40px;
}

.contact-buttons a{
padding:15px 30px;

background:#ffb7c5;

color:#fff;

text-decoration:none;

border-radius:40px;

font-weight:700;
}

.contact-info p{
font-size:20px;
margin:10px 0;
}

/* FOOTER */

footer{
padding:50px;

text-align:center;

background:#fff;

margin-top:50px;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.section-title{
font-size:30px;
}

.discount-box{
padding:40px 20px;
}

.discount-box h2{
font-size:30px;
}

}