:root {
  --br-bg: #ffffff;
  --br-surface: #ffffff;
  --br-surface-alt: #e9f6fd;
  --br-text: #111827;
  --br-text-muted: #6b7280;
  --br-border: #dde5ee;
  --br-brand: #4caed3;
  --br-brand-strong: #0684f8;
  --br-dark: #1e1e1e;
  --br-success: #1a9c64;
  --br-warn: #e85d4c;
  --br-gold: #f5a623;
  --br-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--br-text);
  background: var(--br-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

body.br-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.br-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.br-shell,
.br-footer-inner,
.br-newsletter-inner {
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
}

.br-header {
  background: var(--br-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.br-header-inner {
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.br-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

.br-brand img {
  width: 56px;
  height: auto;
  display: block;
}

.br-brand .br-brand-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.br-brand-word {
  color: rgba(255, 255, 255, 0.96);
}

.br-brand-word-highlight {
  color: #52b7ff;
}

.br-footer-brand .br-brand-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.br-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.br-header-actions {
  display: none;
}

.br-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: transparent;
  color: #fff;
}

.br-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.br-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(350px, 100%);
  min-height: 42px;
  padding: 3px 3px 3px 14px;
  gap: 7px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.br-header .br-search-form {
  flex: 0 1 350px;
}

.br-search-form::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 2px solid #8a95a4;
  border-radius: 999px;
  opacity: 0.8;
}

.br-search-form::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 24px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #8a95a4;
  transform: rotate(45deg);
  opacity: 0.8;
}

.br-search-form:focus-within {
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.14);
}

.br-hero .br-search-form {
  width: min(560px, calc(100% - 12px));
  min-height: 46px;
  margin: auto;
  padding: 4px 4px 4px 17px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.16);
}

.br-hero .br-search-form::before {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}

.br-hero .br-search-form::after {
  left: 32px;
  top: 26px;
}

.br-hero .br-search-form input {
  height: 34px;
  font-size: 0.96rem;
}

.br-hero .br-search-form button {
  flex-basis: 34px;
  width: 34px;
  height: 34px;
  font-size: 0.92rem;
}
.br-search-form input {
  flex: 1;
  min-width: 0;
  border: none;
  height: 32px;
  padding: 0 10px 0 2px;
  background: transparent;
  outline: none;
  color: var(--br-text);
  font-size: 0.98rem;
  font-weight: 700;
}

.br-search-form input::placeholder {
  color: #94a3b8;
  font-weight: 600;
}

.br-search-form button {
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.br-search-form button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.3);
}

.br-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.93rem;
  font-weight: 700;
}

.br-nav-home {
  display: none;
}

.br-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.br-nav a:hover {
  color: #fff;
  opacity: 1;
}

.br-disclosure {
  background: #262626;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
}

.br-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #d8dce4;
}

.br-hero-img {
  width: 100%;
  height: clamp(420px, 43vw, 540px);
  object-fit: cover;
  display: block;
}

.br-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
  color: #fff;
}

.br-hero-copy {
  width: min(760px, 100%);
}

.br-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5.7vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.br-hero-copy p {
  margin: 0 auto 32px;
  width: min(620px, 100%);
  font-size: 1.05rem;
  opacity: 0.94;
  line-height: 1.7;
}

.br-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.br-hero-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.br-main,
.br-content-main,
.br-compare-main,
.br-categories-main {
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
}

.br-no-results {
  text-align: center;
  padding: 60px 20px;
}

.br-no-results-sorry {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--br-brand, #4caed3);
  margin: 0 0 6px;
}

.br-no-results-text {
  font-size: 1.1rem;
  color: #5a6577;
  margin: 0;
}

.br-home-section {
  margin-bottom: 36px;
}

.br-section-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.br-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.br-popular-card {
  position: relative;
  display: block;
  min-height: 330px;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f8fb;
}

.br-popular-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}

.br-popular-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.br-trending-grid,
.br-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}

