body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f5f6f8;
  color:#111;
}

/* ================= NAVBAR ================= */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:5px 15px;
  background:#f1f1f1;
  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 */
}

/* Container */
.container{
  max-width:1000px;
  margin:40px auto;
  padding:20px;
}

h2{
  margin-bottom:25px;
  font-weight:600;
  color:#111;
}

/* Cart Items */
#cart{
  display:flex;
  flex-direction:column;
  gap:15px;
}

/* Card */
.cart-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#ffffff;
  padding:15px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

.cart-item:hover{
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* Image */
.cart-item img{
  width:75px;
  height:75px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid #eee;
}

/* Text */
.cart-item p{
  margin:5px 0;
  color:#111;
}

/* Input */
.cart-item input{
  width:60px;
  padding:6px;
  border-radius:6px;
  border:1px solid #d1d5db;
  text-align:center;
  outline:none;
}

/* Remove Button */
.remove-btn{
  background:#ef4444;
  border:none;
  color:white;
  padding:6px 12px;
  border-radius:6px;
  cursor:pointer;
  transition:0.3s;
}

.remove-btn:hover{
  background:#dc2626;
}

/* Summary */
.summary-card{
  margin-top:40px;
  background:#ffffff;
  padding:25px;
  border-radius:16px;
  border:1px solid #e5e7eb;
}

/* Row */
.row{
  display:flex;
  justify-content:space-between;
  margin:10px 0;
  color:#374151;
}

/* Total */
.total{
  font-size:18px;
  font-weight:600;
  color:#111;
}

/* Shipping */
.shipping{
  margin-top:15px;
  color:#374151;
}

.shipping label{
  display:block;
  margin:6px 0;
  cursor:pointer;
}

/* Button */
.checkout-btn{
  margin-top:20px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#111;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.checkout-btn:hover{
  background:#333;
}

/* Empty Cart */
.empty-cart{
  text-align:center;
  padding:60px 20px;
  background:#ffffff;
  border-radius:16px;
  border:1px solid #e5e7eb;
}

.empty-cart h2{
  margin-bottom:10px;
}

.shop-btn{
  margin-top:15px;
  padding:10px 20px;
  background:#111;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.shop-btn:hover{
  background:#333;
}
.product-card {
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}
/* ================= MOBILE ================= */
    @media (max-width: 768px) {

      .menu-toggle {
        display: block;
      }

  .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;
  }
.nav-links{
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
}
