.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0px 2rem 2vw 2vw;
  justify-items: center;
  align-items: start;
}

/* Cap at 5 columns using a max-width */
@media (min-width: 1300px) {
  .lp-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


.shop-search-bar {
  width: 100%;
  background: #f6b26b;
  padding: 1.5rem 2vw 1rem 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-sizing: border-box;
}

.shop-search-bar form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  max-width: 1100px;
  align-items: center;
  justify-content: center;
}

.search-btn {
  background: #4b8f6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 0.5rem;
}

.search-btn:hover {
  background: #357a57;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  flex: 1 1 180px;
  margin-bottom: 1rem;
}

.input-field-selector {
  display: flex;
  flex-direction: column;
  flex: 1 1 100px;
  margin-bottom: 1rem;
  max-width: 180px;
}

.input-field-selector label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.more-btn {
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #bbb;
  padding: 0.5rem 1rem;
  font-size: 1rem;

  cursor: pointer;
  transition: background 0.2s;
  margin-left: 0.5rem;
}

.detailed-search {
  display: none;
  margin-top: 15px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

.year-inputs {
  display: contents;
}

.year-inputs .input-field-group {
  max-width: 100px;
  min-width: 5rem;
}

.load-more-container {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}

#load-more-btn {
  min-width: 200px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

#load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

