/* ===== mooma.online v3 — Premium Pet Review Design ===== */

:root {
  --cream: #FFFAF5;
  --white: #FFFFFF;
  --mocha: #6B5D4F;
  --mocha-light: #A89888;
  --mocha-bg: #F6F1EB;
  --coral: #E0754D;
  --coral-dark: #C9633F;
  --coral-light: #FFF3EE;
  --green: #6DA838;
  --green-light: #F0F7E8;
  --charcoal: #2C241B;
  --gray-700: #5A5248;
  --gray-500: #8A8278;
  --gray-300: #CDC5BA;
  --gray-100: #F5F1EC;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.10);
  --font: 'Noto Sans Thai', 'IBM Plex Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-size: 1.45em; font-weight: 800; letter-spacing: -0.02em;
  color: var(--mocha); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-icon { font-size: 1.3em; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--gray-500);
  font-weight: 500; font-size: 0.93em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mocha); }
.nav-cta {
  background: var(--coral); color: white !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.9em !important;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(224,117,77,0.25);
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,117,77,0.35); }

.hamburger { display: none; background: none; border: none; font-size: 1.6em; cursor: pointer; color: var(--charcoal); }
@media (max-width: 768px) {
  .header-inner { padding: 10px 20px; }
  .logo { font-size: 1.25em; }
  .logo-mark { width: 28px; height: 28px; border-radius: 9px; }
  .hamburger { font-size: 1.35em; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: white; padding: 24px 28px;
    border-bottom: 1px solid var(--gray-100);
    gap: 20px; box-shadow: var(--shadow-lg);
  }
}

/* ===== HERO ===== */
.hero {
  max-width: 800px; margin: 0 auto;
  padding: 76px 28px 62px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.84em; font-weight: 650; letter-spacing: 0.01em;
  margin-bottom: 28px;
  border: 1px solid rgba(109,168,56,0.15);
}
.hero h1 {
  font-size: clamp(2.2em, 5vw, 3.2em);
  line-height: 1.18; font-weight: 800; letter-spacing: -0.025em;
  color: var(--charcoal); margin-bottom: 20px;
}
@media (max-width: 640px) {
  .hero { padding: 44px 20px 38px; }
  .hero-badge { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(1.86em, 9vw, 2.35em); }
  .hero-sub { font-size: 0.98em; margin-bottom: 24px; }
  .hero-ctas { margin-bottom: 28px; }
  .trust-row { gap: 14px 20px; }
}
.hero h1 span { color: var(--coral); position: relative; }
.hero h1 span::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px; background: var(--coral-light); border-radius: 3px; z-index: -1;
}
.hero-sub {
  font-size: 1.12em; color: var(--gray-500);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px;
}
.btn-primary {
  background: var(--coral); color: white;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.02em; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(224,117,77,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(224,117,77,0.4); }
.btn-outline {
  background: white; color: var(--mocha);
  padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.02em; text-decoration: none;
  border: 2px solid var(--gray-300);
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--mocha); background: var(--gray-100); }

.trust-row {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9em; color: var(--gray-500); font-weight: 500;
}
.trust-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 0 3px var(--green-light); }

/* ===== SECTION ===== */
.section {
  max-width: var(--max-w); margin: 0 auto; padding: 56px 28px;
}
@media (max-width: 640px) { .section { padding: 42px 20px; } }
.section-header { text-align: center; margin-bottom: 40px; }
@media (max-width: 640px) { .section-header { margin-bottom: 26px; } }
.section-header h2 {
  font-size: 1.85em; font-weight: 750; letter-spacing: -0.015em;
  color: var(--charcoal); margin-bottom: 10px;
}
.section-header p { color: var(--gray-500); font-size: 1.05em; }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; gap: 18px; } }

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.10);
}

