/* Mobile quick add-to-cart bar for Shoptet product detail pages; keeps Smartsupp clear. */
#ba-mobile-cart {
  display: none;
}

@media (max-width: 767px) {
  #ba-mobile-cart {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #e5e5e8;
    box-shadow: 0 -10px 28px rgba(18, 18, 28, 0.16);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 110%, 0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  #ba-mobile-cart.ba-mobile-cart--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  /* Keep the Smartsupp launcher above the 69 px cart bar with its original 24 px gap. */
  body.ba-mobile-cart-is-visible
    #smartsupp-widget-container
    > [data-testid="widgetButtonFrame"] {
    bottom: calc(93px + env(safe-area-inset-bottom)) !important;
  }

  #ba-mobile-cart .ba-mobile-cart__summary {
    min-width: 76px;
    overflow: hidden;
  }

  #ba-mobile-cart .ba-mobile-cart__price {
    display: block;
    overflow: hidden;
    color: #17171b;
    font-family: var(--template-headings-font, Syne, sans-serif);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #ba-mobile-cart .ba-mobile-cart__availability {
    display: block;
    overflow: hidden;
    margin-top: 3px;
    color: #17821f;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #ba-mobile-cart .ba-mobile-cart__availability:empty {
    display: none;
  }

  #ba-mobile-cart .ba-mobile-cart__button {
    width: 100%;
    min-height: 48px;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(45deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.24);
    color: #17130a;
    cursor: pointer;
    font-family: var(--template-headings-font, Syne, sans-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  #ba-mobile-cart .ba-mobile-cart__button:disabled {
    box-shadow: none;
    cursor: not-allowed;
    filter: grayscale(0.35);
    opacity: 0.58;
  }
}

@media (max-width: 340px) {
  #ba-mobile-cart {
    gap: 8px;
    padding-right: 9px;
    padding-left: 9px;
  }

  #ba-mobile-cart .ba-mobile-cart__price {
    font-size: 16px;
  }

  #ba-mobile-cart .ba-mobile-cart__button {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ba-mobile-cart {
    transition: none;
  }
}
