/**
 * FideoMart Storefront — Complete Stylesheet
 * Matches Fideograph theme: Playfair Display headings, Source Serif 4 body,
 * dark background (#0F0E0A), gold accent (#C9A84C).
 */

/* ── Tokens ────────────────────────────────────────────── */
:root {
  --fgmt-bg: #FAF6ED;
  --fgmt-bg-2: #F0EAD9;
  --fgmt-bg-3: #E6DEC8;
  --fgmt-bg-4: #DDD4B8;
  --fgmt-gold: #C9A84C;
  --fgmt-gold-lt: #D4AE52;
  --fgmt-gold-dim: rgba(201, 168, 76, .15);
  --fgmt-gold-mid: rgba(201, 168, 76, .42);
  --fgmt-gold-glow: rgba(201, 168, 76, .08);
  --fgmt-text: #1A1510;
  --fgmt-text-muted: rgba(26, 21, 16, .65);
  --fgmt-text-dim: rgba(26, 21, 16, .42);
  --fgmt-border: rgba(26, 21, 16, .1);
  --fgmt-border-2: rgba(26, 21, 16, .06);
  --fgmt-radius: 6px;
  --fgmt-radius-lg: 12px;
  --fgmt-radius-xl: 18px;

  /* Typography (mirror theme) */
  --fgmt-font-display: 'Playfair Display', Georgia, serif;
  --fgmt-font-body: 'Source Serif 4', Georgia, serif;
  --fgmt-font-prose: 'EB Garamond', Georgia, serif;
  --fgmt-font-ui: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
.fgmt-home *,
.fgmt-picks-page *,
.fgmt-guide-page *,
.fgmt-guides-page * {
  box-sizing: border-box;
}

/* ── Shared Utilities ──────────────────────────────────── */
.fgmt-accent {
  color: var(--fgmt-gold);
}

.fgmt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--fgmt-radius);
  font-family: var(--fgmt-font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  transition: opacity .18s, transform .14s, background .18s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.fgmt-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.fgmt-btn:active {
  transform: translateY(0);
}

.fgmt-btn--gold {
  background: var(--fgmt-gold);
  color: #0F0E0A;
}

.fgmt-btn--gold:hover {
  background: var(--fgmt-gold-lt);
  opacity: 1;
}

.fgmt-btn--outline {
  background: transparent;
  border: 1px solid var(--fgmt-gold-mid);
  color: var(--fgmt-gold);
}

.fgmt-btn--outline:hover {
  background: var(--fgmt-gold-dim);
  opacity: 1;
}

.fgmt-section-title {
  font-family: var(--fgmt-font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0;
}

.fgmt-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.fgmt-section-link {
  font-family: var(--fgmt-font-ui);
  font-size: 13px;
  color: var(--fgmt-gold);
  text-decoration: none;
  white-space: nowrap;
}

.fgmt-section-link:hover {
  text-decoration: underline;
}

.fgmt-rule {
  height: 1px;
  width: 100%;
  margin: 0;
}

.fgmt-rule--gold {
  background: var(--fgmt-gold-mid);
}

.fgmt-rule--dim {
  background: var(--fgmt-border-2);
}

/* Image fallback */
.fgmt-img--fallback .fgmt-shelf-card__img,
.fgmt-img--fallback .fgmt-prod-entry__img,
.fgmt-img--fallback .fgmt-card__img {
  display: none;
}

.fgmt-shelf-card__fallback-icon,
.fgmt-prod-entry__fallback,
.fgmt-card__img-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  pointer-events: none;
  width: 52px;
  height: 52px;
  background: var(--fgmt-text);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--fgmt-gold);
}

.fgmt-shelf-card__fallback-icon svg,
.fgmt-prod-entry__fallback svg,
.fgmt-card__img-fallback svg {
  width: 26px;
  height: 26px;
}

.fgmt-img--fallback .fgmt-shelf-card__fallback-icon,
.fgmt-img--fallback .fgmt-prod-entry__fallback,
.fgmt-img--fallback .fgmt-card__img-fallback {
  display: flex;
}

/* ── Breadcrumb ────────────────────────────────────────── */
.fgmt-breadcrumb {
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  color: var(--fgmt-text-dim);
  margin-bottom: 16px;
  letter-spacing: .02em;
}