.card-img {
  height: 190px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--mocha-bg);
}
.card-img::before,
.review-thumb::before,
.related-article-thumb::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
}
@media (max-width: 600px) { .card-img { height: 150px; } }
.card-img-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.card-img-placeholder {
  font-size: 3em; opacity: 0.4;
  filter: grayscale(0.3);
  transition: opacity 0.3s;
}
.product-card:hover .card-img-placeholder { opacity: 0.55; }
.card-img-real {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .card-img-real { transform: scale(1.06); }

.card-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.76em; font-weight: 700; letter-spacing: 0.01em;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.badge-hot { background: rgba(224,117,77,0.92); color: white; }
.badge-new { background: rgba(109,168,56,0.92); color: white; }
.badge-rec { background: rgba(107,93,79,0.88); color: white; }

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.card-body h3 {
  font-size: 1.02em; font-weight: 750; margin-bottom: 8px; line-height: 1.35; letter-spacing: -0.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-stars { color: #E8A317; font-size: 0.84em; margin-bottom: 10px; letter-spacing: 0.05em; }
.card-meta { margin-bottom: 14px; }
.meta-row {
  font-size: 0.83em; color: var(--gray-500); margin-bottom: 6px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 640px) { .product-grid .meta-row { -webkit-line-clamp: 1; } }
.meta-label { font-weight: 650; color: var(--charcoal); }
.card-price {
  font-weight: 750; color: var(--coral); font-size: 1.08em;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.card-actions { display: flex; gap: 10px; margin-top: auto; }
.btn-card {
  flex: 1; text-align: center; padding: 11px 14px;
  border-radius: var(--radius-sm); font-weight: 650; font-size: 0.87em;
  text-decoration: none; transition: all 0.2s;
}
.btn-card-primary { background: var(--coral); color: white; }
.btn-card-primary:hover { background: var(--coral-dark); }
.btn-card-shopee { background: var(--coral-light); color: var(--coral); font-weight: 700; border: 1px solid rgba(224,117,77,0.2); }
.btn-card-shopee:hover { background: #FFE8DF; }

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius); padding: 30px 16px; text-align: center;
  text-decoration: none; color: var(--charcoal);
  transition: all 0.25s;
}
.cat-card:hover { border-color: var(--mocha-light); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { font-size: 2.5em; margin-bottom: 12px; }
.cat-card h4 { font-size: 0.95em; font-weight: 650; margin-bottom: 4px; }
.cat-card p { font-size: 0.8em; color: var(--gray-500); }

/* ===== FILTER ===== */
.filter-section {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg); padding: 40px;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 20px; border-radius: 50px;
  border: 2px solid var(--gray-300); background: white;
  cursor: pointer; font-size: 0.9em; font-weight: 550;
  transition: all 0.2s; color: var(--gray-500); user-select: none;
}
.chip:hover, .chip.active { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }

/* ===== REVIEW CARDS ===== */
.review-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .review-grid { grid-template-columns: 1fr; gap: 14px; } }
.review-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  min-height: 0;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-thumb {
  height: 150px; background: var(--mocha-bg);
  aspect-ratio: 16 / 10;
  max-height: 300px;
  display: flex; align-items: center; justify-content: center; font-size: 2.4em;
  position: relative; overflow: hidden;
}
.review-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .review-thumb {
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 300px;
  }
  .review-body { padding: 14px 16px 16px; }
  .review-card { border-radius: 18px; }
}
.review-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.review-card > .review-body { margin: 0; }
.review-cat {
  font-size: 0.74em; color: var(--coral); font-weight: 750; text-transform: uppercase; margin-bottom: 7px; letter-spacing: 0.04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-body h4 {
  font-size: 0.98em; line-height: 1.45; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.review-body p {
  font-size: 0.84em; color: var(--gray-500); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.review-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.04);
}
.read-time { font-size: 0.78em; color: var(--gray-300); white-space: nowrap; }
.read-link { font-size: 0.86em; font-weight: 650; color: var(--coral); text-decoration: none; white-space: nowrap; }
.read-link:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .review-cat { font-size: 0.68em; margin-bottom: 5px; }
  .review-body { padding: 14px 16px 16px; }
  .review-body h4 { font-size: 0.96em; line-height: 1.35; margin-bottom: 6px; }
  .review-body p { font-size: 0.82em; line-height: 1.45; }
  .review-meta { padding-top: 10px; margin-top: 12px; }
  .read-link { font-size: 0.84em; }
}

/* Keep homepage scannable: show newest/problem-solver articles, send long archive to /reviews */
.article-preview-grid .review-card:nth-child(n+13) { display: none; }

/* ===== TRUST ===== */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: box-shadow 0.2s;
}
.trust-card:hover { box-shadow: var(--shadow); }
.trust-icon { font-size: 2.8em; margin-bottom: 16px; }
.trust-card h4 { font-size: 1.12em; font-weight: 700; margin-bottom: 10px; }
.trust-card p { font-size: 0.9em; color: var(--gray-500); line-height: 1.6; }

