*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f7fb;
  --bg-2: #eef3f9;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: #ffffff;
  --panel-dark: #0f1726;
  --panel-dark-2: #141e31;
  --ink: #111827;
  --muted: #5f6b7d;
  --line: rgba(101, 119, 147, 0.18);
  --line-strong: rgba(101, 119, 147, 0.32);
  --blue: #4277ff;
  --blue-soft: rgba(66, 119, 255, 0.12);
  --teal: #1db7a6;
  --teal-soft: rgba(29, 183, 166, 0.14);
  --amber: #f2a93b;
  --amber-soft: rgba(242, 169, 59, 0.16);
  --rose: #d95f76;
  --rose-soft: rgba(217, 95, 118, 0.14);
  --elite: #14836f;
  --excellent: #336ce0;
  --good: #d38b23;
  --average: #a86b20;
  --weak: #bd4f6a;
  --shadow: 0 24px 70px rgba(41, 61, 97, 0.12);
  --shadow-soft: 0 14px 34px rgba(41, 61, 97, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --content: 1380px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(66, 119, 255, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(29, 183, 166, 0.12), transparent 22%),
    linear-gradient(180deg, #f7fafe 0%, var(--bg) 38%, var(--bg-2) 100%);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(132, 149, 174, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 149, 174, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 90%);
}

a {
  color: inherit;
}

.topnav,
.app-shell,
footer {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.topnav {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.topnav-brand,
.topnav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  min-width: 0;
}

.topnav-logo,
.topnav-link {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topnav-logo {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.56rem, 2.2vw, 2.18rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 0 0 currentColor;
}

.topnav-status {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}

.topnav-link {
  color: var(--muted);
}

.topnav-link:hover {
  color: var(--blue);
}

.app-shell {
  padding: 1.4rem 0 2rem;
  display: grid;
  grid-template-columns: clamp(248px, 22vw, 310px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.sidebar {
  position: static;
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--panel-dark) 0%, var(--panel-dark-2) 100%);
  color: #eef4ff;
  box-shadow: var(--shadow);
}

.sidebar-block {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-label,
.eyebrow,
.hero-card-label,
.insight-label,
.results-summary-label,
.score-label,
.filter-label,
.sort-label,
.vcard-products {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-label {
  color: rgba(216, 228, 247, 0.72);
}

.sidebar-title {
  margin-top: 0.8rem;
  font-size: 2.15rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.sidebar-title em,
.hero h2 em {
  color: #8dc6ff;
  font-style: normal;
}

.sidebar-copy {
  margin-top: 0.9rem;
  color: rgba(216, 228, 247, 0.8);
  font-size: 0.95rem;
}

.sidebar-metric-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.7rem;
}

.sidebar-metric {
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.metric-label {
  display: block;
  margin-top: 0.2rem;
  color: rgba(216, 228, 247, 0.72);
  font-size: 0.84rem;
}

.sidebar-list {
  margin-top: 0.8rem;
  padding-left: 1rem;
  color: rgba(216, 228, 247, 0.8);
}

.sidebar-list li + li {
  margin-top: 0.55rem;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  background: rgba(66, 119, 255, 0.16);
  color: #dce7ff;
  text-decoration: none;
  font-weight: 700;
}

.main-stage {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.hero,
.insight-strip,
.results-shell,
.how-we-score,
footer {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 360px);
  gap: 1rem;
  padding: 1.2rem;
}

.hero-main,
.hero-side,
.insight-card,
.results-summary,
.score-cat {
  border-radius: var(--radius-lg);
  min-width: 0;
}

.hero-main {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 255, 0.92));
  border: 1px solid rgba(101, 119, 147, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}

.eyebrow-dark {
  background: rgba(95, 107, 125, 0.08);
  color: var(--muted);
}

.hero h2,
.results-head h3,
.hws-inner h3 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.subtitle {
  max-width: 62ch;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.meta-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.56rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(101, 119, 147, 0.12);
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-side {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.hero-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(101, 119, 147, 0.12);
}

.hero-card strong {
  display: block;
  margin-top: 0.36rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-card p {
  margin-top: 0.34rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.hero-card-accent {
  background: linear-gradient(180deg, rgba(18, 29, 49, 0.98), rgba(27, 43, 70, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  color: #eef4ff;
}

.hero-card-accent .hero-card-label {
  color: #8dc6ff;
}

.hero-card-accent p {
  color: rgba(216, 228, 247, 0.78);
}

.hero-vendor-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.55rem;
}

.hero-vendor-item strong {
  margin-top: 0.2rem;
}

.hero-vendor-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(141, 198, 255, 0.12);
  color: #9dd0ff;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-vendor-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.insight-strip {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.insight-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(101, 119, 147, 0.1);
}

.insight-card strong {
  display: block;
  margin-top: 0.36rem;
  font-size: 1rem;
}

.insight-card p {
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.insight-card-graph {
  background: linear-gradient(180deg, rgba(66, 119, 255, 0.08), rgba(29, 183, 166, 0.08));
}

.mini-bars {
  margin-top: 1rem;
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
}

.mini-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(66, 119, 255, 0.9), rgba(29, 183, 166, 0.92));
}

.mini-bars span:nth-child(1) { height: 42%; }
.mini-bars span:nth-child(2) { height: 78%; }
.mini-bars span:nth-child(3) { height: 60%; }
.mini-bars span:nth-child(4) { height: 92%; }

.results-shell,
.how-we-score,
footer {
  padding: 1.2rem;
}

.results-head,
.filter-row,
.vcard-top,
.vcard-meta-row,
.ship-tags,
.badge-row,
.checks-grid,
.tier-legend,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
}

.results-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.results-head p,
.hws-sub,
.footer-note {
  color: var(--muted);
}

.results-summary {
  min-width: 150px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(66, 119, 255, 0.12), rgba(66, 119, 255, 0.04));
  border: 1px solid rgba(66, 119, 255, 0.16);
  text-align: right;
}

.sidebar,
.hero,
.results-shell,
.how-we-score,
footer,
.vcard,
.hero-main,
.hero-side,
.results-summary,
.footer-meta,
.trust-chip,
.meta-row span {
  min-width: 0;
}

.results-summary-value {
  display: block;
  font-size: 2.2rem;
  line-height: 0.95;
  font-weight: 800;
}

.filter-section {
  position: static;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(244, 248, 255, 0.92);
  border: 1px solid rgba(101, 119, 147, 0.12);
}

.filter-row {
  align-items: center;
  gap: 0.7rem;
}

.filter-row--top {
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.filter-row--toggles {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(101, 119, 147, 0.12);
}

.product-tabs,
.filter-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-tab,
.filter-btn,
.sort-select {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(101, 119, 147, 0.14);
  background: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.product-tab,
.filter-btn {
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.product-tab:hover,
.filter-btn:hover {
  border-color: rgba(66, 119, 255, 0.28);
  color: var(--blue);
}

.product-tab.active {
  background: var(--panel-dark);
  border-color: var(--panel-dark);
  color: #fff;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sort-select {
  padding: 0.6rem 2.4rem 0.6rem 0.85rem;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%235f6b7d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.filter-meta {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

main {
  display: grid;
  gap: 0.9rem;
}

.vcard {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 144px;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(101, 119, 147, 0.12);
  box-shadow: 0 12px 24px rgba(41, 61, 97, 0.05);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.42s forwards;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vcard:hover {
  transform: translateY(-2px);
  border-color: rgba(66, 119, 255, 0.22);
  box-shadow: 0 18px 30px rgba(41, 61, 97, 0.08);
}

.rank-wrap {
  display: flex;
  justify-content: center;
  padding-top: 0.1rem;
}

.rank-num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(101, 119, 147, 0.14);
  background: linear-gradient(180deg, #f7faff, #eef4fb);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
}

.rank-num.gold {
  color: #5d8fff;
  background: linear-gradient(180deg, rgba(141, 198, 255, 0.22), rgba(66, 119, 255, 0.1));
  border-color: rgba(66, 119, 255, 0.26);
}

.rank-num.silver {
  color: #5d8fff;
  background: linear-gradient(180deg, rgba(141, 198, 255, 0.22), rgba(66, 119, 255, 0.1));
  border-color: rgba(66, 119, 255, 0.26);
}

.rank-num.bronze {
  color: #5d8fff;
  background: linear-gradient(180deg, rgba(141, 198, 255, 0.22), rgba(66, 119, 255, 0.1));
  border-color: rgba(66, 119, 255, 0.26);
}

.vcard-body {
  min-width: 0;
}

.vcard-top {
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
}

.card-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vcard-products {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.card-desc {
  margin-bottom: 0.85rem;
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-submeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-submeta strong {
  color: var(--ink);
}

.badge-row {
  gap: 0.45rem;
}

.badge,
.ship-tag,
.sluppie-tier,
.visit-btn,
.price-pill,
.purity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.badge-premium {
  gap: 0.35rem;
  background: linear-gradient(180deg, rgba(242, 169, 59, 0.22), rgba(242, 169, 59, 0.12));
  color: #a96d0f;
  border: 1px solid rgba(242, 169, 59, 0.28);
}

.badge-premium svg {
  width: 11px;
  height: 11px;
}

.badge-best {
  background: var(--teal-soft);
  color: var(--elite);
}

.badge-hot {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge-new {
  background: var(--amber-soft);
  color: #bd7a10;
}

.badge-bio {
  background: var(--rose-soft);
  color: var(--rose);
}

.checks-grid {
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.85rem;
}

.chk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.chk.pass {
  color: var(--elite);
}

.chk.fail {
  color: #98a3b2;
}

.chk-icon {
  width: 0.9rem;
  text-align: center;
}

.vcard-meta-row {
  gap: 0.5rem;
  align-items: center;
}

.price-pill {
  background: var(--blue-soft);
  color: var(--blue);
}

.purity-pill {
  background: rgba(95, 107, 125, 0.1);
  color: var(--muted);
}

.ship-tags {
  gap: 0.4rem;
}

.ship-tag {
  min-width: 44px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ship-tag.eu {
  background: var(--blue-soft);
  color: var(--blue);
}

.ship-tag.us {
  background: var(--teal-soft);
  color: var(--elite);
}

.ship-tag.uk {
  background: var(--amber-soft);
  color: #bd7a10;
}

.ship-tag.off {
  background: rgba(95, 107, 125, 0.1);
  color: #98a3b2;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  text-align: right;
}

.score-label,
.filter-label,
.sort-label,
.results-summary-label {
  color: var(--muted);
}

.sluppie-score-num {
  font-size: 2.6rem;
  line-height: 0.92;
  font-weight: 800;
}

.sluppie-tier {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-elite {
  background: var(--teal-soft);
  color: var(--elite);
}

.tier-excellent {
  background: var(--blue-soft);
  color: var(--excellent);
}

.tier-good {
  background: var(--amber-soft);
  color: var(--good);
}

.tier-average {
  background: rgba(168, 107, 32, 0.13);
  color: var(--average);
}

.tier-weak {
  background: var(--rose-soft);
  color: var(--weak);
}

.score-bar {
  width: 88px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(95, 107, 125, 0.14);
}

.score-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.6s ease;
}

.visit-btn {
  margin-top: 0.15rem;
  border: 1px solid rgba(66, 119, 255, 0.18);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
}

.vcard:hover .visit-btn {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.no-results {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--muted);
}

.how-we-score {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 255, 0.82));
}

.hws-inner h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hws-sub {
  max-width: 60ch;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.score-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.score-cat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(101, 119, 147, 0.1);
}

.cat-pts {
  font-size: 2rem;
  line-height: 0.95;
  font-weight: 800;
  color: var(--blue);
}

.cat-label {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.cat-desc {
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.tier-legend {
  gap: 0.7rem;
  margin-top: 1rem;
}

.tier-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

footer {
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: grid;
  gap: 1rem;
}

.footer-note {
  width: 100%;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(101, 119, 147, 0.12);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-chip svg {
  color: var(--blue);
  flex-shrink: 0;
}

.footer-disclaimer {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-meta {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-meta a {
  text-decoration: none;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .app-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .hero,
  .insight-strip {
    grid-template-columns: 1fr;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .results-head {
    flex-direction: column;
  }

  .results-summary {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-row--top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vcard {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .card-right {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

@media (max-width: 560px) {
  body::before {
    display: none;
  }

  .topnav,
  .app-shell,
  footer {
    width: min(calc(100% - 1rem), var(--content));
  }

  .topnav-actions,
  .meta-row,
  .footer-meta,
  .vcard-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-tabs,
  .filter-toggles,
  .sort-wrap {
    width: 100%;
  }

  .sort-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-select {
    width: 100%;
  }

  .product-tab,
  .filter-btn {
    flex: 1 1 100%;
  }

  .vcard {
    grid-template-columns: 1fr;
  }

  .rank-wrap {
    justify-content: flex-start;
  }

  .card-right {
    grid-column: auto;
    align-items: flex-start;
  }

  .filter-meta {
    margin-left: 0;
  }
}
