@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
  --color-bg-primary: #000000;
  --color-text-primary: #FFFFFF;
  --color-accent-primary: #FFFFFF;
  --color-accent-secondary: #8B5CF6;
  --color-card-bg: rgba(255, 255, 255, 0.05);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-hover: rgba(255, 255, 255, 0.2);
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
}

/* Make all accent-primary text bold and larger */
.price,
.tag,
.read-more,
.breadcrumb a,
.product-card .genre,
.info-item strong,
.requirement-box h4,
.service-box h3,
.values-list strong,
.contact-info h3,
.info-box h4 {
  font-weight: bold !important;
  font-size: 1.2rem !important;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100%;
  width: 100vw;
  background: transparent;
  font-family: 'Inter', sans-serif;
  color: var(--color-text-primary);
}

html {
  background: var(--color-bg-primary);
}

/* Cosmic Effects */
#starCanvas,
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#intros {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  pointer-events: none;
  display: none; /* Hide clouds */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Content Container */
.content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Center Text (Landing Page) */
.hero {
  position: relative;
}

#centerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.4em;
  color: white;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
  z-index: 10;
  margin-top: 0;
}

#centerText1 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.4em;
  color: white;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
  z-index: 10;
  margin-top: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links.nav-centered {
  justify-content: center;
}

.nav-links a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-accent-primary);
}

/* Navigation active state styles moved to dynamic inline styles in navigation.php */
/* This allows customization via admin panel at /admin/settings/navigation-style */

.nav-links .btn-primary {
  padding: 0.5rem 1.5rem;
}

nav a {
  color: var(--color-text-primary);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--color-accent-primary);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  nav {
    justify-content: space-between;
    padding: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }

  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
  }

  nav a {
    margin: 0;
  }

  /* Responsive iframes */
  iframe {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  /* For embedded content with aspect ratio */
  .video-container,
  .embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .video-container iframe,
  .embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Responsive images and media */
  img, video {
    max-width: 100%;
    height: auto;
  }

  /* Responsive tables */
  table {
    display: block;
    overflow-x: auto;
    width: 100%;
  }

  /* Adjust padding for mobile */
  .page-container,
  .dashboard {
    padding: 1rem;
  }

  .dashboard {
    padding-top: 5rem;
  }

  /* Responsive form containers */
  .form-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  /* Responsive Product/Game Cards */
  .product-grid {
    gap: 1rem;
    margin: 0 !important;
    padding: 0.5rem !important;
    width: 100% !important;
  }

  .product-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    margin: 0 !important;
  }

  /* Hide descriptions in product/game cards on mobile only */
  .product-card p,
  .product-card .description,
  .product-card .tagline {
    display: none !important;
  }

  /* Hide paragraphs in dashboard-card ONLY on games/products pages (inside product-grid) */
  .product-grid .dashboard-card p {
    display: none !important;
  }

  .product-image,
  .product-image-placeholder {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.3rem;
  }

  /* Responsive filters */
  .filters {
    padding: 1rem;
  }

  .filter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-input,
  .filter-select {
    width: 100%;
    min-width: unset;
  }

  /* Responsive page headers */
  .page-header {
    padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* Responsive detail pages */
  .product-detail,
  .blog-detail,
  .page-detail {
    padding: 5rem 1rem 1rem;
  }

  /* Responsive hero */
  .hero {
    padding: 2rem 1rem;
  }

  /* Responsive featured sections */
  .featured-section {
    margin: 3rem 0;
    padding: 1rem;
  }

  .featured-section h2 {
    font-size: 1.5rem;
  }
}

/* Forms */
.form-container {
  position: relative;
  z-index: 20;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-size: 1rem;
  transition: all 0.3s;
  backdrop-filter: blur(2px);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  background: rgba(74, 144, 226, 0.1);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.form-group input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Buttons */
.btn,
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover,
.btn-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(139, 92, 246, 0.8);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--color-accent-secondary);
}

/* Flash Messages */
.flash-message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  animation: slideIn 0.3s ease-out;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.flash-success {
  border-color: var(--color-success);
  color: var(--color-success);
}

.flash-error {
  border-color: var(--color-error);
  color: var(--color-error);
}

