/*
Theme Name: TravelBlog Pro daHora
Theme URI: https://travelblog.pro
Author: TravelBlog Pro
Author URI: https://travelblog.pro
Description: Tema WordPress profissional e moderno para blogs, com temas de cores predefinidos, modo escuro, shortcodes versáteis para grids de posts, compatibilidade total com Elementor e funcionalidades opcionais. Perfeito para blogs de viagem, lifestyle e conteúdo.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travelblog-pro
Tags: blog, travel, responsive, dark-mode, custom-colors, custom-header, featured-images, translation-ready, elementor, page-builder, rtl-language-support, shortcodes

TravelBlog Pro daHora WordPress Theme, (C) 2025 TravelBlog Pro
*/

/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   Cores são injetadas dinamicamente via PHP
============================================ */
:root {
    /* Primary Colors - Default (overridden by customizer) */
    --vs-primary: #9D4EDD;
    --vs-primary-hover: #8B3FCC;
    --vs-primary-rgb: 157, 78, 221;
    --vs-primary-light: rgba(157, 78, 221, 0.1);
    
    /* Light Mode Colors */
    --vs-bg: #ffffff;
    --vs-bg-secondary: #f9fafb;
    --vs-bg-tertiary: #f3f4f6;
    --vs-text: #111827;
    --vs-text-secondary: #4b5563;
    --vs-text-muted: #9ca3af;
    --vs-border: #e5e7eb;
    --vs-border-light: #f3f4f6;
    --vs-card-bg: #ffffff;
    
    /* Shadows */
    --vs-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --vs-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --vs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --vs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --vs-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --vs-transition-fast: 0.15s ease;
    --vs-transition: 0.3s ease;
    --vs-transition-slow: 0.5s ease;
    
    /* Typography */
    --vs-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --vs-font-size-xs: 0.75rem;
    --vs-font-size-sm: 0.875rem;
    --vs-font-size-base: 1rem;
    --vs-font-size-lg: 1.125rem;
    --vs-font-size-xl: 1.25rem;
    --vs-font-size-2xl: 1.5rem;
    --vs-font-size-3xl: 1.875rem;
    --vs-font-size-4xl: 2.25rem;
    --vs-font-size-5xl: 3rem;
    
    /* Spacing */
    --vs-radius-sm: 0.25rem;
    --vs-radius: 0.5rem;
    --vs-radius-lg: 0.75rem;
    --vs-radius-xl: 1rem;
    --vs-radius-full: 9999px;
    
    /* Z-Index */
    --vs-z-dropdown: 100;
    --vs-z-sticky: 200;
    --vs-z-fixed: 300;
    --vs-z-modal: 400;
    --vs-z-tooltip: 500;
}

/* Dark Mode */
.dark {
    --vs-bg: #0f172a;
    --vs-bg-secondary: #1e293b;
    --vs-bg-tertiary: #334155;
    --vs-text: #f8fafc;
    --vs-text-secondary: #cbd5e1;
    --vs-text-muted: #94a3b8;
    --vs-border: #334155;
    --vs-border-light: #1e293b;
    --vs-card-bg: #1e293b;
    
    --vs-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --vs-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
    --vs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --vs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
}

/* ============================================
   CSS RESET & BASE STYLES
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--vs-font-family);
    font-size: var(--vs-font-size-base);
    line-height: 1.6;
    color: var(--vs-text);
    background-color: var(--vs-bg);
    transition: background-color var(--vs-transition), color var(--vs-transition);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--vs-primary);
}

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--vs-text);
    margin-bottom: 0.5em;
}

h1 { font-size: var(--vs-font-size-4xl); }
h2 { font-size: var(--vs-font-size-3xl); }
h3 { font-size: var(--vs-font-size-2xl); }
h4 { font-size: var(--vs-font-size-xl); }
h5 { font-size: var(--vs-font-size-lg); }
h6 { font-size: var(--vs-font-size-base); }

@media (min-width: 640px) {
    h1 { font-size: var(--vs-font-size-5xl); }
    h2 { font-size: var(--vs-font-size-4xl); }
}

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

/* ============================================
   LAYOUT / CONTAINER
============================================ */
.vs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .vs-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .vs-container {
        padding: 0 2rem;
    }
}

.vs-grid {
    display: grid;
    gap: 2rem;
}

.vs-grid-12 {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .vs-grid-12 {
        grid-template-columns: 2fr 1fr;
    }
}

