/*
Theme Name: Zaheer Shaikh Luxury SEO Theme (3DEath Engine)
Theme URI: https://zaheershaikh.online/
Author: Zaheer Shaikh
Author URI: https://zaheershaikh.online/
Description: Ultra-fast, editorial tech-luxury WordPress theme. Replicates the 3DEath design engine: dark/light glassmorphism, emerald green (#157451) + gold (#E59819) accents, 3D tilt cards, and aurora blob parallax. Engineered for 100/100 Core Web Vitals, AEO & GEO search.
Version: 2.0.0
Text Domain: zaheer-seo-luxury
*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --zs-bg: #F7F5EF;
  --zs-surface: #FFFFFF;
  --zs-surface-glass: rgba(255, 255, 255, 0.72);
  --zs-text: #151917;
  --zs-muted: #68736D;
  --zs-line: #E3E0D8;
  --zs-accent: #157451;
  --zs-accent-rgb: 21, 116, 81;
  --zs-accent-hover: #0d5d40;
  --zs-accent-glow: #46C293;
  --zs-accent-glow-rgb: 70, 194, 147;
  --zs-soft: #E8F1EC;
  --zs-gold: #E59819;
  --zs-gold-rgb: 229, 152, 25;
  --zs-max: 1200px;
  --zs-radius: 20px;
  --zs-shadow-sm: 0 4px 14px rgba(21, 116, 81, 0.05);
  --zs-shadow-md: 0 12px 36px -4px rgba(21, 116, 81, 0.09), 0 4px 12px rgba(0,0,0,0.03);
  --zs-shadow-3d: 0 24px 48px -10px rgba(21, 116, 81, 0.16), 0 8px 20px -4px rgba(0, 0, 0, 0.05);
  --zs-shadow-float: 0 30px 60px -15px rgba(21, 116, 81, 0.22);
  --zs-inset-highlight: inset 0 1px 1px 0 rgba(255, 255, 255, 0.85);
  --blob-opacity: 0.38;
}

[data-theme="dark"], html.zs-dark {
  --zs-bg: #090D0B;
  --zs-surface: #121815;
  --zs-surface-glass: rgba(18, 24, 21, 0.85);
  --zs-text: #F0F7F3;
  --zs-muted: #9BB0A5;
  --zs-line: #1F2B25;
  --zs-accent: #3DD698;
  --zs-accent-rgb: 61, 214, 152;
  --zs-accent-hover: #67E4B2;
  --zs-accent-glow: #67E4B2;
  --zs-accent-glow-rgb: 103, 228, 178;
  --zs-soft: #17241E;
  --zs-gold: #F5B73D;
  --zs-shadow-sm: 0 4px 16px rgba(0,0,0,0.5);
  --zs-shadow-md: 0 12px 36px -4px rgba(0,0,0,0.7);
  --zs-shadow-3d: 0 24px 48px -10px rgba(0,0,0,0.9), 0 0 25px rgba(61, 214, 152, 0.12);
  --zs-shadow-float: 0 30px 60px -15px rgba(0,0,0,0.95), 0 0 35px rgba(61, 214, 152, 0.2);
  --zs-inset-highlight: inset 0 1px 1px 0 rgba(255, 255, 255, 0.1);
  --blob-opacity: 0.22;
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--zs-bg) !important;
  color: var(--zs-text) !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.8 !important;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
  position: relative;
  min-height: 100vh;
}

a {
  color: var(--zs-text);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
  color: var(--zs-accent);
}

/* 4D Parallax Aurora Ambient Orbs */
.zs-ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.zs-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  opacity: var(--blob-opacity);
  will-change: transform;
  pointer-events: none;
}

.zs-aurora-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(var(--zs-accent-rgb), 0.55), transparent 70%);
  top: -80px;
  left: 10%;
  animation: floatAurora1 20s ease-in-out infinite alternate;
}

.zs-aurora-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(var(--zs-gold-rgb), 0.35), transparent 70%);
  bottom: 5%;
  right: 8%;
  animation: floatAurora2 24s ease-in-out infinite alternate;
}

.zs-aurora-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--zs-accent-glow-rgb), 0.3), transparent 70%);
  top: 45%;
  left: 65%;
  animation: floatAurora3 18s ease-in-out infinite alternate;
}

@keyframes floatAurora1 { 0%{transform: translate(0, 0) scale(1);} 100%{transform: translate(70px, 90px) scale(1.15);} }
@keyframes floatAurora2 { 0%{transform: translate(0, 0) scale(1);} 100%{transform: translate(-90px, -70px) scale(1.18);} }
@keyframes floatAurora3 { 0%{transform: translate(0, 0) scale(1);} 100%{transform: translate(-50px, 60px) scale(0.92);} }