.br-trending-card,
.br-product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 14px 16px;
  min-width: 0;
  border-radius: 14px;
  background: var(--br-surface);
  border: 1px solid var(--br-border);
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.br-trending-card:hover,
.br-product-card:hover,
.br-also-card:hover,
.br-category-list .br-category-item:hover {
  transform: translateY(-2px);
  border-color: #c8d6e5;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.br-trending-card img,
.br-product-card img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.br-trending-card span,
.br-product-card span {
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #1f2937;
  text-transform: none;
}

.br-categories-panel {
  background: var(--br-surface-alt);
  border-radius: 24px;
  padding: 32px 28px 36px;
  margin-bottom: 8px;
}

.br-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px 16px;
}

.br-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.br-category-icon,
.br-category-thumb {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(12, 30, 48, 0.08);
  overflow: hidden;
}

.br-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.br-category-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--br-brand-strong);
  fill: none;
  stroke-width: 1.75;
}

.br-category-item span {
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 900;
  color: #324152;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.br-newsletter {
  margin-top: 56px;
  padding: 26px 0;
  background: linear-gradient(135deg, #0462c9, var(--br-brand-strong));
}

.br-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.br-newsletter-title {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.br-newsletter-form,
.br-inline-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.br-newsletter-form input,
.br-inline-form input {
  flex: 1 1 240px;
  min-width: 240px;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  outline: none;
}

.br-newsletter-form button,
.br-inline-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: #fff;
  color: var(--br-brand-strong);
  font-weight: 900;
}

.br-footer {
  margin-top: auto;
  padding: 64px 0 24px;
  background: var(--br-dark);
  color: #c8d0da;
}

.br-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.br-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.br-footer-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  text-align: center;
}