/* ============================================
   HEADER
============================================ */
.vs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--vs-z-fixed);
    background-color: var(--vs-bg);
    border-bottom: 1px solid var(--vs-border);
    transition: background-color var(--vs-transition), 
                border-color var(--vs-transition),
                box-shadow var(--vs-transition);
}

.vs-header.scrolled {
    box-shadow: var(--vs-shadow-md);
}

.vs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

@media (min-width: 768px) {
    .vs-header-inner {
        height: 72px;
    }
}

/* Logo */
.vs-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.vs-logo:hover {
    color: inherit;
}

.vs-logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.vs-logo-text {
    font-size: var(--vs-font-size-xl);
    font-weight: 700;
    white-space: nowrap;
}

.vs-logo-text .vs-logo-highlight {
    color: var(--vs-primary);
}

/* Navigation */
.vs-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

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

.vs-nav-item {
    position: relative;
}

.vs-nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: var(--vs-font-size-sm);
    font-weight: 500;
    color: var(--vs-text-secondary);
    border-radius: var(--vs-radius);
    transition: color var(--vs-transition), background-color var(--vs-transition);
}

.vs-nav-link:hover,
.vs-nav-link.active {
    color: var(--vs-primary);
    background-color: var(--vs-primary-light);
}

.vs-nav-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--vs-transition);
}

.vs-nav-item:hover .vs-nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown Menu - FIXED */
.vs-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 0.5rem; /* Bridge gap for hover */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--vs-transition), 
                visibility var(--vs-transition), 
                transform var(--vs-transition);
    z-index: var(--vs-z-dropdown);
}

.vs-nav-item:hover .vs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vs-dropdown-menu {
    min-width: 200px;
    background-color: var(--vs-card-bg);
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-lg);
    box-shadow: var(--vs-shadow-lg);
    padding: 0.5rem;
    overflow: hidden;
}

.vs-dropdown-item {
    display: block;
    padding: 0.625rem 1rem;
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-secondary);
    border-radius: var(--vs-radius);
    transition: all var(--vs-transition);
}

.vs-dropdown-item:hover {
    color: var(--vs-primary);
    background-color: var(--vs-primary-light);
}

/* Header Actions */
.vs-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vs-social-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    padding-right: 0.75rem;
    margin-right: 0.25rem;
    border-right: 1px solid var(--vs-border);
}

@media (min-width: 1024px) {
    .vs-social-links {
        display: flex;
    }
}

.vs-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--vs-radius);
    color: var(--vs-text-muted);
    transition: all var(--vs-transition);
}

.vs-social-link:hover {
    color: var(--vs-primary);
    background-color: var(--vs-primary-light);
}

.vs-social-link svg {
    width: 18px;
    height: 18px;
}

/* Icon Button */
.vs-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vs-radius);
    color: var(--vs-text);
    transition: all var(--vs-transition);
}

.vs-btn-icon:hover {
    background-color: var(--vs-bg-secondary);
}

.vs-btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Mobile Toggle */
.vs-mobile-toggle {
    display: flex;
}

@media (min-width: 768px) {
    .vs-mobile-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.vs-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vs-bg);
    border-bottom: 1px solid var(--vs-border);
    padding: 1rem;
    box-shadow: var(--vs-shadow-lg);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
}

.vs-mobile-nav.active {
    display: block;
}

@media (min-width: 768px) {
    .vs-mobile-nav {
        display: none !important;
    }
}

.vs-mobile-nav-item {
    border-bottom: 1px solid var(--vs-border-light);
}

.vs-mobile-nav-item:last-child {
    border-bottom: none;
}

.vs-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    font-size: var(--vs-font-size-base);
    font-weight: 500;
    color: var(--vs-text-secondary);
}

.vs-mobile-nav-link:hover,
.vs-mobile-nav-link.active {
    color: var(--vs-primary);
}

.vs-mobile-dropdown {
    display: none;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
}

.vs-mobile-dropdown.active {
    display: block;
}

.vs-mobile-dropdown-item {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
}

.vs-mobile-dropdown-item:hover {
    color: var(--vs-primary);
}

.vs-mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--vs-border);
}

/* ============================================
   HERO SECTION
============================================ */
.vs-hero {
    position: relative;
    min-height: 70vh;
    margin-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .vs-hero {
        margin-top: 72px;
    }
}

.vs-hero-bg {
    position: absolute;
    inset: 0;
}