/* Top Progress Bar */
#zs-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--zs-accent), var(--zs-accent-glow), var(--zs-gold));
  z-index: 10002;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 16px var(--zs-accent);
}

/* Glass Header */
.zs-header-container {
  background: var(--zs-surface-glass) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--zs-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.3s ease;
}

.zs-header {
  max-width: var(--zs-max);
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  box-sizing: border-box;
  gap: 24px;
}

.zs-signature-logo {
  font-family: 'Great Vibes', cursive !important;
  font-size: 40px !important;
  color: var(--zs-text) !important;
  font-weight: normal !important;
  letter-spacing: 1.5px;
}

.zs-signature-logo span {
  color: var(--zs-accent);
  text-shadow: 0 0 15px var(--zs-accent-glow);
}

.zs-nav {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.zs-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--zs-muted);
  letter-spacing: 0.3px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.zs-nav a:hover, .zs-nav a.active {
  color: var(--zs-accent);
  background: var(--zs-soft);
}

.zs-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zs-icon-btn {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  color: var(--zs-text);
  cursor: pointer;
  font-size: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--zs-inset-highlight), var(--zs-shadow-sm);
}

.zs-icon-btn:hover {
  color: var(--zs-accent);
  border-color: var(--zs-accent);
  transform: translateY(-2px) scale(1.06);
  box-shadow: var(--zs-shadow-md);
}

.zs-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--zs-text);
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Drawer Panel */
.zs-mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--zs-surface);
  border-left: 1px solid var(--zs-line);
  z-index: 10001;
  padding: 32px 28px;
  box-sizing: border-box;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--zs-shadow-float);
  display: flex;
  flex-direction: column;
}

.zs-mobile-panel.active { right: 0; }
.zs-mobile-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.zs-mobile-panel-close { background: none; border: none; color: var(--zs-text); font-size: 24px; cursor: pointer; }
.zs-mobile-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.zs-mobile-nav a { font-size: 18px; font-weight: 700; color: var(--zs-text); }
.zs-mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.zs-mobile-backdrop.active { opacity: 1; pointer-events: auto; }

/* Buttons */
.zs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--zs-accent);
  color: #fff !important;
  font-weight: 800;
  border-radius: 999px;
  font-size: 15.5px;
  box-shadow: var(--zs-shadow-md), 0 0 20px var(--zs-accent-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
}

.zs-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--zs-shadow-float), 0 0 30px var(--zs-accent-glow);
}

.zs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--zs-surface);
  color: var(--zs-text) !important;
  font-weight: 700;
  border-radius: 999px;
  font-size: 15px;
  border: 1px solid var(--zs-line);
  box-shadow: var(--zs-inset-highlight), var(--zs-shadow-sm);
  transition: all 0.25s ease;
  cursor: pointer;
}

.zs-btn-secondary:hover {
  border-color: var(--zs-accent);
  color: var(--zs-accent) !important;
  transform: translateY(-2px);
}

/* Master Hero Section */
.zs-hero-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--zs-radius);
  margin-bottom: 48px;
  border: 1px solid var(--zs-line);
  box-shadow: var(--zs-inset-highlight), var(--zs-shadow-3d);
  background: var(--zs-surface);
  perspective: 1200px;
}

.zs-hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.zs-hero-blob-1 { top: -80px; left: 8%; background: var(--zs-accent); }
.zs-hero-blob-2 { bottom: -80px; right: 8%; background: var(--zs-gold); }

.zs-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.zs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--zs-soft);
  color: var(--zs-accent);
  border: 1px solid rgba(var(--zs-accent-rgb), 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  box-shadow: var(--zs-inset-highlight), var(--zs-shadow-sm);
  transform: translateZ(20px);
}

.zs-hero-badge .zs-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zs-accent);
  box-shadow: 0 0 10px var(--zs-accent);
  animation: zsPulse 1.8s infinite;
}

@keyframes zsPulse { 0%, 100%{opacity:1; transform:scale(1);} 50%{opacity:0.4; transform:scale(1.3);} }

.zs-hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--zs-text);
  margin: 0 0 18px;
  letter-spacing: -1.2px;
}

