/* تجربه موبایل — bottom sheet، safe area */
@media (max-width: 768px) {
  .header-search-wrap { flex: 1; min-width: 0; }
  #searchSuggest {
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    max-height: 50vh;
    overflow-y: auto;
    z-index: 200;
  }
  .search-suggest-item {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    color: inherit;
    text-decoration: none;
  }
  .cart-drawer.is-open {
    border-radius: 16px 16px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
  body { padding-bottom: env(safe-area-inset-bottom); }
}
