@media (max-width: 768px) {

  /* ✅ REMOVE TOP SPACE FROM HEADER */
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #ffffff;
    max-width: 100vw;
    max-height: 100vh;
  }

  body {
    padding-top: 0 !important;
  }

  main {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .navbar.fixed-top {
    position: relative !important;
  }

  * {
    box-sizing: border-box;
  }

  /* ✅ CATEGORIES */
  .categories {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 10px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .category-card {
    width: 100% !important;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .category-card img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .category-card span {
    font-size: 14px;
    margin-top: 0;
    display: block;
  }

  /* ✅ SEARCH */
  .search-section {
    padding: 60px 15px 30px !important;
  }

  .search-box {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    max-width: 100%;
  }

  .search-box input {
    flex: 1;
    border: none;
    padding: 12px;
    font-size: 16px;
    outline: none;
    text-align: left;
  }

  .search-box button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
  }

}
