/*
Theme Name: Sorry I'm Reading
Theme URI: https://sorryimreading.com
Author: Arielle
Author URI: https://sorryimreading.com
Description: Neo-brutalist romance book review theme with thick borders, offset shadows, bright colors, and zero book shame.
Version: 1.0.0
Text Domain: sorry-im-reading
Tags: book-reviews, romance, neo-brutalist, custom-post-types, blog
*/

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hot-pink: #FF3CAC;
  --lime: #B8FF3C;
  --cobalt: #2255EE;
  --yellow: #FFE234;
  --orange: #FF6B35;
  --mint: #3CFFCF;
  --lavender: #C97BFF;
  --cream: #FFF8F0;
  --ink: #0A0A0A;
  --soft-pink: #FFE8F5;
  --soft-yellow: #FFFBE8;
  --card-border: 2.5px solid var(--ink);
  --shadow: 4px 4px 0px var(--ink);
  --shadow-lg: 6px 6px 0px var(--ink);
  --shadow-pink: 4px 4px 0px var(--hot-pink);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { color: var(--hot-pink); }
img { max-width: 100%; height: auto; display: block; }

/* ── TICKER ── */
.ticker {
  background: var(--hot-pink);
  color: white;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
}

.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}

.ticker-item {
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.ticker-sep { opacity: 0.5; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-highlight {
  background: var(--hot-pink);
  color: white;
  padding: 2px 10px 4px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  transform: rotate(-1.5deg);
  display: inline-block;
  box-shadow: 3px 3px 0 var(--ink);
  animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1.5deg); }
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 30px;
  transition: all 0.15s;
}

.nav-links a:hover {
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.nav-subscribe {
  background: var(--hot-pink) !important;
  color: white !important;
  border: 2px solid var(--ink) !important;
  box-shadow: var(--shadow) !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
}

.nav-subscribe:hover {
  background: var(--ink) !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--hot-pink) !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
}

/* ── BUTTONS ── */
.btn {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow);
  transition: all 0.15s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn-primary { background: var(--hot-pink); color: white; }
.btn-secondary { background: var(--yellow); color: var(--ink); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-cobalt { background: var(--cobalt); color: white; }

/* ── STICKERS / BADGES ── */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.sticker-pink { background: var(--hot-pink); color: white; }
.sticker-lime { background: var(--lime); }
.sticker-cobalt { background: var(--cobalt); color: white; }
.sticker-lavender { background: var(--lavender); color: white; }
.sticker-mint { background: var(--mint); }
.sticker-orange { background: var(--orange); color: white; }

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
}

.see-all-link {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.15s;
  white-space: nowrap;
}

.see-all-link:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

/* ── REVIEW CARDS ── */
.review-card {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
}

.review-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.review-card.hidden { display: none; }
.review-card.fade-in { animation: cardPop 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards; }

