 /* Sticky panel styl */
  .rf-sticky-atc {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -6px 20px rgba(0,0,0,.08);
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 10px 12px;
    display: none;
    gap: 10px;
    align-items: center;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .rf-sticky-atc__media {
    flex: 0 0 auto;
    width: 48px; height: 48px;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f6f6;
  }
  .rf-sticky-atc__media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .rf-sticky-atc__price {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
    min-width: 0;
  }
  .rf-price-before {
    text-decoration: line-through;
    color: #000;
    font-size: 1.05rem;
  }
  .rf-price-after {
    color: #2e7d32;
    font-weight: 700;
  }
  .rf-price-before:empty { display: none; }
  .rf-sticky-atc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38%;
    min-height: 44px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: #D6477E;
    color: #fff;
  }
  .rf-sticky-atc__btn:active { transform: translateY(1px); }
  .rf-sticky-atc.is-compact .rf-sticky-atc__media,
  .rf-sticky-atc.is-compact .rf-sticky-atc__price { display: none; }
  .rf-sticky-atc.is-compact .rf-sticky-atc__btn { width: 100%; }
  @media (min-width:769px){ .rf-sticky-atc{ display:none!important; } }

  /* Chat posun nad sticky */
  @media (max-width:768px){
    #smartsupp-widget-container [data-testid="widgetButtonFrame"]{
      position: fixed !important;
      right: 16px !important;
      bottom: calc(var(--rf-sticky-h, 84px) + 16px) !important;
      z-index: 2147483647 !important;
    }
  }

