/* ═══════════════════════════════════════════════════════════
   THE FOODIE KITCHEN — Editorial Theme
   Inspired by: Martha Stewart · RecipeTin Eats · Love and Lemons
   Design: White-dominant · Clean food photography · Minimal chrome
   ═══════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --forest:   #1A2E1A;
  --gold:     #B8903E;
  --gold-lt:  #D4A76A;
  --cream:    #FAF8F4;

  /* Greyscale */
  --ink:      #111111;
  --ink2:     #2D2D2D;
  --ink3:     #4A4A4A;
  --ink4:     #6B6B6B;
  --ink5:     #9A9A9A;
  --border:   #E8E4DD;
  --border2:  #F0EDE8;
  --white:    #FFFFFF;

  /* Type */
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Lato', -apple-system, sans-serif;

  /* Layout */
  --max:      1200px;
  --gutter:   clamp(1rem, 4vw, 2rem);
  --r:        4px;

  /* Shadow */
  --shadow:   0 1px 4px rgba(0,0,0,0.08);
  --shadow2:  0 4px 20px rgba(0,0,0,0.10);

  /* Additional vars referenced in templates */
  --g800:   #1a2e1a;
  --r-lg:   8px;
  --cream2: #f5eedc;
  --ink-inv: rgba(255,255,255,0.85);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink2);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── WRAP ───────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ═══════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════ */
.tfk-topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
.tfk-topbar a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* [REPLACED] */
   ═══════════════════════════════════════════════════════════ */
.tfk-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0 0;
}
.tfk-header-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.25rem;
  position: relative;
}
.tfk-header-utils {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tfk-header-utils a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink3);
  text-transform: uppercase;
}
.tfk-header-utils a:hover { color: var(--forest); }
.tfk-search-icon { font-size: 1rem; cursor: pointer; color: var(--ink3); }

/* Logo — centred, large */
.tfk-logo { display: block; text-align: center; }
.tfk-logo-img {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: inline-block;
}
.tfk-logo-text {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--forest);
  line-height: 1;
}
.tfk-logo-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink5);
  margin-top: 0.25rem;
  display: block;
}

/* ── NAV ────────────────────────────────────────────────── */
.tfk-nav {
  border-top: 1px solid var(--border);
  background: var(--white);
}
.tfk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tfk-nav-item { position: relative; }
.tfk-nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 0.875rem 1.1rem;
  transition: color 0.15s;
  white-space: nowrap;
}
.tfk-nav-link svg { width: 10px; height: 10px; flex-shrink: 0; }
.tfk-nav-link:hover { color: var(--forest); }
.tfk-nav-item:hover .tfk-nav-link { color: var(--forest); }

/* Dropdown */
.tfk-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--forest);
  min-width: 200px;
  box-shadow: var(--shadow2);
  z-index: 300;
  padding: 0.5rem 0;
}
.tfk-nav-item:hover .tfk-dropdown { display: block; }
.tfk-dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink2);
  transition: background 0.1s, color 0.1s;
}
.tfk-dropdown a:hover {
  background: var(--cream);
  color: var(--forest);
}

/* Mobile burger */
.tfk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
}
.tfk-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink2);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ═══════════════════════════════════════════════════════════
   HERO — RecipeTin Eats style: large featured left + list right
   ═══════════════════════════════════════════════════════════ */
