/* ============================================================
   bazaroveregaly.cz — Sticky lišta na mobilu (detail produktu)
   Párový soubor k sticky-bar.js. Zobrazuje se POUZE ≤767 px.
   Paleta: CTA #1577c2 (tmavší hover #11629f), sleva #d7263d,
   škrtnutá cena #767676 — dle color-unification.css.
   Nasazení: /user/documents/yanabel/sticky-bar.css?v=1
   ============================================================ */

.sticky-buy-bar {
  display: none;
}

@media (max-width: 767px) {
  .sticky-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990; /* pod cookie lištou, nad obsahem */
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #dadada;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(110%);
    transition: transform 0.25s ease;
  }

  .sticky-buy-bar--visible {
    transform: translateY(0);
  }

  .sticky-buy-bar__prices {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    line-height: 1.2;
    min-width: 90px;
  }

  .sticky-buy-bar__price {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
    white-space: nowrap;
  }

  .sticky-buy-bar__price-standard {
    font-size: 12px;
    color: #767676;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .sticky-buy-bar__price-save {
    font-size: 12px;
    font-weight: 700;
    color: #d7263d;
    white-space: nowrap;
  }

  .sticky-buy-bar__btn {
    flex: 1 1 auto;
    border: 0;
    border-radius: 4px;
    padding: 13px 16px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #1577c2;
    cursor: pointer;
  }

  .sticky-buy-bar__btn:active {
    background: #11629f;
  }

  .sticky-buy-bar__btn--disabled {
    background: #b5b5b5;
    cursor: default;
  }
}
