*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f1f5f9;
color:#1e293b;
}

/* NAVBAR */
.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:rgba(15,23,42,0.9);
backdrop-filter:blur(10px);
color:white;
position:sticky;
top:0;
z-index:100;
}

.logo img{
height:55px;
}

.nav a{
color:#e2e8f0;
margin-left:25px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.nav a:hover{
color:#ff7a00;
}

/* HERO */
.hero{
height:90vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
background:linear-gradient(135deg,#0f172a,#1e293b);
color:white;
}

.hero h1{
font-size:50px;
font-weight:600;
margin-bottom:15px;
}

.hero p{
max-width:650px;
color:#cbd5f5;
line-height:1.6;
}

.hero button{
margin-top:25px;
padding:14px 30px;
background:linear-gradient(45deg,#ff7a00,#fb641b);
border:none;
color:white;
border-radius:30px;
font-size:16px;
cursor:pointer;
box-shadow:0 5px 15px rgba(255,122,0,0.3);
transition:0.3s;
}

.hero button:hover{
transform:translateY(-3px);
}

/* ABOUT */
.about{
padding:70px 20px;
text-align:center;
background:white;
}

.about h2{
font-size:32px;
margin-bottom:10px;
}

.about p{
max-width:700px;
margin:auto;
margin-top:10px;
color:#64748b;
line-height:1.6;
}

.points{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
margin-top:25px;
}

.points div{
background:#f1f5f9;
padding:12px 18px;
border-radius:25px;
font-size:14px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* PRODUCTS */
.products{
padding:60px 20px;
}

.products h2{
text-align:center;
font-size:30px;
margin-bottom:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.card{
background:white;
padding:15px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.card img{
width:100%;
border-radius:10px;
}

.card h3{
margin:12px 0;
font-size:18px;
}

.card p{
color:#fb641b;
font-weight:600;
}

.card button{
width:100%;
padding:10px;
margin-top:10px;
background:linear-gradient(45deg,#ff7a00,#fb641b);
border:none;
color:white;
border-radius:8px;
cursor:pointer;
transition:0.3s;
}

.card button:hover{
opacity:0.9;
}

/* FOOTER */
.footer{
background:#0f172a;
color:#94a3b8;
text-align:center;
padding:25px;
margin-top:40px;
}
.badge{
position:absolute;
background:#22c55e;
color:white;
padding:5px 10px;
font-size:12px;
border-radius:20px;
top:10px;
left:10px;
}
.card{
position:relative;
}


/* ===== CART PANEL ===== */
.cart{
position:fixed;
right:-350px;
top:0;
width:350px;
height:100%;
background:#ffffff;
box-shadow:-5px 0 25px rgba(0,0,0,0.2);
padding:20px;
transition:0.4s ease;
z-index:9999;
overflow-y:auto;
}

.cart.active{
right:0;
}

/* ===== CART TITLE ===== */
.cart h3{
font-size:22px;
margin-bottom:15px;
color:#0f172a;
}

/* ===== CART ITEM ===== */
.cartItem{
display:flex;
gap:12px;
margin-bottom:15px;
padding-bottom:10px;
border-bottom:1px solid #eee;
align-items:flex-start;
}

.cartItem img{
width:65px;
height:65px;
object-fit:cover;
border-radius:8px;
}

/* TEXT AREA */
.cartItem b{
font-size:15px;
color:#111;
}

.cartItem p{
font-size:13px;
color:#555;
margin-top:3px;
}

/* ===== QUANTITY BOX ===== */
.qtyBox{
display:flex;
align-items:center;
gap:6px;
margin-top:6px;
}

.qtyBox button{
padding:5px 10px;
border:none;
background:#0f172a;
color:white;
border-radius:5px;
cursor:pointer;
font-size:14px;
}

.qtyBox button:hover{
background:#ff6a00;
}

.qtyBox input{
width:40px;
height:28px;
text-align:center;
border:1px solid #ccc;
border-radius:5px;
}

/* REMOVE BUTTON */
.qtyBox button:last-child{
background:red;
}

/* ===== TOTAL ===== */
.cart h4{
margin-top:10px;
font-size:18px;
color:#000;
}

/* ===== CHECKOUT FORM ===== */
.checkoutForm{
margin-top:15px;
}

.checkoutForm input,
.checkoutForm textarea{
width:100%;
padding:10px;
margin-top:10px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.checkoutForm textarea{
resize:none;
height:70px;
}

/* BUTTON */
.checkoutForm button{
width:100%;
padding:12px;
margin-top:10px;
background:linear-gradient(45deg,#ff6a00,#ff3d00);
border:none;
color:white;
border-radius:6px;
font-size:16px;
cursor:pointer;
transition:0.3s;
}

.checkoutForm button:hover{
transform:scale(1.03);
box-shadow:0 5px 15px rgba(255,106,0,0.4);
}

/* ===== SCROLLBAR ===== */
.cart::-webkit-scrollbar{
width:6px;
}

.cart::-webkit-scrollbar-thumb{
background:#ccc;
border-radius:10px;
}

/* MOBILE FIX */
@media(max-width:768px){

.cart{
width:100%;
}

}