.tfk-hero {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.tfk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.tfk-hero-main { position: relative; }
.tfk-hero-main-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  display: block;
}
.tfk-hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tfk-hero-main:hover .tfk-hero-main-img img { transform: scale(1.02); }
.tfk-hero-main-body { padding: 1.25rem 0 0; }
.tfk-hero-tag { display: none; }
.tfk-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.tfk-hero-title a:hover { color: var(--forest); }
.tfk-hero-excerpt {
  font-size: 0.95rem;
  color: var(--ink4);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tfk-readmore {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
  display: inline-block;
  transition: color 0.15s;
}
.tfk-readmore:hover { color: var(--gold); }

/* Hero sidebar — stacked list like RecipeTin */
.tfk-hero-list { display: flex; flex-direction: column; }
.tfk-hero-list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.tfk-hero-list-item:first-child { border-top: 1px solid var(--border); }
.tfk-hero-list-item:hover { background: var(--cream); }
.tfk-hero-list-img {
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}
.tfk-hero-list-img img { width: 100%; height: 100%; object-fit: cover; }
.tfk-hero-list-body { display: flex; flex-direction: column; justify-content: center; }
.tfk-hero-list-tag { display: none; }
.tfk-hero-list-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.tfk-hero-list-title a:hover { color: var(--forest); }

/* ═══════════════════════════════════════════════════════════
   CATEGORY PILL STRIP
   ═══════════════════════════════════════════════════════════ */
.tfk-cat-strip {
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tfk-cat-strip::-webkit-scrollbar { display: none; }
.tfk-cat-strip-inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: max-content;
  padding: 0 var(--gutter);
}
.tfk-cat-pill {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 0.375rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.15s;
  background: var(--white);
}
.tfk-cat-pill:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.tfk-section { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }

.tfk-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.tfk-section-head-left { display: flex; flex-direction: column; gap: 0.25rem; }
.tfk-section-eyebrow {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.tfk-section-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.tfk-view-all {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tfk-view-all:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   CARDS — Love and Lemons / RecipeTin style
   Clean image, minimal text, NO overlays on image
   ═══════════════════════════════════════════════════════════ */
.tfk-grid {
  display: grid;
  gap: 1.5rem;
}
.tfk-grid-2 { grid-template-columns: repeat(2, 1fr); }
.tfk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tfk-grid-4 { grid-template-columns: repeat(4, 1fr); }

.tfk-card { display: flex; flex-direction: column; }
.tfk-card-img {
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.tfk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.tfk-card:hover .tfk-card-img img { transform: scale(1.04); }
.tfk-r43  { aspect-ratio: 4/3; }
.tfk-r11  { aspect-ratio: 1/1; }
.tfk-r32  { aspect-ratio: 3/2; }

/* NO badge on images — clean like Martha Stewart */

.tfk-card-body { padding: 0.875rem 0 0; flex: 1; display: flex; flex-direction: column; }
.tfk-card-tag { display: none; }
.tfk-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tfk-card-title a:hover { color: var(--forest); }
.tfk-card-excerpt {
  font-size: 0.82rem;
  color: var(--ink4);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
  min-height: 2.6em;
}
.tfk-card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  color: var(--ink5);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border2);
}
.tfk-card-meta-dot { font-size: 0.4rem; opacity: 0.5; }

/* Wide card */
.tfk-card-wide {
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}
.tfk-card-wide .tfk-card-img {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1;
}
.tfk-card-wide .tfk-card-body { padding: 0; }
.tfk-card-wide .tfk-card-title { font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   AUTHOR BIO STRIP — RecipeTin style
   ═══════════════════════════════════════════════════════════ */
.tfk-author-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.tfk-author-strip-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.tfk-author-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow2);
  background: var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--forest);
  flex-shrink: 0;
}
.tfk-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tfk-author-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.tfk-author-bio {
  font-size: 0.88rem;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.tfk-author-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.tfk-author-social {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--forest);
  border: 1.5px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: all 0.15s;
}
.tfk-author-social:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   COOKBOOK SHELF
   ═══════════════════════════════════════════════════════════ */
.tfk-shelf { background: var(--forest); padding: 2.5rem 0; }
.tfk-shelf-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.tfk-shelf-eyebrow {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 0.5rem;
}
.tfk-shelf-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tfk-shelf-sub {
  font-size: 0.85rem;
  color: rgba(245,238,220,0.55);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.tfk-shelf-books { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.tfk-book-card { text-align: center; }
.tfk-book-cover {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,144,62,0.2);
  border-radius: var(--r);
  padding: 1.25rem 0.75rem 0.875rem;
  margin-bottom: 0.625rem;
  transition: background 0.2s, transform 0.2s;
}
.tfk-book-card:hover .tfk-book-cover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.tfk-book-series {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
  display: block;
}
.tfk-book-title {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(245,238,220,0.9);
  line-height: 1.25;
}
.tfk-shelf-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.tfk-shelf-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--r);
  transition: background 0.15s;
}
.tfk-shelf-cta a:hover { background: var(--gold-lt); }