.vs-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.vs-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
}

.vs-hero-title {
    font-size: var(--vs-font-size-4xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vs-hero-title .vs-highlight {
    color: var(--vs-primary);
}

@media (min-width: 640px) {
    .vs-hero-title {
        font-size: var(--vs-font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .vs-hero-title {
        font-size: 4.5rem;
    }
}

.vs-hero-subtitle {
    font-size: var(--vs-font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .vs-hero-subtitle {
        font-size: var(--vs-font-size-xl);
    }
}

/* Buttons */
.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: var(--vs-radius);
    transition: all var(--vs-transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.vs-btn-primary {
    background-color: var(--vs-primary);
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: var(--vs-font-size-base);
    border-radius: var(--vs-radius-full);
    box-shadow: var(--vs-shadow-lg), 0 0 0 0 rgba(var(--vs-primary-rgb), 0.4);
}

.vs-btn-primary:hover {
    background-color: var(--vs-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--vs-shadow-xl), 0 0 20px rgba(var(--vs-primary-rgb), 0.4);
}

.vs-btn-primary:active {
    transform: translateY(0);
}

.vs-btn-secondary {
    background-color: var(--vs-bg-secondary);
    color: var(--vs-text);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--vs-border);
}

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

.vs-btn-ghost {
    color: var(--vs-primary);
    padding: 0.5rem 1rem;
}

.vs-btn-ghost:hover {
    background-color: var(--vs-primary-light);
}

.vs-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--vs-font-size-sm);
}

.vs-btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--vs-font-size-lg);
}

/* ============================================
   MAIN CONTENT
============================================ */
.vs-main {
    padding: 3rem 0;
}

.vs-main-padded {
    padding-top: calc(64px + 3rem);
}

@media (min-width: 768px) {
    .vs-main-padded {
        padding-top: calc(72px + 3rem);
    }
}

/* ============================================
   BLOG FEED
============================================ */
.vs-blog-header {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--vs-border);
}

.vs-blog-header h2 {
    margin-bottom: 0.5rem;
}

.vs-blog-header p {
    margin-bottom: 0;
    color: var(--vs-text-muted);
}

.vs-blog-feed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================
   BLOG CARD
============================================ */
.vs-card {
    background-color: var(--vs-card-bg);
    border-radius: var(--vs-radius-lg);
    border: 1px solid var(--vs-border);
    overflow: hidden;
    transition: all var(--vs-transition);
}

.vs-card:hover {
    box-shadow: var(--vs-shadow-lg);
    border-color: var(--vs-primary);
}

.vs-card-horizontal {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .vs-card-horizontal {
        grid-template-columns: 2fr 3fr;
    }
}

.vs-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

@media (min-width: 768px) {
    .vs-card-image {
        aspect-ratio: auto;
        min-height: 280px;
    }
}

.vs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vs-transition-slow);
}

.vs-card:hover .vs-card-image img {
    transform: scale(1.05);
}

.vs-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* Breadcrumbs */
.vs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--vs-font-size-xs);
    color: var(--vs-text-muted);
    margin-bottom: 0.75rem;
}

.vs-breadcrumbs a {
    transition: color var(--vs-transition);
}

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

.vs-breadcrumbs .vs-current {
    color: var(--vs-primary);
    font-weight: 500;
}

.vs-breadcrumbs svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Card Title */
.vs-card-title {
    font-size: var(--vs-font-size-xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--vs-text);
}

.vs-card-title a {
    transition: color var(--vs-transition);
}

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

@media (min-width: 768px) {
    .vs-card-title {
        font-size: var(--vs-font-size-2xl);
    }
}

/* Card Excerpt */
.vs-card-excerpt {
    color: var(--vs-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Card Meta */
.vs-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vs-border-light);
    margin-top: auto;
}

.vs-card-meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
}

.vs-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.vs-meta-item svg {
    width: 16px;
    height: 16px;
}

.vs-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--vs-primary);
    font-weight: 500;
    font-size: var(--vs-font-size-sm);
    transition: gap var(--vs-transition);
}

.vs-read-more:hover {
    gap: 0.5rem;
}

.vs-read-more svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   SIDEBAR
============================================ */
.vs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .vs-sidebar {
        position: sticky;
        top: calc(72px + 2rem);
    }
}

.vs-widget {
    background-color: var(--vs-bg-secondary);
    border-radius: var(--vs-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--vs-border-light);
}

