/* ====== MAIN CART CONTAINER ====== */
#cartContainer {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 380px;
 margin-top: -10px; /* or slightly less if your navbar is shorter */
border:2px solid #037465;
  position: relative;
  z-index: 10; /* It will now appear above */


}



/* ====== CART HEADER ====== */
#cartContainer h3 {
  color: #037465;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

/* ====== CART ITEMS ====== */
#cartContainer .card {
  background: #f9f9f9;
 box-shadow: 0 0 25px #037465, 0 5px 15px rgba(0,0,0,0.3);
  animation: glow 2.5s infinite alternate;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
 
  transition: transform 0.25s ease;
}

#cartContainer .card:hover {
  transform: translateY(-3px);
}

/* ====== ITEM TITLE ====== */
#cartContainer .card h5 {
  color: #037465;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

/* ====== ITEM DETAILS ====== */
#cartContainer .card p {
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* ====== QUANTITY CONTROL ====== */
#cartContainer .btns {
  background: #037465;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

#cartContainer .btns:hover {
  background: #046c5c;
  transform: scale(1.08);
}

#cartContainer .qty-input,
#cartContainer .acc-qty-input {
  width: 45px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px;
  margin: 0 6px;
  font-weight: 600;
}

/* ====== SUBTOTAL ====== */
#cartContainer .item-subtotal,
#cartContainer .acc-subtotal {
  color: #037465;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ====== TOTAL ====== */
#cartTotal {
  color: #037465;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
  margin-top: 15px;
}

/* ====== PLACE ORDER BUTTON ====== */
#placeOrderBtn {
  display: block;
  width: 100%;
  background: #037465;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

#placeOrderBtn:hover {
  background: #04997e;
  transform: translateY(-2px);
}

/* ====== PAYMENT OPTIONS ====== */
#paymentOptions {
  margin-top: 15px;
  text-align: center;
}

#paymentOptions button {
  background: transparent;
  color: #037465;
  border: 1px solid #037465;
  border-radius: 25px;
  padding: 6px 14px;
  font-size: 0.9rem;
  margin: 5px;
  transition: all 0.3s ease;
}

#paymentOptions button:hover {
  background: #037465;
  color: white;
}
