/*
Theme Name: SmartAgingTech
Theme URI: https://smartagingtech.com
Description: Simple tech reviews for independent living. A bold, accessible WordPress theme for senior technology reviews.
Version: 1.0.0
Author: SmartAgingTech Team
Author URI: https://smartagingtech.com
Text Domain: smartagingtech
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ==========================================================================
   Reset / Normalize
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #111827;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #111827;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a:hover {
  color: #f59e0b;
}

a:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.25em;
}

blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #f59e0b;
  background: #fef9c3;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

th, td {
  padding: 0.75em 1em;
  text-align: left;
  border: 2px solid #e5e7eb;
}

th {
  background: #f3f4f6;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

hr {
  border: none;
  border-top: 3px solid #000;
  margin: 2em 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.sat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sat-content-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .sat-content-area {
    grid-template-columns: 1fr 320px;
  }
}

.sat-main {
  min-width: 0;
}

.sat-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .sat-sidebar {
    display: block;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.sat-header {
  background: #ffffff;
  border-bottom: 4px solid #000000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sat-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sat-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #111827;
}

.sat-logo:hover {
  color: #111827;
}

.sat-logo-icon {
  width: 36px;
  height: 36px;
  color: #f59e0b;
  flex-shrink: 0;
}

.sat-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Primary Navigation */

.sat-nav {
  display: none;
}

@media (min-width: 768px) {
  .sat-nav {
    display: block;
  }
}

.sat-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.sat-nav li {
  margin: 0;
}

.sat-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sat-nav a:hover,
.sat-nav .current-menu-item > a,
.sat-nav .current_page_item > a {
  background: #fef9c3;
  color: #111827;
}

/* Mobile Menu Toggle */

.sat-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 3px solid #000;
  border-radius: 12px;
  cursor: pointer;
  color: #111827;
  transition: background 0.2s ease;
}

.sat-menu-toggle:hover {
  background: #f3f4f6;
}

@media (min-width: 768px) {
  .sat-menu-toggle {
    display: none;
  }
}

.sat-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */

.sat-mobile-nav {
  display: none;
  background: #ffffff;
  border-bottom: 3px solid #000;
  padding: 1rem;
}

.sat-mobile-nav.is-open {
  display: block;
}

@media (min-width: 768px) {
  .sat-mobile-nav {
    display: none !important;
  }
}

.sat-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sat-mobile-nav li {
  margin: 0;
}

.sat-mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.sat-mobile-nav a:hover {
  background: #fef9c3;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.sat-footer {
  background: #111827;
  color: #d1d5db;
  margin-top: 3rem;
}

.sat-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sat-footer a:hover {
  color: #f59e0b;
}

.sat-footer-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .sat-footer-widgets {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sat-footer-widgets .widget {
  margin: 0;
}

.sat-footer-widgets .widget-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.sat-footer-widgets ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sat-footer-widgets li {
  margin-bottom: 0.5rem;
}

.sat-footer-bottom {
  border-top: 2px solid #374151;
  padding: 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sat-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .sat-footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.sat-footer-copyright {
  font-size: 0.85rem;
}

.sat-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sat-footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
}

.sat-footer-disclaimer {
  padding: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #374151;
}

/* Back to Top Button */

.sat-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #111827;
  color: #ffffff;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 90;
  box-shadow: 4px 4px 0 #000;
}

.sat-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.sat-back-to-top:hover {
  transform: translateY(-2px);
  background: #f59e0b;
  color: #111827;
}

.sat-back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.sat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 12px;
  border: 3px solid #000000;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 48px;
  min-width: 48px;
  text-align: center;
}

.sat-btn:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

/* Primary / CTA Button (Amber) */

.sat-btn-primary {
  background: #f59e0b;
  color: #111827;
  box-shadow: 4px 4px 0 #000000;
}

.sat-btn-primary:hover {
  background: #fbbf24;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 4px 6px 0 #000000;
}

.sat-btn-primary:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 #000000;
}

/* Secondary Button */

.sat-btn-secondary {
  background: #ffffff;
  color: #111827;
  box-shadow: 4px 4px 0 #000000;
}

.sat-btn-secondary:hover {
  background: #f3f4f6;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 4px 6px 0 #000000;
}

.sat-btn-secondary:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0 #000000;
}

/* Large Button */

.sat-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.15rem;
  border-radius: 14px;
  box-shadow: 6px 6px 0 #000000;
}

.sat-btn-lg:hover {
  box-shadow: 6px 8px 0 #000000;
}