@keyframes cardPop {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.rc-top {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.rc-top img { width: 100%; height: 100%; object-fit: cover; }

.rc-heat {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 30px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 2px 2px 0 var(--ink);
}

.rc-body { padding: 1.4rem; }

.rc-genre {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.genre-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-block;
  flex-shrink: 0;
}

.rc-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.rc-author {
  font-size: 0.78rem;
  color: #777;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.rc-stars { font-size: 0.9rem; margin-bottom: 0.8rem; }

.rc-blurb {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-tropes { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }

.mini-trope {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 30px;
  border: 1.5px solid var(--ink);
  background: var(--soft-pink);
}

.mini-trope--more { background: var(--soft-yellow); }

/* ── REVIEWS GRID ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.reviews-section { padding: 5rem 6vw; }
.archive-wrap { padding: 3rem 6vw; }
.archive-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }

/* ── TROPE CARDS ── */
.trope-card {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.trope-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }

.trope-emoji { font-size: 2rem; }

.trope-name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

.trope-count { font-size: 0.72rem; font-weight: 700; color: #888; }

.trope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.trope-tag {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
}

.trope-tag--large { font-size: 0.85rem; padding: 8px 18px; }

.tt1 { background: var(--mint); }
.tt2 { background: var(--yellow); }
.tt3 { background: var(--lavender); color: white; }
.tt4 { background: var(--lime); }
.tt5 { background: var(--orange); color: white; }

/* ── FEATURED CARD ── */
.featured-section {
  padding: 5rem 6vw;
  background: var(--soft-yellow);
  border-bottom: 2.5px solid var(--ink);
}

.featured-card {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* ── GENRE BAR ── */
.genre-bar {
  padding: 1.4rem 5vw;
  background: var(--ink);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
}

.genre-bar::-webkit-scrollbar { display: none; }

.genre-bar-label {
  font-family: 'Anybody', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin-right: 6px;
}

.gpill {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  transition: all 0.15s;
  white-space: nowrap;
}

.gpill:hover, .gpill.active { border-color: white; background: rgba(255,255,255,0.12); }
.gpill.active { background: var(--hot-pink); border-color: var(--hot-pink); }

/* ── TRENDING ── */
.trending-section {
  background: var(--ink);
  padding: 5rem 6vw;
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}

.trending-section .section-title { color: white; }

.trending-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.trending-scroll::-webkit-scrollbar { display: none; }

.trending-card {
  flex-shrink: 0;
  width: 150px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.trending-card:hover { transform: translateY(-8px); }

/* ── TROPE SECTION ── */
.trope-section {
  padding: 5rem 6vw;
  background: var(--soft-pink);
  border-bottom: 2.5px solid var(--ink);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 5rem 6vw;
  background: var(--ink);
  text-align: center;
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.nl-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.nl-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-weight: 600;
}

.nl-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 1.5rem;
  border: 2.5px solid white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nl-input {
  flex: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 18px;
  border: none;
  outline: none;
  background: white;
}

.nl-btn {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--hot-pink);
  color: white;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.15s;
}

.nl-btn:hover { background: #e6008e; }

.newsletter-cta {
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
}

.newsletter-cta--wide {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-cta-icon { font-size: 2.5rem; }
.newsletter-cta-title { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 900; font-style: italic; margin-bottom: 0.3rem; }
.newsletter-cta-text { font-size: 0.9rem; opacity: 0.7; }

/* ── FILTER SYSTEM ── */
.filter-search-wrap { margin-bottom: 2rem; }

.filter-searchbox {
  display: flex;
  align-items: center;
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: var(--shadow);
  max-width: 520px;
  gap: 10px;
}

.search-icon { font-size: 1.1rem; flex-shrink: 0; }

.filter-searchbox input {
  flex: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 14px 0;
  background: transparent;
}

.filter-searchbox input::placeholder { color: #bbb; font-weight: 600; }

.search-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: #aaa;
  padding: 4px 6px;
  border-radius: 50%;
  transition: all 0.15s;
  font-weight: 700;
}

.search-clear:hover { background: var(--soft-pink); color: var(--hot-pink); }

.filter-block { margin-bottom: 1.4rem; }

.filter-label {
  font-family: 'Anybody', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-hint {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hot-pink);
  text-transform: none;
  letter-spacing: 0;
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.fchip {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 30px;
  border: 2px solid var(--ink);
  background: white;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
}

.fchip:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); background: var(--soft-pink); }

.fchip-active {
  background: var(--hot-pink) !important;
  color: white !important;
  border-color: var(--hot-pink) !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
}

.fchip-trope.fchip-active {
  background: var(--lavender) !important;
  border-color: var(--lavender) !important;
}

#spiceChips .fchip-active { background: var(--orange) !important; border-color: var(--orange) !important; }
#ratingChips .fchip-active { background: var(--yellow) !important; border-color: var(--ink) !important; color: var(--ink) !important; }

.filter-row-two {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding: 1.4rem 1.6rem;
  background: white;
  border: 2px solid #eee;
  border-radius: 14px;
}

.filter-inline { margin-bottom: 0; }

.filter-reset-wrap { display: flex; flex-direction: column; gap: 8px; justify-content: center; margin-left: auto; align-self: center; }

.filter-reset-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 30px;
  border: 2px solid var(--ink);
  background: white;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
}

.filter-reset-btn:hover { background: var(--ink); color: white; }

.filter-result-count { font-size: 0.75rem; font-weight: 700; color: #aaa; text-align: center; }

.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding: 12px 16px;
  background: var(--soft-pink);
  border: 2px solid var(--hot-pink);
  border-radius: 12px;
}

.af-label { font-size: 0.72rem; font-weight: 800; color: var(--hot-pink); text-transform: uppercase; letter-spacing: 0.08em; }
.af-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.af-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  background: white;
  border: 1.5px solid var(--hot-pink);
  border-radius: 30px;
  padding: 3px 10px 3px 12px;
  color: var(--hot-pink);
}

.af-pill-remove {
  cursor: pointer;
  font-size: 0.7rem;
  background: var(--hot-pink);
  color: white;
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ── NO RESULTS ── */
.no-results { text-align: center; padding: 4rem 2rem; grid-column: 1 / -1; }
.no-results-emoji { font-size: 4rem; margin-bottom: 1rem; }
.no-results-title { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 900; font-style: italic; margin-bottom: 0.5rem; }
.no-results p { color: #888; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--cream);
  border-top: 2.5px solid var(--ink);
  padding: 3.5rem 6vw;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-brand p { font-size: 0.85rem; color: #666; line-height: 1.65; max-width: 230px; font-weight: 600; }

.social-row { display: flex; gap: 8px; margin-top: 1.2rem; flex-wrap: wrap; }

.social-btn {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
}

.social-btn:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }

.footer-col h4 {
  font-family: 'Anybody', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #999;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover { color: var(--hot-pink); }

.footer-bottom {
  background: var(--ink);
  padding: 1rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 700; }

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.homepage-full {
  /* NO max-width, NO padding constraints — completely full-width */
  width: 100%;
}

.page-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.entry-content { font-size: 1rem; line-height: 1.8; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { font-family: 'Fraunces', serif; font-weight: 900; font-style: italic; margin: 2rem 0 1rem; }

/* ── BREADCRUMBS ── */
.breadcrumb { margin-bottom: 2rem; }

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: #999;
  flex-wrap: wrap;
}

.breadcrumb-list li:not(:last-child)::after { content: '→'; margin-left: 0.5rem; color: #ccc; }
.breadcrumb-list a { color: var(--ink); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--hot-pink); }

/* ── SINGLE REVIEW ── */
.single-review-wrap { padding: 3rem 6vw; }

.single-review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.review-genre-pills { display: flex; gap: 8px; margin-bottom: 1.5rem; flex-wrap: wrap; }

.genre-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  text-decoration: none;
}

.review-cover-wrap { margin-bottom: 2rem; }

.review-cover {
  width: 200px;
  height: 300px;
  border-radius: 6px 14px 14px 6px;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.review-cover img { width: 100%; height: 100%; object-fit: cover; }

.review-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--soft-pink);
}

.review-title {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.review-series { font-size: 0.9rem; color: #888; margin-bottom: 0.3rem; font-weight: 600; }
.review-series-label { color: #aaa; }
.review-author { font-size: 1rem; margin-bottom: 1.2rem; }
.review-author strong { color: var(--hot-pink); }

.review-stars-large { font-size: 1.6rem; letter-spacing: 3px; margin-bottom: 1rem; }
.rating-text { font-family: 'Anybody', sans-serif; font-size: 0.85rem; font-weight: 700; margin-left: 8px; }

.review-spice {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  background: var(--soft-pink);
  border: 2px solid var(--ink);
  border-radius: 30px;
  padding: 6px 16px;
  width: fit-content;
}

.review-spice-label { font-weight: 800; font-size: 0.85rem; }

.review-tropes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }

.review-info-cards { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }

.info-card {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
}

.info-card-icon { font-size: 1.5rem; }
.info-card-value { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 900; }
.info-card-label { font-size: 0.72rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.08em; }

.review-buy-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }

.content-warnings-wrap {
  background: var(--soft-yellow);
  border: 2px solid var(--ink);
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.cw-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 1rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
}

.cw-chevron { margin-left: auto; font-size: 0.7rem; }

.cw-body { padding: 0 1.4rem 1rem; font-size: 0.9rem; color: #666; line-height: 1.7; }

.review-content { margin-bottom: 3rem; }

/* Rating Breakdown */
.rating-breakdown { margin-bottom: 3rem; }

.breakdown-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.breakdown-bars { display: flex; flex-direction: column; gap: 1rem; }

.breakdown-row { display: flex; align-items: center; gap: 1rem; }

.breakdown-label { font-size: 0.82rem; font-weight: 700; width: 120px; flex-shrink: 0; }

.breakdown-bar-track {
  flex: 1;
  height: 14px;
  background: #f0f0f0;
  border-radius: 10px;
  border: 2px solid var(--ink);
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 0.5s ease;
}

.breakdown-score { font-size: 0.82rem; font-weight: 800; width: 35px; text-align: right; }

/* Sidebar */
.review-sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 1rem;
}

.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }

.share-btn {
  background: white;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
  cursor: pointer;
}

.share-btn:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }

.related-list { list-style: none; }

.related-item { margin-bottom: 1rem; }

.related-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  align-items: center;
}

.related-thumb { width: 50px; height: 70px; border-radius: 4px; border: 2px solid var(--ink); overflow: hidden; flex-shrink: 0; background: var(--soft-pink); display: flex; align-items: center; justify-content: center; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-info { display: flex; flex-direction: column; gap: 2px; }
.related-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 0.9rem; }
.related-author { font-size: 0.75rem; color: #888; }
.related-stars { font-size: 0.7rem; }

.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  border-left: 4px solid var(--hot-pink);
  padding-left: 1rem;
}

/* ── TAXONOMY HEROES ── */
.genre-hero, .trope-hero {
  padding: 4rem 6vw;
  border-bottom: 2.5px solid var(--ink);
  color: white;
}

.genre-hero-inner, .trope-hero-inner { max-width: 600px; }

.genre-hero-label, .trope-hero-label {
  font-family: 'Anybody', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.genre-hero-title, .trope-hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.genre-hero-description, .trope-hero-description { font-size: 1rem; opacity: 0.85; line-height: 1.7; margin-bottom: 1.5rem; }

.trope-hero-emoji { font-size: 4rem; display: block; margin-bottom: 1rem; }

.archive-content { padding: 3rem 6vw; }

.related-genres-section, .related-tropes-section {
  padding: 3rem 6vw;
  background: var(--soft-pink);
  border-top: 2.5px solid var(--ink);
}

.related-section-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.related-genres-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.related-genre-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.5rem;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: white;
  transition: all 0.15s;
}

.related-genre-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }

.related-genre-name { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 900; font-style: italic; }
.related-genre-count { font-size: 0.75rem; opacity: 0.7; }

.related-tropes-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.trope-genre-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 1.5rem 6vw; background: var(--soft-yellow); border-bottom: 2.5px solid var(--ink); }

.trope-newsletter-cta { padding: 3rem 6vw; }

/* ── FAQ ── */
.faq-item {
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--ink);
}

.faq-answer {
  padding: 0 1.6rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  height: 0;
  overflow: hidden;
}

.faq-open .faq-answer { height: auto; overflow: visible; }

/* ── PAGINATION ── */
.pagination,
.posts-navigation .nav-links,
.post-navigation .nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 3rem; flex-wrap: wrap; }

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  background: white;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
}

