/* === HOSYS Related Products (v1.0.4) === */

/* Sekce */
.hosys-rp{margin-top:32px}
.hosys-rp__heading{ margin:0 0 14px; font-weight:800; font-size:20px; line-height:1.25; color:#142f55 }

/* Grid – VŽDY 2 sloupce i na mobilech */
.hosys-rp__grid{
  display:grid; gap:18px;
  grid-template-columns: repeat( auto-fill, minmax(220px,1fr) );
}
@media (max-width: 768px){
  .hosys-rp__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
}

/* Karta */
.hosys-rp__card{
  display:block; background:#f6f7f9;
  border:1px solid #d4dbe6; border-radius:14px;
  box-shadow:0 6px 16px rgba(16,24,40,.06);
  padding:10px; cursor:pointer;
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  text-decoration:none !important;
}
.hosys-rp__card:hover{ transform:translateY(-2px); border-color:#c5cede; box-shadow:0 14px 28px rgba(16,24,40,.12) }
.hosys-rp__card:focus-visible{ outline:3px solid rgba(20,47,85,.35); outline-offset:2px; text-decoration:none !important }

/* Podtrhávání – jen název */
.hosys-rp__card *{ text-decoration:none !important }
.hosys-rp__card:hover .hosys-rp__title{ text-decoration:underline !important }

/* Out of stock – lehce odbarvit */
.hosys-rp__card.is-out{ opacity:.7 }

/* Obrázek */
.hosys-rp__thumb{ position:relative; background:transparent; border-radius:12px; width:100%; display:block; overflow:hidden; margin-bottom:10px }
.hosys-rp__thumb img{ display:block; width:100%; height:auto; object-fit:contain; border-radius:12px }

/* Sleva badge */
.hosys-rp__sale{ position:absolute; top:8px; left:8px; font-size:12px; font-weight:800; background:#d41946; color:#fff; border-radius:999px; padding:4px 8px }

/* Texty */
.hosys-rp__title{ font-size:15px; line-height:1.35; font-weight:700; margin:0 0 6px; color:#142f55; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.7em }
.hosys-rp__price{ font-size:16px; font-weight:800; margin:0 0 4px; color:#d41946 }

/* Meta – držet v 1 řádku i na větších mobilech */
.hosys-rp__meta{ font-size:13px; line-height:1.25; color:#667085; min-height:1.25em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis }
.hosys-rp__meta .sku{ color:#475467 }
.hosys-rp__meta .ok{ color:#027A48; font-weight:600 }
.hosys-rp__meta .back{ color:#B54708; font-weight:500 }
.hosys-rp__meta .out{ color:#B42318; font-weight:500 }

@media (max-width: 480px){
  .hosys-rp__title{ font-size:14px; min-height:2.6em }
  .hosys-rp__price{ font-size:15px }
  .hosys-rp__meta{ font-size:12.5px }
}

/* „Zobrazit vše“ – ghost button */
.hosys-rp__card.is-hidden{ display:none }
.hosys-rp__more{ margin-top:14px; text-align:center }
.hosys-rp__morebtn{
  appearance:none; background:transparent; border:2px solid #142f55; color:#142f55;
  font-weight:800; font-size:14px; line-height:1; padding:10px 14px; border-radius:10px; cursor:pointer;
  text-decoration:none !important; display:inline-block;
}
.hosys-rp__morebtn:hover{ background:rgb(23, 49, 84) }
.hosys-rp__morebtn:focus-visible{ outline:3px solid rgba(20,47,85,.35); outline-offset:2px }
