:root {
  color-scheme: light;
  --ink: #162124;
  --muted: #5c676b;
  --paper: #ffffff;
  --surface: #ffffff;
  --line: #e5e3de;
  --teal: #176b63;
  --teal-dark: #0f4944;
  --coral: #176b63;
  --mustard: #176b63;
  --blue: #176b63;
  --mint: #f6f8f7;
  --peach: #f7f8f6;
  --cream: #f8f8f6;
  --rose: #f7f8f6;
  --sky: #f6f8f7;
  --leaf: #f6f8f7;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.72;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0 0 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.ad-notice {
  margin: 18px 0 0;
  padding: 10px 12px;
  background: #fff8ec;
  border: 1px solid #e6c79e;
  border-radius: 7px;
  color: #66431c;
  font-size: 14px;
}

.site-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.site-search label {
  color: var(--teal-dark);
  font-weight: 900;
}

.site-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.site-search input {
  min-width: 0;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}

.site-search input:focus {
  outline: 2px solid rgba(23, 107, 99, 0.22);
  border-color: var(--teal);
}

.site-search button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--teal);
  border-radius: 7px;
  background: #ffffff;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.site-search p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.site-search p a {
  color: var(--teal-dark);
  font-weight: 850;
  text-underline-offset: 3px;
}

.home-utility {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 14px;
  align-items: stretch;
  margin: 0 0 30px;
}

.home-utility .ad-notice,
.home-utility .site-search {
  margin: 0;
}

.is-hidden {
  display: none !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: stretch;
  padding: clamp(16px, 4vw, 42px) 0 18px;
}

.hero-copy {
  position: relative;
  padding: clamp(22px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(229, 242, 238, 0.96) 48%, rgba(255, 233, 221, 0.94)),
    repeating-linear-gradient(90deg, rgba(23, 107, 99, 0.055) 0 1px, transparent 1px 22px),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(38%, 320px);
  max-height: 220px;
  object-fit: contain;
  opacity: 0.96;
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 150px;
  height: 150px;
  opacity: 0.16;
  background:
    linear-gradient(90deg, var(--teal) 12px, transparent 12px) 0 0 / 30px 30px,
    linear-gradient(var(--coral) 12px, transparent 12px) 0 0 / 30px 30px;
}

.hero h1,
.page-heading h1 {
  position: relative;
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 7vw, 70px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero p,
.page-heading p {
  position: relative;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.topic-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
}

.primary-action {
  background: var(--teal);
  color: #ffffff;
}

.primary-action:hover {
  background: var(--teal-dark);
}

.secondary-action {
  border: 1px solid var(--teal);
  background: #ffffff;
  color: var(--teal-dark);
}

.eyebrow,
.topic-kicker {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.season-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.season-tags span {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-info-row span {
  display: grid;
  gap: 2px;
  min-height: 70px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(23, 107, 99, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 13px;
}

.hero-info-row strong {
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-gallery a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(23, 107, 99, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal-dark);
  text-decoration: none;
}

.hero-gallery img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f8f3;
}

.hero-gallery span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

.status-panel,
.side-note,
.ad-slot {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-content: end;
  padding: 18px;
  background:
    radial-gradient(circle at 90% 12%, rgba(199, 95, 58, 0.16), transparent 110px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(229, 242, 238, 0.68)),
    var(--surface);
  box-shadow: var(--shadow);
}

.status-panel span,
.side-note span,
.ad-slot span {
  color: var(--muted);
  font-size: 13px;
}

.status-panel strong {
  margin-bottom: 10px;
}

.status-panel small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-band div {
  min-height: 132px;
  padding: 20px;
  background: #ffffff;
}

.feature-band div:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--mint));
}

.feature-band div:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--cream));
}

.feature-band div:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--peach));
}

.feature-band span {
  display: block;
  color: var(--mustard);
  font-size: 12px;
  font-weight: 900;
}

.feature-band strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.feature-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin: 16px 0 28px;
}

.quick-links a {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 4px 12px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 241, 0.9)),
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.08) 0 1px, transparent 1px 12px);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.quick-links a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(23, 107, 99, 0.16);
  border-radius: 8px;
  transform: rotate(8deg);
}

