/* public/assets/css/pending-payment-banner.css */

.ls-pp-banner{
  width:100%;
  background: linear-gradient(90deg, rgba(78, 7, 102, 0.651), rgba(255,255,255,.92));
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(128,0,128,.20);
}

.ls-pp-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.ls-pp-left{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width: 0;
}

.ls-pp-pill{
  display:inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  color: #4a0450;
  background: rgb(253, 87, 87);
  border: 1px solid rgb(255, 255, 255);
}

.ls-pp-title{
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.ls-pp-total{
  font-weight: 800;
  color: rgb(228, 182, 255);
  font-size: 18px;
}

.ls-pp-sub{
  font-weight: 700;
  color: rgb(87, 248, 23);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 820px;
}

.ls-pp-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.ls-pp-btn{
  padding: 10px 14px;
  border-radius: 12px;
  background: #e11d2e;
  color: #fff !important;
  font-weight: 900;
  text-decoration:none;
  box-shadow: 0 14px 35px rgba(225,29,46,.20);
  white-space:nowrap;
}

.ls-pp-btn:hover{ filter: brightness(.98); }

.ls-pp-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0,0,0,.55);
}

.ls-pp-close:hover{ background: rgba(255,255,255,1); }

@media (max-width: 720px){
  .ls-pp-inner{ flex-direction: column; align-items: stretch; }
  .ls-pp-actions{ width:100%; }
  .ls-pp-btn{ flex:1; text-align:center; }
  .ls-pp-sub{ white-space: normal; max-width: 100%; }
}