.fgmt-breadcrumb a {
  color: var(--fgmt-text-muted);
  text-decoration: none;
}

.fgmt-breadcrumb a:hover {
  color: var(--fgmt-gold);
}

/* ── Page Header (shared) ──────────────────────────────── */
.fgmt-page-header {
  background: linear-gradient(170deg, #EBE4D3 0%, #FAF6ED 70%);
  border-bottom: 1px solid var(--fgmt-border);
  padding: 56px 0 44px;
}

.fgmt-page-header__inner {
  max-width: 860px;
}

.fgmt-page-header--guide .fgmt-page-header__inner {
  max-width: 860px;
}

.fgmt-page-header__icon {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, .12);
  border-radius: 14px;
}

.fgmt-page-header__icon svg {
  width: 28px;
  height: 28px;
  color: var(--fgmt-gold);
}

.fgmt-page-header__title {
  font-family: var(--fgmt-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0 0 12px;
  line-height: 1.15;
}

.fgmt-page-header__sub {
  font-family: var(--fgmt-font-body);
  font-size: 17px;
  color: var(--fgmt-text-muted);
  margin: 0 0 20px;
  line-height: 1.7;
}

.fgmt-page-header__stats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  color: var(--fgmt-text-dim);
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.fgmt-page-header__dot {
  opacity: .4;
}

/* Disclosure banner */
.fgmt-disclosure-banner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--fgmt-gold-dim);
  border: 1px solid var(--fgmt-gold-mid);
  border-radius: var(--fgmt-radius);
  padding: 10px 16px;
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  color: var(--fgmt-text-muted);
  line-height: 1.55;
  max-width: 680px;
  margin: 0;
}

