.ntcr-content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}

.ntcr-sort-container {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.ntcr-sort-container label {
  font-weight: bold;
}

.ntcr-sort-select {
  padding: 16px 32px 16px 16px;
  border-radius: 50px;
  border: 2px solid #ddd;
  appearance: none;
  background: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 12px top 50%;
  /* Custom dropdown arrow */
  background-size: 12px auto;
  padding-right: 30px;
}

.ntcr-catalog-header {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 0 40px;
}

.ntcr-catalog-header h1 {
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.ntcr-catalog-header .ntcr-highlight {
  color: #d7b50a;
}

.ntcr-catalog-header p {
  font-size: clamp(1rem, 0.8rem + 1.5vw, 1.25rem);
}

.ntcr-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.ntcr-cat-card {
  width: 250px;
  border: 1px solid #ccc;
  padding: 10px 10px 36px;
  text-align: center;
  border-radius: 10px;
  transition: box-shadow 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
  /* Ensures padding is included in the width calculation */
}

.ntcr-cat-card:hover {
  box-shadow: 0 0 0 4px #d7b50a;
}

.ntcr-cat-card img {
  width: 100%;
  aspect-ratio: 230 / 250;
  /* Maintain the original portrait aspect ratio */
  object-fit: cover;
  border-radius: 10px;
}

.ntcr-cat-card p {
  color: #5c4d44;
}

.ntcr-cat-card.special-needs {
  position: relative;
  border: 2px solid #e67e22;
  /* Orange border */
  box-shadow: 0 0 5px rgba(230, 126, 34, 0.5);
}

.ntcr-cat-card.special-needs:hover {
  box-shadow: 0 0 0 5px #e67e22;
}

.ntcr-special-needs-tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: #e67e22;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .ntcr-cat-grid {
    gap: 10px;
  }

  .ntcr-cat-card {
    flex-basis: calc(50% - 20px);
  }
}