/*
Theme Name: FocuxTheme
Description: A modern WooCommerce theme for selling digital products with dark design
Author: Focux Team
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
WC requires at least: 5.0
WC tested up to: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: focuxtheme
Tags: e-commerce, woocommerce, dark, modern, digital-products
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --primary-color: #6366f1; /* Blue-purple */
  --secondary-color: #8b5cf6; /* Purple variant */
  --background-color: #000000; /* Black background */
  --surface-color: #111111; /* Dark surface */
  --text-color: #ffffff; /* White text */
  --text-secondary: #a1a1aa; /* Gray text */
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --container-max-width: 90%;
  --container-max-width-large: 1500px;
  --container-padding: 20px;
  --section-spacing: 80px;
  --grid-gap: 40px;
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-large: 16px;
  
  /* Shadows */
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-white {
  background-color: var(--white);
  color: var(--background-color);
}

.btn-white:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  min-height: 56px;
}

.site-content {
    min-height: calc(100vh - 280px);
}

/* Container */
.container {
  width: var(--container-max-width);
  max-width: var(--container-max-width-large);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 1680px) {
  .container {
    max-width: var(--container-max-width-large);
  }
}

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

/* Grid System */
.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* Cards */
.card {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-large);
  padding: 24px;
  box-shadow: var(--shadow-small);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

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

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

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Admin Bar Adjustments */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-branding .site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.site-branding .site-title a {
  color: var(--white);
  text-decoration: none;
}

.site-branding img,
.site-logo {
  max-height: 20px;
  width: auto;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  font-family: var(--font-heading);
}

.nav-menu li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.header-cart,
.header-account {
  display: none;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.header-cart:hover,
.header-account:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 24px;
  justify-content: space-around;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.site-content {
  margin-top: 80px;
}

.admin-bar .site-content {
  margin-top: 112px; /* 80px + 32px admin bar */
}

@media screen and (max-width: 782px) {
  .admin-bar .site-content {
    margin-top: 126px; /* 80px + 46px admin bar */
  }
}

/* Homepage Hero Section */
.hero-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

/* Particle Background */
.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 40%;
  left: 20%;
  animation-delay: -1s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 60%;
  left: 15%;
  animation-delay: -2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  top: 80%;
  left: 25%;
  animation-delay: -3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 80%;
  animation-delay: -4s;
  animation-duration: 11s;
}

.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  top: 50%;
  left: 70%;
  animation-delay: -5s;
  animation-duration: 6s;
}

.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  top: 70%;
  left: 85%;
  animation-delay: -6s;
  animation-duration: 8s;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  top: 10%;
  left: 60%;
  animation-delay: -7s;
  animation-duration: 12s;
}

.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  top: 90%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 7s;
}

.particle:nth-child(10) {
  width: 6px;
  height: 6px;
  top: 15%;
  left: 40%;
  animation-delay: -9s;
  animation-duration: 10s;
}

.particle:nth-child(11) {
  width: 3px;
  height: 3px;
  top: 35%;
  left: 90%;
  animation-delay: -10s;
  animation-duration: 9s;
}

.particle:nth-child(12) {
  width: 5px;
  height: 5px;
  top: 55%;
  left: 5%;
  animation-delay: -11s;
  animation-duration: 8s;
}

.particle:nth-child(13) {
  width: 4px;
  height: 4px;
  top: 75%;
  left: 95%;
  animation-delay: -12s;
  animation-duration: 11s;
}

.particle:nth-child(14) {
  width: 7px;
  height: 7px;
  top: 25%;
  left: 30%;
  animation-delay: -13s;
  animation-duration: 6s;
}

.particle:nth-child(15) {
  width: 3px;
  height: 3px;
  top: 45%;
  left: 75%;
  animation-delay: -14s;
  animation-duration: 9s;
}

.particle:nth-child(16) {
  width: 5px;
  height: 5px;
  top: 65%;
  left: 35%;
  animation-delay: -15s;
  animation-duration: 7s;
}

.particle:nth-child(17) {
  width: 4px;
  height: 4px;
  top: 85%;
  left: 65%;
  animation-delay: -16s;
  animation-duration: 10s;
}

.particle:nth-child(18) {
  width: 6px;
  height: 6px;
  top: 5%;
  left: 85%;
  animation-delay: -17s;
  animation-duration: 8s;
}

.particle:nth-child(19) {
  width: 3px;
  height: 3px;
  top: 95%;
  left: 15%;
  animation-delay: -18s;
  animation-duration: 12s;
}

