*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#0f1117;
color:#fff;
padding:40px 20px;
}

h1{
text-align:center;
font-size:42px;
color:#FFD700;
margin-bottom:35px;
}

#cartContainer{
display:flex;
flex-direction:column;
gap:20px;
max-width:1200px;
margin:auto;
}

.cart-image:hover{

transform:scale(1.08);

}

.cart-item{

display:grid;

grid-template-columns:180px 1fr 220px;

gap:25px;

background:#1b1f2a;

padding:25px;

border-radius:20px;

border:1px solid rgba(255,215,0,.15);

align-items:center;

cursor:pointer;

transition:.35s;

}

.cart-item:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.cart-image{

width:150px;
height:150px;
object-fit:contain;
background:#111;
padding:15px;
border-radius:15px;

transition:.35s;

}

.cart-details h2{
color:#FFD700;
font-size:28px;
margin-bottom:12px;
}

.cart-category{
display:inline-block;
padding:6px 16px;
background:#FFD700;
color:#111;
border-radius:20px;
font-weight:bold;
margin-bottom:15px;
}

.stock-in,
.stock-out{
display:inline-block;
padding:6px 16px;
border-radius:20px;
font-weight:bold;
margin-bottom:15px;
}

.stock-in{
background:#00c853;
}

.stock-out{
background:#ff3b30;
}

.qty-row{
display:flex;
align-items:center;
gap:15px;
margin-top:18px;
}

.qty-btn{
transition:.3s;
width:45px;
height:45px;
border:none;
background:#FFD700;
color:#111;
font-size:22px;
font-weight:bold;
border-radius:10px;
cursor:pointer;
}

.qty-btn:hover{

transform:scale(1.08);

box-shadow:0 0 20px rgba(255,215,0,.35);

}

.qty-number{
font-size:22px;
font-weight:bold;
min-width:40px;
text-align:center;
}

.cart-right{
text-align:right;
}

.subtotal-title{
color:#999;
font-size:16px;
}

.subtotal-price{
font-size:32px;
font-weight:bold;
color:#00e676;
margin:12px 0;
}

.remove-btn{

margin-top:20px;

width:100%;

padding:15px;

background:#ff3b30;

color:#fff;

border:none;

border-radius:12px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.remove-btn:hover{

background:#e02820;

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(255,59,48,.35);

}

#totalPrice{

position:sticky;

top:25px;

align-self:start;

}

@media(max-width:900px){

.cart-item{
animation:fadeUp .45s ease;
grid-template-columns:1fr;
text-align:center;
}

.cart-image{
margin:auto;
}

.cart-right{
text-align:center;
}

.qty-row{
justify-content:center;
}

}

.cart-layout{

display:grid;

grid-template-columns:2fr 420px;

gap:30px;

max-width:1500px;

margin:auto;

align-items:start;

}

.cart-right-panel{

position:sticky;

top:30px;

background:#1b1f2a;

padding:25px;

border-radius:20px;

border:1px solid rgba(255,215,0,.15);

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

#couponCode{

width:100%;

padding:15px;

border:none;

border-radius:12px;

background:#111;

color:white;

font-size:16px;

margin-bottom:15px;

}

#applyCouponBtn{

width:100%;

padding:15px;

background:#FFD700;

color:#111;

border:none;

border-radius:12px;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

#applyCouponBtn:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(255,215,0,.3);

}
#checkoutBtn{

width:100%;

margin-top:25px;

padding:18px;

background:#FFD700;

color:#111;

border:none;

border-radius:14px;

font-size:18px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

#checkoutBtn:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(255,215,0,.35);

}

@media(max-width:1000px){

.cart-layout{

grid-template-columns:1fr;

}

.cart-right-panel{

position:static;

}

}

.cart-title{

max-width:1200px;

margin:0 auto 25px;

}

.cart-title h2{

font-size:34px;

color:#FFD700;

margin-bottom:8px;

}

.cart-title p{

color:#999;

font-size:16px;

}

/*==============================
EMPTY CART
==============================*/

.empty-cart{

max-width:700px;

margin:80px auto;

padding:60px 40px;

text-align:center;

background:#1b1f2a;

border-radius:25px;

border:1px solid rgba(255,215,0,.15);

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.empty-icon{

font-size:90px;

margin-bottom:20px;

}

.empty-cart h2{

font-size:40px;

color:#FFD700;

margin-bottom:15px;

}

.empty-cart p{

font-size:18px;

color:#bbb;

margin-bottom:35px;

line-height:1.8;

}

.continue-shopping{

display:inline-block;

padding:16px 35px;

background:#FFD700;

color:#111;

font-weight:700;

border-radius:12px;

transition:.3s;

}

.continue-shopping:hover{

transform:translateY(-4px);

box-shadow:0 10px 25px rgba(255,215,0,.35);

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(35px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*==============================
RECOMMENDED PRODUCTS
==============================*/

#recommendedSection{

max-width:1400px;

margin:70px auto;

}

.recommend-title{

font-size:34px;

color:#FFD700;

margin-bottom:30px;

}

#recommendedProducts{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

.recommend-card{

background:#1b1f2a;

border-radius:20px;

padding:20px;

border:1px solid rgba(255,215,0,.15);

transition:.35s;

display:flex;

flex-direction:column;

}

.recommend-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 35px rgba(0,0,0,.35);

}

.recommend-card img{

width:100%;

height:220px;

object-fit:contain;

background:#111;

border-radius:15px;

padding:15px;

margin-bottom:20px;

transition:.35s;

}

.recommend-card:hover img{

transform:scale(1.08);

}

.recommend-card h3{

color:#FFD700;

font-size:22px;

margin-bottom:12px;

min-height:60px;

}

.recommend-price{

font-size:30px;

font-weight:bold;

margin-bottom:20px;

}

.recommend-card button{

margin-top:auto;

height:52px;

border:none;

border-radius:12px;

background:#FFD700;

color:#111;

font-weight:bold;

font-size:17px;

cursor:pointer;

transition:.3s;

}

.recommend-card button:hover,
.bundle-card button:hover{

transform:translateY(-3px);

box-shadow:0 12px 25px rgba(255,215,0,.35);

}

/*========================================
FREQUENTLY BOUGHT TOGETHER
========================================*/

#bundleSection{

max-width:1400px;

margin:70px auto;

}

.bundle-title{

font-size:34px;

color:#FFD700;

margin-bottom:30px;

}

#bundleProducts{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

}

.bundle-card{

background:#1b1f2a;

border-radius:20px;

padding:20px;

border:1px solid rgba(255,215,0,.15);

transition:.3s;

display:flex;

flex-direction:column;

}

.bundle-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 35px rgba(0,0,0,.35);

}

.bundle-card img{

width:100%;

height:220px;

object-fit:contain;

background:#111;

border-radius:15px;

padding:15px;

margin-bottom:20px;

}

.bundle-card h3{

color:#FFD700;

font-size:22px;

margin-bottom:10px;

min-height:55px;

}

.bundle-price{

font-size:28px;

font-weight:bold;

margin-bottom:20px;

}

.bundle-card button{

margin-top:auto;

height:50px;

background:#FFD700;

color:#111;

border:none;

border-radius:12px;

font-size:17px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.recommend-card,
.bundle-card{
height:100%;
}

.bundle-card img{
transition:.35s;
}

.bundle-card:hover img{
transform:scale(1.08);
}

.recommend-price,
.bundle-price{

margin-top:auto;

}