/* ==========================================
   Live Summary (Meta Preview style)
   Prefix: ls-
========================================== */

.ls-summary{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

/* wrapper list */
.ls-meta-list{
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* ključno kao u ppdl */
  border-radius: 14px;
  background-color: #f5f7fb; /* lagani “cart” feel */
}

/* single row */
.ls-meta-line{
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  margin-top: 0px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;

  white-space: normal;
  word-break: break-word;

  background: #f5f7fb;
}

/* subtle separators */
.ls-meta-line + .ls-meta-line{
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* LEFT */
.ls-meta-left{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ls-meta-label{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  opacity: 0.95;
  margin: 0;
}

.ls-meta-value{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ls-meta-value-line{
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.9;
}

/* RIGHT */
.ls-meta-right{
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  white-space: nowrap;
}

.ls-meta-price{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  opacity: 0.95;
}

/* if there is NO price, keep alignment clean */
.ls-meta-line.ls-meta-no-price{
  justify-content: flex-start;
}

/* ====== UKUPNO (prvi slot) ====== */
.ls-meta-line.ls-meta-total{
  background: #245069;                 /* posebna boja */
}

.ls-meta-line.ls-meta-total .ls-meta-label{
  font-size: 22px;                     /* veće */
  font-weight: 800;
  color: white; 
  font-family: "Open Sans";
}

.ls-meta-line.ls-meta-total .ls-meta-price{
  font-size: 22px;                     /* veće */
  font-weight: 800;
  color: white; 
   font-family: "Open Sans";
}

/* mobile tighter */
@media (max-width: 600px){
  .ls-meta-line{
    padding: 12px 14px;
    gap: 12px;
  }

  .ls-meta-label,
  .ls-meta-value-line,
  .ls-meta-price{
    font-size: 13.5px;
  }

  .ls-meta-line.ls-meta-total .ls-meta-label,
  .ls-meta-line.ls-meta-total .ls-meta-price{
    font-size: 15px;                   /* i dalje malo veće na mobitelu */
  }
}