/* Small Button */

.sat-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
  box-shadow: 3px 3px 0 #000000;
}

.sat-btn-sm:hover {
  box-shadow: 3px 5px 0 #000000;
}

/* Full Width Button */

.sat-btn-full {
  width: 100%;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.sat-card {
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 6px 6px 0 #000000;
}

.sat-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 10px 0 #000000;
}

.sat-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 3px solid #000;
}

.sat-card-body {
  padding: 1.25rem;
}

.sat-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.sat-card-title a {
  text-decoration: none;
  color: #111827;
}

.sat-card-title a:hover {
  color: #f59e0b;
}

.sat-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.sat-card-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Product Card */

.sat-product-card .sat-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sat-product-card .sat-card-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: #111827;
  letter-spacing: -0.03em;
}

.sat-product-card .sat-card-key-feature {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

/* ==========================================================================
   Product Card Grid
   ========================================================================== */

.sat-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .sat-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sat-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Star Ratings
   ========================================================================== */

.sat-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 1.1rem;
  line-height: 1;
}

.sat-stars .star-empty {
  color: #d1d5db;
}

.sat-stars-lg {
  font-size: 1.35rem;
  gap: 3px;
}

.sat-rating-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
  margin-left: 0.35rem;
}

/* ==========================================================================
   Category Badges
   ========================================================================== */

.sat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  border: 2px solid #000;
  text-decoration: none;
  white-space: nowrap;
}

.sat-badge:hover {
  color: inherit;
}

.sat-badge-yellow {
  background: #fef9c3;
  color: #92400e;
}

.sat-badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.sat-badge-green {
  background: #dcfce7;
  color: #166534;
}

.sat-badge-purple {
  background: #f3e8ff;
  color: #6b21a8;
}

.sat-badge-red {
  background: #fee2e2;
  color: #991b1b;
}

.sat-badge-gray {
  background: #f3f4f6;
  color: #374151;
}

/* ==========================================================================
   Quick Answer Box
   ========================================================================== */

.sat-quick-answer {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 3px solid #000;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 6px 6px 0 #000;
}

.sat-quick-answer-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sat-quick-answer-label {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f59e0b;
  color: #111827;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  border: 2px solid #000;
}

.sat-quick-answer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 640px) {
  .sat-quick-answer-content {
    grid-template-columns: 200px 1fr;
  }
}

.sat-quick-answer-image {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #000;
  object-fit: cover;
}

.sat-quick-answer-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.sat-quick-answer-feature {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.sat-quick-answer-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Comparison Matrix
   ========================================================================== */

.sat-comparison {
  margin: 2rem 0;
}

.sat-comparison-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  border: 3px solid #000;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sat-comparison-item:hover {
  transform: translateY(-2px);
  box-shadow: 4px 6px 0 #000;
}

.sat-comparison-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f59e0b;
  color: #111827;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 12px;
  border: 3px solid #000;
  flex-shrink: 0;
}

.sat-comparison-details {
  min-width: 0;
}

.sat-comparison-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.sat-comparison-feature {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

.sat-comparison-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
}

.sat-comparison-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .sat-comparison-item {
    grid-template-columns: 40px 1fr;
  }
  .sat-comparison-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

/* ==========================================================================
   Keypad Grid (Homepage)
   ========================================================================== */

.sat-keypad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .sat-keypad {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.sat-keypad-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 16px;
  text-decoration: none;
  color: #111827;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  min-height: 160px;
}

.sat-keypad-item:hover {
  transform: translateY(-4px);
  box-shadow: 6px 10px 0 #000;
  background: #fef9c3;
  color: #111827;
}

.sat-keypad-item:active {
  transform: translateY(2px);
  box-shadow: 3px 3px 0 #000;
}

.sat-keypad-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.sat-keypad-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.sat-keypad-desc {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   Ad Container Placeholders
   ========================================================================== */

.sat-ad-container {
  margin: 2rem 0;
  text-align: center;
}

.sat-ad-leaderboard {
  min-height: 90px;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
}

.sat-ad-rectangle {
  min-height: 250px;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}

.sat-ad-sidebar {
  min-height: 250px;
  max-width: 300px;
}

/* ==========================================================================
   Affiliate Button
   ========================================================================== */

.sat-affiliate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  background: #f59e0b;
  color: #111827;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  border: 3px solid #000;
  border-radius: 14px;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  min-height: 56px;
}

.sat-affiliate-btn:hover {
  background: #fbbf24;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 6px 8px 0 #000;
}

