/*
 * KRG review page — shared block stylesheet.
 *
 * Ported from docs/krg-review-package/02-design/krg-review.css. Two changes
 * from the source, both required to live inside the theme rather than owning
 * a standalone page:
 *
 * 1. `body { margin: 0 }` is dropped. It fought the theme's Tailwind base.
 * 2. The design wraps the whole page in one `.krg-review` div. The blocks are
 *    non-contiguous — editor prose sits between them — so each block root
 *    carries `.krg-review` instead, and the page background moves to a
 *    `body.krg-review-page` class added by krg_review_body_class().
 *
 * Everything else is verbatim. All custom properties are `--krg-` prefixed,
 * so they collide with nothing else in the theme; keep them on :root so the
 * sticky bar, which renders outside the content wrapper, can still read them.
 * Add new values as custom properties here — never as inline styles.
 */

/* ==========================================================================
   Kitchen Review Guide — Review Page Stylesheet
   Converted from Cookware_Landing_Redesign_dc.html (all inline styles removed).
   Every colour, radius and font is a custom property: A/B style tests only
   need to override the :root block, never the component rules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --krg-primary:        #0d6c68;
  --krg-primary-dark:   #0a5854;
  --krg-accent:         #c14425;
  --krg-accent-deep:    #c14a2c;
  --krg-accent-deeper:  #a63a20;
  --krg-peach:          #e8ac89;
  --krg-peach-dark:     #e2a075;
  --krg-star:           #f0a93e;
  --krg-star-light:     #f5c05a;

  /* Surfaces */
  --krg-page-bg:        #fbf9f5;
  --krg-panel:          #f6f5f2;
  --krg-panel-alt:      #f2f2f0;
  --krg-spotlight-bg:   #fdf8f2;
  --krg-hero-start:     #fff6ef;
  --krg-hero-end:       #fdeee2;
  --krg-row-a:          #f3f2ef;
  --krg-row-b:          #fafaf8;
  --krg-row-top:        #eef5f4;
  --krg-row-top-hover:  #e2eeec;

  /* Text */
  --krg-text:           #1c1c1c;
  --krg-text-strong:    #141414;
  --krg-text-body:      #3a3a3a;
  --krg-text-muted:     #4a4a4a;
  --krg-text-soft:      #5a5a5a;
  --krg-text-faint:     #6a6a6a;
  --krg-text-light:     #8a8a8a;
  --krg-text-lighter:   #9a9a9a;
  --krg-grey-chip:      #7a7a7a;

  /* Lines */
  --krg-line:           rgba(0,0,0,0.08);
  --krg-line-strong:    rgba(0,0,0,0.10);
  --krg-line-soft:      rgba(0,0,0,0.06);
  --krg-line-invert:    rgba(255,255,255,0.15);

  /* Shape */
  --krg-radius:         12px;
  --krg-radius-lg:      16px;
  --krg-radius-md:      10px;
  --krg-radius-sm:      8px;
  --krg-radius-pill:    20px;

  /* Shadows */
  --krg-shadow-cta:     0 4px 10px -2px rgba(0,0,0,0.25);
  --krg-shadow-img:     0 10px 20px -12px rgba(0,0,0,0.18);
  --krg-shadow-row:     0 4px 14px rgba(0,0,0,0.08);

  /* Type */
  --krg-font:           -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --krg-font-serif:     "Source Serif 4", Georgia, serif;
  --krg-font-quote:     Georgia, serif;

  /* Layout */
  --krg-maxw:           1180px;
  /* The read sections line up with the pair of mini cards above them rather
     than with a ratio: two .krg-mini at their 400px cap plus the 20px flex gap
     is an 820px band, and the wrap adds a gutter either side. 820 + 64 = 884. */
  --krg-maxw-narrow:     884px;
  --krg-gutter:         32px;

  /* Feature switches — flip to `none` to kill an effect site-wide */
  --krg-anim-hero:      glowPulse 3.5s ease-in-out infinite;
  --krg-anim-urgency:   urgencyFlash 3s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   2. ANIMATIONS  (respect reduced-motion — the mockup did not)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  :root { --krg-anim-hero: none; --krg-anim-urgency: none; }
  .krg-badge--sale,
  .krg-dot,
  .krg-sticky { animation: none !important; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226,140,102,0.35); }
  50%      { box-shadow: 0 0 0 10px rgba(226,140,102,0); }
}
@keyframes salePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(193,74,44,0.5); }
  50%      { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(193,74,44,0); }
}
@keyframes barPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(232,172,137,0.55); }
  50%      { box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 0 9px rgba(232,172,137,0); }
}
@keyframes dotBlink {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.75); }
}
@keyframes urgencyFlash {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* --------------------------------------------------------------------------
   3. BASE + LAYOUT
   -------------------------------------------------------------------------- */

.krg-review {
  /* Adapted from the mockup, where this was the single page-level wrapper.
     Here it sits on every block root, including the position:fixed sticky
     bar, so it must carry only typography — `min-height: 100%` made the
     sticky bar a full-viewport block, and the page ground now lives on
     body.krg-review-page instead of being repainted per block. */
  font-family: var(--krg-font);
  color: var(--krg-text);
}
.krg-review *,
.krg-review *::before,
.krg-review *::after { box-sizing: border-box; }

/* Added for this site: EWWW Image Optimizer rewrites every image into
   <picture><source …><img …></picture>. That wrapper becomes the flex/grid
   item while all the sizing rules below target the <img> inside it, so
   without this the design's image layout never applies. `display: contents`
   drops the wrapper from layout and hands the box back to the <img>. */
.krg-review picture { display: contents; }

/* Two more EWWW side effects, both of which only show up as spacing.
   `display: contents` above promotes *both* of a <picture>'s children to
   flex/grid items — the <img> and the <source> — and EWWW adds a <noscript>
   fallback as a sibling. None of the three renders anything, but each claims
   a gap: in the press-logo row that turned four logos into eight items, and a
   320px row into a 358px scroll width that spilled into the column beside it. */
.krg-review noscript,
.krg-review picture > source { display: none; }

/* Added for this site: the theme applies
     article > *:not(.entry-content) { max-width: 960px; margin-inline: auto }
   globally in css/app.css. The comp builds the hero, mini, rank and spotlight
   cards as <article> elements, so every row inside them — the spotlight bar and
   grid, the rank head, grid and foot, the hero and mini bodies — was capped at
   960px and centred inside a wider card. That reads as stray padding and as
   content failing to fill its section. Reset it for these cards only. */
.krg-review article > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.krg-wrap {
  max-width: var(--krg-maxw);
  margin: 0 auto;
  padding-left: var(--krg-gutter);
  padding-right: var(--krg-gutter);
}

/* Methodology, buying guide, care and FAQ are read rather than scanned, so they
   sit in a narrower column than the comparison table and the product cards. The
   --xl/--wide/--tight modifiers below are padding only; width is set here. */
.krg-wrap--narrow { max-width: var(--krg-maxw-narrow); }
.krg-section       { padding-bottom: 32px; }
.krg-section--tight{ padding-bottom: 24px; }
.krg-section--wide { padding-bottom: 40px; }
.krg-section--xl   { padding-bottom: 56px; }

.krg-h2 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }

