.anxinyi-products {
  max-width: 1150px;
  margin: 0 auto;
  padding: 12px 16px 32px;
  background: #fff;
}

.anxinyi-products__header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.anxinyi-products__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
  color: #1d2939;
}

.anxinyi-products__search-form {
  display: flex;
  gap: 0;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
}

.anxinyi-products__search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 68px;
  padding: 0 24px;
  border: 1px solid #d0d5dd;
  border-right: 0;
  border-radius: 40px 0 0 40px;
  font-size: 20px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.anxinyi-products__search-button,
.anxinyi-products__page-button {
  border: 0;
  background: #063374;
  color: #fff;
  cursor: pointer;
}
.anxinyi-products__search-button:hover,.anxinyi-products__page-button:hover,.anxinyi-products__quote-button:hover{
  background-color: #002560;
}
.anxinyi-products__search-button {
  flex: 0 0 160px;
  height: 68px;
  border-radius: 0px!important;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.08);
}

.anxinyi-products__page-button {
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}

.anxinyi-products__page-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.anxinyi-products__status {
  min-height: 24px;
  margin-bottom: 18px;
  color: #475467;
  text-align: center;
}

.anxinyi-products__meta-panels {
  display: grid;
  gap: 14px;
}

.anxinyi-products__meta-panel {
  display: grid;
  gap: 10px;
}

.anxinyi-products__meta-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.anxinyi-products__meta-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #475467;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.anxinyi-products__meta-clear {
  border: 0;
  background: transparent;
  color: #98a2b3;
  font-size: 13px;
  cursor: pointer;
}

.anxinyi-products__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anxinyi-products__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #eaecf0;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.anxinyi-products__chip:hover {
  border-color: #f04438;
  color: #b42318;
  background: #fff5f4;
}

.anxinyi-products__chip-label {
  font-size: 14px;
  font-weight: 500;
}

.anxinyi-products__chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.anxinyi-products__chips-empty {
  color: #98a2b3;
  font-size: 14px;
}

.anxinyi-products__status.is-error {
  color: #b42318;
}

.anxinyi-products__table-wrap {
  overflow-x: auto;
  border: 1px solid #eaecf0;

  background: #fff;
}

.anxinyi-products__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.anxinyi-products__table thead th {
  padding: 18px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #eaecf0;
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.anxinyi-products__table tbody tr {
  border-bottom: 1px solid #eaecf0;
}

.anxinyi-products__table tbody tr:last-child {
  border-bottom: 0;
}

.anxinyi-products__cell {
  padding: 22px 20px;
  vertical-align: middle;
}

.anxinyi-products__cell--product {
  width: 42%;
}

.anxinyi-products__cell--stock,
.anxinyi-products__cell--action {
  white-space: nowrap;
}

.anxinyi-products__product {
  display: flex;
  align-items: center;
  gap: 16px;
}

.anxinyi-products__product-badge {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd5d5, #fca5a5);
}

.anxinyi-products__product-copy p {
  margin: 0;
}

.anxinyi-products__product-title {
  font-size: 18px;
  font-weight: 700;
  color: #101828;
}

.anxinyi-products__product-meta {
  margin-top: 6px !important;
  font-size: 14px;
  color: #667085;
}

.anxinyi-products__detail-block {
  display: grid;
  gap: 8px;
}

.anxinyi-products__detail-block p,
.anxinyi-products__stock {
  margin: 0;
  font-size: 14px;
  color: #475467;
}

.anxinyi-products__detail-block em,
.anxinyi-products__stock em {
  font-style: normal;
  color: #667085;
  margin-right: 6px;
}

.anxinyi-products__detail-block span,
.anxinyi-products__stock span {
  color: #101828;
  font-weight: 600;
}

.anxinyi-products__action-wrap {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.anxinyi-products__price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #063374;
}

.anxinyi-products__quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #063374;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.anxinyi-products__empty {
  padding: 24px 0;
  color: #667085;
  text-align: center;
}

.anxinyi-products__pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.anxinyi-products__page-info {
  color: #344054;
}

@media (max-width: 640px) {
  .anxinyi-products {
    padding: 8px 8px 20px;
  }

  .anxinyi-products__title {
    font-size: 26px;
  }

  .anxinyi-products__search-form {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .anxinyi-products__meta-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .anxinyi-products__search-input {
    min-width: 100%;
    border-right: 1px solid #d0d5dd;
    border-radius: 0px!important;
    height: 56px;
    font-size: 16px;
  }

  .anxinyi-products__search-button {
    width: 100%;
    flex-basis: auto;
    height: 52px;
    border-radius: 999px;
    font-size: 16px;
  }
}