.vs-widget-title {
    font-size: var(--vs-font-size-base);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--vs-text);
}

/* Author Widget */
.vs-author-widget {
    text-align: center;
}

.vs-author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--vs-bg);
    box-shadow: var(--vs-shadow-lg);
}

.vs-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.vs-author-name {
    font-size: var(--vs-font-size-xl);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.vs-author-role {
    color: var(--vs-primary);
    font-size: var(--vs-font-size-sm);
    font-weight: 500;
    margin-bottom: 1rem;
}

.vs-author-bio {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-secondary);
    line-height: 1.7;
    text-align: justify;
}

.vs-author-bio strong {
    color: var(--vs-text);
}

.vs-author-bio .vs-highlight {
    color: var(--vs-primary);
    font-weight: 500;
}

.vs-author-social {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.vs-author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--vs-bg);
    border-radius: var(--vs-radius-full);
    font-size: var(--vs-font-size-sm);
    font-weight: 500;
    color: var(--vs-text-secondary);
    transition: all var(--vs-transition);
}

.vs-author-social-link:hover {
    background-color: var(--vs-primary-light);
    color: var(--vs-primary);
}

.vs-author-social-link svg {
    width: 18px;
    height: 18px;
}

/* Search Widget */
.vs-search-form {
    position: relative;
}

.vs-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: var(--vs-radius-lg);
    border: 1px solid var(--vs-border);
    background-color: var(--vs-bg);
    color: var(--vs-text);
    font-size: var(--vs-font-size-sm);
    transition: all var(--vs-transition);
}

.vs-search-input:focus {
    outline: none;
    border-color: var(--vs-primary);
    box-shadow: 0 0 0 3px var(--vs-primary-light);
}

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

.vs-search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem;
    color: var(--vs-text-muted);
    transition: color var(--vs-transition);
}

.vs-search-btn:hover {
    color: var(--vs-primary);
}

.vs-search-btn svg {
    width: 18px;
    height: 18px;
}

/* Categories Widget */
.vs-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vs-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border-radius: var(--vs-radius);
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-secondary);
    transition: all var(--vs-transition);
}

.vs-category-link:hover {
    background-color: var(--vs-primary-light);
    color: var(--vs-primary);
}

.vs-category-count {
    font-size: var(--vs-font-size-xs);
    color: var(--vs-text-muted);
    background-color: var(--vs-bg);
    padding: 0.125rem 0.5rem;
    border-radius: var(--vs-radius-full);
}

/* ============================================
   SINGLE POST
============================================ */
.vs-single-header {
    margin-bottom: 2rem;
}

.vs-category-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: var(--vs-primary-light);
    color: var(--vs-primary);
    font-size: var(--vs-font-size-sm);
    font-weight: 600;
    border-radius: var(--vs-radius-full);
    margin-bottom: 1rem;
}

.vs-single-title {
    font-size: var(--vs-font-size-3xl);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .vs-single-title {
        font-size: var(--vs-font-size-4xl);
    }
}

.vs-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: var(--vs-text-secondary);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--vs-border);
}

.vs-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vs-author-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vs-bg);
    box-shadow: var(--vs-shadow-sm);
}

.vs-author-info span {
    font-weight: 500;
    color: var(--vs-text);
}

/* Featured Image */
.vs-featured-image {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--vs-radius-xl);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--vs-shadow-lg);
}

.vs-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.vs-article-content {
    font-size: var(--vs-font-size-lg);
    line-height: 1.8;
    color: var(--vs-text-secondary);
}

