/* GOOGLE FONT FEEL */
body{
  margin:0;
  font-family:sans-serif;
  background:linear-gradient(135deg,#fdfbfb,#ebedee);
}
/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:5px 15px;
  background:#F2F1ED;
  position:sticky;
  top:0;
  z-index:10000;
}

.logo{
  font-weight:600;
  font-size:20px;
  color:#d4a24c;  /* Gentle Vibe = Black */
}

.logo span{
  color:#000;   /* BD = Gold */
  font-size:13px; /* BD choto */
  margin-left:0px;
}
.logo span{
  vertical-align:top;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:15px;
}

.nav-links{
  display:flex;
  gap:20px;
}

.nav-links a{
  text-decoration:none;
  color:black;
  font-size:14px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#d4a24c;
}

.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-img{
  width:30px;
  height:30px;
  border-radius:50%;   /* 🔥 circle */
  object-fit:cover;
  border:2px solid #d4a24c; /* optional premium border */
}

/* WRAPPER */
.wrapper{
  padding:40px 20px;
}

/* MAIN CONTAINER */
.checkout-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:25px;
}

/* LEFT & RIGHT */
.left, .right{
  flex:1;
}

/* CARD STYLE */
#cartItems, .shipping-box, .summary, .customer-form{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(10px);
  border-radius:15px;
  padding:20px;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
h2{
  text-align:center;
  margin-bottom:30px;
  font-weight:600;
}

/* CART ITEM */
.cart-item{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
}

.cart-item img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:10px;
}

/* DETAILS */
.details h4{
  margin:0;
  font-size:16px;
}

.details p{
  margin:3px 0;
  color:#555;
  font-size:14px;
}

/* QTY */
.qty{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty button{
  border:none;
  background:#111;
  color:#fff;
  width:30px;
  height:30px;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.qty button:hover{
  background:#ff4d6d;
}

/* REMOVE */
.remove{
  margin-left:auto;
  color:red;
  font-weight:bold;
  cursor:pointer;
}

/* SHIPPING */
.shipping-box select{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #ddd;
}

/* SUMMARY */
.summary p{
  font-size:18px;
  font-weight:600;
}

.summary span{
  color:#ff4d6d;
}

/* FORM */
.customer-form input{
  width:95%;
  padding:12px;
  margin:8px 0;
  border-radius:8px;
  border:1px solid #ddd;
  outline:none;
  transition:0.3s;
}
.payment-box{
  margin:20px 0;
  position:relative;
}

.select-box{
  background:#f5f5f5;
  padding:12px;
  border-radius:8px;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  border:1px solid #ccc;
}

.options{
  display:none;
  position:absolute;
  width:100%;
  background:white;
  border:1px solid #ccc;
  border-radius:8px;
  margin-top:5px;
  z-index:1000;
}

.option{
  padding:10px;
  cursor:pointer;
}

.option:hover{
  background:#eee;
}
.customer-form input:focus{
  border-color:#ff4d6d;
}

/* BUTTON */
.customer-form button{
  width:100%;
  padding:14px;
  border:none;
  background:linear-gradient(135deg,#ff4d6d,#ff758c);
  color:white;
  font-size:16px;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.customer-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(255,77,109,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){
  .checkout-container{
    flex-direction:column;
  }
}
/* ================= MOBILE ================= */
@media(max-width:768px){

  .menu-toggle{
    display:block;   /* 🔥 eta na thakle show hobe na */
    font-size:28px;
    cursor:pointer;
  }
  .nav-links{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:white;
    padding:20px;
    gap:15px;

    /* 🔥 animation */
    transform:translateY(-100%);
    opacity:0;
    transition:0.4s ease;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
  }
