/*
Theme Name: GolfEdge
Theme URI: https://golfedge.ai
Author: Pete
Author URI: https://golfedge.ai
Description: A clean, modern, premium golf technology theme for GolfEdge.ai — data-driven equipment reviews and golf intelligence.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: golfedge
Tags: golf, technology, reviews, affiliate, one-column, custom-menu, featured-images, theme-options

Play Smarter. Score Lower.
*/

/* ==================== RESET & VARIABLES ==================== */
:root {
  --green-900: #0B3D2E;
  --green-800: #0E4D39;
  --green-700: #12664C;
  --green-600: #178C63;
  --green-500: #1EA87A;
  --green-400: #3CC99A;
  --green-300: #7DDDB8;
  --green-200: #B5EDD6;
  --green-100: #E0F8EE;
  --green-50: #F2FCF7;

  --sand-100: #FAF8F5;
  --sand-200: #F0EDE8;
  --sand-300: #E0DCD5;

  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;

  --white: #FFFFFF;
  --divider: rgba(0,0,0,0.06);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
  --section-gap: 120px;
  --content-max: 1200px;
  --content-padding: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

/* ==================== TYPOGRAPHY ==================== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.section-body p + p { margin-top: 16px; }
.section-body strong { color: var(--text-primary); font-weight: 600; }

/* ==================== BUTTONS ==================== */
.btn-primary {
  background: var(--green-900);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11,61,46,0.2);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--sand-300);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-secondary:hover {
  border-color: var(--green-400);
  background: var(--green-50);
}

/* ==================== NAVIGATION ==================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--green-900);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--green-700); }

.nav-cta {
  background: var(--green-900) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--green-700) !important;
  transform: translateY(-1px) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-200) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-200);
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--green-900);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-600);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* Hero stats card */
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--divider);
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}
.hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.hero-card-live {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-600);
  display: flex; align-items: center; gap: 6px;
}
.hero-card-live::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  padding: 16px;
  background: var(--green-50);
  border-radius: 14px;
  transition: transform 0.2s;
}
.stat-item:hover { transform: translateY(-2px); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-900);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-top: 4px;
}

.hero-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  display: flex; align-items: center; gap: 10px;
}
.avatar-circle {
  width: 40px; height: 40px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.85rem;
}
.hero-card-footer-text { font-size: 0.85rem; }
.hero-card-footer-text strong { color: var(--text-primary); }
.hero-card-footer-text span { color: var(--text-tertiary); display: block; font-size: 0.78rem; }

/* ==================== CREDIBILITY BAR ==================== */
.cred-bar {
  padding: 40px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: var(--white);
}
.cred-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-tertiary);
  font-size: 0.88rem;
  font-weight: 500;
}
.cred-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
}
.cred-icon svg { width: 20px; height: 20px; color: var(--green-600); }

/* ==================== ABOUT ==================== */
.about-section {
  padding: var(--section-gap) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-profile {
  background: var(--sand-100);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--sand-200);
}
.about-profile-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand-200);
}
.about-avatar {
  width: 56px; height: 56px;
  background: var(--green-900);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-name { font-weight: 700; font-size: 1.1rem; }
.about-role { font-size: 0.85rem; color: var(--text-tertiary); }

.profile-stats { display: flex; flex-direction: column; gap: 14px; }
.profile-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-200);
}
.profile-stat-row:last-child { border-bottom: none; }
.profile-stat-label { font-size: 0.88rem; color: var(--text-tertiary); font-weight: 500; }
.profile-stat-value { font-weight: 700; color: var(--green-900); font-size: 0.95rem; }

/* ==================== GEAR / REVIEW CARDS ==================== */
.gear-section {
  padding: var(--section-gap) 0;
  background: var(--green-50);
}
.gear-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.gear-header .section-body { margin-top: 12px; }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gear-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: block;
}
.gear-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--green-300);
}

.gear-card-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.badge-top { background: var(--green-100); color: var(--green-700); }
.badge-editor { background: #FFF3E0; color: #E65100; }
.badge-value { background: #E3F2FD; color: #1565C0; }

.gear-card-icon {
  width: 56px; height: 56px;
  background: var(--green-50);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.gear-card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.gear-card-icon svg { width: 28px; height: 28px; color: var(--green-600); }

.gear-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: 10px;
}
.gear-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.gear-rating {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.gear-rating-score { font-weight: 700; font-size: 1.1rem; color: var(--green-900); }
.gear-rating-bar {
  flex: 1; height: 4px;
  background: var(--sand-200);
  border-radius: 4px;
  overflow: hidden;
}
.gear-rating-fill {
  height: 100%;
  background: var(--green-500);
  border-radius: 4px;
}
.gear-rating-label { font-size: 0.78rem; color: var(--text-tertiary); }

.gear-card-arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.gear-card:hover .gear-card-arrow { background: var(--green-900); }
.gear-card-arrow svg { width: 16px; height: 16px; color: var(--green-600); transition: color 0.2s; }
.gear-card:hover .gear-card-arrow svg { color: var(--white); }

/* ==================== BLOG / ARTICLE CARDS ==================== */
.blog-section { padding: var(--section-gap) 0; }
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.blog-header-left { max-width: 500px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
  height: 200px;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.blog-card-image-placeholder {
  font-size: 3rem;
  opacity: 0.15;
  color: var(--green-700);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.blog-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  background: var(--green-50);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-card-date { font-size: 0.78rem; color: var(--text-tertiary); }

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card .entry-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.blog-card-link {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* ==================== CTA / NEWSLETTER ==================== */
.cta-section {
  padding: var(--section-gap) 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--green-700) 0%, transparent 70%);
  opacity: 0.5;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-800) 0%, transparent 70%);
  opacity: 0.5;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-eyebrow { color: var(--green-400); }
.cta-inner .section-title { color: var(--white); font-size: 2.8rem; }
.cta-inner .section-body { color: var(--green-200); margin-bottom: 36px; }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.cta-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--green-700);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--green-400); opacity: 0.7; }
.cta-input:focus { border-color: var(--green-400); background: rgba(255,255,255,0.12); }