.quick-links img {
  grid-row: 1 / span 2;
  width: 58px;
  height: 74px;
  object-fit: contain;
  align-self: center;
  padding: 6px;
  border: 1px solid rgba(23, 107, 99, 0.10);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.quick-links span {
  align-self: end;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.quick-links strong {
  color: var(--teal-dark);
  line-height: 1.3;
}

.ranking-hero {
  background:
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(237, 245, 241, 0.95), rgba(255, 250, 242, 0.95)),
    url("assets/season-hero.svg") right 24px center / 260px auto no-repeat;
}

.ranking-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 30px;
}

.ranking-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ranking-feature a {
  display: grid;
  grid-template-rows: auto 210px 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.ranking-feature > a > span {
  width: 42px;
  height: 42px;
  margin: 14px 0 -28px 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.ranking-feature img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 26px;
  background: #f5f8f3;
}

.ranking-feature div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.ranking-feature small {
  color: var(--coral);
  font-weight: 900;
}

.ranking-feature h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.ranking-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.ranking-feature strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
}

.ranking-table td:nth-child(2) {
  color: var(--teal-dark);
  font-weight: 850;
}

.intent-hero {
  background:
    repeating-linear-gradient(135deg, rgba(199, 95, 58, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(237, 245, 241, 0.94)),
    url("assets/daily-essentials.svg") right 24px center / 250px auto no-repeat;
}

.intent-group {
  margin-bottom: 38px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.intent-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.06);
}

.intent-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 22px;
  background: #f5f8f3;
}

.intent-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.intent-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.intent-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.intent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 !important;
}

.intent-actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(23, 107, 99, 0.24);
  border-radius: 6px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.intent-actions a:last-child {
  border-color: var(--coral);
  background: var(--coral);
  color: #ffffff;
}

.guide-hero {
  background:
    linear-gradient(135deg, rgba(237, 245, 241, 0.95), rgba(255, 255, 255, 0.95)),
    url("assets/kitchen-storage.svg") right 24px center / 250px auto no-repeat;
}

.guide-list {
  display: grid;
  gap: 16px;
  margin: 20px 0 64px;
}

.guide-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.guide-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: contain;
  padding: 24px;
  background: #f5f8f3;
}

.guide-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.guide-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.guide-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.guide-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.guide-card li {
  color: var(--text);
}

.guide-card a {
  justify-self: start;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.priority-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.priority-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.06);
}

.priority-card > span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 950;
}

.priority-card img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: contain;
  padding: 24px 14px;
  background: #f5f8f3;
}

.priority-card div {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.priority-card small {
  color: var(--coral);
  font-weight: 900;
}

.priority-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

.priority-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.priority-card a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.category-chip {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 7px 13px;
  min-height: 154px;
  padding: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 243, 0.92)),
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.055) 0 1px, transparent 1px 16px);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-chip img {
  grid-row: 1 / span 4;
  width: 78px;
  height: 118px;
  object-fit: contain;
  align-self: center;
  padding: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 107, 99, 0.10);
}

.category-chip:hover,
.rank-card:hover,
.topic-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.category-chip span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  justify-self: start;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.category-chip strong {
  line-height: 1.25;
  font-size: 15px;
}

.category-chip p {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
}

.category-chip em {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.category-chip.stock span {
  background: var(--cream);
  color: #6d4e12;
}

.category-chip.season span {
  background: var(--peach);
  color: #7c2f1f;
}

.category-chip.fresh span {
  background: #e7f2f4;
  color: #164b58;
}

.category-chip.utility span {
  background: #e9edf6;
  color: #243b5b;
}

.category-chip.rest span {
  background: #f0eaf6;
  color: #4a3762;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0 14px;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.18;
}

.section-heading a {
  color: var(--teal-dark);
  font-weight: 800;
}

.section-heading p {
  max-width: 640px;
  margin: 6px 0 0;
  color: var(--muted);
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.rank-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(32, 42, 45, 0.06);
}

.rank-card a {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  min-height: 174px;
  padding: 14px;
  text-decoration: none;
}

.rank-card img {
  width: 112px;
  height: 146px;
  object-fit: cover;
  border-radius: 7px;
  background: var(--mint);
}

.rank-number {
  position: absolute;
  top: 8px;
  left: 8px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.rank-card small {
  color: var(--coral);
  font-weight: 850;
}

.rank-card h3 {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.rank-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.rank-card strong {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 13px;
}

.season-lane {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  margin: 20px 0 34px;
  padding: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.96) 0 0, transparent 118px),
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, rgba(199, 95, 58, 0.15), rgba(70, 111, 143, 0.13)),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(32, 42, 45, 0.08);
}