.vs-article-content .lead {
    font-size: var(--vs-font-size-xl);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vs-article-content h2 {
    font-size: var(--vs-font-size-2xl);
    color: var(--vs-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.vs-article-content h3 {
    font-size: var(--vs-font-size-xl);
    color: var(--vs-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

.vs-article-content a {
    color: var(--vs-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vs-article-content a:hover {
    text-decoration: none;
}

.vs-article-content .vs-highlight {
    color: var(--vs-primary);
    font-weight: 600;
}

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

.vs-article-content ul {
    list-style-type: disc;
}

.vs-article-content ol {
    list-style-type: decimal;
}

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

.vs-article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--vs-bg-secondary);
    border-left: 4px solid var(--vs-primary);
    border-radius: 0 var(--vs-radius-lg) var(--vs-radius-lg) 0;
    font-style: italic;
}

.vs-article-content figure {
    margin: 2.5rem 0;
}

.vs-article-content figure img {
    width: 100%;
    border-radius: var(--vs-radius-lg);
    box-shadow: var(--vs-shadow-md);
}

.vs-article-content figcaption {
    text-align: center;
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Reading Progress Bar */
.vs-progress-bar {
    position: fixed;
    top: 64px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--vs-primary), var(--vs-primary-hover));
    z-index: var(--vs-z-fixed);
    transition: width 0.1s linear;
}

@media (min-width: 768px) {
    .vs-progress-bar {
        top: 72px;
    }
}

/* Share Buttons */
.vs-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--vs-border);
    border-bottom: 1px solid var(--vs-border);
}

.vs-share-label {
    font-weight: 600;
    color: var(--vs-text);
    font-size: var(--vs-font-size-sm);
}

.vs-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.vs-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vs-radius);
    color: #ffffff;
    transition: all var(--vs-transition);
}

.vs-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--vs-shadow-md);
}

.vs-share-btn svg {
    width: 18px;
    height: 18px;
}

.vs-share-btn.whatsapp {
    background-color: #25D366;
}

.vs-share-btn.facebook {
    background-color: #1877F2;
}

.vs-share-btn.twitter {
    background-color: #1DA1F2;
}

.vs-share-btn.linkedin {
    background-color: #0A66C2;
}

.vs-share-btn.copy {
    background-color: var(--vs-text-muted);
}

/* Related Posts */
.vs-related {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--vs-border);
}

.vs-related-title {
    font-size: var(--vs-font-size-2xl);
    margin-bottom: 1.5rem;
}

.vs-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.vs-related-card {
    background-color: var(--vs-card-bg);
    border-radius: var(--vs-radius-lg);
    border: 1px solid var(--vs-border);
    overflow: hidden;
    transition: all var(--vs-transition);
}

.vs-related-card:hover {
    box-shadow: var(--vs-shadow-md);
    border-color: var(--vs-primary);
}

.vs-related-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.vs-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--vs-transition-slow);
}

.vs-related-card:hover .vs-related-card-image img {
    transform: scale(1.05);
}

.vs-related-card-body {
    padding: 1rem;
}

.vs-related-card-title {
    font-size: var(--vs-font-size-base);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.vs-related-card-title a:hover {
    color: var(--vs-primary);
}

.vs-related-card-meta {
    font-size: var(--vs-font-size-xs);
    color: var(--vs-text-muted);
}

/* Author Box */
.vs-author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--vs-bg-secondary);
    border-radius: var(--vs-radius-xl);
    border: 1px solid var(--vs-border-light);
}

@media (min-width: 640px) {
    .vs-author-box {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.vs-author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vs-author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-author-box-content h3 {
    font-size: var(--vs-font-size-lg);
    margin-bottom: 0.25rem;
}

.vs-author-box-content p {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   FOOTER
============================================ */
.vs-footer {
    background-color: var(--vs-bg-secondary);
    border-top: 1px solid var(--vs-border);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.vs-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

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

.vs-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .vs-footer-brand {
        align-items: flex-start;
    }
}

.vs-footer-tagline {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
    max-width: 300px;
}

.vs-footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vs-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vs-radius);
    color: var(--vs-text-muted);
    transition: all var(--vs-transition);
}

.vs-footer-social a:hover {
    color: var(--vs-primary);
    background-color: var(--vs-primary-light);
    transform: translateY(-2px);
}

.vs-footer-social svg {
    width: 20px;
    height: 20px;
}

.vs-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vs-border);
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
}

@media (min-width: 768px) {
    .vs-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.vs-footer-links {
    display: flex;
    gap: 1.5rem;
}

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

/* ============================================
   BACK TO TOP BUTTON
============================================ */
.vs-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--vs-primary);
    color: #ffffff;
    border-radius: var(--vs-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--vs-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--vs-transition);
    z-index: var(--vs-z-sticky);
    cursor: pointer;
    border: none;
}

.vs-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vs-back-to-top:hover {
    background-color: var(--vs-primary-hover);
    transform: translateY(-4px);
}

.vs-back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   PAGINATION
============================================ */
.vs-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.vs-pagination a,
.vs-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border-radius: var(--vs-radius);
    border: 1px solid var(--vs-border);
    font-size: var(--vs-font-size-sm);
    font-weight: 500;
    color: var(--vs-text-secondary);
    transition: all var(--vs-transition);
}