.br-footer-brand img {
  width: 56px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.br-footer-brand p {
  max-width: 320px;
  margin: 10px 0 0;
  color: #97a4b5;
}

.br-footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.br-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.br-footer-col li + li {
  margin-top: 8px;
}

.br-footer-col a {
  color: #b7c1cd;
}

.br-footer-bottom {
  padding-top: 20px;
  font-size: 0.78rem;
  color: #8391a3;
}

.br-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.br-page-head {
  margin-bottom: 30px;
  max-width: 880px;
}

.br-page-eyebrow,
.br-breadcrumb {
  margin: 0 0 10px;
  color: var(--br-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.br-page-title,
.br-category-page-title,
.br-compare-head h1 {
  margin: 0 0 12px;
  font-size: clamp(2.25rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #172030;
}

.br-page-intro,
.br-compare-intro {
  max-width: 860px;
  margin: 0;
  color: var(--br-text-muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.br-compare-head {
  margin-bottom: 28px;
  max-width: 860px;
}

.br-compare-head .br-page-eyebrow {
  margin-bottom: 12px;
}

.br-breadcrumb,
.br-underline-title {
  overflow-wrap: anywhere;
}

.br-category-sections {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 28px;
}

.br-letter-block {
  padding: 24px;
  border-radius: 24px;
  background: var(--br-surface);
  border: 1px solid var(--br-border);
  box-shadow: none;
}

.br-letter-title {
  margin: 0 0 16px;
  font-size: 1.4rem;
  color: var(--br-brand-strong);
}

.br-category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.br-category-list .br-category-item {
  min-height: 170px;
  justify-content: flex-start;
  padding: 20px 16px;
  border-radius: 20px;
  background: #f9fbfd;
  border: 1px solid #e8eef5;
}

.br-compare-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #7a8695;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.br-rank-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.br-rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 34px 184px minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: start;
  align-content: start;
  padding: 20px;
  border-radius: 24px;
  background: var(--br-surface);
  border: 1px solid var(--br-border);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.br-rank-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.br-rank-card.is-top,
.br-rank-card:nth-child(-n + 3) {
  border-color: rgba(245, 158, 11, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.7), rgba(255, 255, 255, 0)) 0 0 / 100% 88px no-repeat,
    var(--br-surface);
}

.br-rank-card.is-featured,
.br-rank-card:nth-child(1) {
  overflow: hidden;
  border-color: rgba(245, 158, 11, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 247, 219, 0.92), rgba(255, 255, 255, 0) 118px) 0 0 / 100% 118px no-repeat,
    var(--br-surface);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.12);
}

.br-rank-card.is-featured .br-rank-num,
.br-rank-card:nth-child(1) .br-rank-num {
  color: #a16207;
  background: #fff7db;
}

.br-rank-card.is-featured .br-rank-thumb,
.br-rank-card:nth-child(1) .br-rank-thumb {
  background: linear-gradient(180deg, #fffdf7, #f8fafc);
}

.br-rank-card.is-featured .br-rank-side,
.br-rank-card:nth-child(1) .br-rank-side {
  border-top-color: rgba(245, 158, 11, 0.2);
}

.br-rank-card.is-featured .br-check-btn,
.br-rank-card:nth-child(1) .br-check-btn {
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.24);
}

.br-rank-num {
  align-self: start;
  justify-self: start;
  padding-top: 0;
  margin-top: -6px;
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 700;
  color: #90a0b3;
}

.br-rank-badge {
  position: absolute;
  top: 8px;
  left: 50px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.br-badge-gold {
  background: var(--br-gold);
}

.br-badge-orange {
  background: var(--br-warn);
}

.br-badge-yellow {
  background: #f0c419;
  color: #3d3320;
}

.br-rank-thumb {
  display: block;
  width: 160px;
  height: 160px;
  margin-top: 20px;
  margin-inline: 0;
  margin-left: -40px;
  justify-self: start;
  align-self: center;
  padding: 0;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.br-rank-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  width: 100%;
  align-self: center;
}

.br-rank-featured-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 -2px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.br-rank-body h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.35;
  color: #142033;
}

.br-rank-card.is-featured .br-rank-body h3 {
  font-size: 1.38rem;
}

.br-rank-highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #fff6df;
  color: #9a6700;
  font-size: 0.78rem;
  line-height: 1.55;
  font-weight: 700;
}

.br-rank-body ul,
.br-prose ul {
  margin: 0;
  padding-left: 20px;
}

.br-rank-body li,
.br-prose li {
  margin-bottom: 6px;
  color: #344154;
  line-height: 1.72;
  font-size: 0.99rem;
}

/* 展开/收缩 样式 */
.br-ellipsis.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  margin: 0;
  line-height: 2.2752;
}
.br-prose li a{font-weight: 600; font-size: 18px;}
.br-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--br-brand-strong);
  font-size: 1rem;
  font-weight: 800;
  transition: color 0.18s ease, transform 0.18s ease;
}

.br-read-link:hover {
  color: #1d4ed8;
  transform: translateX(2px);
}

.br-rank-side {
  display: grid;
  gap: 10px;
  align-self: center;
  justify-self: stretch;
  text-align: center;
  min-width: 0;
  width: 100%;
  align-content: start;
}

.br-score {
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #556274;
}

.br-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  color: var(--br-gold);
  min-height: 0;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.br-stars .is-full {
  color: var(--br-gold);
}

.br-stars .is-empty {
  color: #d0d8e2;
}

.br-discount {
  display: inline-block;
  margin-bottom: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe7e1;
  color: var(--br-warn);
  font-size: 0.9rem;
  font-weight: 900;
}

.br-check-btn,
.br-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border: none;
  border-radius: 999px;
  background: var(--br-brand-strong);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.br-check-btn:hover,
.br-primary-link:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.28);
}

.br-amazon-note {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
}

.br-amazon-logo {
  width: 62px;
  height: auto;
  display: block;
}

.br-deals-box,
.br-prose-card,
.br-about-card,
.br-not-found-card {
  margin-top: 40px;
  padding: 30px 26px;
  border-radius: 24px;
  background: var(--br-surface);
  border: 1px solid #d8e1eb;
  box-shadow: none;
}

