/* ===============================
   LAJSNI PRICE BAR – FINAL (CLEAN)
   =============================== */

.lpbar{
  max-width:1100px;
  margin:20px auto;
  padding:12px;

  background:
    radial-gradient(900px 140px at 10% 0%, rgba(34,197,94,.25), transparent 60%),
    radial-gradient(700px 140px at 90% 20%, rgba(14,165,164,.20), transparent 55%),
    linear-gradient(180deg,#0a1020,#070b14);

  border:1px solid rgba(148,163,184,.18);
  border-radius:16px;
  box-sizing:border-box;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* layout */
.lpbar__inner{
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:space-between;
  flex-wrap:nowrap;
}

.lpbar__title{
  color:#e2e8f0;
  font-weight:900;
  font-size:16px;
  white-space:nowrap;
}

/* ===== SEARCH: input + price ===== */
.lpbar__search{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:420px;
}

.lpbar__inputwrap{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;

  background:rgba(15,23,42,.7);
  border:1px solid rgba(148,163,184,.22);
  border-radius:14px;
}

.lpbar__icon{opacity:.9;}

.lpbar__input{
  width:100%;
  background:transparent;
  border:none;
  outline:none;
  color:#e2e8f0;
  font-weight:700;
  font-size:14px;
}
.lpbar__input::placeholder{
  color:rgba(148,163,184,.75);
}

/* output next to input */
.lpbar__out{
  flex:0 0 auto;
  white-space:nowrap;
  color:rgba(148,163,184,.95);
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.18);
  background:rgba(15,23,42,.35);
}

/* ===== RAFT PRICE TAG ===== */
.lp-price-tag{
  display:inline-block;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.25);
  background:rgba(255,255,255,.07);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
  transform:rotate(-3deg);
  color:#e2e8f0;
}
.lp-price-tag__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.6px;
  opacity:.95;
  margin-bottom:2px;
}
.lp-price-tag__value{
  font-size:34px;
  font-weight:1000;
  line-height:1.05;
}

/* ===== CTA RIGHT ===== */
.lpbar__cta{
  flex:0 0 auto;
  display:flex;
  flex-direction:column;   /* text above buttons */
  align-items:flex-end;
  gap:8px;
  white-space:nowrap;
}

.lpbar__cta-text{
  font-size:12px;
  font-weight:900;
  color:rgba(226,232,240,.85);
}

.lpbar__cta-buttons{
  display:flex;
  gap:8px;
}

/* buttons */
.lpbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 12px;

  border-radius:10px;
  border:1px solid rgba(148,163,184,.25);
  background:rgba(15,23,42,.55);
  color:#e2e8f0;

  font-size:12px;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.2px;

  transition: background .15s ease, transform .12s ease, border-color .15s ease, filter .15s ease;
}

.lpbtn:hover{
  transform:translateY(-1px);
  filter:brightness(1.1);
}

.lpbtn--viber:hover{ background:rgba(167,139,250,.18); border-color:rgba(167,139,250,.65); }
.lpbtn--wa:hover{ background:rgba(34,197,94,.18); border-color:rgba(34,197,94,.65); }
.lpbtn--ms:hover{ background:rgba(96,165,250,.18); border-color:rgba(96,165,250,.65); }
.lpbtn--call:hover{ background:rgba(251,191,36,.18); border-color:rgba(251,191,36,.65); }

/* responsive */
@media(max-width:980px){
  .lpbar__inner{flex-wrap:wrap;}
  .lpbar__search{width:100%;min-width:0;}
  .lpbar__cta{
    width:100%;
    align-items:center;
    text-align:center;
  }
  .lpbar__cta-buttons{
    flex-wrap:wrap;
    justify-content:center;
  }
}
@media(max-width:560px){
  .lpbar__search{flex-wrap:wrap;}
  .lpbar__out{width:100%;text-align:center;}
}
