@media (max-width: 900px) {
  .category-heading {
    margin-left: 0;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    display: block;
    text-transform: capitalize;
    color: var(--brand-blue-dark);
  }

  .products-section {
    padding: 0.5rem 0.7rem;

  }

  .no-products-message {
    align-items: center;
    text-align: center;

    height: 49.388dvh;
    margin-top: 20dvh;
  }

  .products-grid,
  .category-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1rem 0;
    width: 100%;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 220px;
    padding: 0.5rem 0.3rem;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    background: var(--creamy-white, #fff);
    border: 1px solid #ececec;
    overflow: hidden;
    position: relative;
  }

  .product-card > h4{
    display: none;
  }

  .product-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    /* or your preferred image box height */
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
  }

  .product-card img {
    width: 100%;
    min-height: 18dvh;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  }

  .product-card video {
    min-height: 18dvh;
    border-radius: 8px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
  }

  .product-card h3 {
    font-size: 0.85rem;
    margin: 0.1rem 0 0 0;
    text-align: center;
    font-weight: 600;
    color: #222;
    display: block;
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card p {
    font-size: 0.75rem;
    margin: 0.05rem 0 0.2rem 0;
    text-align: center;
    color: #555;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: #fffbe6;
    border-radius: 6px;
    border: 1px solid #FFD700;
    color: #bfa100;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.12rem 0.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    pointer-events: none;
  }

  .product-card.normal {
    border: 2px solid #007BFF;
    background: #e6f0ff;
  }

  .product-card.premium {
    border: 2px solid #FFD700;
    background: #fffbe6;
  }

  .product-card.premium img {
    border: 1px solid var(--gold-accent, #FFD700);
    padding: 1px;
  }

  .product-card.premium .badge {
    background: #FFD700;
    color: #222;
  }
  
  .section-title {
    margin-top: 80px;
    font-size: 1.4rem;
    text-align: center;
    color: var(--royal-blue, #003366);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
  }
}