.pg-search-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  padding: 18px;
  margin-top: 16px;
}

.pg-tabs {
  display: flex;
  gap: 18px;
  padding: 0 6px 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.pg-tab {
  background: transparent;
  border: 0;
  font-weight: 800;
  padding: 10px 6px;
  cursor: pointer;
  opacity: .85;
  border-bottom: 2px solid transparent;
}

.pg-tab.is-active {
  opacity: 1;
  border-bottom-color: #d11d2a;
}

.pg-main {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pg-input {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 12px 14px;
}

.pg-input input {
  width: 100%;
  border: 0;
  outline: none;
  font-size: 14px;
}

.pg-btn-search {
  background: #d11d2a;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

.pg-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  align-items: flex-end;
}

.pg-chip {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
}

.pg-chip label {
  font-size: 11px;
  font-weight: 900;
  opacity: .8;
  margin-left: 6px;
}

.pg-chip select,
.pg-chip input {
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
  padding: 0 6px 2px;
  min-width: 160px;
}

.pg-btn-reset {
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

.pg-results-info {
  margin-top: 12px;
  font-size: 13px;
  opacity: .9;
}

@media (max-width: 768px) {
  .pg-main {
    flex-direction: column;
    align-items: stretch;
  }
  .pg-btn-search {
    justify-content: center;
  }
  .pg-chip select,
  .pg-chip input {
    min-width: 220px;
  }
}