/* ═══════════════════════════════════════════════════════════
   SUBSCRIBE
   ═══════════════════════════════════════════════════════════ */
.tfk-subscribe {
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.tfk-subscribe-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.tfk-subscribe-sub {
  font-size: 0.88rem;
  color: var(--ink4);
  margin-bottom: 1.25rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.tfk-subscribe-form { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.tfk-subscribe-input {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.tfk-subscribe-input:focus { border-color: var(--forest); }
.tfk-subscribe-btn {
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: var(--r);
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.tfk-subscribe-btn:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   AD PLACEHOLDERS
   ═══════════════════════════════════════════════════════════ */
.tfk-ad { min-height: 90px; background: var(--cream); border: 1px dashed var(--border); display: flex; align-items: center; justify-content: center; color: var(--ink5); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 1.25rem auto; border-radius: var(--r); }
.tfk-ad-728 { max-width: 728px; }
.tfk-ad-300 { max-width: 300px; min-height: 250px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.tfk-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0 1.5rem;
}
.tfk-footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.tfk-footer-brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: block;
}
.tfk-footer-brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  display: block;
}
.tfk-footer-bio {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tfk-footer-socials { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.tfk-footer-social {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  transition: all 0.15s;
}
.tfk-footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.tfk-footer-col-title {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.tfk-footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.tfk-footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.12s;
}
.tfk-footer-links a:hover { color: var(--gold); }
.tfk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tfk-footer-bottom a { color: rgba(255,255,255,0.4); }
.tfk-footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */
.tfk-placeholder {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tfk-placeholder-icon {
  font-size: 2.5rem;
  color: rgba(184,144,62,0.3);
  font-family: var(--serif);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   POST PAGE — clean editorial article layout
   ═══════════════════════════════════════════════════════════ */
.tfk-post-header {
  background: var(--white);
  padding: 2.5rem 0 0;
  border-bottom: 1px solid var(--border);
}
.tfk-post-breadcrumb {
  font-size: 0.72rem;
  color: var(--ink5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.tfk-post-breadcrumb a { color: var(--ink4); }
.tfk-post-breadcrumb a:hover { color: var(--forest); }
.tfk-post-tag-label { display: none; }
.tfk-post-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 1rem;
  max-width: 780px;
}
.tfk-post-excerpt {
  font-size: 1rem;
  color: var(--ink3);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 1.25rem;
}
.tfk-post-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--ink4);
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}
.tfk-post-byline-author {
  font-weight: 700;
  color: var(--ink2);
}
.tfk-post-byline-sep { opacity: 0.35; }
.tfk-post-image {
  background: var(--cream);
  overflow: hidden;
  max-height: 520px;
  width: 100%;
  display: block;
}
.tfk-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}
.tfk-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}
.tfk-post-image-placeholder {
  height: 280px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tfk-post-image-placeholder span { font-size: 3rem; color: rgba(184,144,62,0.25); font-family: var(--serif); }

/* Post content */
.tfk-post-body { background: var(--white); }
.tfk-content { padding: 2.5rem 0; }
.prose-wrap { max-width: 780px; margin: 0 auto; padding: 0 var(--gutter, 1.25rem); }
.tfk-content-inner {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--ink2);
  max-width: 680px;
}
.tfk-content-inner h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}
.tfk-content-inner h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.5rem 0 0.625rem;
}
.tfk-content-inner p { margin-bottom: 1.25rem; }
.tfk-content-inner ul, .tfk-content-inner ol { margin: 0 0 1.25rem 1.5rem; }
.tfk-content-inner li { margin-bottom: 0.375rem; }
.tfk-content-inner ul li { list-style: disc; }
.tfk-content-inner ol li { list-style: decimal; }
.tfk-content-inner a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.tfk-content-inner a:hover { color: var(--gold); }
.tfk-content-inner strong { font-weight: 700; color: var(--ink); }
.tfk-content-inner blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--ink3);
}
.tfk-content-inner hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* Post footer */
.tfk-post-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;

  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tfk-post-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tfk-post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tfk-post-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: all 0.15s;
}
.tfk-post-tag:hover { border-color: var(--forest); color: var(--forest); }
.tfk-post-share {
  font-size: 0.78rem;
  color: var(--ink4);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.tfk-post-share a { color: var(--forest); font-weight: 700; }

/* Social link buttons in content */
.tfk-social-links {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  justify-content: center;
}
.tfk-social-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  color: var(--ink3);
  transition: all 0.15s;
  text-decoration: none;
}
.tfk-social-link:hover { border-color: var(--forest); color: var(--forest); }

