.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  /*background: #007bff;*/
  color: black;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  margin: 0;
  font-size: 20px;
}

.close-btn {
  background: none;
  border: none;
  color: black;
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.cart-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  background: #fafafa;
}

.cart-item strong {
  font-size: 16px;
  color: #333;
}

.cart-item span {
  display: block;
  font-size: 14px;
  color: #666;
}

.cart-footer {
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}

.cart-item-detail {
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
}

.total-label {
  color: #555;
}

.total-amount {
  color: #6b0c5f;
}

.fly-image {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 10px;
      z-index: 2000;
      pointer-events: none;
      transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    }
    
#btn_payment{
            font-size: 13px;
            color: #fff;
            border: 1px solid #a60b6a;
            padding: 12px 25px;
            display: inline-block;
            font-weight: 500;
            transition: all .3s;
            background: #a60b6a;
            text-align: center;
        }