.cta-submit {
  background: var(--white);
  color: var(--green-900);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
}
.cta-submit:hover { background: var(--green-100); transform: translateY(-1px); }

.cta-disclaimer {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--green-400);
  opacity: 0.7;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--divider);
  background: var(--white);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  max-width: 300px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 48px; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-700); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  font-size: 0.82rem;
  color: var(--text-tertiary);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sand-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-tertiary);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--green-50); color: var(--green-700); }

/* ==================== SINGLE POST / PAGE ==================== */
.single-content {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: var(--section-gap);
}
.single-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.single-header h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.single-meta {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.single-featured-image {
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 20px;
  overflow: hidden;
}
.single-featured-image img { width: 100%; }

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.entry-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-900);
  margin: 48px 0 16px;
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-900);
  margin: 36px 0 12px;
}
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--green-600); font-weight: 500; border-bottom: 1px solid var(--green-200); transition: border-color 0.2s; }
.entry-content a:hover { border-color: var(--green-600); }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--green-500);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--green-50);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-primary);
}
.entry-content img {
  border-radius: 16px;
  margin: 24px 0;
}

/* Themed tables inside content */
.entry-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--divider);
  font-size: 0.92rem;
  table-layout: fixed;
}
.entry-content thead th {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}
.entry-content tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}
.entry-content tbody tr:last-child td { border-bottom: none; }
.entry-content tbody tr:nth-child(even) td { background: var(--green-50); }
.entry-content tbody tr:hover td { background: var(--green-100); }
.entry-content tbody td:first-child { font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.entry-content tbody td strong { color: var(--text-primary); }

/* Make tables break out of narrow content column */
.entry-content .table-wrap {
  margin: 28px -40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.entry-content .table-wrap table {
  margin: 0;
  min-width: 600px;
}

@media (max-width: 600px) {
  .entry-content table {
    font-size: 0.82rem;
    table-layout: auto;
  }
  .entry-content thead th,
  .entry-content tbody td {
    padding: 10px 12px;
  }
  .entry-content tbody td:first-child {
    white-space: normal;
  }
}

/* Callout box — for tips, key insights */
.callout {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.callout-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
  margin-bottom: 8px;
}

/* Pro / Con boxes */
.pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.pro-box, .con-box {
  border-radius: 16px;
  padding: 24px;
  font-size: 0.95rem;
}
.pro-box {
  background: var(--green-50);
  border: 1px solid var(--green-200);
}
.con-box {
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
}
.pro-box h4, .con-box h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.pro-box h4 { color: var(--green-700); }
.con-box h4 { color: var(--text-secondary); }
.pro-box ul, .con-box ul {
  margin: 0;
  padding-left: 18px;
}
.pro-box li, .con-box li {
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Verdict / rating box */
.verdict-box {
  background: var(--green-900);
  border-radius: 20px;
  padding: 32px;
  margin: 36px 0;
  text-align: center;
  color: var(--white);
}
.verdict-score {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.verdict-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-400);
  margin-bottom: 16px;
}
.verdict-text {
  font-size: 1.05rem;
  color: var(--green-200);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Disclosure notice */
.disclosure {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  border-top: 1px solid var(--divider);
  padding-top: 20px;
  margin-top: 40px;
  line-height: 1.6;
}

/* FAQ section */
.faq-section {
  margin: 48px 0 36px;
}
.faq-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-900);
  margin-bottom: 24px;
}
.faq-item {
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
  background: var(--white);
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--green-300);
}
.faq-question {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--green-900) !important;
  margin: 0 0 8px 0 !important;
  line-height: 1.4;
}
.faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer p {
  margin-bottom: 0;
}
.faq-answer p + p {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .pro-con { grid-template-columns: 1fr; }
}

/* ==================== ARCHIVE / BLOG INDEX ==================== */
.archive-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 48px;
  background: var(--green-50);
  text-align: center;
}

.archive-grid {
  padding: 60px 0 var(--section-gap);
}
.archive-grid .blog-grid {
  margin-bottom: 48px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.pagination a {
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid var(--divider);
}
.pagination a:hover { background: var(--green-50); color: var(--green-700); border-color: var(--green-300); }
.pagination .current {
  background: var(--green-900);
  color: var(--white);
}

/* ==================== ARCCOS SHORTCODE WIDGETS ==================== */
.arccos-stat-widget {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  width: 100%;
}
.arccos-stat {
  text-align: center;
}
.arccos-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-900);
}
.arccos-stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.arccos-club-data {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0;
}
.arccos-club-data table {
  width: 100%;
  border-collapse: collapse;
}
.arccos-club-data th {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  text-align: left;
}
.arccos-club-data td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--divider);
}
.arccos-club-data tr:last-child td { border-bottom: none; }
.arccos-club-data tr:hover td { background: var(--green-50); }

/* Affiliate CTA box */
.affiliate-cta {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
  border: 2px solid var(--green-200);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
}
.affiliate-cta h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-900);
  margin-bottom: 8px;
}
.affiliate-cta p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.affiliate-cta .btn-primary { display: inline-flex; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  :root { --section-gap: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cred-inner { gap: 32px; }
  .footer-top { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-menu.open { display: flex; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .single-header h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-card { padding: 24px; }
  .cta-inner .section-title { font-size: 2rem; }
  .gear-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