/* Related posts */
.tfk-related {
  background: var(--cream);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   TAG PAGE
   ═══════════════════════════════════════════════════════════ */
.tfk-tag-header {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.tfk-tag-eyebrow {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.tfk-tag-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.tfk-tag-desc {
  font-size: 0.92rem;
  color: var(--ink4);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.tfk-tag-body { padding: 2.5rem 0; }

/* ═══════════════════════════════════════════════════════════
   YOUTUBE EMBED
   ═══════════════════════════════════════════════════════════ */
.tfk-youtube {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tfk-youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--r);
  overflow: hidden;
}
.tfk-youtube-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tfk-shelf-books { grid-template-columns: repeat(4, 1fr); }
  .tfk-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .tfk-hero-grid { grid-template-columns: 1fr; }
  .tfk-hero-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .tfk-hero-list-item { border-left: none; }
  .tfk-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tfk-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tfk-shelf-books { grid-template-columns: repeat(3, 1fr); }
  .tfk-author-strip-inner { grid-template-columns: 80px 1fr; }
  .tfk-author-avatar { width: 70px; height: 70px; font-size: 1.75rem; }
}

@media (max-width: 640px) {
  .tfk-nav-inner { display: none; }
  .tfk-nav-inner.open { display: flex; flex-direction: column; align-items: flex-start; padding: 0.5rem 0; }
  .tfk-burger { display: flex; }
  .tfk-header-utils { display: none; }
  .tfk-logo-text { font-size: 1.9rem; }
  .tfk-logo-img { height: 52px; }
  .tfk-hero-list { grid-template-columns: 1fr; }
  .tfk-grid-4, .tfk-grid-3, .tfk-grid-2 { grid-template-columns: 1fr 1fr; }
  .tfk-shelf-books { grid-template-columns: repeat(2, 1fr); }
  .tfk-subscribe-form { flex-direction: column; }
  .tfk-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .tfk-dropdown { left: 0; transform: none; }
  .tfk-post-title { font-size: 1.625rem; }
}

@media (max-width: 400px) {
  .tfk-grid-4, .tfk-grid-3, .tfk-grid-2 { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* ── IMAGE PERFORMANCE ───────────────────────────────────── */
.tfk-card-img img,
.tfk-hero-main-img img,
.tfk-hero-list-img img {
  content-visibility: auto;
  /* Ghost CDN serves WebP automatically — ensure we don't block */
}

/* Aspect ratio containers prevent layout shift */
.tfk-r43  { aspect-ratio: 4/3; }
.tfk-r32  { aspect-ratio: 3/2; }
.tfk-r11  { aspect-ratio: 1/1; }
.tfk-hero-main-img { aspect-ratio: 3/2; }

/* ── LOGO TEXT — Martha Stewart style ─────────────────────── */
.tfk-logo-img { display: none; }
.tfk-logo-text {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.tfk-logo:hover .tfk-logo-text { color: var(--forest); }
.tfk-logo-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink5);
  margin-top: 0.3rem;
  display: block;
  text-align: center;
}

/* ── PERFORMANCE: skeleton loading state ───────────────────── */
.tfk-card-img,
.tfk-hero-main-img,
.tfk-hero-list-img {
  background: var(--cream);
}


/* ═══════════════════════════════════════════════════════════
   HEADER — Martha Stewart style
   ═══════════════════════════════════════════════════════════ */
.tfk-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.tfk-header-logo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 0 0;
  min-height: 100px;
  position: relative;
}
.tfk-header-left-utils {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tfk-header-left-utils a,
.tfk-header-right-utils a:not(.tfk-btn) {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink4);
  text-transform: uppercase;
  transition: color 0.15s;
}
.tfk-header-left-utils a:hover,
.tfk-header-right-utils a:hover { color: var(--ink); }
.tfk-header-right-utils {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

/* SITE NAME — the hero of the header */
.tfk-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding-bottom: 1.25rem;
}
.tfk-logo-img { display: none; }
.tfk-site-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  display: block;
  transition: color 0.15s;
}
.tfk-logo:hover .tfk-site-name { color: var(--forest); }
.tfk-logo-tagline {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink5);
  margin-top: 0.4rem;
  display: block;
  text-align: center;
}
.tfk-logo-text { display: none; }

