/* Tighten spacing between product cards */
#search-results-grid {
    row-gap: 16px !important;
    column-gap: 16px !important;
  }
  
  #search-results-grid .card {
    margin: 0 !important;
  }
  
  #search-results-grid .card-body {
    padding: 8px !important;
  }
  
  #search-results-grid .col-product {
    padding: 0 !important;
    flex: 0 0 12.5%; /* 8 items per row on large screens */
    max-width: 12.5%;
  }
  
  @media (max-width: 992px) {
    #search-results-grid .col-product {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  
  @media (max-width: 576px) {
    #search-results-grid .col-product {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  .section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-heading .heading-title {
    font-size: 140px;
    font-weight: 800;
    color: #0a1a2a;
    margin-bottom: .25rem;
}
.section-heading .heading-sub {
    color: #555;
    font-size: 14px;
}

/* Reduce large vertical gaps between sections */
.flat-spacing {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  
  /* Avoid double spacing when sections are back-to-back */
  .flat-spacing + .flat-spacing {
    margin-top: 0 !important;
  }
  
  /* Tighter spacing inside headings */
  .section-heading {
    margin-bottom: 20px !important;
  }
  
  .section-heading .heading-title {
    margin-bottom: 4px !important;
  }
  