.page-numbers:hover { background: var(--yellow); transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.page-numbers.current { background: var(--hot-pink); color: white; border-color: var(--hot-pink); }

/* ── SEARCH ── */
.search-wrap .search-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.search-term { color: var(--hot-pink); }
.search-form-wrap { margin-bottom: 2.5rem; }
.search-page-item { background: white; border: 2px solid var(--ink); border-radius: 12px; padding: 1.2rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.search-page-item a { text-decoration: none; color: var(--ink); }
.search-page-item h3 { font-family: 'Fraunces', serif; font-weight: 700; margin-bottom: 0.3rem; }
.search-page-item p { font-size: 0.85rem; color: #888; }

/* ── ANIMATIONS ── */
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2.5px solid var(--ink);
    flex-direction: column;
    padding: 1rem 5vw;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.is-open { display: flex; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trope-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .single-review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .featured-card { grid-template-columns: 1fr; }
  .related-genres-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-row-two { flex-direction: column; }
}

@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .trope-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .review-title { font-size: 1.8rem; }
  .genre-hero-title, .trope-hero-title { font-size: 2rem; }
}

/* ── PRINT ── */
@media print {
  .ticker, .site-nav, .mobile-menu-toggle, .site-footer, .footer-bottom,
  .review-sidebar, .filter-search-wrap, .filter-block, .filter-row-two,
  .active-filters, .review-buy-buttons, .share-buttons { display: none !important; }

  body { background: white; color: black; }
  .review-card { box-shadow: none; border: 1px solid #ccc; }
}