.br-deals-box {
  background: linear-gradient(135deg, #111827, #1d2a3c);
  color: #fff;
  text-align: center;
}

.br-deals-box h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

.br-deals-box p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.75);
}

.br-underline-title {
  display: inline-block;
  margin: 36px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #111827;
  color: #111827;
  font-size: 1.42rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.br-category-results-page .br-compare-head h1,
.br-search-results-page .br-compare-head h1,
.br-category-results-page .br-rank-body h3,
.br-search-results-page .br-rank-body h3,
.br-category-results-page .br-underline-title,
.br-search-results-page .br-underline-title {
  text-transform: capitalize;
}

.br-category-results-page .br-underline-title,
.br-search-results-page .br-underline-title {
  letter-spacing: 0.03em;
}

.br-category-results-page + .br-newsletter,
.br-search-results-page + .br-newsletter {
  display: none;
}

.br-also-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.br-also-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px 14px;
  text-align: center;
  border-radius: 18px;
  background: var(--br-surface);
  border: 1px solid var(--br-border);
}

.br-also-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fafc;
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.br-also-card span {
  display: block;
  margin-top: 0;
  font-size: 0.84rem;
  line-height: 1.35;
  font-weight: 800;
  min-height: calc(1.35em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.br-prose,
.br-about-card,
.br-contact-detail {
  color: #2f3c4d;
  overflow-wrap: anywhere;
  font-size: 1.03rem;
  line-height: 1.8;
}

.br-prose p,
.br-about-card p,
.br-contact-detail p {
  margin: 0 0 30px;
  color: #2f3c4d;
  font-size: 1.13rem;
  line-height: 1.82;
}

.br-prose span,
.br-about-card span {
  color: #172030;
  font-weight: 900;
}

.br-prose h2,
.br-prose h3 {
  margin: 24px 0 14px;
  color: #111827;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.25;
}

.br-prose strong,
.br-prose b {
  color: #111827;
  font-weight: 900;
}

.br-contact-mail {
  margin-left: 8px;
}

.br-faq-panel {
  margin-top: 28px;
  padding: 24px 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #d7e1ec;
}

.br-faq-panel .br-underline-title {
  margin-top: 0;
}

.br-faq-list {
  display: grid;
  gap: 14px;
}

.br-faq-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d9e3ee;
}

.br-faq-item span {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 1rem;
  font-weight: 900;
}

.br-faq-item p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.8;
}

.br-faq-item + .br-faq-item {
  margin-top: 16px;
}

.br-faq-item strong {
  display: block;
  margin-bottom: 4px;
  color: #172030;
}

.br-evaluation-card {
  margin-top: 30px;
}

.br-evaluation-card .br-underline-title {
  text-transform: capitalize;
}

/* 锚点偏移，避免被固定导航栏遮挡 */
.br-rank-card,
.br-rev {
  scroll-margin-top: 140px;
}

/* Integrity板块 */
.br-integrity-card {
  margin-top: 40px;
}

.br-he-grp {
  margin-top: 28px;
}

.br-he-grp h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--br-border);
  color: var(--br-text);
  font-size: 1.25rem;
  font-weight: 800;
}

.br-he-grp h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--br-brand-strong);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}