.zs-hero h1 span {
  background: linear-gradient(135deg, var(--zs-accent), var(--zs-accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.zs-hero p {
  font-size: 18.5px;
  color: var(--zs-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.75;
}

.zs-hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Category Grid & 3D Cards */
.zs-categories { margin: 40px 0 60px; }
.zs-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--zs-text);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.zs-cat-card {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  padding: 28px;
  display: block;
  box-shadow: var(--zs-shadow-sm);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.zs-cat-card:hover {
  box-shadow: var(--zs-shadow-3d);
  border-color: rgba(var(--zs-accent-rgb), 0.45);
}

.zs-cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--zs-soft);
  color: var(--zs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transform: translateZ(20px);
  box-shadow: var(--zs-inset-highlight);
}

.zs-cat-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; color: var(--zs-text); transform: translateZ(15px); }
.zs-cat-card p { margin: 0; color: var(--zs-muted); font-size: 14px; line-height: 1.6; transform: translateZ(10px); }

/* Tag Chips Cloud */
.zs-tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 50px; }
.zs-tag-chip {
  padding: 8px 16px;
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--zs-muted);
  box-shadow: var(--zs-inset-highlight);
  transition: all 0.2s ease;
}
.zs-tag-chip:hover { color: var(--zs-accent); border-color: var(--zs-accent); transform: translateY(-2px); box-shadow: var(--zs-shadow-sm); }

/* Featured Spotlight Card */
.zs-featured { margin-bottom: 60px; perspective: 1200px; }
.zs-featured-card {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  overflow: visible;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 0;
  box-shadow: var(--zs-shadow-md);
  position: relative;
}

.zs-featured-img-wrap {
  position: relative;
  margin: -20px 0 -20px -20px;
  border-radius: var(--zs-radius);
  overflow: hidden;
  box-shadow: var(--zs-shadow-3d);
  transform: translateZ(32px);
}

.zs-featured-img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.zs-featured-card:hover .zs-featured-img { transform: scale(1.04); }
.zs-featured-content { padding: 44px; }
.zs-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--zs-soft);
  color: var(--zs-accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.zs-featured-content h2 { font-size: 28px; line-height: 1.28; font-weight: 800; margin: 0 0 16px; color: var(--zs-text); }
.zs-featured-content p { color: var(--zs-muted); font-size: 15.5px; line-height: 1.7; margin-bottom: 26px; }

/* 3-Column Posts Feed */
.zs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  perspective: 1000px;
}

.zs-post-card {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  box-shadow: var(--zs-shadow-sm);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.zs-post-card:hover {
  box-shadow: var(--zs-shadow-3d);
  border-color: rgba(var(--zs-accent-rgb), 0.45);
}

.zs-featured-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--zs-soft);
  border-radius: 14px;
  margin-bottom: 18px;
  display: block;
  transform: translateZ(15px);
  transition: transform 0.4s ease;
}

.zs-post-card:hover .zs-featured-thumb { transform: translateZ(20px) scale(1.02); }

/* About Box & 4-Stat Pillar */
.zs-about-box {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  padding: 40px;
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: var(--zs-shadow-md);
  position: relative;
  overflow: hidden;
}

.zs-about-top { display: flex; align-items: center; gap: 28px; }
.zs-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--zs-soft);
  color: var(--zs-accent);
  border: 2px solid var(--zs-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 24px var(--zs-accent-glow);
}

.zs-author-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--zs-line);
  padding-top: 24px;
}

.zs-author-stat-item {
  background: var(--zs-soft);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.zs-author-stat-num { font-size: 20px; font-weight: 800; color: var(--zs-accent); margin-bottom: 2px; }
.zs-author-stat-lbl { font-size: 12px; font-weight: 700; color: var(--zs-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* Newsletter */
.zs-newsletter {
  background: linear-gradient(145deg, var(--zs-surface), var(--zs-soft));
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  padding: 56px 32px;
  text-align: center;
  margin: 60px 0;
  box-shadow: var(--zs-inset-highlight), var(--zs-shadow-3d);
  position: relative;
  overflow: hidden;
}

.zs-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--zs-accent), var(--zs-gold), transparent);
}

.zs-newsletter h2 { margin: 0 0 12px; font-size: 32px; font-weight: 800; color: var(--zs-text); letter-spacing: -0.5px; }
.zs-newsletter p { margin: 0 0 26px; color: var(--zs-muted); font-size: 16px; max-width: 540px; margin-left: auto; margin-right: auto; }
.zs-newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.zs-newsletter input[type=email] {
  flex: 1 1 240px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  color: var(--zs-text);
  font-size: 15px;
  outline: none;
}
.zs-newsletter button {
  padding: 15px 32px;
  border-radius: 999px;
  border: 0;
  background: var(--zs-accent);
  color: #FFFFFF !important;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--zs-shadow-md), 0 0 20px var(--zs-accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Footer */
.footer { background: var(--zs-surface); border-top: 1px solid var(--zs-line); padding: 64px 24px 28px; margin-top: 60px; }
.zs-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--zs-max);
  margin: 0 auto 40px;
}
.zs-footer-col h4 { margin: 0 0 18px; font-size: 15px; font-weight: 800; color: var(--zs-text); text-transform: uppercase; letter-spacing: 1px; }
.zs-footer-col ul { list-style: none; padding: 0; margin: 0; }
.zs-footer-col li { margin-bottom: 12px; }
.zs-footer-col a { color: var(--zs-muted); font-size: 14.5px; }
.zs-footer-col a:hover { color: var(--zs-accent); }
.zs-footer-bottom {
  border-top: 1px solid var(--zs-line);
  padding-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--zs-muted);
}

