
/* Smartway Textiles — Mobile Navigation Overlay
   Uses the existing sw-global-header / sw-global-mobile-menu markup.
   No separate top bar is rendered to avoid duplicate logos or headers. */

@media (max-width: 767px) {
  body { overflow-x: hidden; }

  .sw-global-header .container {
    min-height: 68px;
  }
  .sw-global-header img {
    max-height: 42px;
    width: auto;
  }
  .sw-global-footer .lg\:-mt-32,
  .sw-global-footer [class*="-mt-32"] {
    margin-top: 0 !important;
  }

  /* Gallery: swipeable horizontal carousel per active tab */
  .sw-gallery-grid {
    columns: unset;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -1rem;
    padding: 0.25rem 1rem 0.75rem;
  }
  .sw-gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .sw-gallery-item {
    flex: 0 0 82%;
    scroll-snap-align: center;
    margin: 0;
    height: 260px;
  }
  .sw-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