/* ===== ABOUT ===== */
.about-section { max-width: var(--max-w); margin: 0 auto; padding: 72px 28px; text-align: center; }
.about-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg); padding: 52px 36px;
  max-width: 740px; margin: 0 auto;
}
.about-card h2 { font-size: 1.7em; margin-bottom: 18px; letter-spacing: -0.01em; }
.about-card p { color: var(--gray-500); font-size: 1.05em; line-height: 1.75; max-width: 580px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--white); border-top: 1px solid rgba(0,0,0,0.05);
  padding: 56px 28px 36px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: minmax(220px, 1.6fr) repeat(4, minmax(140px, 1fr)); gap: 32px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand h3 { font-size: 1.3em; color: var(--mocha); margin-bottom: 10px; }
.footer-brand p { font-size: 0.9em; color: var(--gray-500); line-height: 1.65; }
.footer-col h4 { font-size: 0.82em; text-transform: uppercase; color: var(--gray-300); letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--gray-500); text-decoration: none; font-size: 0.9em; margin-bottom: 10px; }
.footer-col a:hover { color: var(--mocha); }
.footer-bottom {
  max-width: var(--max-w); margin: 40px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.04); text-align: center;
  font-size: 0.82em; color: var(--gray-300); line-height: 1.6;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px;
}
.product-gallery img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.25s; border: 1px solid rgba(0,0,0,0.04);
}
.product-gallery img:hover { transform: scale(1.02); }
@media (max-width: 500px) { .product-gallery { grid-template-columns: 1fr; } }

/* ===== PRODUCT PAGE ===== */
.product-review { max-width: 780px; margin: 0 auto; padding: 32px 0; }
.breadcrumb { font-size: 0.86em; color: var(--gray-500); margin-bottom: 24px; }
.breadcrumb a { color: var(--coral); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.product-hero { margin-bottom: 28px; }
.product-hero h1 { font-size: 1.9em; margin-bottom: 10px; line-height: 1.3; letter-spacing: -0.015em; }
.price-badge {
  display: inline-block; background: var(--green-light); color: var(--green);
  padding: 8px 18px; border-radius: 20px; font-weight: 650; margin-top: 12px;
  border: 1px solid rgba(109,168,56,0.15);
}
.subtitle { color: var(--gray-500); font-size: 1.08em; }
.quick-facts, .benefits, .who-for, .feeding-guide, .buy, .faq {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius); padding: 28px; margin: 28px 0;
}
.quick-facts h2, .benefits h2, .who-for h2, .feeding-guide h2, .buy h2, .faq h2 { font-size: 1.2em; margin-bottom: 16px; font-weight: 700; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .facts-grid { grid-template-columns: 1fr; } }
.fact { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.03); font-size: 0.93em; }
.review-body { margin: 32px 0; }
.review-body h2 { font-size: 1.45em; margin: 32px 0 16px; letter-spacing: -0.01em; }
.review-body h3 { font-size: 1.12em; margin: 22px 0 10px; color: var(--coral-dark); }
.review-body p { margin-bottom: 16px; font-size: 1.02em; color: var(--gray-700); }
.benefits ol, .who-for ul, .feeding-guide ul { padding-left: 22px; }
.benefits li, .who-for li, .feeding-guide li { margin-bottom: 10px; font-size: 0.96em; color: var(--gray-700); }
.cta-button {
  display: inline-block; background: var(--coral); color: white !important;
  padding: 16px 36px; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 1.08em; text-decoration: none; margin: 14px 0;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(224,117,77,0.3);
}
.cta-button:hover { background: var(--coral-dark); box-shadow: 0 6px 24px rgba(224,117,77,0.4); }
details { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.03); }
details:last-child { border-bottom: none; }
summary { font-weight: 650; cursor: pointer; padding: 4px 0; font-size: 0.96em; }
summary:hover { color: var(--coral); }
details p { padding: 10px 0 0 14px; color: var(--gray-500); font-size: 0.93em; line-height: 1.65; }
.disclaimer { font-size: 0.82em; color: var(--gray-300); margin-top: 10px; }