.krg-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   4. NAV
   -------------------------------------------------------------------------- */
.krg-nav {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 48px;
  border-bottom: 1px solid var(--krg-line);
}
.krg-nav__logo {
  width: 38px; height: 38px; border-radius: 50%;
  flex: none; object-fit: cover;
}
.krg-nav__name { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }

/* --------------------------------------------------------------------------
   5. HERO / PAGE HEADER
   -------------------------------------------------------------------------- */
.krg-header { padding-top: 36px; padding-bottom: 8px; }

.krg-breadcrumb { font-size: 13px; color: var(--krg-text-light); margin-bottom: 14px; }

.krg-title {
  font-family: var(--krg-font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 14px;
  color: var(--krg-text-strong);
}
.krg-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  font-size: 13px; color: var(--krg-text-soft); margin-bottom: 18px;
}
.krg-meta strong { color: var(--krg-text); }

.krg-rule { height: 1px; background: var(--krg-line-strong); margin-bottom: 16px; }

.krg-disclosure { font-size: 12.5px; color: var(--krg-text-lighter); margin-bottom: 26px; }
.krg-disclosure a { color: inherit; }

.krg-deck {
  font-family: var(--krg-font-quote);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: var(--krg-text-body);
  max-width: 900px;
  margin: 0 0 32px;
}

