/*
Theme Name: Yahum - ยาอึด
Theme URI: https://test.xn--l3c1a1aixb3a5p.com
Author: Yahum
Description: เซลเพจหน้าเดียว สำหรับขายอาหารเสริมผู้ชาย Kamagra Oral Jelly — SEO-first design
Version: 1.0
Text Domain: yahum
*/

/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1628;
  --navy-light: #111d35;
  --navy-dark: #060e1a;
  --gold: #d4a853;
  --gold-light: #e8c882;
  --gold-dark: #b8913a;
  --white: #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-400: #9a9aa0;
  --gray-600: #636366;
  --red: #ff3b30;
  --green: #34c759;
  --font-main: 'Prompt', 'Noto Sans Thai', sans-serif;
  --font-heading: 'Prompt', 'Noto Sans Thai', sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--white);
  background: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Header / Nav === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  padding: 12px 0;
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.site-logo span {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

/* === Navigation Menu === */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 22, 40, 0.98);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  backdrop-filter: blur(20px);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 100px 0 0;
  font-size: 0.82rem;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* === Hero Section === */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  animation: pulse 8s infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  animation: pulse 2s infinite;
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.4);
}

.hero-image {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* === Section Base === */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title h2 .gold {
  color: var(--gold);
}

.section-title p {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === Problems Section === */
.problems {
  background: var(--navy-light);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.problem-card:hover {
  background: rgba(212, 168, 83, 0.05);
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* === Product Section === */
.product {
  background: var(--navy);
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.product-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212, 168, 83, 0.15);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* === How To Use === */
.howto {
  background: var(--navy-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 32px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* === Reviews (Cards with Chat Screenshots) === */
.reviews {
  background: var(--navy);
}

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

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.1);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.82rem;
  color: var(--gray-200);
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.review-chat-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-chat-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* === Pricing === */
.pricing {
  background: var(--navy-light);
  text-align: center;
}

.price-table {
  max-width: 700px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: rgba(212, 168, 83, 0.05);
}

.price-row.featured {
  background: rgba(212, 168, 83, 0.08);
  border-left: 3px solid var(--gold);
}

.price-qty {
  font-weight: 600;
  font-size: 1rem;
}

.price-amount {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.price-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-original {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-left: 8px;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.3);
}

.pricing-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 48px rgba(212, 168, 83, 0.4);
}

/* === FAQ === */
.faq {
  background: var(--navy);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Contact === */
.contact {
  background: var(--navy-light);
  text-align: center;
}

.contact-card {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(212, 168, 83, 0.05);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-card .line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06c755;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  transition: var(--transition);
}

.contact-card .line-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(6, 199, 85, 0.3);
}

.contact-qr {
  margin: 20px auto;
}

.contact-qr img {
  max-width: 180px;
  margin: 0 auto;
  border-radius: 12px;
  background: white;
  padding: 12px;
}

.contact-id {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* === Footer === */
.site-footer {
  background: var(--navy-dark);
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* === Sticky CTA === */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: flex;
  gap: 10px;
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sticky-cta a:hover {
  transform: scale(1.1);
}

.sticky-cta .line-float {
  background: #06c755;
  color: white;
}

.sticky-cta .order-float {
  background: var(--gold);
  color: var(--navy);
}

/* === Responsive === */
@media (max-width: 768px) {
  .product-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  section {
    padding: 60px 0;
  }

  .site-nav {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 600px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .product-content {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* === Product Catalog Grid (Homepage) === */
.catalog {
  background: var(--navy);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.catalog-card:hover {
  border-color: rgba(212, 168, 83, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 168, 83, 0.12);
}

.catalog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.catalog-badge.gold-badge {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
}

.catalog-badge.blue-badge {
  background: linear-gradient(135deg, #0074e4, #4da6ff);
}

.catalog-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.catalog-img img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.catalog-info {
  padding: 20px 24px 24px;
}

.catalog-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalog-desc {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 12px;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.catalog-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.catalog-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.catalog-btn {
  display: block;
  text-align: center;
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.catalog-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* === Comparison Table === */
.seo-content {
  background: var(--navy-light);
}

.compare-table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th {
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--gray-200);
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--white);
}

/* === SEO Article Content === */
.seo-article {
  background: var(--navy);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--gold);
}

.article-content p {
  font-size: 0.92rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-list {
  padding-left: 20px;
}

.article-list li {
  font-size: 0.92rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

/* === Trust Section === */
.trust {
  background: var(--navy-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.trust-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-4px);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* === Blog Posts Grid === */
.latest-posts,
.blog-archive {
  background: var(--navy);
}

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

.post-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.post-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.post-thumb {
  height: 160px;
  overflow: hidden;
}

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

.post-body {
  padding: 20px;
}

.post-body h2,
.post-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.post-body h2 a,
.post-body h3 a {
  color: var(--white);
}

.post-body h2 a:hover,
.post-body h3 a:hover {
  color: var(--gold);
}

.post-body p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-link {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

.post-link:hover {
  text-decoration: underline;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-card-meta time {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.no-posts {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 40px 0;
  grid-column: 1 / -1;
}

.blog-pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 32px;
}

.blog-pagination a,
.blog-pagination span {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-pagination span.current {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

/* === Single Post === */
.single-post {
  padding-bottom: 80px;
}

.post-header {
  text-align: center;
  padding: 40px 0 24px;
}

.post-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.post-meta {
  color: var(--gray-400);
  font-size: 0.85rem;
}

.post-featured-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.post-body-content {
  max-width: 750px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-200);
}

.post-body-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--white);
}

.post-body-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--gold);
}

.post-body-content p {
  margin-bottom: 16px;
}

.post-body-content ul,
.post-body-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.post-body-content li {
  margin-bottom: 8px;
  list-style: disc;
}

/* === Related Products === */
.related-products {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.related-products h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
}

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

.related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px;
  transition: var(--transition);
}

.related-item:hover {
  background: rgba(212, 168, 83, 0.08);
}

.related-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.related-item span {
  font-size: 0.85rem;
  font-weight: 600;
}

/* === Post CTA === */
.post-cta {
  text-align: center;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  padding: 32px;
}

.post-cta p {
  margin-bottom: 16px;
  color: var(--gray-200);
}

.post-cta .line-btn {
  display: inline-flex;
}

/* === Mobile Responsive Override (must be last to take precedence) === */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 500px;
  }

  .posts-grid {
    grid-template-columns: 1fr !important;
  }

  .product-content {
    grid-template-columns: 1fr !important;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr !important;
  }

  .catalog-card {
    max-width: 100%;
  }

  .catalog-img img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }
}

/* === SEO Footer === */
.site-footer {
  background: #0a0f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 24px;
  color: var(--gray-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}