/* ne-ux-fixes v4 (2026-06-12) - UX opravy z auditu. v4: odstranen blok [E] (steppery) - kolidoval s absolutnim pozicovanim sablony. Blok [F] (mobilni hledani) odstranen uz ve v3. */

/* [A] Quick-view oko: na mobilu skryt (prekryvalo sticky hlavicku a badge) */
@media (max-width: 991px) {
  .quick-view-btn { display: none !important; }
}

/* [B] Detail produktu na mobilu: cena + Do kosiku hned pod nazev a badge, popis az pod nakupni blok */
@media (max-width: 991px) {
  .p-detail .p-info-wrapper > * { order: 2 !important; }
  .p-detail .p-info-wrapper > .p-detail-inner-header { order: 0 !important; }
  .p-detail .p-info-wrapper > .p-detail-info { order: 1 !important; }
  .p-detail .p-info-wrapper > .price-line { order: 3 !important; }
  .p-detail .p-info-wrapper > .detail-parameters { order: 4 !important; }
  .p-detail .p-info-wrapper > .p-short-description { order: 5 !important; }
  .p-detail .p-info-wrapper > p { order: 6 !important; }
  .p-detail .p-info-wrapper > .social-buttons-wrapper { order: 7 !important; }
}

/* [C] Sticky Do kosiku lista na mobilu (element vytvari ne-ux-fixes JS) */
#ne-satc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
  display: none; align-items: center; gap: 10px; padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: #fff; box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
}
#ne-satc.ne-satc-visible { display: flex; }
#ne-satc .ne-satc-price { font-weight: 700; font-size: 18px; white-space: nowrap; }
#ne-satc button {
  flex: 1; margin: 0; background: #81b90e !important; color: #fff !important;
  border: 0; border-radius: 8px; padding: 12px 16px; font-weight: 700; font-size: 15px;
}
@media (min-width: 992px) { #ne-satc { display: none !important; } }

/* [D] Stranky/paginace na mobilu nesmi plavat pres produkty */
@media (max-width: 991px) {
  .listingControls { position: static !important; box-shadow: none !important; }
}