/* --------------------------------------------------------------------------
   6. COMPARISON TABLE
   -------------------------------------------------------------------------- */
.krg-table-scroll {
  overflow-x: auto; overflow-y: hidden;
  border: 1px solid var(--krg-line);
  border-radius: var(--krg-radius);
}
.krg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 640px;
  border-radius: var(--krg-radius);
  overflow: hidden;
}
.krg-table thead tr { background: var(--krg-primary); color: #fff; text-align: left; }
.krg-table th { padding: 12px 16px; font-weight: 700; }
.krg-table td { padding: 12px 16px; }

.krg-table tbody tr { border-bottom: 1px solid var(--krg-line-soft); cursor: pointer; }
.krg-table tbody tr:last-child { border-bottom: 0; }
.krg-table tbody tr:nth-child(odd)  { background: var(--krg-row-b); }
.krg-table tbody tr:nth-child(even) { background: var(--krg-row-a); }
.krg-table tbody tr:nth-child(odd):hover  { background: #f0f0ee; }
.krg-table tbody tr:nth-child(even):hover { background: #ecebe7; }

/* Rank 1 row gets lifted */
.krg-table__row--top,
.krg-table tbody tr.krg-table__row--top { background: var(--krg-row-top); }
.krg-table tbody tr.krg-table__row--top:hover { background: var(--krg-row-top-hover); }
.krg-table__row--top {
  transform: scale(1.02);
  box-shadow: var(--krg-shadow-row);
  position: relative;
  z-index: 1;
}
.krg-table__row--top td { padding: 14px 16px; }
.krg-table__row--top .krg-table__name  { font-weight: 700; font-size: 14.5px; }
.krg-table__row--top .krg-table__score { font-weight: 700; font-size: 14.5px; color: var(--krg-primary); }

/* Sticky action column */
.krg-table th:last-child,
.krg-table td:last-child {
  position: sticky; right: 0; z-index: 2;
  width: 116px;
  padding: 10px 16px 10px 8px;
  text-align: center;
  border-left: 1px solid var(--krg-line);
}
.krg-table th:last-child {
  background: var(--krg-primary-dark);
  border-left-color: var(--krg-line-invert);
}
.krg-table tbody tr:nth-child(odd)  td:last-child { background: var(--krg-row-b); }
.krg-table tbody tr:nth-child(even) td:last-child { background: var(--krg-row-a); }
.krg-table tbody tr.krg-table__row--top td:last-child { background: var(--krg-row-top); }

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.krg-cta {
  display: inline-block;
  background: var(--krg-primary);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--krg-radius-sm);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--krg-shadow-cta);
  padding: 14px 30px;
  font-size: 14px;
}
.krg-cta:hover { background: var(--krg-primary-dark); }
.krg-cta--lg    { padding: 16px 36px; }
.krg-cta--md    { padding: 13px 28px; font-size: 13px; border-radius: 7px; }
.krg-cta--sm    { padding: 9px; font-size: 12px; border-radius: 7px; width: 100%; }
.krg-cta--flat  { box-shadow: none; }
.krg-cta--flat:hover { box-shadow: var(--krg-shadow-cta); }

.krg-cta--pill {
  background: var(--krg-peach);
  color: var(--krg-text);
  border-radius: var(--krg-radius-pill);
  padding: 7px 14px;
  font-size: 11px;
  white-space: nowrap;
  box-shadow: 0 2px 6px -1px rgba(0,0,0,0.25);
}
.krg-cta--pill:hover { background: var(--krg-peach-dark); }
.krg-table__row--top .krg-cta--pill { padding: 9px 18px; font-size: 12.5px; }

/* --------------------------------------------------------------------------
   8. RANK 1 — HERO CARD
   -------------------------------------------------------------------------- */
.krg-picks {
  display: flex; flex-direction: column; gap: 20px;
  padding-bottom: 40px;
}

.krg-hero {
  position: relative; isolation: isolate; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
  background: linear-gradient(135deg, var(--krg-hero-start), var(--krg-hero-end));
  border: 2px solid var(--krg-peach);
  border-radius: var(--krg-radius-lg);
  padding: 28px 32px;
  scroll-margin-top: 90px;
  animation: var(--krg-anim-hero);
}
.krg-hero__rank {
  position: absolute; top: -12px; left: -12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--krg-primary); color: #fff;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,0.3);
  border: 2px solid #fff; z-index: 2;
}
.krg-badge {
  position: absolute; top: -14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: var(--krg-radius-pill);
  color: #fff;
}
.krg-badge--award { left: 28px;  background: var(--krg-primary); }
.krg-badge--sale  { right: 28px; background: var(--krg-accent-deep); cursor: pointer; animation: salePulse 1.8s ease-in-out infinite; }
.krg-badge--sale:hover { animation-play-state: paused; transform: scale(1.12); }