/* ===== COMPARISON TABLE ===== */
.compare-table {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); overflow: hidden;
  margin: 24px 0;
}
.compare-row {
  display: grid; grid-template-columns: 1.4fr 1.8fr 1.8fr;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--cream); }
.compare-header {
  background: var(--mocha-bg); font-weight: 750;
  font-size: 0.88em; color: var(--mocha); letter-spacing: 0.02em;
}
.compare-cell {
  padding: 14px 16px; font-size: 0.88em; line-height: 1.55;
  display: flex; align-items: center;
}
.compare-cell:first-child { font-weight: 650; }
.green { color: var(--green); }
.red { color: var(--coral); }
@media (max-width: 640px) {
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row .compare-cell:first-child {
    grid-column: 1 / -1; background: var(--mocha-bg);
    font-size: 0.82em; padding: 10px 16px;
  }
}

/* ===== VERDICT / RECOMMENDATION BOX ===== */
.verdict-box {
  background: var(--green-light); border: 1px solid rgba(109,168,56,0.15);
  border-radius: var(--radius); padding: 28px; margin: 20px 0;
}
.verdict-box h3 { font-size: 1.1em; margin-bottom: 14px; color: var(--charcoal); }
.verdict-box ul { padding-left: 22px; }
.verdict-box li { margin-bottom: 8px; font-size: 0.93em; color: var(--gray-700); }

/* ===== CONTENT SECTION ===== */
.content-section {
  margin: 36px 0;
}
.content-section h2 {
  font-size: 1.4em; margin-bottom: 14px; font-weight: 750;
  letter-spacing: -0.01em; color: var(--charcoal);
}
.content-section h3 {
  font-size: 1.08em; margin: 18px 0 10px; color: var(--mocha); font-weight: 650;
}
.content-section p {
  margin-bottom: 14px; font-size: 1.01em; color: var(--gray-700); line-height: 1.75;
}
.content-section ul, .content-section ol {
  padding-left: 22px; margin-bottom: 16px;
}
.content-section li {
  margin-bottom: 8px; font-size: 0.95em; color: var(--gray-700); line-height: 1.6;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-sm); padding: 22px 28px; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--coral-light); }
.faq-item h3 { font-size: 0.96em; margin-bottom: 8px; color: var(--charcoal); cursor: default; }
.faq-item p { font-size: 0.92em; color: var(--gray-500); line-height: 1.65; }

/* ===== CTA SECTION ===== */
.cta-section {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 28px 0; justify-content: center;
}
@media (max-width: 500px) { .cta-section { flex-direction: column; align-items: center; } }