.fgmt-disclosure-icon {
  color: var(--fgmt-gold);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
 *  STOREFRONT HOMEPAGE
 * ══════════════════════════════════════════════════════════ */

/* Hero */
.fgmt-hero {
  background: var(--fgmt-bg);
  border-bottom: 1px solid var(--fgmt-border);
  padding: 36px 0 32px;
  text-align: center;
}

.fgmt-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.fgmt-hero__eyebrow {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fgmt-gold);
  background: var(--fgmt-gold-dim);
  border: 1px solid var(--fgmt-gold-mid);
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.fgmt-hero__title {
  font-family: var(--fgmt-font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--fgmt-text);
  line-height: 1.2;
  margin: 0 0 18px;
}

.fgmt-hero__desc {
  font-family: var(--fgmt-font-body);
  font-size: 18px;
  color: var(--fgmt-text-muted);
  line-height: 1.72;
  margin: 0 0 36px;
}

.fgmt-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.fgmt-hero__disclosure {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  color: var(--fgmt-text-dim);
  font-style: italic;
  margin: 0;
}

/* Featured Shelf */
.fgmt-featured {
  background: var(--fgmt-bg);
  padding: 64px 0;
  border-bottom: 1px solid var(--fgmt-border-2);
}

.fgmt-shelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fgmt-shelf-card {
  background: var(--fgmt-bg-2);
  border: 1px solid var(--fgmt-border);
  border-radius: var(--fgmt-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.fgmt-shelf-card:hover {
  border-color: var(--fgmt-gold-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26, 21, 16, .14);
}

.fgmt-shelf-card__img-link {
  display: block;
  text-decoration: none;
}

.fgmt-shelf-card__img-wrap {
  background: #F7F4EE;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fgmt-shelf-card__img {
  max-height: 168px;
  max-width: 88%;
  object-fit: contain;
  transition: transform .25s;
}

.fgmt-shelf-card:hover .fgmt-shelf-card__img {
  transform: scale(1.04);
}

.fgmt-shelf-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.fgmt-shelf-card__author {
  font-family: var(--fgmt-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fgmt-gold);
  margin: 0;
}

.fgmt-shelf-card__title {
  font-family: var(--fgmt-font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fgmt-text);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.fgmt-shelf-card__title a {
  color: inherit;
  text-decoration: none;
}

.fgmt-shelf-card__title a:hover {
  color: var(--fgmt-gold);
}

.fgmt-shelf-card__cta {
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--fgmt-gold);
  text-decoration: none;
  margin-top: 6px;
}

.fgmt-shelf-card__cta:hover {
  text-decoration: underline;
}

/* Guides Section (homepage) */
.fgmt-guides-section {
  background: var(--fgmt-bg-2);
  padding: 64px 0;
  border-bottom: 1px solid var(--fgmt-border-2);
}

.fgmt-guides-section__intro {
  font-family: var(--fgmt-font-body);
  font-size: 16px;
  color: var(--fgmt-text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 36px;
}

/* Guide cards (used on homepage, guides index, bottom of guide pages) */
.fgmt-guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.fgmt-guide-card {
  background: #fff;
  border: 1px solid var(--fgmt-border);
  border-left: 3px solid var(--fgmt-gold);
  border-radius: var(--fgmt-radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--fgmt-text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(26, 21, 16, .06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.fgmt-guide-card:hover {
  border-color: var(--fgmt-gold);
  border-left-color: var(--fgmt-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(26, 21, 16, .12);
}

.fgmt-guide-card__icon {
  display: flex;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--fgmt-text);
  border-radius: 10px;
  justify-content: center;
  flex-shrink: 0;
}

.fgmt-guide-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--fgmt-gold);
}

.fgmt-guide-card__title {
  font-family: var(--fgmt-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0;
  line-height: 1.3;
}

.fgmt-guide-card__sub {
  font-family: var(--fgmt-font-body);
  font-size: 13px;
  color: var(--fgmt-text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.fgmt-guide-card__arrow {
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--fgmt-gold);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* Category tiles */
.fgmt-categories {
  background: var(--fgmt-bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--fgmt-border-2);
}

.fgmt-categories .fgmt-section-title {
  margin-bottom: 28px;
}

.fgmt-cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.fgmt-cat-tile {
  background: #fff;
  border: 1px solid var(--fgmt-border);
  border-radius: var(--fgmt-radius-lg);
  padding: 20px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--fgmt-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(26, 21, 16, .05);
  transition: border-color .18s, transform .18s, box-shadow .18s;
}

.fgmt-cat-tile:hover {
  border-color: var(--fgmt-gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 21, 16, .1);
}

.fgmt-cat-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--fgmt-text);
  border-radius: 10px;
  color: var(--fgmt-gold);
}

.fgmt-cat-tile__icon svg {
  width: 20px;
  height: 20px;
}

.fgmt-cat-tile__label {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fgmt-text-muted);
  line-height: 1.3;
}

/* Mission Strip */
.fgmt-mission {
  background: var(--fgmt-bg-2);
  padding: 72px 0;
  border-top: 1px solid var(--fgmt-border);
  text-align: center;
}

.fgmt-mission__inner {
  max-width: 660px;
  margin: 0 auto;
}

.fgmt-mission .fgmt-section-title {
  margin-bottom: 20px;
}

.fgmt-mission__body {
  font-family: var(--fgmt-font-prose);
  font-size: 17px;
  color: var(--fgmt-text-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.fgmt-mission__disclosure {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  color: var(--fgmt-text-dim);
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
 *  PICKS PAGE — CATALOG
 * ══════════════════════════════════════════════════════════ */

.fgmt-picks-page .fgmt-page-header {
  padding-bottom: 0;
  /* nav tabs flush to header bottom */
}

/* Category nav tabs */
.fgmt-cat-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 14px 0 12px;
  flex-wrap: nowrap;
}

.fgmt-cat-nav::-webkit-scrollbar {
  display: none;
}

.fgmt-cat-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  color: var(--fgmt-text-muted);
  font-family: var(--fgmt-font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: color .14s, border-color .14s, background .14s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fgmt-cat-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.fgmt-cat-btn:hover {
  color: var(--fgmt-text);
}

.fgmt-cat-btn--active {
  background: var(--fgmt-gold-dim);
  border-color: var(--fgmt-gold-mid);
  color: var(--fgmt-gold);
}

/* Grid wrapper */
.fgmt-picks-grid-wrap {
  background: var(--fgmt-bg);
  padding: 48px 0 64px;
}

/* Category section */
.fgmt-cat-section {
  margin-bottom: 60px;
}

.fgmt-cat-section:last-child {
  margin-bottom: 0;
}

.fgmt-cat-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fgmt-gold);
  margin: 0 0 28px;
}

.fgmt-cat-heading__rule {
  flex: 1;
  height: 1px;
  background: var(--fgmt-border);
}

.fgmt-cat-heading__text {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fgmt-cat-heading__text svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Product cards */
.fgmt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.fgmt-card {
  background: var(--fgmt-bg-2);
  border: 1px solid var(--fgmt-border);
  border-radius: var(--fgmt-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.fgmt-card:hover {
  border-color: var(--fgmt-gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 21, 16, .14);
}

.fgmt-card__img-link {
  display: block;
  text-decoration: none;
}

.fgmt-card__img-wrap {
  background: #F7F4EE;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fgmt-card__img {
  max-height: 188px;
  max-width: 90%;
  object-fit: contain;
  transition: transform .25s;
}

.fgmt-card:hover .fgmt-card__img {
  transform: scale(1.04);
}

/* .fgmt-card__img-fallback inherits from shared rule above */

.fgmt-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.fgmt-card__author {
  font-family: var(--fgmt-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--fgmt-gold);
  margin: 0;
}

.fgmt-card__title {
  font-family: var(--fgmt-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fgmt-text);
  line-height: 1.3;
  margin: 0;
}

.fgmt-card__title a {
  color: inherit;
  text-decoration: none;
}

.fgmt-card__title a:hover {
  color: var(--fgmt-gold);
}

.fgmt-card__short {
  font-family: var(--fgmt-font-body);
  font-size: 13px;
  color: var(--fgmt-text-muted);
  line-height: 1.55;
  margin: 2px 0 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fgmt-card__cta {
  display: block;
  margin-top: 14px;
  background: #F0C14B;
  color: #0F0E0A;
  font-family: var(--fgmt-font-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 0;
  border-radius: var(--fgmt-radius);
  text-align: center;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .14s, transform .14s;
}

.fgmt-card__cta:hover {
  background: #e0b03a;
  transform: translateY(-1px);
}

.fgmt-card__cta:active {
  transform: translateY(0);
}

/* Guide callout on picks page */
.fgmt-picks-guide-callout {
  background: var(--fgmt-bg-2);
  border-top: 1px solid var(--fgmt-border);
  border-bottom: 1px solid var(--fgmt-border);
  padding: 36px 0;
}

.fgmt-picks-guide-callout__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.fgmt-picks-guide-callout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--fgmt-text);
  border-radius: 14px;
  color: var(--fgmt-gold);
  flex-shrink: 0;
}

.fgmt-picks-guide-callout__icon svg {
  width: 26px;
  height: 26px;
}

.fgmt-picks-guide-callout__title {
  font-family: var(--fgmt-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0 0 6px;
}

.fgmt-picks-guide-callout__body {
  font-family: var(--fgmt-font-body);
  font-size: 15px;
  color: var(--fgmt-text-muted);
  margin: 0;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════
 *  GUIDES INDEX PAGE
 * ══════════════════════════════════════════════════════════ */

.fgmt-guides-list-wrap {
  background: var(--fgmt-bg);
  padding: 48px 0 64px;
}

.fgmt-guide-entry {
  background: var(--fgmt-bg-2);
  border: 1px solid var(--fgmt-border);
  border-radius: var(--fgmt-radius-xl);
  padding: 36px 36px 32px;
  margin-bottom: 24px;
  transition: border-color .2s;
}

.fgmt-guide-entry:last-child {
  margin-bottom: 0;
}

.fgmt-guide-entry:hover {
  border-color: var(--fgmt-gold-mid);
}

.fgmt-guide-entry__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.fgmt-guide-entry__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--fgmt-text);
  border-radius: 12px;
}

.fgmt-guide-entry__icon svg {
  width: 26px;
  height: 26px;
  color: var(--fgmt-gold);
}

.fgmt-guide-entry__heading {
  flex: 1;
}

.fgmt-guide-entry__title {
  font-family: var(--fgmt-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0 0 6px;
}

.fgmt-guide-entry__title a {
  color: inherit;
  text-decoration: none;
}

.fgmt-guide-entry__title a:hover {
  color: var(--fgmt-gold);
}

.fgmt-guide-entry__subtitle {
  font-family: var(--fgmt-font-body);
  font-size: 15px;
  color: var(--fgmt-gold);
  margin: 0;
}

.fgmt-guide-entry__intro {
  font-family: var(--fgmt-font-prose);
  font-size: 16px;
  color: var(--fgmt-text-muted);
  line-height: 1.8;
  margin: 0 0 20px;
}

.fgmt-guide-entry__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--fgmt-border-2);
}

.fgmt-guide-entry__count {
  font-family: var(--fgmt-font-ui);
  font-size: 12px;
  color: var(--fgmt-text-dim);
}

.fgmt-guide-entry__cta {
  font-family: var(--fgmt-font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--fgmt-gold);
  text-decoration: none;
  background: var(--fgmt-gold-dim);
  border: 1px solid var(--fgmt-gold-mid);
  padding: 8px 20px;
  border-radius: var(--fgmt-radius);
  transition: background .15s;
}

.fgmt-guide-entry__cta:hover {
  background: rgba(201, 168, 76, .22);
}

/* ══════════════════════════════════════════════════════════
 *  INDIVIDUAL GUIDE PAGE
 * ══════════════════════════════════════════════════════════ */

/* Introduction */
.fgmt-guide-intro {
  background: var(--fgmt-bg-2);
  padding: 0;
}

.fgmt-guide-intro__inner {
  padding: 48px 0 40px;
  max-width: 780px;
}

.fgmt-guide-intro__text {
  padding: 32px 0;
}

.fgmt-guide-intro__text p {
  font-family: var(--fgmt-font-prose);
  font-size: 18px;
  color: var(--fgmt-text-muted);
  line-height: 1.85;
  margin: 0 0 20px;
}

.fgmt-guide-intro__text p:last-child {
  margin-bottom: 0;
}

/* Sections */
.fgmt-guide-sections-wrap {
  background: var(--fgmt-bg);
  padding: 56px 0 72px;
}

.fgmt-guide-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--fgmt-border-2);
}

.fgmt-guide-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fgmt-guide-section__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 20px;
  margin-bottom: 40px;
  align-items: start;
}

.fgmt-guide-section__num {
  font-family: var(--fgmt-font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--fgmt-gold-dim);
  line-height: 1;
  grid-row: span 2;
  align-self: center;
  letter-spacing: -.02em;
}

.fgmt-guide-section__title {
  font-family: var(--fgmt-font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--fgmt-text);
  margin: 0 0 10px;
  line-height: 1.2;
}

.fgmt-guide-section__intro {
  font-family: var(--fgmt-font-body);
  font-size: 15px;
  color: var(--fgmt-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Product entries (long-form) */
.fgmt-guide-products {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fgmt-prod-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  background: var(--fgmt-bg-2);
  border: 1px solid var(--fgmt-border);
  border-radius: var(--fgmt-radius-xl);
  padding: 28px 28px 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}

.fgmt-prod-entry:hover {
  border-color: var(--fgmt-gold-mid);
  box-shadow: 0 6px 24px rgba(26, 21, 16, .1);
}

.fgmt-prod-entry__img-col {
  flex-shrink: 0;
}

.fgmt-prod-entry__img-link {
  display: block;
}

.fgmt-prod-entry__img-wrap {
  background: #F7F4EE;
  border-radius: var(--fgmt-radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.fgmt-prod-entry__img {
  max-height: 208px;
  max-width: 88%;
  object-fit: contain;
  transition: transform .25s;
}

.fgmt-prod-entry:hover .fgmt-prod-entry__img {
  transform: scale(1.04);
}

.fgmt-prod-entry__fallback {
  font-size: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.fgmt-img--fallback .fgmt-prod-entry__fallback {
  display: block;
}

.fgmt-img--fallback .fgmt-prod-entry__img {
  display: none;
}

.fgmt-prod-entry__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fgmt-prod-entry__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.fgmt-prod-entry__type {
  font-family: var(--fgmt-font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--fgmt-gold-dim);
  color: var(--fgmt-gold);
  padding: 2px 8px;
  border-radius: 20px;
}

.fgmt-prod-entry__year {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  color: var(--fgmt-text-dim);
}

.fgmt-prod-entry__author {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fgmt-gold);
  margin: 0 0 6px;
}

.fgmt-prod-entry__title {
  font-family: var(--fgmt-font-display);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--fgmt-text);
  line-height: 1.25;
  margin: 0 0 4px;
}

.fgmt-prod-entry__title a {
  color: inherit;
  text-decoration: none;
}

.fgmt-prod-entry__title a:hover {
  color: var(--fgmt-gold);
}

.fgmt-prod-entry__publisher {
  font-family: var(--fgmt-font-ui);
  font-size: 11px;
  color: var(--fgmt-text-dim);
  margin: 0 0 12px;
}

.fgmt-prod-entry__short {
  font-family: var(--fgmt-font-body);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: var(--fgmt-text);
  margin: 0 0 14px;
  line-height: 1.5;
}

.fgmt-prod-entry__desc {
  flex: 1;
}

.fgmt-prod-entry__desc p {
  font-family: var(--fgmt-font-prose);
  font-size: 15.5px;
  color: var(--fgmt-text-muted);
  line-height: 1.82;
  margin: 0 0 16px;
}

.fgmt-prod-entry__desc p:last-child {
  margin-bottom: 0;
}

.fgmt-prod-entry__cta {
  display: inline-block;
  margin-top: 20px;
  align-self: flex-start;
  background: #F0C14B;
  color: #0F0E0A;
  font-family: var(--fgmt-font-ui);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--fgmt-radius);
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .14s, transform .14s;
}

.fgmt-prod-entry__cta:hover {
  background: #e0b03a;
  transform: translateY(-1px);
}

/* Related guides section (bottom of guide page) */
.fgmt-related-guides {
  background: var(--fgmt-bg-2);
  border-top: 1px solid var(--fgmt-border);
  padding: 56px 0;
}

.fgmt-related-guides .fgmt-section-title {
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════
 *  SHARED BOTTOM DISCLOSURE
 * ══════════════════════════════════════════════════════════ */
.fgmt-bottom-disclosure {
  background: var(--fgmt-bg-2);
  border-top: 1px solid var(--fgmt-border-2);
  padding: 28px 0;
}

.fgmt-bottom-disclosure p {
  font-family: var(--fgmt-font-ui);
  font-size: 11.5px;
  color: var(--fgmt-text-dim);
  line-height: 1.65;
  max-width: 780px;
  margin: 0;
}

.fgmt-bottom-disclosure strong {
  color: rgba(26, 21, 16, .6);
}

/* ══════════════════════════════════════════════════════════
 *  RESPONSIVE
 * ══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .fgmt-shelf {
    grid-template-columns: repeat(3, 1fr);
  }

  .fgmt-prod-entry {
    grid-template-columns: 130px 1fr;
    gap: 20px;
  }

  .fgmt-prod-entry__img-wrap {
    height: 180px;
  }
}

@media (max-width: 680px) {
  .fgmt-hero {
    padding: 28px 0 24px;
  }

  .fgmt-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .fgmt-shelf {
    grid-template-columns: repeat(2, 1fr);
  }

  .fgmt-prod-entry {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .fgmt-prod-entry__img-wrap {
    height: 220px;
    max-width: 160px;
  }

  .fgmt-guide-section__header {
    grid-template-columns: 1fr;
  }

  .fgmt-guide-section__num {
    display: none;
  }

  .fgmt-guide-entry {
    padding: 24px;
  }

  .fgmt-guide-entry__header {
    gap: 12px;
  }

  .fgmt-guide-entry__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .fgmt-guide-entry__icon svg {
    width: 22px;
    height: 22px;
  }

  .fgmt-guide-entry__title {
    font-size: 20px;
  }

  .fgmt-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }

  .fgmt-card__img-wrap {
    height: 170px;
  }

  .fgmt-cat-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

  .fgmt-cat-tiles {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .fgmt-picks-guide-callout__inner {
    flex-direction: column;
  }

  .fgmt-guide-intro__text p {
    font-size: 16px;
  }
}

@media (max-width: 440px) {
  .fgmt-shelf {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .fgmt-shelf-card__img-wrap {
    height: 140px;
  }

  .fgmt-guide-cards {
    grid-template-columns: 1fr;
  }
}