.krg-hero__media { flex: 0 0 280px; width: 280px; }
.krg-hero__img {
  width: 280px; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--krg-radius);
  box-shadow: var(--krg-shadow-img);
  filter: drop-shadow(0 3px 7px rgba(0,0,0,0.08));
}
.krg-hero__body { flex: 1 1 300px; min-width: 240px; }

.krg-hero__brand {
  color: var(--krg-accent); font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.krg-hero__name { font-size: 19px; font-weight: 700; margin-bottom: 8px; }

.krg-score { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.krg-score__stars { color: var(--krg-star); letter-spacing: 1px; }
.krg-score__value { font-weight: 700; font-size: 15px; }
.krg-score__count { font-size: 12.5px; color: var(--krg-text-light); }

.krg-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.krg-chip {
  background: #fff; border: 1px solid var(--krg-line-strong);
  border-radius: 14px; padding: 5px 12px;
  font-size: 11.5px; font-weight: 600; color: var(--krg-text-muted);
}
.krg-chips:empty { display: none; }

.krg-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--krg-text-soft); margin-bottom: 16px;
}
.krg-trust--lg { gap: 22px; font-size: 13px; margin-bottom: 0; }
.krg-trust:empty { display: none; }

.krg-deal {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 12.5px; font-weight: 700; color: var(--krg-accent);
}
.krg-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; display: inline-block;
  animation: dotBlink 1.1s ease-in-out infinite;
}
.krg-dot--lg { width: 9px; height: 9px; background: #fff; }

.krg-press { margin-top: 18px; }
.krg-press__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--krg-text-lighter); margin-bottom: 8px;
}
.krg-press__row {
  display: flex; gap: 20px; align-items: center; flex-wrap: nowrap;
  opacity: 0.7;
}
.krg-press__row img { width: 64px; height: 34px; object-fit: contain; }
.krg-press:has(.krg-press__row:empty) { display: none; }

