:root{

--primary:#FFAFCC;
--secondary:#FFC8DD;
--lavender:#CDB4DB;
--blue:#BDE0FE;
--sky:#A2D2FF;

--dark:#2b2b2b;
--white:#ffffff;

--shadow:0 10px 30px rgba(0,0,0,0.08);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:var(--primary);
color:var(--dark);
overflow-x:hidden;

}

/* =====================
NAVBAR
===================== */

header{

position:sticky;
top:0;
z-index:999;
background:white;
box-shadow:var(--shadow);

}

.navbar{

max-width:1400px;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;

padding:15px 40px;

}

.logo img{

height:70px;

}

.nav-links{

display:flex;
list-style:none;
gap:30px;

}

.nav-links a{

text-decoration:none;
font-weight:600;
color:#444;
transition:.3s;

}

.nav-links a:hover{

color:#ff4fa0;

}

.nav-icons{

display:flex;
align-items:center;

}

.cart-btn{

position:relative;
cursor:pointer;

background:#ff4fa0;
color:white;

width:50px;
height:50px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

font-size:18px;

}

#cart-count{

position:absolute;
top:-6px;
right:-6px;

background:#222;

width:22px;
height:22px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:12px;
color:white;

}

/* =====================
HERO
===================== */

.hero{

max-width:1400px;
margin:auto;

padding:80px 40px;

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;

align-items:center;

}

.hero-left h1{

font-size:4rem;
line-height:1.1;
margin-bottom:20px;

}

.hero-tag{

display:inline-block;

background:white;
padding:10px 18px;

border-radius:30px;

font-size:14px;
font-weight:600;

margin-bottom:20px;

}

.hero-left p{

font-size:18px;
line-height:1.8;

margin-bottom:30px;

}

.hero-buttons{

display:flex;
gap:20px;

}

.btn-primary{

background:#ff4fa0;
color:white;

padding:15px 30px;
border-radius:50px;

text-decoration:none;
font-weight:600;

}

.btn-secondary{

background:white;
color:#444;

padding:15px 30px;
border-radius:50px;

text-decoration:none;
font-weight:600;

}

.hero-right img{

width:100%;
border-radius:30px;
box-shadow:var(--shadow);

}

/* =====================
SECTION
===================== */

section{

padding:100px 40px;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

color:#ff4fa0;
font-weight:700;
font-size:14px;

}

.section-title h2{

font-size:3rem;
margin-top:10px;

}

/* =====================
ABOUT
===================== */

.about-grid{

max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;

}

.about-card{

background:white;
padding:30px;
border-radius:20px;

box-shadow:var(--shadow);

}

.about-card h3{

margin-bottom:15px;
color:#ff4fa0;

}

/* =====================
TECH
===================== */

.tech-grid{

max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;

}

.tech-card{

background:white;
padding:30px;
border-radius:20px;
text-align:center;

box-shadow:var(--shadow);

}

.tech-card h3{

color:#ff4fa0;
margin-bottom:15px;

}

/* =====================
PRODUCTS
===================== */

.product-grid{

max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.product-card{

background:white;
padding:25px;

border-radius:25px;
box-shadow:var(--shadow);

text-align:center;

transition:.3s;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

width:100%;
height:260px;
object-fit:contain;

margin-bottom:20px;

}

.product-card h3{

margin-bottom:10px;

}

.price{

font-size:28px;
font-weight:700;

color:#ff4fa0;

margin-bottom:10px;

}

.product-card button{

width:100%;

padding:14px;

border:none;

background:#ff4fa0;
color:white;

font-weight:600;

border-radius:15px;

cursor:pointer;

margin-top:15px;

}

/* =====================
CERTIFICATES
===================== */

.cert-grid{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.cert-card{

background:white;
padding:40px;

border-radius:25px;

text-align:center;

box-shadow:var(--shadow);

}

.cert-card img{

width:120px;
height:120px;

object-fit:contain;

margin-bottom:20px;

}

/* =====================
TESTIMONIALS
===================== */

.testimonial-grid{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.testimonial{

background:white;
padding:30px;

border-radius:20px;

box-shadow:var(--shadow);

font-size:20px;

}

.testimonial p{

margin:20px 0;

line-height:1.8;

}

/* =====================
CONTACT
===================== */

.contact-box{

max-width:700px;
margin:auto;

background:white;

padding:40px;
border-radius:25px;

box-shadow:var(--shadow);

text-align:center;

}

.contact-box p{

margin:15px 0;
font-size:18px;

}

/* =====================
NEWSLETTER
===================== */

.newsletter{

text-align:center;

}

.newsletter h2{

margin-bottom:25px;

}

.newsletter input{

width:350px;
max-width:90%;

padding:15px;

border:none;
border-radius:50px;

}

.newsletter button{

padding:15px 30px;

border:none;
border-radius:50px;

background:#ff4fa0;
color:white;

margin-left:10px;

cursor:pointer;

}

/* =====================
FOOTER
===================== */

footer{

background:#fff;

padding:60px 20px;

text-align:center;

}

.footer-logo{

height:90px;
margin-bottom:20px;

}

footer p{

margin:10px 0;

}

/* =====================
CART
===================== */

.cart-sidebar{

position:fixed;

top:0;
right:-420px;

width:400px;
height:100vh;

background:white;

box-shadow:-10px 0 30px rgba(0,0,0,0.1);

transition:.4s;

z-index:9999;

display:flex;
flex-direction:column;

}

.cart-sidebar.active{

right:0;

}

.cart-header{

padding:25px;

display:flex;
justify-content:space-between;
align-items:center;

border-bottom:1px solid #eee;

}

.cart-header button{

border:none;
background:none;
font-size:24px;
cursor:pointer;

}

#cart-items{

flex:1;
overflow:auto;

padding:20px;

}

.cart-item{

display:flex;
justify-content:space-between;

margin-bottom:15px;

padding-bottom:15px;

border-bottom:1px solid #eee;

}

.cart-summary{

padding:25px;
border-top:1px solid #eee;

}

.cart-summary p{

margin-bottom:10px;

}

.checkout-btn{

width:100%;

padding:15px;

border:none;

background:#ff4fa0;
color:white;

font-weight:600;

border-radius:15px;

cursor:pointer;

margin-top:15px;

}

/* =====================
RESPONSIVE
===================== */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

}

.product-grid{

grid-template-columns:1fr;

}

.about-grid{

grid-template-columns:1fr 1fr;

}

.tech-grid{

grid-template-columns:1fr 1fr;

}

.cert-grid{

grid-template-columns:1fr;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.nav-links{

display:none;

}

}

@media(max-width:600px){

.hero-left h1{

font-size:2.6rem;

}

.about-grid{

grid-template-columns:1fr;

}

.tech-grid{

grid-template-columns:1fr;

}

.cart-sidebar{

width:100%;

}

.newsletter button{

margin-top:10px;

margin-left:0;

}

}