.br-he-grp.health h3 span { background: #0ea5e9; }
.br-he-grp.ecology h3 span { background: #22c55e; }
.br-he-grp.evidence h3 span { background: #8b5cf6; }

.br-he-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.br-he-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.br-he-item:hover {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.br-he-item h4 {
  margin: 0 0 8px;
  color: var(--br-text);
  font-size: 1rem;
  font-weight: 800;
}

.br-he-item p {
  margin: 0;
  color: var(--br-text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* 产品测评文板块 - br-rev */
.br-rev {
  margin-top: 30px;
}

.bre-rev-hd {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--br-border);
  margin-bottom: 20px;
}

.bre-rev-hd img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fafc;
  padding: 8px;
  border: 1px solid #e2e8f0;
}

.bre-rev-hd > div {
  flex: 1;
  min-width: 0;
}

.bre-rev-rank {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--br-gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bre-rev-hd h3 {
  margin: 0 0 10px;
  color: var(--br-text);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
}

.bre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bre-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.bre-chip.buyer {
  background: #eff6ff;
  color: #1d4ed8;
}

.bre-chip.std {
  background: #f5f3ff;
  color: #7c3aed;
}

.bre-chip.brand {
  background: #f0fdf4;
  color: #15803d;
}

.bre-rev-body h4 {
  margin: 0 0 10px;
  color: var(--br-text);
  font-size: 1.1rem;
  font-weight: 800;
}

.bre-rev-body p {
  margin: 0 0 20px;
  color: #344154;
  font-size: 1rem;
  line-height: 1.8;
}

.bre-rev-overview {
  margin-bottom: 24px;
}

.bre-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.bre-lists .pros,
.bre-lists .cons {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.bre-lists .pros {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.bre-lists .cons {
  background: #fef2f2;
  border-color: #fecaca;
}

.bre-lists .pros h4 {
  color: #15803d;
  margin-bottom: 12px;
}

.bre-lists .cons h4 {
  color: #b91c1c;
  margin-bottom: 12px;
}

.bre-lists ul {
  margin: 0;
  padding-left: 20px;
}

.bre-lists li {
  margin-bottom: 8px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.bre-lists li:last-child {
  margin-bottom: 0;
}

.bre-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.bre-fit .isfor,
.bre-fit .notfor {
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.bre-fit h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.bre-fit .c-blue { color: #1d4ed8; }
.bre-fit .c-amber { color: #d97706; }

.bre-fit p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
}

.bre-rev-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--br-border);
}

.bre-rev-cta a button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border: none;
  border-radius: 999px;
  background: var(--br-brand-strong);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.bre-rev-cta a button:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.28);
}

.bre-back {
  color: var(--br-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}

.bre-back:hover {
  color: var(--br-brand-strong);
}

.br-contact-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #0f5ac2;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.br-not-found-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58vh;
}

.br-not-found-card {
  width: min(640px, 100%);
  text-align: center;
}

.br-not-found-card img {
  width: min(240px, 70%);
  margin-bottom: 18px;
}

.br-about-card,
.br-prose-card,
.br-not-found-card,
.br-letter-block,
.br-rank-card,
.br-also-card,
.br-trending-card,
.br-product-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.br-muted {
  color: var(--br-text-muted);
}

@media (max-width: 1280px) {
  .br-page-head,
  .br-compare-head {
    max-width: 760px;
  }

  .br-header-tools {
    gap: 14px;
  }

  .br-search-form {
    width: min(300px, 100%);
    min-height: 40px;
  }

  .br-hero .br-search-form {
    width: min(520px, calc(100% - 8px));
    min-height: 44px;
  }

  .br-nav {
    gap: 14px;
  }

  .br-popular-grid,
  .br-trending-grid,
  .br-product-grid,
  .br-also-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .br-category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .br-footer-top {
    grid-template-columns: 1.2fr 1fr;
  }

  .br-rank-card {
    grid-template-columns: 30px 170px minmax(0, 1fr) 188px;
    gap: 16px;
  }

  .br-rank-badge {
    left: 38px;
    top: 12px;
  }
}

@media (max-width: 960px) {
  .br-shell,
  .br-footer-inner,
  .br-newsletter-inner,
  .br-main,
  .br-content-main,
  .br-compare-main,
  .br-categories-main,
  .br-header-inner {
    width: min(100%, calc(100% - 28px));
  }

  .br-header-inner {
    align-items: center;
    gap: 14px;
    position: relative;
    min-height: 82px;
    padding: 12px 0;
  }

  .br-header-actions {
    display: flex;
    margin-left: auto;
  }

  .br-menu-toggle {
    display: inline-flex;
  }

  .br-header-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    border-radius: 20px;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  }

  .br-header.is-open .br-header-tools {
    display: flex;
  }

  .br-header-tools .br-search-form {
    display: none;
  }

  .br-header.is-open .br-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .br-header.is-open .br-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .br-header.is-open .br-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .br-nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
  }

  .br-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .br-nav-home {
    display: flex;
  }

  .br-search-form {
    flex: 0 0 auto;
    width: 100%;
    min-height: 40px;
    padding-left: 14px;
  }

  .br-header .br-search-form {
    flex: 0 0 auto;
  }

  .br-search-form::after {
    left: 27px;
    top: 24px;
  }

  .br-hero .br-search-form {
    width: min(100%, 520px);
    min-height: 44px;
    padding-left: 16px;
  }

  .br-hero .br-search-form::after {
    left: 31px;
    top: 26px;
  }

  .br-brand {
    min-width: 0;
  }

  .br-brand .br-brand-name {
    gap: 4px;
    font-size: 1rem;
  }

  .br-hero {
    min-height: 390px;
  }

  .br-hero-img {
    height: 390px;
  }

  .br-hero-copy {
    width: min(680px, 100%);
  }

  .br-hero-copy h1 {
    font-size: clamp(2.25rem, 7vw, 3.5rem);
  }

  .br-hero-copy p {
    width: min(540px, 100%);
    margin-bottom: 28px;
  }

  .br-hero-trust {
    gap: 8px;
    margin-top: 16px;
  }

  .br-hero-trust span {
    min-height: 32px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .br-popular-grid {
    gap: 18px;
  }

  .br-popular-card {
    min-height: 290px;
    height: 290px;
  }

  .br-trending-grid,
  .br-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .br-page-title,
  .br-category-page-title,
  .br-compare-head h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .br-compare-head {
    margin-bottom: 24px;
  }

  .br-rank-card {
    grid-template-columns: 30px 162px minmax(0, 1fr) 186px;
    gap: 14px 16px;
    padding: 18px;
  }

  .br-rank-side {
    justify-self: center;
    text-align: center;
    margin-top: 0;
    width: 100%;
  }

  .br-check-btn {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .br-score {
    font-size: 0.82rem;
  }

  .br-amazon-note {
    margin-top: 6px;
  }

  .br-footer-top {
    grid-template-columns: 1.2fr 1fr;
  }

  .br-footer-brand {
    grid-column: 1 / -1;
  }

  .br-footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .br-rank-card,
  .br-rev {
    scroll-margin-top: 130px;
  }

  .br-rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .br-evaluation-header {
    flex-wrap: wrap;
  }

  .br-evaluation-thumb {
    width: 60px;
    height: 60px;
  }

  .br-evaluation-pros-cons {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bre-lists,
  .bre-fit {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bre-rev-hd img {
    width: 70px;
    height: 70px;
  }

  .br-page-head,
  .br-compare-head {
    margin-bottom: 20px;
  }

  .br-page-intro,
  .br-compare-intro {
    font-size: 0.96rem;
  }

  .br-hero {
    min-height: 332px;
  }

  .br-hero-img {
    height: 332px;
  }

  .br-hero-content {
    padding: 22px 16px 20px;
  }

  .br-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .br-hero-copy p {
    width: min(100%, 32rem);
    font-size: 0.98rem;
    margin-bottom: 16px;
  }

  .br-hero .br-search-form {
    width: min(100%, 460px);
    min-height: 42px;
    padding-left: 15px;
  }

  .br-hero .br-search-form::after {
    left: 29px;
    top: 25px;
  }

  .br-hero-trust {
    display: none;
  }

  .br-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .br-also-grid {
    grid-template-columns: 1fr;
  }

  .br-also-card {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 12px;
  }

  .br-also-card img {
    width: 72px;
    padding: 8px;
  }

  .br-also-card span {
    min-height: 0;
    font-size: 0.9rem;
  }

  .br-popular-card {
    min-height: 214px;
    height: 214px;
    border-radius: 16px;
  }

  .br-popular-card img {
    padding: 14px;
  }

  .br-popular-card span {
    padding: 12px;
    font-size: 0.9rem;
  }

  .br-trending-grid,
  .br-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .br-category-list,
  .br-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .br-categories-panel,
  .br-letter-block,
  .br-prose-card,
  .br-about-card,
  .br-deals-box,
  .br-not-found-card {
    padding: 22px 18px;
  }

  .br-back-to-top {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }


  .br-letter-title {
    font-size: 1.2rem;
  }

  .br-underline-title {
    display: block;
    width: 100%;
    margin: 28px 0 16px;
  }

  .br-newsletter-form input,
  .br-inline-form input {
    min-width: 100%;
  }

  .br-newsletter-form button,
  .br-inline-form button,
  .br-check-btn {
    width: 100%;
  }

  .br-contact-mail,
  .br-primary-link {
    width: 100%;
  }

  .br-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .br-footer-brand {
    grid-column: auto;
  }

  .br-rank-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num badge"
      "thumb thumb"
      "body body"
      "side side";
    gap: 14px;
    padding: 18px 16px;
    height: 100%;
    align-content: start;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
  }

  .br-rank-card.is-featured,
  .br-rank-card:nth-child(1) {
    box-shadow: 0 20px 36px rgba(245, 158, 11, 0.14);
  }

  .br-rank-num {
    grid-area: num;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding-top: 0;
    margin-top: -8px;
    border-radius: 999px;
    background: #f3f6fb;
    font-size: 0.82rem;
    color: #556274;
  }

  .br-rank-badge {
    grid-area: badge;
    position: static;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0;
    justify-self: start;
    align-self: center;
    padding: 6px 11px;
    font-size: 0.72rem;
  }

  .br-rank-thumb {
    grid-area: thumb;
    width: min(160px, 100%);
    height: 160px;
    padding: 0;
    margin-bottom: 4px;
    margin-top: 8px;
    margin-inline: 0;
    margin-left: -10px;
    justify-self: start;
  }

  .br-rank-body {
    grid-area: body;
    gap: 10px;
    align-self: stretch;
    padding-inline: 2px;
  }

  .br-rank-body h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.38em * 2);
  }

  .br-rank-card.is-featured .br-rank-body h3 {
    font-size: 1.18rem;
  }

  .br-rank-highlight {
    display: none;
    margin-bottom: 10px;
    font-size: 0.73rem;
  }

  .br-rank-body ul {
    padding-left: 18px;
    min-height: calc(1.55em * 3 + 8px);
  }

  .br-rank-body li {
    margin-bottom: 4px;
    line-height: 1.55;
    font-size: 0.92rem;
  }

  .br-rank-body li:nth-child(n + 4) {
    display: none;
  }

  .br-read-link {
    margin-top: auto;
    padding-top: 2px;
    font-size: 0.94rem;
  }

  .br-rank-side {
    grid-area: side;
    justify-self: stretch;
    text-align: center;
    width: 100%;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(23, 32, 48, 0.08);
    align-self: end;
  }

  .br-score {
    font-size: 0.8rem;
  }

  .br-stars {
    margin: 0;
    min-height: 0;
    font-size: 0.94rem;
    letter-spacing: 0.12em;
  }

  .br-discount {
    margin-bottom: 0;
    font-size: 0.84rem;
  }

  .br-amazon-note {
    margin-top: 0;
  }

  .br-check-btn {
    width: 100%;
    min-height: 40px;
    margin-top: 1px;
  }

  .br-amazon-logo {
    width: 54px;
  }
}

@media (max-width: 512px) {
  .br-rank-list {
    grid-template-columns: 1fr;
    gap: 14px;
    grid-auto-rows: auto;
  }

  .br-main,
  .br-content-main,
  .br-compare-main,
  .br-categories-main {
    padding-top: 28px;
  }

  .br-page-head,
  .br-compare-head {
    margin-bottom: 18px;
  }

  .br-compare-meta {
    display: flex;
    justify-content: center;
    width: 100%;
    line-height: 1.6;
    text-align: center;
  }

  .br-section-title {
    margin-bottom: 16px;
  }

  .br-trending-grid,
  .br-product-grid,
  .br-also-grid {
    grid-template-columns: 1fr;
  }

  .br-category-list,
  .br-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .br-rank-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num badge"
      "thumb thumb"
      "body body"
      "side side";
    grid-template-rows: auto;
    gap: 16px;
    padding: 18px 14px;
  }

  .br-rank-badge {
    justify-self: start;
    align-self: center;
  }

  .br-rank-num {
    justify-self: start;
    margin-top: -6px;
  }

  .br-rank-thumb {
    width: min(184px, 88%);
    height: 184px;
    padding: 0;
    margin-top: 6px;
    margin-inline: 0;
    margin-left: -8px;
    justify-self: start;
  }

  .br-rank-body {
    gap: 8px;
  }

  .br-rank-body h3 {
    text-align: left;
  }

  .br-rank-highlight {
    display: none;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .br-rank-body ul {
    min-height: 0;
  }

  .br-rank-side {
    gap: 6px;
    padding-top: 12px;
  }

  .br-check-btn {
    min-height: 40px;
  }

  .br-amazon-logo {
    width: 50px;
  }
}

@media (max-width: 512px) {
  .br-shell,
  .br-footer-inner,
  .br-newsletter-inner,
  .br-main,
  .br-content-main,
  .br-compare-main,
  .br-categories-main,
  .br-header-inner {
    width: min(calc(100% - 24px), 100%);
  }

  .br-section-title {
    font-size: 1.7rem;
  }

  .br-page-title,
  .br-category-page-title,
  .br-compare-head h1 {
    font-size: 2rem;
  }

  .br-brand img {
    width: 50px;
  }

  .br-brand .br-brand-name {
    font-size: 0.92rem;
  }

  .br-breadcrumb,
  .br-page-eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .br-hero {
    min-height: 292px;
  }

  .br-hero-img {
    height: 292px;
  }

  .br-hero-content {
    padding: 18px 12px 18px;
  }

  .br-hero-copy h1 {
    font-size: clamp(1.85rem, 10vw, 2.5rem);
  }

  .br-hero-copy p {
    margin-bottom: 14px;
    font-size: 0.92rem;
  }

  .br-hero-trust {
    display: none;
  }

  .br-hero .br-search-form {
    width: min(100%, 100%);
    min-height: 40px;
    padding: 3px 3px 3px 14px;
  }

  .br-hero .br-search-form::after {
    left: 27px;
    top: 24px;
  }

  .br-hero .br-search-form input {
    font-size: 0.95rem;
  }

  .br-popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .br-popular-card {
    min-height: 176px;
    height: 176px;
    border-radius: 14px;
  }

  .br-popular-card img {
    padding: 10px;
  }

  .br-popular-card span {
    padding: 10px;
    font-size: 0.8rem;
  }

  .br-category-list,
  .br-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .br-compare-meta {
    margin-bottom: 22px;
  }

  .br-newsletter-inner {
    justify-content: stretch;
  }

  .br-newsletter-title {
    width: 100%;
    text-align: center;
  }

  .br-newsletter-form,
  .br-inline-form {
    width: 100%;
  }

  .br-category-list .br-category-item {
    min-height: 148px;
    padding: 16px 10px;
  }

  .br-category-icon,
  .br-category-thumb {
    width: 64px;
    height: 64px;
  }

  .br-category-item span {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .br-newsletter-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .br-newsletter-form input,
  .br-inline-form input {
    padding-inline: 16px;
  }

  .br-rank-body h3 {
    font-size: 1.02rem;
  }

  .br-score {
    font-size: 0.78rem;
  }

  .br-deals-box,
  .br-prose-card,
  .br-about-card,
  .br-not-found-card {
    margin-top: 28px;
  }

  .br-prose p,
  .br-about-card p,
  .br-contact-detail p,
  .br-rank-body li,
  .br-prose li {
    line-height: 1.68;
  }
}
