@media (max-width: 900px) {
  .category-products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 0.3rem 0.3rem !important;
    box-sizing: border-box !important;
  }

  .category-products .product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 220px !important;
    box-sizing: border-box !important;
    padding: 0.5rem 0.3rem !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    background: var(--creamy-white, #fff) !important;
    border: 2px solid #ececec !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .category-products .product-card.premium {
    border: 2px solid #FFD700 !important;
    background: #fffbe6 !important;
  }

  .category-products .product-card.normal {
    border: 2px solid #3b82f6 !important;
    background: #e6f0ff !important;
  }

  .category-products .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 70%;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .no-products-message {
    align-items: center;
    text-align: center;
    height: 58.388dvh;
    margin-top: 20dvh;
  }


  .category-products .product-image-wrapper img {
    width: 100%;
    height: 146px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: #f8f8f8;
    display: block;
  }

  .category-products .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #FFD700;
    border-radius: 6px;
    border: 1px solid #FFD700;
    color: #222;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 0.12rem 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    pointer-events: none;
  }

  .category-products .product-card h3 {
    font-size: 1rem;
    margin: 0.1rem 0 0 0;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
    min-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .category-products .product-card p {
    font-size: 0.85rem;
    margin: 0.05rem 0 0.2rem 0;
    text-align: center;
    color: #888;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .category-heading {
    position: sticky;
    top: 0;
    background: var(--creamy-white);
    text-align: center;
    margin: 0;
    padding: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
    text-transform: capitalize;
  }

  .category-products {
    margin-top: 0.5rem;
    /* Do NOT set height or overflow here */
  }

}