@media (max-width: 980px) {
  .hero-grid,
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .stats-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card {
    min-height: 320px;
  }

  .detail-media {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 11px;
    right: 11px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    border-radius: 12px;
  }

  .hero-section {
    padding: 44px 0 36px;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .stats-grid,
  .products-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    border-radius: 18px;
    align-items: stretch;
  }

  .search-box input {
    min-width: 0;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-tab {
    white-space: nowrap;
  }

  .catalogue-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-btn {
    display: none;
  }

  .product-carousel .product-card {
    flex-basis: 78%;
  }

  .wholesale-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .detail-content {
    padding: 26px;
  }
}