.season-main {
  display: grid;
  align-content: start;
  gap: 12px;
}

.season-main > img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(15, 73, 68, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.season-lane h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.season-main p {
  margin: 0;
  color: var(--muted);
}

.season-keywords,
.season-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.season-keywords a,
.season-card-links a,
.season-calendar-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(15, 73, 68, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(32, 42, 45, 0.06);
}

.season-calendar-link {
  justify-self: start;
  background: var(--teal);
  color: #ffffff;
}

.season-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.season-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 14px;
  border: 1px solid rgba(15, 73, 68, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(32, 42, 45, 0.06);
}

.season-card img {
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mint);
}

.season-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.season-card h3 {
  margin: 0;
  line-height: 1.28;
}

.season-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.season-card-links a {
  min-height: 30px;
  padding: 6px 9px;
  font-size: 12px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.guide-grid article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.guide-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 107, 99, 0.10);
}

.guide-grid article:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--mint));
}

.guide-grid article:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--cream));
}

.guide-grid article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--peach));
}

.guide-grid article:nth-child(4) {
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.guide-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.guide-grid h3 {
  margin: 8px 0;
  font-size: 17px;
  line-height: 1.35;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.buyer-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 34px;
}

.buyer-path article,
.topic-summary,
.faq-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.buyer-path article {
  min-height: 190px;
  padding: 20px;
}

.buyer-path img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 107, 99, 0.10);
}

.buyer-path span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.buyer-path h3 {
  margin: 12px 0 8px;
  line-height: 1.32;
}

.buyer-path p {
  margin: 0;
  color: var(--muted);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: 4px 0 54px;
}

.topic-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(32, 42, 45, 0.05);
}

.topic-card {
  border-top-width: 5px;
}

.topic-card.daily {
  border-top-color: var(--teal);
}

.topic-card.stock {
  border-top-color: var(--mustard);
}

.topic-card.season {
  border-top-color: var(--coral);
}

.topic-card.fresh {
  border-top-color: #4c8b91;
}

.topic-card.utility {
  border-top-color: var(--blue);
}

.topic-card.rest {
  border-top-color: #8a6ead;
}

.topic-link {
  display: block;
  min-height: 300px;
  padding: 24px;
  text-decoration: none;
}

.topic-visual {
  width: calc(100% + 48px);
  margin: -24px -24px 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--mint);
}

.topic-link h2,
.product-body h2,
.plain-section h2 {
  margin: 10px 0;
  line-height: 1.25;
  letter-spacing: 0;
}

.topic-link h2,
.product-body h2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.topic-link h2 {
  -webkit-line-clamp: 2;
}

.product-body h2 {
  -webkit-line-clamp: 3;
}

.topic-link p,
.product-body p,
.plain-section p,
.side-note p {
  color: var(--muted);
}

.topic-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 4px;
}

.topic-stats span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f5f2e8;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.topic-link strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.topic-cta {
  display: inline-flex;
  margin-top: 14px;
  color: var(--coral);
  font-weight: 900;
}

.topic-source {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.topic-source.live {
  background: #e7f5ef;
  color: var(--teal-dark);
}

.topic-source.sample {
  background: #fff1e8;
  color: #8a4a25;
}

.affiliate-showcase {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 107, 99, 0.10), rgba(199, 95, 58, 0.10)),
    #ffffff;
}

.affiliate-showcase h2 {
  margin: 4px 0 8px;
  line-height: 1.2;
}

.affiliate-showcase p {
  margin: 0;
  color: var(--muted);
}

.ad-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ad-product,
.side-affiliate {
  display: grid;
  gap: 8px;
}