/* Burger */
.tfk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.tfk-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink2);
  border-radius: 2px;
}


@media (max-width: 640px) {
  .tfk-site-name { font-size: 1.75rem; }
  .tfk-header-left-utils { display: none; }
  .tfk-header-right-utils a:not(:last-child) { display: none; }
  .tfk-header-logo-row { grid-template-columns: 1fr auto 48px; }
  .tfk-burger { display: flex; }
}


/* ── HIDE DATES — clean editorial look ──────────────────────── */
.tfk-card-meta,
.tfk-post-byline span:not(.tfk-post-byline-author):not(.tfk-post-byline-sep),
.tfk-post-byline .tfk-post-byline-sep { display: none; }
.tfk-post-byline { gap: 0; }
/* Keep author visible */
.tfk-post-byline-author { display: inline; }


/* ── GHOST KOENIG EDITOR CARDS (required) ───────────────────── */

/* Width utilities */
.kg-width-wide {
  margin-left: calc(50% - 50vw + 2rem);
  margin-right: calc(50% - 50vw + 2rem);
  max-width: calc(100vw - 4rem);
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

/* Image card */
.kg-image-card { margin: 2rem 0; }
.kg-image-card img { width: 100%; height: auto; display: block; border-radius: 4px; }
.kg-image-card figcaption {
  font-size: 0.8rem;
  color: var(--ink5);
  text-align: center;
  margin-top: 0.5rem;
}

/* Gallery card */
.kg-gallery-card { margin: 2rem 0; }
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.kg-gallery-row {
  display: flex;
  gap: 0.5rem;
}
.kg-gallery-image {
  flex: 1;
  min-width: 0;
}
.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Embed / Video card */
.kg-embed-card { margin: 2rem 0; }
.kg-embed-card iframe,
.kg-embed-card video {
  width: 100%;
  border: none;
  display: block;
}

/* Bookmark card */
.kg-bookmark-card { margin: 2rem 0; }
.kg-bookmark-container {
  display: flex;
  border: 1px solid var(--ink8, #e8e4dd);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
}
.kg-bookmark-content { padding: 1.25rem; flex: 1; min-width: 0; }
.kg-bookmark-title {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--forest, #1a2e1a);
  margin-bottom: 0.35rem;
}
.kg-bookmark-description {
  font-size: 0.8rem;
  color: var(--ink5, #6b6b6b);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--ink5, #6b6b6b);
}
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* HR card */
.kg-divider { border: none; border-top: 1px solid var(--ink8, #e8e4dd); margin: 2rem 0; }

/* Toggle card */
.kg-toggle-card { border: 1px solid var(--ink8, #e8e4dd); border-radius: 6px; margin: 1.5rem 0; }
.kg-toggle-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
}
.kg-toggle-content { padding: 0 1.25rem 1rem; display: none; }
.kg-toggle-card[open] .kg-toggle-content { display: block; }

/* Callout card */
.kg-callout-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  background: #f5eedc;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold, #b8903e);
}
.kg-callout-emoji { font-size: 1.25rem; flex-shrink: 0; }

/* Button card */
.kg-button-card { text-align: center; margin: 2rem 0; }
.kg-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  background: var(--forest, #1a2e1a);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* Audio card */
.kg-audio-card { margin: 2rem 0; }
.kg-audio-card audio { width: 100%; display: block; }

/* Product card */
.kg-product-card { border: 1px solid var(--ink8, #e8e4dd); border-radius: 6px; padding: 1.5rem; margin: 2rem 0; }
.kg-product-card-image img { width: 100%; border-radius: 4px; margin-bottom: 1rem; }
.kg-product-card-title { font-family: Georgia, serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.kg-product-card-rating { display: flex; gap: 0.15rem; margin-bottom: 0.5rem; }
.kg-product-card-rating-star svg { width: 16px; height: 16px; fill: var(--gold, #b8903e); }

/* File card */
.kg-file-card { margin: 2rem 0; }
.kg-file-card-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--ink8, #e8e4dd);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
}
.kg-file-card-title { font-weight: 700; font-size: 0.9rem; }
.kg-file-card-caption { font-size: 0.8rem; color: var(--ink5, #6b6b6b); }

/* Header card */
.kg-header-card {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--forest, #1a2e1a);
  color: #fff;
  border-radius: 6px;
  margin: 2rem 0;
}
.kg-header-card h2 { color: #fff; font-family: Georgia, serif; font-size: 2rem; }

/* Video card */
.kg-video-card { margin: 2rem 0; }
.kg-video-card video { width: 100%; display: block; border-radius: 4px; }

/* Responsive fixes */
@media (max-width: 768px) {
  .kg-width-wide {
    margin-left: -1rem;
    margin-right: -1rem;
    max-width: calc(100% + 2rem);
  }
  .kg-bookmark-thumbnail { display: none; }
}


/* ── IMAGE PERFORMANCE ───────────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.tfk-post-image img,
.tfk-hero-img img,
.tfk-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Prevent layout shift on images */
.tfk-post-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f5eedc;
}
.tfk-card-img {
  overflow: hidden;
  background: #f5eedc;
}

/* ── EMAIL SUBSCRIBE BLOCK ───────────────────────────────────────────────── */
.tfk-subscribe-block {
  background: #1a2e1a;
  border-radius: 8px;
  margin: 3rem 0 2rem;
  padding: 2rem;
  text-align: center;
}
.tfk-subscribe-inner { max-width: 480px; margin: 0 auto; }
.tfk-subscribe-icon { font-size: 1.5rem; color: #b8903e; margin-bottom: 0.75rem; }
.tfk-subscribe-title {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.5rem;
}
.tfk-subscribe-desc {
  color: rgba(245,238,220,0.7);
  font-size: 0.875rem;
  margin: 0 0 1.25rem;
}
.tfk-subscribe-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tfk-subscribe-email {
  flex: 1;
  min-width: 200px;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  outline: none;
}
.tfk-subscribe-btn {
  background: #b8903e;
  color: #fff;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.tfk-subscribe-btn:hover { background: #a07834; }

/* ── PAGE CONTENT — allow html cards to fill prose-wrap width ── */
.tfk-content-inner .kg-card-begin + div,
.tfk-content-inner > div {
  width: 100%;
}
/* Pages with grid layouts need the prose-wrap to be wider */
.page-template .prose-wrap {
  max-width: 960px;
}

/* ── SCREEN READER ONLY — visible to AI/search but not rendered ── */
.tfk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* cache-bust: 1787218594 */

/* seo-fix-1787294089 */

/* ── Shop Page — full width, no content constraints ── */
.tfk-shop-page {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: #fff;
}

/* shop-cache-bust-1787303121 */


/* ══════════════════════════════════════════════════════════
   CONVERSION OPTIMISATION — v4.5.0
   ══════════════════════════════════════════════════════════ */

/* Affiliate product boxes — mobile responsive */
.tfk-product-box {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0 1.25rem;
  background: #fdfaf5;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
.tfk-product-box-info { flex: 1; min-width: 150px; }
.tfk-product-box-label {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.tfk-product-box-name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--forest);
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}
.tfk-product-box-why { font-size: 0.72rem; color: var(--ink4); }
.tfk-product-box-btn {
  display: inline-block;
  background: var(--forest);
  color: var(--gold-lt);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.tfk-product-box-btn:hover { background: #2a4a2a; color: var(--gold); }

/* Jump to Recipe button */
.tfk-jump-recipe {
  display: inline-block;
  background: #f5eedc;
  color: var(--forest);
  border: 2px solid var(--forest);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  margin: 0.5rem 0 1rem;
  transition: all 0.15s;
}
.tfk-jump-recipe:hover {
  background: var(--forest);
  color: var(--gold-lt);
}

/* Table overflow fix — mobile */
.tfk-content-inner table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}
.tfk-content-inner th,
.tfk-content-inner td {
  padding: 0.6rem 0.875rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.tfk-content-inner th {
  background: var(--forest);
  color: var(--gold-lt);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.tfk-content-inner tr:nth-child(even) td { background: #f9f6f0; }

/* Rating stars — Recipe schema rich result display */
.tfk-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--gold);
  margin: 0.375rem 0;
}
.tfk-rating-star { color: var(--gold); }

/* Social share strip */
.tfk-share-strip {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tfk-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s;
}
.tfk-share-btn-pinterest { background: #e60023; color: #fff; }
.tfk-share-btn-x { background: #000; color: #fff; }
.tfk-share-btn-copy { background: var(--cream); color: var(--forest); border: 1px solid var(--border); }

/* Mobile fixes for product boxes */
@media (max-width: 640px) {
  .tfk-product-box { flex-direction: column; align-items: flex-start; }
  .tfk-product-box-btn { width: 100%; text-align: center; }
  .tfk-content-inner table { font-size: 0.78rem; }
  .tfk-content-inner th, .tfk-content-inner td { padding: 0.45rem 0.625rem; }
}

/* Sticky header on mobile — keeps nav visible while scrolling recipes */
@media (max-width: 768px) {
  .tfk-header { position: sticky; top: 0; z-index: 200; }
}

/* conversion-v450 */

/* ── AFFILIATE / PRIME FOOTER ELEMENTS ─────────────────────── */
.tfk-footer-prime {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.tfk-footer-prime strong { color: rgba(255,255,255,0.8); }
.tfk-footer-prime a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tfk-affiliate-notice {
  font-size: 0.68rem;
  color: var(--ink5);
  margin: 0.75rem 0 0;
  text-align: center;
  line-height: 1.5;
}
.tfk-affiliate-notice a {
  color: var(--ink4);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* prime-v460 */

/* ── SKIP LINK (agent + accessibility) ────────────────────── */
.tfk-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #1a2e1a;
  color: #d4a97a;
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.tfk-skip-link:focus {
  top: 0;
}
/* agent-friendly-v480 */


/* ── Navigation cleanup — single nav bar ─────────────────────────── */
/* New spacer divs replace left/right-utils for logo centering */
.tfk-header-spacer-left,
.tfk-header-spacer-right {
  display: flex;
  align-items: center;
}
.tfk-header-spacer-left { justify-content: flex-start; }
.tfk-header-spacer-right { justify-content: flex-end; }

/* Burger now lives inside tfk-header-spacer-right — remove absolute positioning */
.tfk-header-spacer-right .tfk-burger {
  position: static;
  transform: none;
  display: flex;
}

/* Hide old utils divs if they appear from cache */
.tfk-header-left-utils,
.tfk-header-right-utils { display: none !important; }
