/*
Theme Name: Lash Space Manager
Theme URI: https://www.lashspacemanager.com.br
Author: Lash Space Manager Team
Author URI: https://www.lashspacemanager.com.br
Description: Tema customizado para o Lash Space Manager - Sistema de gestão para estúdios de cílios. Design escuro com acentos cyan e roxo.
Version: 1.0.0
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: lsm-theme
*/

/* ============================================================
   DESIGN SYSTEM — Lash Space Manager
   Baseado no design original React 19 + Tailwind CSS v4
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Backgrounds */
  --bg-primary: #09090b;
  --bg-card: rgba(24, 24, 27, 0.6);
  --bg-hover: rgba(255, 255, 255, 0.05);
  --bg-glass: rgba(9, 9, 11, 0.8);
  --bg-gradient-card: linear-gradient(135deg, #18181b, #09090b);
  --bg-gradient-cyan: linear-gradient(135deg, rgba(0, 210, 239, 0.15), rgba(255, 255, 255, 0.05));

  /* Accent colors */
  --accent-primary: #00d2ef;
  --accent-hover: #53eafd;
  --accent-secondary: #863bff;
  --accent-blue: #47bfff;

  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #f4f4f5;
  --text-tertiary: #d4d4d8;
  --text-muted: #a1a1aa;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(0, 210, 239, 0.2);

  /* Status colors */
  --color-success: #05df72;
  --color-warning: #fac800;
  --color-error: #ff6568;

  /* Typography */
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --section-padding-y: 4rem;
  --section-padding-x: 1.5rem;
  --card-padding: 1.5rem;
  --container-max: 72rem;

  /* Border radius */
  --radius-card: 1rem;
  --radius-button: 0.75rem;
  --radius-badge: 9999px;

  /* Shadows */
  --shadow-card: 0 25px 50px -12px rgba(0, 210, 239, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 1rem;
  min-height: 100vh;
}

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

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* --- Section --- */
.section {
  padding: var(--section-padding-y) 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

/* --- Section Tag (label) --- */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

/* --- Section Title --- */
.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-tertiary);
  max-width: 36rem;
  margin-bottom: 3rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
}

.navbar-logo:hover {
  color: var(--text-primary);
}

.navbar-logo svg {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
}

.navbar-cta {
  display: none;
}

.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem;
  z-index: 999;
}

.navbar-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.navbar-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
  border-radius: var(--radius-button);
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-mobile a:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.navbar-mobile .btn {
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }

  .navbar-cta {
    display: block;
  }

  .navbar-toggle {
    display: none;
  }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent-primary);
  color: #09090b;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #09090b;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* === HERO === */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.hero p {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--text-tertiary);
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-screenshot {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
}

/* === PROBLEM CARDS === */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .problem-card {
    padding: 2rem;
  }
}

.problem-card:hover {
  transform: translateY(-4px);
  background: var(--bg-hover);
}

.problem-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-button);
  background: var(--bg-gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.problem-card h3 {
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === SOLUTION === */
.solution-content {
  max-width: 42rem;
}

.solution-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 2rem;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === STEPS (Como Funciona) === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.step-card {
  text-align: center;
  padding: var(--card-padding);
}

@media (min-width: 768px) {
  .step-card {
    padding: 2rem;
  }
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #09090b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 auto;
}

/* === FEATURES (Recursos) === */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  transition: all 0.3s ease;
  text-align: left;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 2rem;
  }
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--bg-hover);
}

.feature-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-button);
  background: var(--bg-gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  font-size: 1.125rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-card p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === MODULES GRID === */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .module-card {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.module-card:hover {
  background: var(--bg-hover);
}

.module-card-content h3 {
  margin-bottom: 0.5rem;
}

.module-card-content .module-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.module-card-content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-card-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.module-card-content ul li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.module-screenshot {
  border-radius: var(--radius-button);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .module-screenshot {
    margin-top: 0;
  }
}

.module-screenshot img {
  width: 100%;
  height: auto;
}

/* === SECURITY === */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.security-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .security-card {
    padding: 2rem;
  }
}

.security-card:hover {
  background: var(--bg-hover);
}

.security-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-button);
  background: var(--bg-gradient-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  font-size: 1.125rem;
}

.security-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.security-card p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === PWA SECTION === */
.pwa-section {
  background: var(--bg-gradient-card);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: 1px solid var(--border-accent);
}

@media (min-width: 768px) {
  .pwa-section {
    padding: 2rem;
  }
}

.pwa-section h2 {
  margin-bottom: 1rem;
}

.pwa-section > p {
  color: var(--text-tertiary);
  max-width: 42rem;
  margin-bottom: 3rem;
}

.pwa-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .pwa-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pwa-item h4 {
  margin-bottom: 0.75rem;
  color: var(--accent-primary);
}

.pwa-item p {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === FAQ ACCORDION === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem var(--card-padding);
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 1.25rem 2rem;
  }
}

.faq-question:hover {
  background: var(--bg-hover);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--card-padding) 1.25rem;
  color: var(--text-tertiary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-answer-inner {
    padding: 0 2rem 1.25rem;
  }
}

/* === CONTACT / CTA === */
.contact-section {
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  color: var(--text-tertiary);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.contact-section .contact-email {
  color: var(--accent-primary);
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-actions .btn-secondary {
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* === PAGE HEADER === */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-tertiary);
  max-width: 36rem;
  margin: 0 auto;
}

/* === STATUS BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-badge);
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
}

.badge-green .badge-dot { background: var(--color-success); }
.badge-yellow .badge-dot { background: var(--color-warning); }
.badge-red .badge-dot { background: var(--color-error); }

/* === BREADCRUMBS === */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-primary);
}

.breadcrumbs .separator {
  color: var(--border-subtle);
}

/* === 404 PAGE === */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h2 {
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--text-tertiary);
  margin-bottom: 2rem;
  max-width: 24rem;
}

/* === SEARCH === */
.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 32rem;
  margin: 2rem auto;
}

.search-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-button);
  color: var(--text-primary);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-form input:focus {
  border-color: var(--accent-primary);
}

.search-form input::placeholder {
  color: var(--text-muted);
}

/* === BLOG / ARCHIVE === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  background: var(--bg-hover);
}

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-hover);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: var(--card-padding);
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.blog-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--accent-primary);
}

.blog-card-excerpt {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === SINGLE POST === */
.single-post-content {
  max-width: 42rem;
  margin: 0 auto;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-tertiary);
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content img {
  border-radius: var(--radius-button);
  margin: 2rem 0;
}

/* === BACK TO TOP === */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: var(--accent-primary);
}

/* === LOADING / NO CONTENT === */
.no-content {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--text-muted);
}

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-button);
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: var(--accent-primary);
}

.pagination .current {
  background: var(--accent-primary);
  color: #09090b;
  border-color: var(--accent-primary);
  font-weight: 600;
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.gap-4 { gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