.vs-pagination a:hover {
    border-color: var(--vs-primary);
    color: var(--vs-primary);
    background-color: var(--vs-primary-light);
}

.vs-pagination .current {
    background-color: var(--vs-primary);
    border-color: var(--vs-primary);
    color: #ffffff;
}

/* ============================================
   COMMENTS
============================================ */
.vs-comments {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--vs-border);
}

.vs-comments-title {
    font-size: var(--vs-font-size-2xl);
    margin-bottom: 2rem;
}

.vs-comment-list {
    list-style: none;
    padding: 0;
}

.vs-comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--vs-border-light);
}

.vs-comment:last-child {
    border-bottom: none;
}

.vs-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.vs-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-comment-content {
    flex: 1;
}

.vs-comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.vs-comment-author {
    font-weight: 600;
    color: var(--vs-text);
}

.vs-comment-date {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
}

.vs-comment-text {
    color: var(--vs-text-secondary);
    font-size: var(--vs-font-size-base);
    line-height: 1.6;
}

.vs-comment-reply {
    margin-top: 0.75rem;
}

.vs-comment-reply a {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-primary);
    font-weight: 500;
}

/* Comment Form */
.vs-comment-form {
    margin-top: 2rem;
}

.vs-comment-form-title {
    font-size: var(--vs-font-size-xl);
    margin-bottom: 1.5rem;
}

.vs-form-group {
    margin-bottom: 1.25rem;
}

.vs-form-label {
    display: block;
    font-size: var(--vs-font-size-sm);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--vs-text);
}

.vs-form-label .required {
    color: #ef4444;
}

.vs-form-input,
.vs-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--vs-radius-lg);
    border: 1px solid var(--vs-border);
    background-color: var(--vs-bg);
    color: var(--vs-text);
    font-size: var(--vs-font-size-base);
    transition: all var(--vs-transition);
}

.vs-form-input:focus,
.vs-form-textarea:focus {
    outline: none;
    border-color: var(--vs-primary);
    box-shadow: 0 0 0 3px var(--vs-primary-light);
}

.vs-form-input::placeholder,
.vs-form-textarea::placeholder {
    color: var(--vs-text-muted);
}

.vs-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.vs-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

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

/* ============================================
   404 PAGE
============================================ */
.vs-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 2rem;
}

.vs-404-title {
    font-size: 8rem;
    font-weight: 800;
    color: var(--vs-primary);
    margin-bottom: 1rem;
    line-height: 1;
}

.vs-404-subtitle {
    font-size: var(--vs-font-size-2xl);
    margin-bottom: 1rem;
}

.vs-404-text {
    color: var(--vs-text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ============================================
   ELEMENTOR COMPATIBILITY
============================================ */
.elementor-page .vs-container {
    max-width: 100%;
    padding: 0;
}

.elementor-page.elementor-page-full-width .vs-main {
    padding: 0;
}

body.elementor-template-canvas {
    background: var(--vs-bg);
}

body.elementor-template-canvas.dark {
    background: var(--vs-bg);
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1280px;
}

/* Elementor Button Styles */
.elementor-button {
    font-family: var(--vs-font-family);
}

.elementor-widget-button .elementor-button {
    border-radius: var(--vs-radius-full);
    transition: all var(--vs-transition);
}

.elementor-widget-button .elementor-button:hover {
    transform: translateY(-2px);
}

/* Elementor Text Styles */
.elementor-heading-title {
    font-family: var(--vs-font-family);
}

.elementor-text-editor {
    font-family: var(--vs-font-family);
    color: var(--vs-text-secondary);
}

.dark .elementor-text-editor,
.dark .elementor-heading-title,
.dark .elementor-icon-list-text {
    color: var(--vs-text);
}

/* ============================================
   UTILITY CLASSES
============================================ */
.vs-hidden {
    display: none !important;
}

.vs-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vs-animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.vs-animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.vs-animate-slide-down {
    animation: slideDown 0.3s ease forwards;
}

/* Animation Delays */
.vs-delay-100 { animation-delay: 0.1s; }
.vs-delay-200 { animation-delay: 0.2s; }
.vs-delay-300 { animation-delay: 0.3s; }
.vs-delay-400 { animation-delay: 0.4s; }
.vs-delay-500 { animation-delay: 0.5s; }

/* WordPress Core */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: var(--vs-font-size-sm);
    color: var(--vs-text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}