.krg-guarantee {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 12px; color: var(--krg-text-faint);
}
.krg-guarantee__sep { color: #c9b8a8; }

/* --------------------------------------------------------------------------
   9. RANKS 2–3 — MINI CARDS
   -------------------------------------------------------------------------- */
.krg-minirow { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

.krg-mini {
  flex: 1 1 320px; max-width: 400px;
  background: var(--krg-panel);
  border: 1px solid var(--krg-line);
  border-radius: var(--krg-radius);
  padding: 16px;
  display: flex; gap: 14px; align-items: center;
}
.krg-mini__img {
  flex: 0 0 130px; width: 130px; aspect-ratio: 16/9;
  object-fit: cover; display: block; border-radius: var(--krg-radius-md);
}
.krg-mini__body { flex: 1; min-width: 0; }
.krg-mini__head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.krg-mini__rank {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--krg-text-lighter); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.krg-mini__brand { font-size: 11px; font-weight: 700; color: var(--krg-text-soft); text-transform: uppercase; }
.krg-mini__name  { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.krg-mini .krg-score { margin-bottom: 10px; }
.krg-mini .krg-score__stars { font-size: 13px; }
.krg-mini .krg-score__value { font-size: 13px; }

/* --------------------------------------------------------------------------
   10. CALLOUT PANEL (methodology / care)
   -------------------------------------------------------------------------- */
.krg-callout {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--krg-panel);
  border-radius: var(--krg-radius);
  padding: 20px 24px;
}
.krg-callout__icon { font-size: 22px; flex: none; }
.krg-callout__title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.krg-callout__text  { font-size: 14px; line-height: 1.6; color: var(--krg-text-muted); }

/* --------------------------------------------------------------------------
   11. RANK 1 — DETAIL SPOTLIGHT
   -------------------------------------------------------------------------- */
.krg-spotlight {
  background: var(--krg-spotlight-bg);
  border: 1px solid var(--krg-line);
  border-radius: 14px;
  overflow: hidden;
}
.krg-spotlight__bar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 16px 28px;
  background: var(--krg-primary);
  color: #fff;
}
.krg-spotlight__bar-title { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; white-space: nowrap; }
.krg-spotlight__bar .krg-score__stars { color: var(--krg-star-light); }

.krg-spotlight__grid { display: flex; gap: 32px; flex-wrap: wrap; padding: 28px; }
.krg-spotlight__media { flex: 0 0 320px; width: 320px; }
.krg-spotlight__img {
  width: 320px; height: 180px; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--krg-radius);
  box-shadow: var(--krg-shadow-img);
  filter: drop-shadow(0 3px 7px rgba(0,0,0,0.08));
}
.krg-spotlight__media .krg-press__row { justify-content: center; margin-top: 24px; }
.krg-spotlight__body { flex: 1 1 320px; min-width: 240px; }
.krg-spotlight__brand {
  font-size: 12px; color: var(--krg-accent); font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 6px; text-transform: uppercase;
}
.krg-spotlight__name { font-size: 24px; font-weight: 700; margin-bottom: 12px; }

.krg-bestfor {
  background: var(--krg-panel);
  border-radius: var(--krg-radius-md);
  padding: 12px 16px; margin-bottom: 16px;
  font-size: 13px; line-height: 1.6; color: var(--krg-text-muted);
}

.krg-pros { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; padding: 0; list-style: none; }
.krg-pros:empty { display: none; }
.krg-pros li { display: flex; align-items: baseline; gap: 8px; font-size: 14px; color: #2a2a2a; }
.krg-pros li::before { content: "✓"; color: var(--krg-primary); font-weight: 700; }

.krg-specs__label { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 12px; }
.krg-specs { display: flex; flex-wrap: wrap; gap: 0; }
.krg-specs__item { padding: 0 18px 10px 18px; border-left: 1px solid var(--krg-line-strong); }
.krg-specs__item:first-child { padding-left: 0; border-left: 0; }
.krg-specs__item:last-child  { padding-right: 0; }
.krg-specs__key   { font-size: 12.5px; color: var(--krg-text-light); }
.krg-specs__value { font-size: 13.5px; font-weight: 700; margin-left: 6px; }

.krg-spotlight__foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding: 20px 28px;
  border-top: 1px solid var(--krg-line);
}