.sat-affiliate-btn:active {
  transform: translateY(2px);
  box-shadow: 3px 3px 0 #000;
}

.sat-affiliate-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Sticky Footer CTA (Mobile Only)
   ========================================================================== */

.sat-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #000;
  padding: 0.75rem 1rem;
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sat-sticky-cta.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sat-sticky-cta {
    display: none !important;
  }
}

.sat-sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sat-sticky-cta-text {
  flex: 1;
  min-width: 0;
}

.sat-sticky-cta-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.03em;
}

.sat-sticky-cta-price {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.sat-hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.sat-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .sat-hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .sat-hero h1 {
    font-size: 3.25rem;
  }
}

.sat-hero-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 500;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.sat-section {
  padding: 2.5rem 0;
}

.sat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sat-section-title {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.sat-section-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.sat-section-link:hover {
  color: #d97706;
}

/* ==========================================================================
   About / Testing Methodology
   ========================================================================== */

.sat-about-box {
  background: #f3f4f6;
  border: 3px solid #000;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 6px 6px 0 #000;
}

.sat-about-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.sat-about-box p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Article / Post Content Typography
   ========================================================================== */

.sat-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #000;
}

.sat-article-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .sat-article-header h1 {
    font-size: 2.5rem;
  }
}

.sat-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

.sat-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.sat-article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #111827;
}

.sat-article-content h2 {
  font-size: 1.65rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #f59e0b;
}

.sat-article-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.sat-article-content h4 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.sat-article-content p {
  margin-bottom: 1.25em;
}

.sat-article-content ul,
.sat-article-content ol {
  margin-bottom: 1.25em;
  padding-left: 1.75em;
}

.sat-article-content li {
  margin-bottom: 0.5em;
}

.sat-article-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 3px solid #000;
}

.sat-article-content a {
  color: #f59e0b;
  font-weight: 600;
}

.sat-article-content a:hover {
  color: #d97706;
}

/* ==========================================================================
   Product Review Single
   ========================================================================== */

.sat-review-header {
  margin-bottom: 2rem;
}

.sat-review-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .sat-review-header h1 {
    font-size: 2.5rem;
  }
}

.sat-review-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.sat-review-featured-image {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  margin-bottom: 2rem;
}

/* Quick Specs Box */

.sat-specs-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: #f3f4f6;
  border: 3px solid #000;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: 4px 4px 0 #000;
}

@media (min-width: 640px) {
  .sat-specs-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sat-spec-item {
  text-align: center;
}

.sat-spec-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.sat-spec-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #111827;
  letter-spacing: -0.03em;
}

/* Pros / Cons */

.sat-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .sat-pros-cons {
    grid-template-columns: 1fr 1fr;
  }
}

.sat-pros,
.sat-cons {
  padding: 1.25rem;
  border: 3px solid #000;
  border-radius: 14px;
}

.sat-pros {
  background: #dcfce7;
}

.sat-cons {
  background: #fee2e2;
}

.sat-pros h3,
.sat-cons h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sat-pros ul,
.sat-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sat-pros li,
.sat-cons li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.sat-pros li::before {
  content: "\2713";
  color: #166534;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sat-cons li::before {
  content: "\2717";
  color: #991b1b;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Archive Page
   ========================================================================== */

.sat-archive-header {
  padding: 2rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #000;
}

.sat-archive-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.sat-archive-description {
  font-size: 1rem;
  color: #4b5563;
  max-width: 600px;
}

/* Category Filter Buttons */

.sat-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sat-category-filter {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #111827;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 44px;
  box-shadow: 3px 3px 0 #000;
}

.sat-category-filter:hover,
.sat-category-filter.is-active {
  background: #f59e0b;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 3px 5px 0 #000;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sat-sidebar .widget {
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 14px;
  box-shadow: 4px 4px 0 #000;
}

.sat-sidebar .widget-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #f59e0b;
}

.sat-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sat-sidebar .widget li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.sat-sidebar .widget li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sat-sidebar .widget a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.sat-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.sat-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0.5rem 0.85rem;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #111827;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.sat-pagination .page-numbers:hover {
  background: #fef9c3;
  transform: translateY(-2px);
  box-shadow: 3px 5px 0 #000;
}

.sat-pagination .page-numbers.current {
  background: #f59e0b;
  color: #111827;
}

.sat-pagination .page-numbers.dots {
  border: none;
  box-shadow: none;
  background: none;
  min-width: auto;
  padding: 0.5rem 0.25rem;
}