.ad-product {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.ad-product .ad-product-label {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(15, 73, 68, 0.86);
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.ad-product img,
.side-affiliate img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
  background: var(--mint);
}

.ad-product span,
.side-affiliate span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.ad-product strong,
.side-affiliate strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ad-product em,
.side-affiliate em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.ad-product a,
.side-affiliate a {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.ad-product a:hover,
.side-affiliate a:hover {
  background: var(--teal-dark);
}

.breadcrumb {
  padding-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.page-heading {
  padding: 36px 0 18px;
}

.topic-heading {
  position: relative;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.topic-heading.daily {
  background: linear-gradient(135deg, var(--mint), #ffffff);
}

.topic-heading.stock {
  background: linear-gradient(135deg, var(--cream), #ffffff);
}

.topic-heading.season {
  background: linear-gradient(135deg, var(--peach), #ffffff);
}

.topic-heading.fresh {
  background: linear-gradient(135deg, #e7f2f4, #ffffff);
}

.topic-heading.utility {
  background: linear-gradient(135deg, #e9edf6, #ffffff);
}

.topic-heading.rest {
  background: linear-gradient(135deg, #f0eaf6, #ffffff);
}

.topic-heading-visual {
  width: 100%;
  height: 180px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.topic-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 20px;
  margin: 20px 0 18px;
  padding: 22px;
}

.topic-summary h2,
.faq-section h2 {
  margin: 4px 0 10px;
  line-height: 1.22;
}

.topic-summary p {
  margin: 0;
  color: var(--muted);
}

.topic-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-summary li {
  padding: 10px 12px;
  border-radius: 7px;
  background: #f5f8f3;
  color: var(--teal-dark);
  font-weight: 800;
}

.compact-heading {
  margin-top: 20px;
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 0 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.compare-table th,
.compare-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.compare-table th {
  background: #f6f4ec;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.compare-table td:first-child {
  width: 56%;
  font-weight: 800;
  line-height: 1.55;
}

.compare-table td:first-child span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  place-items: center;
  vertical-align: middle;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.compare-table th:nth-child(2),
.compare-table td:nth-child(2) {
  width: 13%;
  white-space: nowrap;
}

.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
  width: 9%;
  white-space: nowrap;
}

.compare-table th:nth-child(4),
.compare-table td:nth-child(4) {
  width: 10%;
  white-space: nowrap;
}

.compare-table th:nth-child(5),
.compare-table td:nth-child(5) {
  width: 12%;
}

.compare-table a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 850;
  text-decoration: none;
}

.category-description {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: 20px;
  margin: 20px 0 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 243, 0.88)),
    #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.category-description h2 {
  margin: 4px 0 10px;
  line-height: 1.24;
}

.category-description p {
  margin: 0 0 10px;
  color: var(--muted);
}

.category-description p:last-child {
  margin-bottom: 0;
}

.category-description ul {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-description li {
  padding: 10px 12px;
  border-radius: 7px;
  background: #ffffff;
  border: 1px solid rgba(23, 107, 99, 0.12);
  color: var(--teal-dark);
  font-weight: 850;
}

.category-description.is-empty {
  background:
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.055) 0 1px, transparent 1px 16px),
    #ffffff;
}

.ranking-table {
  min-width: 1040px;
  table-layout: fixed;
}

.ranking-table th:nth-child(1),
.ranking-table td:nth-child(1) {
  width: 50%;
}

.ranking-table th:nth-child(2),
.ranking-table td:nth-child(2) {
  width: 13%;
}

.ranking-table th:nth-child(3),
.ranking-table td:nth-child(3),
.ranking-table th:nth-child(4),
.ranking-table td:nth-child(4),
.ranking-table th:nth-child(5),
.ranking-table td:nth-child(5) {
  width: 9%;
}

.ranking-table th:nth-child(6),
.ranking-table td:nth-child(6) {
  width: 10%;
}

.ranking-table td:first-child {
  display: table-cell;
  min-width: 0;
  line-height: 1.55;
}

.ranking-table td:first-child span {
  display: inline-grid;
  margin-right: 10px;
  vertical-align: middle;
}

.ranking-table a {
  width: 100%;
  white-space: nowrap;
}

.content-with-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 24px 0 56px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mint);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.caption {
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.reason {
  margin: 8px 0;
  font-weight: 700;
}

.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
}

.score-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f2f5f1;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--teal);
  color: white;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.buy-link:hover {
  background: var(--teal-dark);
}

.buy-link.disabled {
  background: #d7dddf;
  color: #5f676b;
  cursor: default;
}

.buy-link.search {
  background: var(--blue);
}

.buy-link.search:hover {
  background: #355c79;
}

.plain-section {
  max-width: 780px;
  padding: 22px 0 64px;
}

.side-note {
  position: sticky;
  top: 86px;
  margin-top: 24px;
  padding: 18px;
  background: #ffffff;
}

.side-note strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 18px;
}

.side-note ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.side-note li + li {
  margin-top: 6px;
}

.related-searches {
  margin-top: 18px;
}

.related-searches strong {
  font-size: 15px;
}

.related-searches div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.related-searches a {
  padding: 6px 9px;
  border: 1px solid rgba(23, 107, 99, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.side-affiliate {
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.ad-slot {
  padding: 18px;
  background:
    repeating-linear-gradient(135deg, rgba(23, 107, 99, 0.08) 0 8px, transparent 8px 16px),
    #fffdf8;
  color: var(--ink);
}

.ad-slot strong {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
}

.ad-slot.compact {
  margin-top: 18px;
  min-height: 130px;
}

.topic-alert {
  margin-top: 16px;
  padding: 12px 14px;
  background: #fff8ec;
  border: 1px solid #e6c79e;
  border-radius: 7px;
  color: #66431c;
  font-size: 14px;
}

.faq-section {
  margin: 0 0 58px;
  padding: 22px;
}

.faq-section details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.faq-section summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-section details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.policy-grid,
.month-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 8px 0 64px;
}

.policy-grid article,
.month-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(32, 42, 45, 0.05);
}

.policy-grid span,
.month-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.policy-grid h2,
.month-grid h2 {
  margin: 8px 0;
  line-height: 1.28;
}

.policy-grid p {
  margin: 0;
  color: var(--muted);
}

.month-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-card {
  padding: 14px;
  border: 1px solid rgba(15, 73, 68, 0.10);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 243, 0.92)),
    #ffffff;
}

.event-card small {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.event-card h3 {
  margin: 6px 0 6px;
  line-height: 1.32;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.event-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.month-grid a {
  padding: 7px 10px;
  border: 1px solid rgba(23, 107, 99, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .hero,
  .content-with-rail {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .feature-band,
  .quick-links,
  .season-lane,
  .season-card-grid,
  .guide-grid,
  .affiliate-showcase,
  .ad-product-grid,
  .buyer-path,
  .ranking-feature-grid,
  .intent-grid,
  .guide-card,
  .priority-strip,
  .priority-card,
  .topic-summary,
  .category-description,
  .policy-grid,
  .month-grid,
  .rank-grid,
  .topics-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-card a {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .rank-card img {
    width: 112px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: 180px;
    margin-bottom: 18px;
  }

  .side-note {
    position: static;
    margin-top: 0;
  }

  .site-search {
    grid-template-columns: 1fr;
  }

  .site-search p {
    text-align: left;
  }

  .home-utility {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }

  .hero-info-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 22px, 1160px);
  }

  .category-nav {
    grid-template-columns: 1fr;
  }

  .rank-card a {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .rank-card img {
    width: 96px;
    height: 128px;
  }

  .hero h1,
  .page-heading h1 {
    font-size: 40px;
  }

  .site-header {
    gap: 18px;
    padding: 18px 22px;
  }

  .site-header nav {
    gap: 14px 18px;
    font-size: 15px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-copy {
    padding: 28px 28px 24px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .hero-info-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-info-row span {
    min-height: 62px;
    padding: 10px;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-gallery a:nth-child(n + 5) {
    display: none;
  }

  .site-search div {
    grid-template-columns: 1fr;
  }

  .season-lane {
    padding: 18px;
  }
}

/* Clean comparison memo design prototype */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--teal-dark);
}

.site-header,
.site-footer {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.section-heading a,
.site-search label,
.site-search p a,
.category-chip strong,
.rank-card strong,
.season-keywords a,
.season-card-links a,
.season-calendar-link,
.related-searches a,
.eyebrow,
.topic-kicker,
.rank-card small,
.guide-grid span,
.policy-grid span,
.month-grid span,
.product-meta {
  color: var(--teal-dark);
}

.site-search,
.hero-copy,
.status-panel,
.feature-band,
.quick-links a,
.category-chip,
.rank-card,
.season-lane,
.buyer-path article,
.topic-summary,
.faq-section,
.topic-card,
.product-card,
.compare-table-wrap,
.category-description,
.side-note,
.side-affiliate,
.policy-grid article,
.month-grid article,
.guide-grid article,
.ranking-feature,
.intent-card,
.guide-card,
.priority-card,
.month-card,
.event-card,
.ad-slot {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  background-color: #ffffff;
}

.hero-copy,
.status-panel,
.season-lane,
.topic-heading.stock,
.topic-heading.season,
.topic-heading.fresh,
.topic-heading.utility,
.topic-heading.rest,
.category-description {
  background:
    linear-gradient(180deg, rgba(248, 249, 247, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.hero-copy::after,
.quick-links a::after {
  display: none;
}

.hero-visual {
  display: none;
}

.hero h1,
.page-heading h1 {
  line-height: 1.1;
}

.hero p,
.page-heading p,
.section-heading p,
.topic-link p,
.product-body p,
.category-description p,
.side-note li,
.policy-grid p,
.month-grid p {
  line-height: 1.78;
}

.section-heading {
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.ad-notice,
.topic-alert {
  background: #fafafa;
  border-color: var(--line);
  color: var(--muted);
}

.primary-action,
.buy-link,
.compare-table a,
.priority-card a,
.intent-card a,
.guide-card a,
.season-calendar-link {
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
}

.primary-action:visited,
.buy-link:visited,
.compare-table a:visited,
.priority-card a:visited,
.intent-card a:visited,
.guide-card a:visited,
.season-calendar-link:visited {
  color: #ffffff;
}

.primary-action:hover,
.buy-link:hover,
.compare-table a:hover,
.priority-card a:hover,
.intent-card a:hover,
.guide-card a:hover {
  background: var(--teal-dark);
}

.secondary-action,
.site-search button,
.season-tags span,
.season-keywords a,
.season-card-links a,
.related-searches a,
.month-grid a,
.score-row span,
.topic-summary li,
.category-chip span,
.buyer-path span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f9f8;
  color: var(--teal-dark);
}

.topic-card,
.topic-card.daily,
.topic-card.stock,
.topic-card.season,
.topic-card.fresh,
.topic-card.utility,
.topic-card.rest {
  border-top-width: 1px;
  border-top-color: var(--line);
}

.topic-card:hover,
.product-card:hover,
.rank-card:hover,
.category-chip:hover {
  transform: none;
  box-shadow: none;
}

.topic-link,
.product-body,
.buyer-path article,
.topic-summary,
.category-description,
.side-note,
.faq-section {
  background: #ffffff;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.compare-table th {
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.compare-table td {
  border-bottom: 1px solid var(--line);
}

.compare-table td:first-child {
  font-weight: 750;
}

.compare-table td:first-child span,
.rank-number,
.product-rank {
  background: var(--teal);
  color: #ffffff;
}

.product-card {
  overflow: hidden;
}

.product-body {
  padding: 18px 18px 20px;
}

.product-meta,
.score-row {
  display: grid;
  gap: 0;
  margin: 10px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.product-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.score-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-meta span,
.score-row span {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  text-align: center;
}

.product-meta span:last-child,
.score-row span:last-child {
  border-right: 0;
}

.product-meta span:first-child,
.score-row span:first-child {
  color: var(--teal-dark);
}

.reason {
  margin: 12px 0;
}

.category-description {
  gap: 24px;
}

.category-description li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: 8px;
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.category-description li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  color: var(--teal-dark);
  font-weight: 900;
}

.product-card img,
.topic-visual,
.rank-card img,
.priority-card img,
.category-chip img,
.quick-links img,
.buyer-path img,
.guide-grid img,
.season-main > img,
.season-card img,
.ranking-feature img,
.intent-card img,
.guide-card img,
.topic-heading-visual {
  border-radius: 8px;
}

.season-lane .season-calendar-link,
.season-lane .season-calendar-link:link,
.season-lane .season-calendar-link:visited,
.season-lane .season-calendar-link:hover,
.season-lane .season-calendar-link:focus {
  background: var(--teal);
  color: #ffffff;
}