.krg-urgency {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(90deg, var(--krg-accent-deep), var(--krg-accent-deeper), var(--krg-accent-deep));
  background-size: 200% 100%;
  animation: var(--krg-anim-urgency);
  font-size: 13px; font-weight: 700; color: #fff;
}
.krg-urgency__left  { display: flex; align-items: center; gap: 8px; }
.krg-urgency__stamp { letter-spacing: 0.04em; font-size: 11.5px; opacity: 0.9; }

/* --------------------------------------------------------------------------
   12. RANKS 2+ — RANKED ROW  (runner-up uses the same component)
   -------------------------------------------------------------------------- */
.krg-rank {
  background: var(--krg-panel-alt);
  border-radius: var(--krg-radius);
  padding: 24px 28px;
  scroll-margin-top: 90px;
}
.krg-rank__badge {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-size: 13px; font-weight: 700; color: var(--krg-text-muted);
}
.krg-rank__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; flex-wrap: wrap; gap: 8px;
}
.krg-rank__brand { font-style: italic; font-size: 13px; color: var(--krg-grey-chip); margin-bottom: 2px; }
.krg-rank__name  { font-size: 19px; font-weight: 700; }
.krg-rank__score { text-align: right; }
.krg-rank__score-label { font-size: 12px; color: var(--krg-text-light); }
.krg-rank__score-value { font-size: 22px; font-weight: 800; }

.krg-rank__grid { display: flex; gap: 24px; flex-wrap: wrap; }
.krg-rank__img  { flex: 1 1 320px; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--krg-radius-md); }
.krg-rank__col  { flex: 1 1 280px; min-width: 0; }
/* Added: with no "Includes" list the image is the row's only real content, and
   flex-grow would stretch it across the full row — the 16/9 ratio then makes
   it a ~460px-tall block. The template sets --solo when the list is absent, so
   the image falls back to its 320px basis. included_items is populated on very
   few products, so this is the common case rather than the edge one. */
.krg-rank__grid--solo .krg-rank__img { flex-grow: 0; min-width: 0; }
/* min-width:0 is required as well: flex items default to min-width:auto,
   which for an <img> floors at its intrinsic width (575px for the
   review-image size) and would override the 320px basis. */

.krg-rank__col-label { font-size: 13px; font-weight: 700; color: var(--krg-text-faint); margin-bottom: 6px; }
.krg-rank__list { margin: 0; padding-left: 18px; font-size: 14px; line-height: 1.85; color: var(--krg-text-body); }
.krg-rank__list:empty { display: none; }

.krg-rank__foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; margin-top: 16px;
}
.krg-rank__deal { font-size: 13px; color: var(--krg-text-soft); }

/* --------------------------------------------------------------------------
   13. BUYING GUIDE / FAQ / RECENT
   -------------------------------------------------------------------------- */
.krg-cards { display: flex; gap: 20px; flex-wrap: wrap; }
.krg-card {
  flex: 1 1 220px;
  background: var(--krg-panel);
  border-radius: var(--krg-radius);
  padding: 18px 20px;
}
.krg-card__title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.krg-card__text  { font-size: 13.5px; line-height: 1.6; color: var(--krg-text-muted); }

