/* =====================================
   LAJSNI GALLERY – FINAL
   ===================================== */

.lg{
  max-width:1100px;
  margin:20px auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

@media(max-width:820px){
  .lg{ grid-template-columns:1fr; }
}

/* Card */
.lg-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  background:#111827;
  border:1px solid rgba(148,163,184,.25);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

.lg-img{
  width:100%;
  display:block;
}

/* Model label */
.lg-model{
  position:absolute;
  left:10px;
  bottom:10px;
  padding:6px 10px;
  border-radius:12px;
  background:#1f2937;
  border:1px solid #374151;
  color:#f9fafb;
  font-weight:900;
  font-size:14px;
}

/* Price sticker */
.lg-sticker{
  position:absolute;
  right:10px;
  bottom:10px;

  padding:10px 12px;
  min-width:130px;
  border-radius:14px;

  background:#6b7280;
  border:1px solid #9ca3af;
  box-shadow:0 8px 20px rgba(0,0,0,.45);

  transform:rotate(-3deg);
  color:#ffffff;
}

/* price (top) */
.lg-sticker__value{
  font-size:30px;
  font-weight:1000;
  line-height:1.05;
}

/* label */
.lg-sticker__unit{
  font-size:12px;
  font-weight:900;
  opacity:.95;
}

/* euro */
.lg-sticker__eur{
  margin-top:2px;
  font-size:14px;
  font-weight:800;
  opacity:.95;
}

/* error */
.lg-bad{
  background:#7f1d1d !important;
  border-color:#fecaca !important;
}