#zs-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  color: var(--zs-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: var(--zs-shadow-3d);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 18px;
  font-weight: bold;
}
#zs-back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Breadcrumbs */
.zs-breadcrumb { font-size: 13.5px; color: var(--zs-muted); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.zs-breadcrumb a { color: var(--zs-muted); font-weight: 500; }
.zs-breadcrumb a:hover { color: var(--zs-accent); }

/* Responsive */
@media(max-width: 1024px) {
  .zs-blog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .zs-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 768px) {
  .zs-nav { display: none; }
  .zs-hamburger { display: block; }
  .zs-blog-grid { grid-template-columns: 1fr !important; }
  .zs-author-stats { grid-template-columns: repeat(2, 1fr); }
  .zs-about-top { flex-direction: column; text-align: center; }
  .zs-featured-card { grid-template-columns: 1fr; }
  .zs-featured-img-wrap { margin: -20px -20px 0 -20px; }
  .zs-footer-grid { grid-template-columns: 1fr; }
  .zs-hero h1 { font-size: 36px; }
}


/* WordPress Admin Bar Top Offset Fix */
body.admin-bar .zs-header-container {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .zs-header-container {
    top: 46px !important;
  }
}

.zs-signature-logo {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.zs-signature-logo span {
  white-space: nowrap !important;
  margin-left: 4px;
}

.zs-nav li, .zs-nav a {
  white-space: nowrap !important;
}

.zs-btn-primary, .zs-btn-secondary {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* BLUF Direct-Answer Callout Box */
.zs-bluf-box {
  background: var(--zs-surface);
  border-left: 4px solid var(--zs-accent);
  border-radius: var(--zs-radius);
  padding: 28px;
  margin-bottom: 36px;
  box-shadow: var(--zs-shadow-sm);
}
.zs-bluf-box p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--zs-text);
  margin: 0;
}

/* Reusable FAQ Accordion Component */
.zs-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.zs-faq-item {
  background: var(--zs-surface);
  border: 1px solid var(--zs-line);
  border-radius: var(--zs-radius);
  padding: 20px 24px;
  box-shadow: var(--zs-shadow-sm);
  transition: all 0.25s ease;
}

.zs-faq-item[open] {
  border-color: var(--zs-accent-glow);
  box-shadow: var(--zs-shadow-md);
}

.zs-faq-question {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--zs-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zs-faq-question::-webkit-details-marker {
  display: none;
}

.zs-faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--zs-accent);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.zs-faq-item[open] .zs-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.zs-faq-answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--zs-muted);
  border-top: 1px solid var(--zs-line);
  padding-top: 14px;
}


/* Single Post & Page Full Width Optimization (Zero Right Void) */
.zs-single-article-card {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

.zs-editorial-body {
  width: 100% !important;
}

.zs-editorial-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--zs-text);
  margin: 36px 0 16px;
  letter-spacing: -0.3px;
}

.zs-editorial-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--zs-text);
  margin: 28px 0 12px;
}

.zs-editorial-body p {
  margin-bottom: 20px;
}

.zs-editorial-body table {
  width: 100% !important;
  margin: 28px 0 !important;
}

.zs-editorial-body .zs-bluf-box {
  width: 100% !important;
  box-sizing: border-box !important;
}


/* Universal Full-Width Post & Page Container */
.zs-single-article-card, .zs-editorial-body, .entry-content {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.entry-content img, .zs-editorial-body img, .zs-image-container img {
  width: 100% !important;
  height: auto !important;
  border-radius: 14px !important;
  display: block !important;
}

.entry-content .zs-bluf-box, .zs-editorial-body .zs-bluf-box {
  width: 100% !important;
  box-sizing: border-box !important;
}

.entry-content .zs-cat-grid, .zs-editorial-body .zs-cat-grid {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

.entry-content .zs-faq-accordion, .zs-editorial-body .zs-faq-accordion {
  width: 100% !important;
}

.entry-content table, .zs-editorial-body table {
  width: 100% !important;
  border-collapse: collapse !important;
}