.particle:nth-child(20) {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 50%;
  animation-delay: -19s;
  animation-duration: 9s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.4;
  }
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.hero-image {
  max-width: 800px;
  margin: 0 auto;
}

.macbook-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
}

/* Section Styles */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--white);
}

/* Theme Cards */
.theme-card {
  transition: all 0.3s ease;
  background: none;
  padding: 0;
  box-shadow: none;
}

.theme-thumbnail {
  aspect-ratio: 6.2/3.3;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.theme-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.theme-card:hover .theme-thumbnail img {
  transform: scale(1.05);
}

.placeholder-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-color) 0%, #222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-weight: 500;
}

h3.theme-title {
  font-size: 1.25rem !important;
  margin: 1.2rem 0 0.5rem 0 !important;
}

h3.theme-title a {
  color: var(--white);
  text-decoration: none;
  font-size: inherit;
  font-weight: 600;
}

.theme-title a:hover {
  color: var(--primary-color);
}

.theme-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Plugin Cards */
.plugin-card {
  padding: 0;
  background: none;
  box-shadow: none;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.plugin-icon {
  flex-shrink: 0;
}

.plugin-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background-color: transparent;
}

.default-plugin-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.plugin-content {
  flex: 1;
}

.plugin-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.plugin-title a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.plugin-title a:hover {
  color: var(--primary-color);
}

.plugin-description {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.plugin-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.plugin-link:hover {
  color: var(--secondary-color);
}

/* Blog Styles */
.post-card {
  margin-bottom: 2rem;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.02);
}

.entry-title {
  margin-bottom: 0.5rem;
}

.entry-title a {
  color: var(--white);
  text-decoration: none;
}

.entry-title a:hover {
  color: var(--primary-color);
}

.entry-meta {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.entry-meta span {
  margin-right: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Contact Page */
.contact-section {
  margin-top: 3rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--white);
  font-weight: 600;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #333;
  background-color: var(--surface-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Contact Form Messages */
.contact-message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  font-weight: 500;
}

.contact-message.success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.contact-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

/* Footer */
.site-footer {
  background-color: var(--background-color);
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #222;
}

.footer-widgets {
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links .footer-navigation {
  display: flex;
}

.footer-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.footer-menu li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: var(--primary-color);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.75rem 0;
  }
  
  .header-cart,
  .header-account {
    display: none;
  }
  
  .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    flex-direction: column;
    justify-content: center;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .main-navigation.mobile-menu-open {
    left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .nav-menu li a {
    font-size: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1000;
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .contact-details {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Page and Post Content */
.page-content {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.single-post {
  margin: 4rem 0;
}

.single-post .entry-header,
.single-post .entry-content,
.single-post .entry-footer {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.single-post .post-featured-image {
  margin-bottom: 3rem;
}

.entry-header {
  margin-bottom: 3rem;
  text-align: center;
}

.entry-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

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

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.entry-content a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed var(--white);
  transition: all 0.3s ease;
}

.entry-content a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.page-featured-image,
.post-featured-image {
  margin-bottom: 3rem;
  border-radius: var(--border-radius-large);
  overflow: hidden;
}

.page-featured-image img,
.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-links {
  color: var(--text-secondary);
}

.tags-links a {
  color: var(--primary-color);
  text-decoration: none;
  margin-right: 0.5rem;
}

.tags-links a:hover {
  color: var(--secondary-color);
}

/* Comments */
.comments-area {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.comments-area a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed var(--white);
  transition: all 0.3s ease;
}

.comments-area a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Post Navigation */
.post-navigation {
  margin: 4rem auto;
  max-width: 900px;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links a {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.nav-title {
  display: block;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-content {
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .single-post {
    margin: 2rem 0;
  }
  
  .single-post .entry-header,
  .single-post .entry-content,
  .single-post .entry-footer {
    padding: 0 1rem;
  }
  
  .entry-header {
    margin-bottom: 2rem;
  }
  
  .entry-content {
    font-size: 1rem;
  }
  
  .comments-area {
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .post-navigation {
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* WooCommerce Overrides */
.woocommerce .woocommerce-products-header {
  margin-bottom: 2rem;
}

.woocommerce .woocommerce-products-header__title {
  color: var(--white);
  font-family: var(--font-heading);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.woocommerce ul.products li.product {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-large);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--white);
  font-family: var(--font-heading);
}

.woocommerce ul.products li.product .price {
  color: var(--primary-color);
  font-weight: 600;
}

/* Hide default WooCommerce elements */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--text-secondary);
} 