/* ===== SHARE BUTTONS ===== */
.share-section {
  max-width: min(760px, calc(100% - 40px));
  margin: 56px auto 0;
}
.share-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(224,117,77,0.20), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(122,91,75,0.12), transparent 28%),
    linear-gradient(135deg, #fff 0%, var(--coral-light) 100%);
  border: 1px solid rgba(224,117,77,0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(46, 33, 28, 0.10);
}
.share-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  text-align: left;
}
.share-kicker {
  color: var(--coral-dark);
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.share-heading {
  color: var(--charcoal);
  font-size: clamp(1.12em, 2.4vw, 1.38em);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.share-subtitle {
  max-width: 560px;
  color: var(--gray-600);
  font-size: 0.92em;
  line-height: 1.65;
}
.share-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  color: var(--coral-dark);
  font-size: 1.25em;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
}
.share-buttons {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) repeat(4, minmax(118px, 1fr));
  gap: 10px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 15px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.92em;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  color: #fff;
  box-shadow: var(--shadow-xs);
}
.share-btn:hover,
.share-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: saturate(1.05);
  outline: none;
}
.share-btn:active { transform: translateY(0); }
.share-btn svg { flex-shrink: 0; }
.share-native { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.share-native--hidden { display: none; }
.share-fb { background: #1877F2; }
.share-fb:hover { background: #166FE5; }
.share-x { background: #111; }
.share-x:hover { background: #000; }
.share-line { background: #06C755; }
.share-line:hover { background: #05B34D; }
.share-copy { background: var(--mocha); }
.share-copy:hover { background: var(--charcoal); }
.share-copy--done,
.share-copy--done:hover {
  background: #138A5A;
}
.share-hint {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 0.84em;
  text-align: center;
}
.share-copied-msg {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.84em;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.share-copied-msg--show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.mobile-sticky-share {
  display: none;
}
.sticky-share-btn {
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9em;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}
.sticky-share-native { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.sticky-share-line { background: #06C755; }
.sticky-share-copy { background: var(--mocha); }
@media (max-width: 900px) {
  .share-buttons { grid-template-columns: 1fr 1fr; }
  .share-native { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { padding-bottom: 50px; }
  .share-section { max-width: calc(100% - 28px); }
  .share-card { padding: 20px; }
  .share-btn { width: 100%; }
  .mobile-sticky-share {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(224,117,77,0.18);
    border-radius: 18px;
    background: rgba(255,255,255,0.90);
    box-shadow: 0 12px 32px rgba(46, 33, 28, 0.14);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .mobile-sticky-share.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .sticky-share-btn { display: inline-flex; }
  .sticky-share-btn {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.82em;
    gap: 4px;
  }
}
@media (max-width: 420px) {
  .share-heading-row { align-items: center; }
  .share-icon { display: none; }
  .share-buttons { grid-template-columns: 1fr; }
  .share-subtitle,
  .share-hint { font-size: 0.86em; }
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  max-width: min(980px, calc(100% - 40px));
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.related-articles-header {
  text-align: center;
  margin-bottom: 20px;
}
.related-kicker {
  color: var(--coral-dark);
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.related-articles-header h2 {
  color: var(--charcoal);
  font-size: clamp(1.18em, 2.6vw, 1.55em);
  margin-bottom: 6px;
}
.related-articles-header p:last-child {
  color: var(--gray-500);
  font-size: 0.92em;
}
.related-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.related-article-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #FFF9F6);
  color: var(--gray-600);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.related-article-card:hover,
.related-article-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(224,117,77,0.28);
  box-shadow: var(--shadow-sm);
  outline: none;
}
.related-article-thumb {
  display: block;
  width: 100%;
  height: clamp(150px, 42vw, 210px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: var(--coral-light);
  box-shadow: 0 10px 26px rgba(44,36,27,0.08);
}
@media (max-width: 480px) {
  .related-article-thumb { height: auto; aspect-ratio: 16 / 10; max-height: 300px; }
}
.related-article-category {
  color: var(--coral-dark);
  font-size: 0.78em;
  font-weight: 800;
}
.related-article-card strong {
  color: var(--charcoal);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-article-card span:not(.related-article-icon):not(.related-article-category) {
  font-size: 0.9em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-article-card em {
  margin-top: auto;
  color: var(--coral-dark);
  font-size: 0.9em;
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 820px) {
  .related-article-grid { grid-template-columns: 1fr; }
  .related-articles {
    max-width: calc(100% - 28px);
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .related-articles { padding: 16px; }
  .related-articles-header { margin-bottom: 14px; }
  .related-article-card { padding: 14px; gap: 6px; border-radius: 18px; }
  .related-article-category { font-size: 0.68em; }
  .related-article-card strong { font-size: 0.96em; line-height: 1.32; }
  .related-article-card span:not(.related-article-icon):not(.related-article-category) { font-size: 0.82em; line-height: 1.45; }
  .related-article-card em { font-size: 0.84em; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  justify-content: center; align-items: center;
  cursor: pointer;
}
.lightbox--open { display: flex; }
.lightbox-img {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 4px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 20px; right: 32px;
  font-size: 2.5em; color: white; opacity: 0.7;
  cursor: pointer; transition: opacity 0.2s;
  line-height: 1; z-index: 1;
}
.lightbox-close:hover { opacity: 1; }

/* Clickable images */
img[onclick] { cursor: zoom-in; }


/* ===== CONTACT + BRAND ICON ===== */
.logo-mark {
  width: 32px; height: 32px; border-radius: 10px;
  box-shadow: 0 3px 10px rgba(224,117,77,0.20);
}
.footer-brand h3 { display: flex; align-items: center; gap: 8px; }
.footer-mark { width: 28px; height: 28px; border-radius: 9px; vertical-align: middle; }
.footer-contact p { color: var(--gray-500); font-size: 0.86em; line-height: 1.6; margin-top: 4px; }
.contact-section { padding-top: 36px; }
.contact-card {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 28px; align-items: center;
  padding: 34px; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0% 0%, rgba(224,117,77,0.18), transparent 35%), linear-gradient(135deg, #fff, #FFF7F1);
  border: 1px solid rgba(224,117,77,0.16); box-shadow: var(--shadow);
}
.contact-kicker { color: var(--coral-dark); font-size: 0.82em; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; }
.contact-card h2 { font-size: clamp(1.35em, 3vw, 2em); line-height: 1.35; margin-bottom: 10px; color: var(--charcoal); }
.contact-card p:not(.contact-kicker) { color: var(--gray-500); font-size: 1em; line-height: 1.75; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.contact-actions .btn-primary, .contact-actions .btn-outline { justify-content: center; text-align: center; }
.contact-email { color: var(--mocha); font-weight: 750; text-align: center; word-break: break-word; }
.contact-page .content-section ul { padding-left: 22px; color: var(--gray-700); }
.contact-page .content-section li { margin-bottom: 10px; }
.contact-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 18px 0; }
.contact-method { display: flex; gap: 12px; align-items: center; padding: 16px; border: 1px solid var(--gray-100); border-radius: var(--radius); background: #fff; text-decoration: none; color: var(--charcoal); }
.contact-method:hover { border-color: rgba(224,117,77,0.35); box-shadow: var(--shadow-xs); }
.contact-method-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--coral-light); font-size: 1.25em; flex-shrink: 0; }
.contact-method strong { display: block; margin-bottom: 2px; }
.contact-method em { display: block; color: var(--gray-500); font-style: normal; font-size: 0.92em; word-break: break-word; }
@media (max-width: 760px) {
  .contact-card { grid-template-columns: 1fr; padding: 24px; }
  .contact-methods { grid-template-columns: 1fr; }
}


/* ===== BRAND TRUST + MONEY PAGE BOOST ===== */
.updated-note {
  margin-top: 22px; color: var(--gray-500); font-size: 0.9em; font-weight: 600;
}
.brand-trust { padding-top: 34px; }
.brand-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-trust-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 8px;
}
.brand-trust-card strong { color: var(--charcoal); font-size: 1.04em; }
.brand-trust-card span { color: var(--gray-700); font-size: 0.95em; line-height: 1.7; }
.best-hero-proof { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.best-hero-proof span {
  background: var(--coral-light); color: var(--coral-dark); border: 1px solid rgba(224,117,77,0.18);
  padding: 8px 12px; border-radius: 999px; font-size: 0.86em; font-weight: 700;
}
.compare-row-4 { grid-template-columns: 1.2fr 1.35fr 1.25fr 1.3fr; }
.brand-method-box { border-color: rgba(109,168,56,0.22); background: linear-gradient(180deg, #fff, var(--green-light)); }
.best-buy-box {
  margin-top: 18px; padding: 16px; border-radius: var(--radius); background: var(--coral-light);
  border: 1px solid rgba(224,117,77,0.18); color: var(--gray-700);
}
.best-buy-box strong { color: var(--charcoal); }
.best-buy-box p { margin: 14px 0 0; }
.cluster-nav { background: linear-gradient(180deg, #fff, var(--mocha-bg)); border-radius: var(--radius-lg); padding: 24px !important; }
.cluster-nav a { font-weight: 700; color: var(--mocha); }
@media (max-width: 820px) {
  .brand-trust-grid { grid-template-columns: 1fr; }
  .compare-row-4 { grid-template-columns: 1fr; }
  .compare-row-4 .compare-cell { border-bottom: 1px solid rgba(0,0,0,0.04); }
}