.krg-faq { display: flex; flex-direction: column; gap: 12px; }
.krg-faq__item { border-bottom: 1px solid var(--krg-line-strong); padding-bottom: 12px; }
.krg-faq__item:last-child { border-bottom: 0; padding-bottom: 0; }
.krg-faq__q { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.krg-faq__a { font-size: 13.5px; line-height: 1.6; color: var(--krg-text-muted); }

.krg-recent {
  max-width: var(--krg-maxw);
  margin: 60px auto 0;
  padding: 40px var(--krg-gutter) 60px;
  text-align: center;
  background: var(--krg-panel);
}
.krg-recent__sub { font-size: 14px; color: var(--krg-text-faint); margin-bottom: 30px; }
.krg-recent__grid { display: flex; gap: 24px; flex-wrap: wrap; text-align: left; }
.krg-recent__item { flex: 1 1 280px; }
.krg-recent__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--krg-radius-md); margin-bottom: 14px;
}
.krg-recent__title { font-size: 15px; font-weight: 700; }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.krg-footer { background: var(--krg-primary); color: #fff; padding: 44px 48px 24px; }
.krg-footer__grid {
  max-width: var(--krg-maxw); margin: 0 auto;
  display: flex; gap: 60px; flex-wrap: wrap; padding-bottom: 28px;
}
.krg-footer__col--wide   { flex: 1 1 300px; }
.krg-footer__col--narrow { flex: 1 1 200px; }
.krg-footer__title { font-size: 13px; font-weight: 700; letter-spacing: 0.03em; margin-bottom: 12px; }
.krg-footer__text  { font-size: 13px; line-height: 1.7; opacity: 0.85; }
.krg-footer__links { font-size: 13px; line-height: 2; opacity: 0.85; }
.krg-footer__bottom {
  max-width: var(--krg-maxw); margin: 0 auto;
  border-top: 1px solid var(--krg-line-invert);
  padding-top: 16px; font-size: 12px; opacity: 0.7; text-align: center;
}

/* --------------------------------------------------------------------------
   15. STICKY JUMP BAR
   -------------------------------------------------------------------------- */
.krg-sticky {
  position: fixed; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: var(--krg-primary); color: #fff;
  border-radius: 9px;
  padding: 6px 12px;
  display: flex; align-items: center; gap: 10px;
  z-index: 50; max-width: 92vw;
  animation: barPulse 2.6s ease-in-out infinite;
}
.krg-sticky:hover { animation-play-state: paused; }
.krg-sticky[hidden] { display: none; }
.krg-sticky__info { display: flex; align-items: center; gap: 8px; font-size: 11.5px; flex-wrap: wrap; }
.krg-sticky__tag {
  background: var(--krg-line-invert); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 0.02em;
  padding: 2px 7px; border-radius: 9px; flex: none;
}
.krg-sticky__name  { font-weight: 700; }
.krg-sticky__score { color: var(--krg-star); font-weight: 700; }
.krg-sticky .krg-cta {
  padding: 6px 14px; font-size: 11px; border-radius: 6px; flex: none;
  background: var(--krg-peach); color: var(--krg-text); letter-spacing: 0.02em;
}
.krg-sticky .krg-cta:hover { background: var(--krg-peach-dark); }

/* --------------------------------------------------------------------------
   16. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .krg-spotlight__media,
  .krg-spotlight__img { flex-basis: 100%; width: 100%; }
  .krg-spotlight__img { height: auto; }
}
@media (max-width: 680px) {
  :root { --krg-gutter: 18px; }
  .krg-nav    { padding: 8px 18px; }
  .krg-footer { padding: 32px 18px 20px; }
  .krg-hero   { padding: 24px 18px; }
  .krg-hero__media,
  .krg-hero__img { flex-basis: 100%; width: 100%; }
  .krg-spotlight__grid { padding: 20px; }
  .krg-rank   { padding: 18px 18px; }
  .krg-specs__item { border-left: 0; padding-left: 0; }
  .krg-sticky { left: 12px; right: 12px; transform: none; max-width: none; }
}

/* --------------------------------------------------------------------------
   PAGE GROUND
   The mockup's single `.krg-review` wrapper owned the page background. Here
   the class sits on each block root, so the ground is applied to the body of
   any page that renders one of these blocks.
   -------------------------------------------------------------------------- */
body.krg-review-page {
  background: var(--krg-page-bg);
}
