/* cart css */

   .cart-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.cart-title{
font-weight:600;
margin-bottom:20px;
}

.product-card{
border:1px solid #eee;
padding:20px;
border-radius:8px;
background:#fafafa;
}

.product-price{
font-size:18px;
font-weight:600;
color:#f37021;
}

.summary-box{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
position:sticky;
top:20px;
}

.btn-drone{
background:#f37021;
color:#fff;
font-weight:600;
}

.btn-drone:hover{
background:#e05d0e;
color:#fff;
}
  .btn-trash{
    padding: 6px 12px;}

    
/* register */

.auth-page{
display:flex;
justify-content:center;
align-items:center;
padding:60px 0;
background:#f9f9f9;
}

.auth-box{
width:420px;
background:#fff;
padding:30px;
border-radius:6px;
box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.auth-title{
text-align:center;
margin-bottom:25px;
}

.auth-form{
display:flex;
flex-direction:column;
}

.form-group{
margin-bottom:15px;
}

.form-group label{
font-size:14px;
margin-bottom:5px;
display:block;
}

.form-group input{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
}

.auth-btn{
width:100%;
padding:12px;
background:#ff6600;
border:none;
color:white;
font-size:16px;
border-radius:4px;
cursor:pointer;
margin-top:10px;
}

.auth-btn:hover{
background:#ff6600;
}

.auth-text{
text-align:center;
margin-top:15px;
}

.auth-text a{
color:#ff6600;
text-decoration:none;
font-weight:bold;
}

/* LOGIN PAGE */

.login-page{
display:flex;
justify-content:center;
align-items:center;
padding:60px 0;
background:#f5f5f5;
}

.login-box{
width:400px;
background:#fff;
padding:30px;
border-radius:6px;
box-shadow:0 0 10px rgba(0,0,0,0.08);
}

.login-title{
text-align:center;
font-size:24px;
margin-bottom:25px;
}

.login-form{
display:flex;
flex-direction:column;
}

.login-form label{
font-size:14px;
margin-bottom:5px;
margin-top:10px;
}

.login-form input{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
}

.login-btn{
margin-top:20px;
padding:12px;
background:#ff6600;
border:none;
color:white;
font-size:16px;
border-radius:4px;
cursor:pointer;
}

.login-btn:hover{
background:#ff6600;
}

.login-text{
text-align:center;
margin-top:15px;
font-size:14px;
}

.login-text a{
color:#ff6600;
text-decoration:none;
font-weight:600;
}

/* Wishlist Page */

.wishlist-page{
width:90%;
margin:auto;
padding:50px 0;
}

.wishlist-heading{
font-size:28px;
margin-bottom:30px;
}

/* Grid layout */

.wishlist-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* Card */

.wishlist-card{
background:#fff;
border:1px solid #eee;
border-radius:6px;
overflow:hidden;
transition:0.3s;
}

.wishlist-card:hover{
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.wishlist-card img{
width:100%;
height:220px;
object-fit:cover;
}

/* Info */

.wishlist-info{
padding:15px;
}

.wishlist-info h3{
font-size:18px;
margin-bottom:8px;
}

.price{
font-weight:600;
margin-bottom:12px;
}

/* Buttons */

.wishlist-actions{
display:flex;
justify-content:space-between;
align-items:center;
}

.cart-btn{
background:#ff6600;
color:white;
padding:8px 14px;
border-radius:4px;
text-decoration:none;
font-size:14px;
}

.cart-btn:hover{
background:#ff6600;
}

.remove-btn{
color:#ff6600;
text-decoration:none;
font-size:14px;
}

/* Responsive */

@media(max-width:1000px){
.wishlist-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.wishlist-grid{
grid-template-columns:1fr;
}
}

body{
background:#ffffff;
color:#000000;
}

.wishlist-card{
background:#ffffff;
color:#000000;
}

.wishlist-info h3{
color:#000;
}

.price{
color:#000;
}


/* MY ORDERS PAGE */

.orders-page{
width:90%;
margin:auto;
padding:50px 0;
}

.orders-heading{
font-size:28px;
margin-bottom:30px;
}

/* Order Card */

.order-card{
display:flex;
align-items:center;
border:1px solid #eee;
border-radius:6px;
padding:15px;
margin-bottom:15px;
background:#fff;
transition:0.3s;
}

.order-card:hover{
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.order-image{
width:80px;
height:80px;
object-fit:cover;
border-radius:4px;
}

.order-details{
flex:1;
margin-left:15px;
}

.order-details h3{
margin-bottom:5px;
font-size:18px;
}

.order-price{
font-weight:600;
margin-bottom:5px;
}

/* Status */

.order-status{
font-size:14px;
}

.delivered{
color:green;
}

.shipped{
color:orange;
}

.processing{
color:#555;
}

/* Arrow */

.order-arrow{
font-size:26px;
color:#999;
}

/* Responsive */

@media(max-width:768px){

.order-card{
flex-direction:row;
gap:10px;
}

.order-details h3{
font-size:16px;
}

}

/* ACCOUNT PAGE */

.account-page{
margin-top:40px;
}

.account-sidebar{
background:#fff;
padding:20px;
border:1px solid #eee;
border-radius:6px;
}

.account-sidebar ul{
list-style:none;
padding:0;
}

.account-sidebar ul li{
margin-bottom:10px;
}

.account-sidebar ul li a{
text-decoration:none;
color:#333;
display:block;
padding:10px;
border-radius:4px;
}

.account-sidebar ul li a:hover{
background:#ff6a00;
color:white;
}

.account-card{
background:#fff;
padding:20px;
border:1px solid #eee;
border-radius:6px;
margin-bottom:20px;
}

.account-card a{
color:#ff6a00;
text-decoration:none;
}

.save-btn{
background:#ff6a00;
color:white;
border:none;
padding:10px 20px;
margin-top:10px;
border-radius:4px;
}