/* ==========================================================================
   Forms (Search, Contact)
   ========================================================================== */

.sat-search-form {
  display: flex;
  gap: 0;
}

.sat-search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 3px solid #000;
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: #ffffff;
  color: #111827;
  min-height: 48px;
  outline: none;
}

.sat-search-input:focus {
  border-color: #f59e0b;
  box-shadow: inset 0 0 0 1px #f59e0b;
}

.sat-search-input::placeholder {
  color: #9ca3af;
}

.sat-search-submit {
  padding: 0.75rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #f59e0b;
  color: #111827;
  border: 3px solid #000;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  min-height: 48px;
  min-width: 48px;
  transition: background 0.2s ease;
}

.sat-search-submit:hover {
  background: #fbbf24;
}

/* General Form Inputs */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 3px solid #000;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  min-height: 48px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Related Posts
   ========================================================================== */

.sat-related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid #000;
}

.sat-related-posts h2 {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Author Bio Box
   ========================================================================== */

.sat-author-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 3px solid #000;
  border-radius: 14px;
  margin: 2rem 0;
  background: #f3f4f6;
  box-shadow: 4px 4px 0 #000;
}

.sat-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #000;
  flex-shrink: 0;
  object-fit: cover;
}

.sat-author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.sat-author-info p {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.sat-404 {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sat-404 h1 {
  font-size: 4rem;
  color: #f59e0b;
  margin-bottom: 0.5rem;
}

.sat-404 p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.sat-404-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}

/* ==========================================================================
   WordPress Required Classes
   ========================================================================== */

.alignleft {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 1em;
}

.wp-caption img {
  display: block;
  margin: 0;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
  font-style: italic;
}

.gallery-caption {
  font-size: 0.85rem;
  color: #6b7280;
}

.sticky {
  border-left: 4px solid #f59e0b;
  padding-left: 1rem;
}

.bypostauthor {
  border-left: 4px solid #f59e0b;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ==========================================================================
   Post Card (for blog listing)
   ========================================================================== */

.sat-post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 3px solid #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 1.5rem;
}

.sat-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 7px 0 #000;
}

@media (min-width: 640px) {
  .sat-post-card {
    flex-direction: row;
  }
}

.sat-post-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 3px solid #000;
}

@media (min-width: 640px) {
  .sat-post-card-image {
    width: 280px;
    aspect-ratio: auto;
    border-bottom: none;
    border-right: 3px solid #000;
  }
}

.sat-post-card-body {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.sat-post-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.sat-post-card-title a {
  text-decoration: none;
  color: #111827;
}

.sat-post-card-title a:hover {
  color: #f59e0b;
}

.sat-post-card-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  flex: 1;
}

.sat-post-card-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sat-text-center {
  text-align: center;
}

.sat-mt-1 { margin-top: 0.5rem; }
.sat-mt-2 { margin-top: 1rem; }
.sat-mt-3 { margin-top: 1.5rem; }
.sat-mt-4 { margin-top: 2rem; }

.sat-mb-1 { margin-bottom: 0.5rem; }
.sat-mb-2 { margin-bottom: 1rem; }
.sat-mb-3 { margin-bottom: 1.5rem; }
.sat-mb-4 { margin-bottom: 2rem; }

.sat-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* No results */

.sat-no-results {
  text-align: center;
  padding: 3rem 1rem;
}

.sat-no-results h2 {
  margin-bottom: 0.75rem;
}

.sat-no-results p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Read Time
   ========================================================================== */

.sat-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 500;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .sat-header,
  .sat-footer,
  .sat-sidebar,
  .sat-ad-container,
  .sat-back-to-top,
  .sat-sticky-cta,
  .sat-menu-toggle,
  .sat-affiliate-btn,
  .sat-category-filters {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .sat-container {
    max-width: 100%;
  }

  .sat-article-content {
    line-height: 1.6;
  }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.sat-breadcrumbs {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.sat-breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
}

.sat-breadcrumbs a:hover {
  color: #f59e0b;
}

.sat-breadcrumb-sep {
  margin: 0 0.4rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.sat-breadcrumbs span[aria-current] {
  color: #111827;
  font-weight: 600;
}

/* ==========================================================================
   Cookie Consent Bar
   ========================================================================== */

.sat-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #000;
  padding: 1rem;
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.sat-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sat-cookie-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: #4b5563;
  flex: 1;
  min-width: 200px;
}

.sat-cookie-inner a {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
}

.sat-cookie-inner a:hover {
  color: #d97706;
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