.flash-warning {
  border-color: var(--color-warning);
  color: var(--color-warning);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Page Container */
.page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Dashboard */
.dashboard {
  position: relative;
  z-index: 20;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 6rem;
}

.dashboard-header {
  margin-bottom: 2rem;
}

.dashboard-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Fixed size cards for product/game grids */
.product-grid .dashboard-card {
  width: 350px;
  height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Image container fixed height */
.product-grid .dashboard-card img,
.product-grid .dashboard-card > div[style*="height: 200px"] {
  flex-shrink: 0;
}

/* Title with ellipsis for overflow */
.product-grid .dashboard-card h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Description with ellipsis - limit to 4 lines */
.product-grid .dashboard-card p {
  flex-grow: 1;
  margin-bottom: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* Keep buttons at bottom */
.product-grid .dashboard-card .btn,
.product-grid .dashboard-card a[class*="btn"] {
  margin-top: auto;
  flex-shrink: 0;
}

/* Responsive scaling for smaller screens */
@media (max-width: 768px) {
  .product-grid .dashboard-card {
    width: 300px;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .product-grid .dashboard-card {
    width: 100%;
    max-width: 350px;
    height: 450px;
  }
}

/* ==================== PUBLIC PAGES ==================== */

/* Page Headers */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 6rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
}

/* Featured Sections */
.featured-section {
  margin: 6rem 0;
  padding: 2rem 0;
}

.featured-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.3em;
}

.text-center {
  text-align: center;
  margin-top: 2rem;
}

/* Product/Game Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  width: 320px;
  height: 500px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image,
.product-image-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-image-placeholder {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card .tagline {
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.product-card .genre {
  color: var(--color-accent-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.product-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.product-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.views {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.status-released { background: rgba(16, 185, 129, 0.2); border-color: var(--color-success); }
.badge.status-in_development { 
  background: rgba(0, 0, 0, 0.5); 
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--color-text-primary);
}
.badge.status-beta { background: rgba(245, 158, 11, 0.2); border-color: var(--color-warning); }
.badge.status-alpha { background: rgba(139, 92, 246, 0.2); border-color: var(--color-accent-secondary); }
.badge.early-access { background: rgba(245, 158, 11, 0.2); border-color: var(--color-warning); }
.badge.platform { background: rgba(255, 255, 255, 0.05); }

.price {
  font-weight: bold;
  color: var(--color-accent-primary);
}

.platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

/* Filters */
.filters {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.filter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-input,
.filter-select {
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-size: 1rem;
}

.search-input {
  flex: 1;
  min-width: 200px;
}

.filter-select {
  min-width: 150px;
}

/* Product/Game Detail Pages */
.product-detail,
.blog-detail,
.page-detail {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 6rem;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--color-accent-primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.product-featured-image {
  width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.product-featured-image img {
  width: 100%;
  height: auto;
}

.product-content {
  margin: 2rem 0;
  line-height: 1.8;
}

.features-section,
.tech-section,
.requirements-section,
.screenshots-section {
  margin: 3rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

.tech-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.info-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-accent-primary);
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.requirement-box {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-box h4 {
  color: var(--color-accent-primary);
  margin-bottom: 1rem;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.screenshot-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
}

.video-section {
  margin: 2rem 0;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Blog Layouts */
.blog-list {
  max-width: 100%;
  padding: 0 2rem;
  margin: 0;
}

.blog-card {
  margin-bottom: 2rem;
  transition: transform 0.3s;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.blog-featured-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: -2rem -2rem 2rem -2rem;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-content {
  /* Contains all text content */
}

.content-preview {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  line-height: 1.6;
  opacity: 0.8;
  font-size: 0.95rem;
}

.blog-card h2 {
  margin: 1rem 0;
}

.blog-card h2 a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--color-accent-primary);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
  flex-wrap: wrap;
}

.blog-meta .date,
.blog-meta .category,
.blog-meta .author {
  display: inline-block;
}

.excerpt {
  margin: 1rem 0;
  line-height: 1.6;
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.tag {
  color: var(--color-accent-primary);
  text-decoration: none;
  font-size: 0.85rem;
}

.tag:hover {
  text-decoration: underline;
}

.read-more {
  color: var(--color-accent-primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.page-info {
  opacity: 0.7;
}

/* Blog Detail */
.post-header {
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 1rem 0;
}

.featured-image {
  width: 100%;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.post-content {
  margin: 2rem 0;
  line-height: 1.8;
}

.post-content h2,
.post-content h3 {
  margin: 2rem 0 1rem;
}

.post-content p {
  margin-bottom: 1rem;
}

.related-posts {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.related-post-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-post-card h4 a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.related-post-card h4 a:hover {
  color: var(--color-accent-primary);
}

.related-post-card .date {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0.5rem 0;
}

.post-navigation {
  margin-top: 3rem;
}

/* About Page */
.about-content section {
  margin: 3rem 0;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-box {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-box h3 {
  color: var(--color-accent-primary);
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--color-accent-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Contact Page */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  /* Already styled by form styles */
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: var(--color-accent-primary);
}

.info-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h4 {
  color: var(--color-accent-primary);
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  #centerText {
    font-size: 1.5em;
    letter-spacing: 0.2em;
  }
  
  #centerText1 {
    font-size: 1.2em;
    letter-spacing: 0.2em;
  }
  
  nav {
    padding: 1rem;
    flex-direction: column;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-form {
    flex-direction: column;
  }
  
  .search-input,
  .filter-select {
    width: 100%;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .admin-layout {
    flex-direction: column;
  }
  
  .admin-sidebar {
    width: 100%;
    position: relative;
  }
  
  .admin-content {
    margin-left: 0;
  }
}

/* ==================== ADMIN PANEL STYLES ==================== */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  backdrop-filter: blur(3px);
}

.admin-brand {
  padding: 0 2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.admin-brand h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
}

.admin-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.admin-nav {
  padding: 0;
}

.admin-nav-section {
  padding: 1rem 2rem 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  font-weight: 600;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--color-accent-primary);
}

.admin-nav-item span {
  font-size: 1.2rem;
}

.admin-user {
  margin-top: auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.admin-user p {
  margin: 0 0 0.5rem;
  opacity: 0.7;
}

.admin-user strong {
  font-size: 1rem;
}

.admin-content {
  flex: 1;
  margin-left: 280px;
  padding: 3rem;
  position: relative;
  z-index: 10;
}

.admin-page-header {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-page-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* Admin Tables */
.admin-table-container {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-table-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Admin Forms */
.admin-form-container {
  max-width: 900px;
}

.admin-form {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(3px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.form-fieldset legend {
  padding: 0 1rem;
  font-weight: 600;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-form select,
.admin-form textarea,
.admin-form input[type="text"],
.admin-form input[type="url"],
.admin-form input[type="date"],
.admin-form input[type="datetime-local"],
.admin-form input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: inherit;
}

.admin-form select:focus,
.admin-form textarea:focus,
.admin-form input:focus,
.admin-form input[type="number"]:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

/* Global Form Input Styling */
.form-input,
input[type="text"],
input[type="email"],
input[type="file"],
input[type="search"],
input[type="number"],
.form-select,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
.form-select:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

.form-input::placeholder,
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* File Input Special Styling */
input[type="file"] {
  padding: 0.5rem;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--color-text-primary);
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Form Specific */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
}

/* No Data Message */
.no-data {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.no-data a {
  color: var(--color-accent-primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.no-data a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.admin-form small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Button Variants */
.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-text-primary);
}

.btn-small:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--color-error);
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
}

/* ==================== DASHBOARD STYLES ==================== */

.dashboard-layout,
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  position: fixed;
  top: 1.5rem;
  left: 1rem;
  z-index: 101;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.sidebar-toggle:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.sidebar-toggle.sidebar-collapsed {
  left: 1rem;
}

.dashboard-sidebar,
.admin-sidebar {
  width: 280px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0;
  position: fixed;
  height: 100vh;
  backdrop-filter: blur(3px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dashboard-sidebar.collapsed,
.admin-sidebar.collapsed {
  transform: translateX(-100%);
}

.dashboard-nav-wrapper {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.dashboard-nav-wrapper::-webkit-scrollbar {
  width: 6px;
}

.dashboard-nav-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.dashboard-nav-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.dashboard-nav-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.dashboard-brand,
.admin-brand {
  padding: 1.5rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.dashboard-brand h2,
.admin-brand h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.2em;
}

.dashboard-brand p,
.admin-brand p {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
}

.dashboard-nav,
.admin-nav {
  display: block;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.dashboard-nav-section,
.admin-nav-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  font-weight: 600;
  margin-top: 1rem;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s;
}

.dashboard-nav-section:hover,
.admin-nav-section:hover {
  opacity: 0.8;
}

.dashboard-nav-section-content {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s;
}

.dashboard-nav-section-content.collapsed {
  max-height: 0;
  opacity: 0;
}

.dashboard-nav-item,
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 2rem;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.3s;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  position: relative;
  width: 100%;
}

.dashboard-nav-item:hover,
.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.3);
}

.dashboard-nav-item.active,
.admin-nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--color-accent-primary);
}

.dashboard-nav-item span:first-child,
.admin-nav-item span:first-child {
  font-size: 1.25rem;
}

.dashboard-user,
.admin-user {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.dashboard-user p,
.admin-user p {
  margin: 0 0 0.25rem;
  opacity: 0.6;
}

.dashboard-user strong,
.admin-user strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.dashboard-content,
.admin-content {
  flex: 1;
  margin-left: 280px;
  padding: 2rem;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dashboard-content > *,
.admin-content > * {
  width: 100%;
  max-width: 1600px;
}

.dashboard-content.sidebar-collapsed,
.admin-content.sidebar-collapsed {
  margin-left: 0;
}

.dashboard-page-header,
.admin-page-header {
  margin-bottom: 2rem;
}

.dashboard-page-header h1,
.admin-page-header h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}

.dashboard-page-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0;
}

/* Overview Cards */
.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.dashboard-stat-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  backdrop-filter: blur(3px);
  transition: all 0.3s;
}

.dashboard-stat-card:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
  font-size: 2.5rem;
  opacity: 0.8;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-subtitle {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Dashboard Sections */
.dashboard-section {
  margin-bottom: 3rem;
}

.dashboard-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(3px);
}

.dashboard-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Quick Actions */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.quick-action-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--color-text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s;
  backdrop-filter: blur(3px);
}

.quick-action-card:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.action-icon {
  font-size: 2rem;
}

.action-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.action-desc {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Activity Feed */
.activity-feed {
  min-height: 200px;
}

.activity-empty {
  text-align: center;
  padding: 3rem 2rem;
  opacity: 0.6;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.activity-item:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.15);
}

.activity-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.activity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.activity-description {
  font-size: 0.95rem;
}

.activity-description strong {
  color: var(--color-accent-primary);
}

.activity-time {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Dashboard Grid */
.dashboard-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item span {
  opacity: 0.7;
}

.summary-item strong {
  font-size: 1.2rem;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-link {
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 6px;
  transition: all 0.3s;
  display: block;
}

.quick-link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1.25rem;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
  /* Sidebar transforms to overlay */
  .dashboard-sidebar,
  .admin-sidebar {
    width: 280px;
    position: fixed;
    height: 100vh;
    transform: translateX(0);
    z-index: 200;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }
  
  .dashboard-sidebar.collapsed,
  .admin-sidebar.collapsed {
    transform: translateX(-100%);
  }
  
  /* Sidebar backdrop */
  .dashboard-sidebar:not(.collapsed)::before,
  .admin-sidebar:not(.collapsed)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    pointer-events: none;
  }
  
  /* Content takes full width */
  .dashboard-content,
  .admin-content {
    margin-left: 0 !important;
    padding: 1rem;
    width: 100%;
  }
  
  /* Toggle button always visible on mobile */
  .sidebar-toggle {
    display: flex;
    top: 1rem;
    left: 1rem;
    z-index: 201;
  }
  
  .sidebar-toggle.sidebar-collapsed {
    left: 1rem;
  }
  
  /* Dashboard grids */
  .dashboard-overview {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .quick-actions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .dashboard-grid-2 {
    grid-template-columns: 1fr;
  }
  
  /* Cards */
  .dashboard-card {
    padding: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-card h3 {
    font-size: 1.5rem;
  }
  
  /* Tables - horizontal scroll */
  .admin-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .admin-table {
    min-width: 600px;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  
  /* Forms */
  .admin-form .form-row {
    flex-direction: column;
  }
  
  .form-group {
    width: 100%;
  }
  
  .admin-form input,
  .admin-form select,
  .admin-form textarea {
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  /* Form actions */
  .form-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Page headers */
  .admin-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .admin-page-header h1 {
    font-size: 1.75rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    min-height: 44px; /* Touch-friendly */
  }
  
  .btn-small {
    padding: 0.5rem 1rem;
    min-height: 40px;
  }
  
  /* Action buttons in tables */
  .admin-table .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  /* Filters */
  .filters {
    padding: 1rem;
  }
  
  .filter-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .search-input,
  .filter-select {
    width: 100%;
  }
  
  /* Nav sections in sidebar */
  .dashboard-nav-section,
  .admin-nav-section {
    padding: 0.75rem 1.5rem 0.5rem;
  }
  
  .dashboard-nav-item,
  .admin-nav-item {
    padding: 0.875rem 1.5rem;
    min-height: 44px;
  }
}
