.ktc-mobile-cart[hidden], .ktc-mobile-cart-spacer[hidden] { display: none !important; }
.ktc-mobile-cart { display: none; }
@media (max-width: 760px) {
  .ktc-mobile-cart {
    position: fixed; inset: auto 0 0; z-index: 9999;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    box-sizing: border-box; width: 100%;
    padding: 12px max(12px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    background: #fff; border-top: 1px solid #e4e7eb; box-shadow: 0 -4px 20px rgba(0,0,0,.10);
    font-family: inherit; color: #20252b;
  }
  .ktc-mobile-cart-price { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
  .ktc-mobile-cart-price span { font-size: 11px; line-height: 1.3; }
  .ktc-mobile-cart-price strong { font-size: 20px; line-height: 1.2; overflow-wrap: anywhere; }
  .ktc-mobile-cart button {
    flex: 0 0 auto; min-height: 44px; margin: 0; padding: 12px 14px;
    border: 0; border-radius: 8px; background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff; font: inherit; font-size: 13px; font-weight: 700; line-height: 1.3; cursor: pointer;
  }
  .ktc-mobile-cart button:disabled { background: #d1d5db; cursor: default; }
  .ktc-mobile-cart button:focus-visible { outline: 2px solid #2563eb; outline-offset: 3px; }
}