/*
Theme Name: WOOHL Theme
Theme URI: https://woohl.com
Author: WOOHL Team
Author URI: https://woohl.com
Description: A modern, blazing-fast Elementor-based WordPress theme for WooCommerce stores. Convert your WooCommerce store into a blazing-fast Vue.js frontend with this theme. Fully compatible with Elementor Page Builder and Elementor Pro.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: woohl-theme
Tags: e-commerce, woocommerce, modern, responsive, fast, elementor, page-builder, elementor-pro
*/

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

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #10b981;
    --green-700: #059669;
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-300: #6ee7b7;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --teal-100: #ccfbf1;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --cyan-100: #cffafe;
    --cyan-600: #0891b2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --red-100: #fee2e2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --yellow-300: #fde047;
    --yellow-500: #eab308;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
    background: white;
}

h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--green-600);
    border-radius: 8px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--green-600);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-nav a {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.5rem 0;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    gap: 0.5rem;
}

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

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

.btn-primary:hover {
    background: var(--green-700);
}

.btn-outline {
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    background: var(--gray-50);
}

.btn-outline-green {
    background: white;
    color: var(--green-600);
    border: 2px solid var(--green-600);
}

.btn-outline-green:hover {
    background: var(--green-50);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    color: var(--green-600);
}

.btn-link {
    background: transparent;
    color: var(--green-600);
    padding: 0;
}

.btn-link:hover {
    color: var(--green-700);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--green-50), white, var(--emerald-50));
    padding: 3rem 1rem;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.2;
    pointer-events: none;
}

.hero-bg-circle-1 {
    position: absolute;
    top: -50%;
    right: -25%;
    width: 24rem;
    height: 24rem;
    background: var(--green-300);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-bg-circle-2 {
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 24rem;
    height: 24rem;
    background: var(--emerald-300);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    width: fit-content;
}

.badge-primary {
    background: var(--green-600);
    color: white;
}

.badge-secondary {
    background: var(--green-100);
    color: var(--green-700);
}

.hero-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--green-600);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.875rem;
    color: var(--green-600);
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-visual {
    position: relative;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.transformation-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.visual-box {
    border-radius: 0.5rem;
    padding: 1rem;
    border: 2px dashed;
}

.visual-box-before {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.visual-box-after {
    background: linear-gradient(to bottom right, var(--green-50), var(--emerald-50));
    border-color: var(--green-300);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background: var(--red-500); }
.dot-yellow { background: var(--yellow-500); }
.dot-green { background: var(--green-500); }

.visual-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.line {
    height: 12px;
    border-radius: 4px;
}

.line-gray {
    background: var(--gray-300);
}

.line-green {
    background: var(--green-300);
}

.line-75 { width: 75%; }
.line-50 { width: 50%; }
.line-66 { width: 66%; }

.speed-badge {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.speed-badge-slow {
    color: var(--red-600);
}

.speed-badge-fast {
    color: var(--green-700);
}

.speed-value {
    display: inline-block;
    padding: 0 0.5rem;
    height: 1rem;
    border-radius: 4px;
    text-align: center;
}

.speed-value-slow {
    background: var(--red-100);
}

.speed-value-fast {
    background: var(--green-600);
    color: white;
}

.arrow-circle {
    display: flex;
    justify-content: center;
}

.arrow-icon {
    background: var(--green-600);
    color: white;
    border-radius: 50%;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--green-600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: rotate(12deg);
    font-size: 0.875rem;
}

/* Section Styles */
section {
    padding: 2.5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.bg-white { background: white; }
.bg-gray-50 { background: var(--gray-50); }

/* Grid Layouts */
.grid-3 {
    display: grid;
    gap: 2rem;
}

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

/* How It Works Cards */
.step-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.step-bg-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4.5rem;
    color: var(--gray-100);
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s;
}

.step-card:hover .step-bg-number {
    color: var(--green-50);
}

.step-icon {
    position: relative;
    z-index: 10;
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-green { background: var(--green-100); color: var(--green-700); }
.icon-emerald { background: var(--emerald-100); color: var(--emerald-700); }
.icon-teal { background: var(--teal-100); color: var(--teal-700); }

.step-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-600);
}

/* Code Snippet */
.code-card {
    background: var(--gray-900);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.code-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.code-title {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-left: 1rem;
}

.code-copy-btn {
    background: transparent;
    color: var(--gray-300);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.code-copy-btn:hover {
    background: var(--gray-800);
    color: white;
}

.code-content {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
	overflow: auto;
}

.code-line {
    display: flex;
    gap: 0.5rem;
}

.code-key { color: var(--green-400); }
.code-equals { color: var(--gray-500); }
.code-value { color: var(--yellow-300); }

.code-footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.code-footer .check-icon {
    color: var(--green-500);
}

/* Benefits Cards */
.benefit-card {
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
    display: flex;
    gap: 1.5rem;
}

.benefit-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.benefit-card-1 {
    background: linear-gradient(to bottom right, var(--green-100), var(--emerald-50));
}

.benefit-card-2 {
    background: linear-gradient(to bottom right, var(--emerald-100), var(--teal-100));
}

.benefit-card-3 {
    background: linear-gradient(to bottom right, var(--teal-100), var(--cyan-100));
}

.benefit-card-4 {
    background: linear-gradient(to bottom right, var(--cyan-100), #dbeafe);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.benefit-icon-green { background: var(--green-600); }
.benefit-icon-emerald { background: var(--emerald-600); }
.benefit-icon-teal { background: var(--teal-600); }
.benefit-icon-cyan { background: var(--cyan-600); }

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.benefit-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--green-600);
    border-radius: 50%;
}

/* Stats Bar */
.stats-bar {
    margin-top: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    border: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    color: var(--green-600);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Demo Preview */
.tabs {
    width: 100%;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: var(--gray-100);
    padding: 0.25rem;
    border-radius: 0.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-trigger {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: all 0.3s;
}

.tab-trigger:hover {
    background: var(--gray-200);
}

.tab-trigger.active {
    background: white;
    color: var(--gray-900);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.demo-card {
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    overflow: hidden;
}

.browser-chrome {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.browser-url {
    flex: 1;
    margin-left: 1rem;
}

.url-bar {
    background: white;
    border-radius: 0.375rem;
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    max-width: 28rem;
}

.demo-content {
    background: linear-gradient(to bottom right, var(--gray-50), white);
    padding: 4rem 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-content-mobile {
    padding: 2rem;
    min-height: 500px;
}

.demo-inner {
    text-align: center;
    max-width: 28rem;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--green-100);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.demo-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.demo-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.demo-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

.metric {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.metric-value {
    color: var(--green-600);
    font-weight: 600;
}

.mobile-demo-card {
    max-width: 24rem;
    margin: 0 auto;
}

.mobile-chrome {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-time {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.mobile-signal {
    display: flex;
    gap: 0.25rem;
}

.signal-bar {
    width: 1rem;
    height: 0.5rem;
    background: var(--gray-400);
    border-radius: 2px;
}

.demo-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.demo-cta-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* Social Proof */
.logo-grid {
    margin-bottom: 4rem;
}

.logo-grid-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0.6;
}

.logo-placeholder {
    height: 48px;
    background: var(--gray-300);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.testimonial-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--green-100);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: var(--green-500);
    fill: var(--green-500);
}

.testimonial-text {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--green-400), var(--emerald-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.875rem;
    color: var(--gray-900);
    font-weight: 600;
}

.author-role {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.trust-badges {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
}

.trust-text {
    font-size: 0.875rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.pricing-card.popular {
    border: 2px solid var(--green-500);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-600);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.price-amount {
    font-size: 3rem;
    color: var(--gray-900);
    font-weight: 700;
}

.price-period {
    color: var(--gray-600);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-check {
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.faq-card {
    margin-top: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: linear-gradient(to bottom right, var(--green-50), var(--emerald-50));
    border: 1px solid var(--green-200);
    border-radius: 1rem;
}

.faq-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    font-size: 0.875rem;
}

.faq-question {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.faq-answer {
    color: var(--gray-600);
}

/* Footer */
footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 1rem;
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    color: white;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    text-decoration: none;
    color: var(--gray-300);
}

.social-link svg {
    max-width: 20px;
}

.social-link:hover {
    background: var(--green-600);
    color: white;
}

.footer-section h4 {
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--green-400);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-link {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: var(--green-400);
}

/* Icons using Lucide */
.icon {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 28px;
    height: 28px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

#menu-header-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
	margin-bottom: 0px;
}

#menu-header-menu-1 {
    list-style: none;
}

.entry-header {
    background: #10B98126;
    padding: 30px 0;
}

.entry-header h1 {
    color: #10B981;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
}

/* Responsive Styles */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.875rem; }

    .header-content {
        height: 80px;
    }

    nav { display: flex; }
    .header-cta { display: flex; }
    .mobile-menu-btn { display: none; }

    .hero {
        padding: 3rem 1rem;
    }

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

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: center;
    }

    .demo-content {
        padding: 4rem;
    }

    .code-card {
        padding: 2rem;
    }
}

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

    .hero {
        padding: 3rem 1rem;
    }
}

@media (max-width: 767px) {
    nav, .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }
	.pricing-grid {
		flex-direction: column;
		display: flex;
	}
}

/* Post Detail Page Styles */
.post-featured-image {
    position: relative;
    z-index: 10;
}

.post-navigation {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .post-navigation .nav-next {
        text-align: left !important;
    }
    
    .post-navigation .btn {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* Comments Section Styles */
.comments-area {
    margin-top: 3rem;
}

.comments-title {
    font-size: 1.875rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

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

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.comment-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    color: var(--gray-900);
    font-style: normal;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-left: auto;
}

.comment-content {
    color: var(--gray-700);
    line-height: 1.7;
    margin-top: 0.75rem;
}

.comment .reply {
    margin-top: 1rem;
}

.comment .reply a {
    font-size: 0.875rem;
    color: var(--green-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.comment .reply a:hover {
    color: var(--green-700);
}

.children {
    list-style: none;
    margin-left: 3rem;
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .children {
        margin-left: 1rem;
    }
}

.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.comment-reply-title {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-form label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.3s;
}

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

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

.comment-form .form-submit {
    margin-top: 0.5rem;
}

.comment-form .submit {
    background: var(--green-600);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: var(--green-700);
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--gray-700);
    background: white;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
}

.pagination .page-numbers.current {
    font-weight: 600;
}

.pagination .prev,
.pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Post Meta Styles */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Search Form Styles */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: var(--green-600);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.search-form input[type="submit"]:hover {
    background: var(--green-700);
}

/* Post Thumbnail Hover Effect */
.step-card a img {
    transition: transform 0.3s;
}

.step-card:hover a img {
    transform: scale(1.05);
}

/* Post Tags Styles */
.post-tags a {
    transition: all 0.3s;
}

.post-tags a:hover {
    background: var(--green-700);
    color: white;
    transform: translateY(-2px);
}


.woocommerce-account .entry-content {
    padding: 40px 0;
	min-height: 550px;
}

/* =====================================================
   WooCommerce My Account - Custom Theme CSS
   Primary Color: #059669 (Emerald Green)
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES
   ===================================================== */
:root {
  --wc-primary:        #059669;
  --wc-primary-dark:   #047857;
  --wc-primary-darker: #065f46;
  --wc-primary-light:  #d1fae5;
  --wc-primary-xlight: #ecfdf5;
  --wc-text:           #111827;
  --wc-text-muted:     #6b7280;
  --wc-border:         #e5e7eb;
  --wc-bg:             #f9fafb;
  --wc-white:          #ffffff;
  --wc-radius:         8px;
  --wc-radius-lg:      12px;
  --wc-shadow:         0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --wc-shadow-md:      0 4px 12px rgba(0,0,0,0.08);
}

/* =====================================================
   2. MY ACCOUNT WRAPPER
   ===================================================== */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
  font-family: inherit;
}

.woocommerce-account .woocommerce {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* =====================================================
   3. SIDEBAR NAVIGATION
   ===================================================== */
.woocommerce-MyAccount-navigation {
  min-width: 220px;
  width: 220px;
  flex-shrink: 0;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--wc-white);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
  box-shadow: var(--wc-shadow);
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--wc-border);
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--wc-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-left: 3px solid transparent;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-dark);
  padding-left: 22px;
  border-left-color: var(--wc-primary-light);
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-dark);
  border-left-color: var(--wc-primary);
  font-weight: 600;
}

/* Logout link */
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #dc2626;
}

.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: #fef2f2;
  color: #b91c1c;
  border-left-color: #fca5a5;
}

/* =====================================================
   4. MAIN CONTENT AREA
   ===================================================== */
.woocommerce-MyAccount-content {
  flex: 1;
  min-width: 0;
  background: var(--wc-white);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: 28px 32px;
  box-shadow: var(--wc-shadow);
}

.woocommerce-MyAccount-content > h2,
.woocommerce-MyAccount-content .woocommerce-order-details__title,
.woocommerce-MyAccount-content .woocommerce-column__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--wc-text);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-MyAccount-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--wc-text);
  margin: 24px 0 12px;
}

/* =====================================================
   5. DASHBOARD (DEFAULT TAB)
   ===================================================== */
.woocommerce-account p.woocommerce-customer-details--email,
.woocommerce-account p {
  font-size: 14px;
  color: var(--wc-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.woocommerce-account p a {
  color: var(--wc-primary);
  font-weight: 500;
  text-decoration: none;
}

.woocommerce-account p a:hover {
  color: var(--wc-primary-dark);
  text-decoration: underline;
}

/* =====================================================
   6. ORDERS TABLE
   ===================================================== */
.woocommerce-orders-table,
.woocommerce-MyAccount-content table.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 8px;
}

.woocommerce-orders-table thead th,
.woocommerce-orders-table th {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-darker);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-orders-table tbody tr {
  border-bottom: 1px solid var(--wc-border);
  transition: background 0.12s;
}

.woocommerce-orders-table tbody tr:hover {
  background: var(--wc-primary-xlight);
}

.woocommerce-orders-table tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-orders-table td,
.woocommerce-orders-table tbody th {
    padding: 14px 16px !important;
    vertical-align: middle;
    color: var(--wc-text);
    border-top: none !important;
}

/* Order number cell — WooCommerce uses <th> not <td> for order number */
.woocommerce-orders-table__cell-order-number a,
.woocommerce-orders-table__cell-order-number a:link,
.woocommerce-orders-table__cell-order-number a:visited {
  color: var(--wc-primary) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.woocommerce-orders-table__cell-order-number a:hover {
  color: var(--wc-primary-dark) !important;
  text-decoration: underline !important;
}

/* Also catch any other td/th links in the table */
.woocommerce-orders-table td a,
.woocommerce-orders-table td a:link,
.woocommerce-orders-table td a:visited{
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
.woocommerce-orders-table th a,
.woocommerce-orders-table th a:link,
.woocommerce-orders-table th a:visited {
  color: var(--wc-primary) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.woocommerce-orders-table td a:hover,
.woocommerce-orders-table th a:hover {
  color: var(--wc-primary-dark) !important;
  text-decoration: underline !important;
}

/* ── ORDER STATUS ───────────────────────────────────────
   Status cell has plain text only — no inner elements.
   Strategy: make the TD a flex container so we can style
   its text node via a generated ::before badge, but we
   must NOT hide the td text with font-size:0 because the
   actions cell (View button) sits in its own td and is
   unaffected — HOWEVER the safest approach is to colour
   the TD background itself as a pill using outline trick.
   
   Actually safest: use color:transparent on the td text
   and ::before for the badge. This way button in sibling
   td is untouched.
─────────────────────────────────────────────────────── */
.woocommerce-orders-table__cell-order-status {
  color: transparent !important;
  font-size: 13px !important;
  position: relative !important;
  white-space: nowrap !important;
}

.woocommerce-orders-table__cell-order-status::before {
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  display: inline-block !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  letter-spacing: 0.02em !important;
  background: var(--wc-primary-light) !important;
  color: var(--wc-primary-darker) !important;
  content: "" !important;
}

/* Per-status badge colors + labels */
.woocommerce-orders-table__row--status-processing
  .woocommerce-orders-table__cell-order-status::before {
  content: "Processing" !important;
  background: #dbeafe !important;
  color: #1e40af !important;
}

.woocommerce-orders-table__row--status-completed
  .woocommerce-orders-table__cell-order-status::before {
  content: "Completed" !important;
  background: var(--wc-primary-light) !important;
  color: var(--wc-primary-darker) !important;
}

.woocommerce-orders-table__row--status-on-hold
  .woocommerce-orders-table__cell-order-status::before {
  content: "On Hold" !important;
  background: #fef9c3 !important;
  color: #854d0e !important;
}

.woocommerce-orders-table__row--status-cancelled
  .woocommerce-orders-table__cell-order-status::before {
  content: "Cancelled" !important;
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.woocommerce-orders-table__row--status-refunded
  .woocommerce-orders-table__cell-order-status::before {
  content: "Refunded" !important;
  background: #f3e8ff !important;
  color: #6b21a8 !important;
}

.woocommerce-orders-table__row--status-failed
  .woocommerce-orders-table__cell-order-status::before {
  content: "Failed" !important;
  background: #ffe4e6 !important;
  color: #9f1239 !important;
}

.woocommerce-orders-table__row--status-pending
  .woocommerce-orders-table__cell-order-status::before {
  content: "Pending" !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.woocommerce-orders-table__row--status-pending-payment
  .woocommerce-orders-table__cell-order-status::before {
  content: "Pending Payment" !important;
  background: #f1f5f9 !important;
  color: #475569 !important;
}

/* View button — restore font size explicitly */
.woocommerce-orders-table__cell-order-actions,
.woocommerce-orders-table__cell-order-actions a,
.woocommerce-orders-table__cell-order-actions .button {
  font-size: 13px !important;
  color: var(--wc-white) !important;
}

/* View order button */
.woocommerce-orders-table .button,
.woocommerce-orders-table a.button {
  display: inline-block;
  padding: 6px 14px;
  background: var(--wc-primary);
  color: var(--wc-white) !important;
  border: none;
  border-radius: var(--wc-radius);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s;
  cursor: pointer;
}

.woocommerce-orders-table .button:hover,
.woocommerce-orders-table a.button:hover {
  background: var(--wc-primary-dark);
}

/* =====================================================
   7. DOWNLOADS
   ===================================================== */
.woocommerce-MyAccount-downloads td,
.woocommerce-MyAccount-downloads th {
  padding: 12px 16px;
}

.woocommerce-MyAccount-downloads thead th {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-darker);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-MyAccount-downloads .download-product a {
  color: var(--wc-primary);
  text-decoration: none;
  font-weight: 500;
}

.woocommerce-MyAccount-downloads .download-product a:hover {
  color: var(--wc-primary-dark);
}

/* =====================================================
   8. ADDRESSES
   Exact HTML: .u-columns.woocommerce-Addresses.col2-set
               > .u-column1.col-1.woocommerce-Address
               > header.woocommerce-Address-title.title
               > h2 + a.edit
   ===================================================== */

/* Wrapper — use body chain for max specificity over theme floats */
body .woocommerce-MyAccount-content .woocommerce-Addresses,
body .woocommerce-MyAccount-content .col2-set,
body .woocommerce-MyAccount-content .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  width: 100% !important;
  overflow: hidden !important;
  float: none !important;
}

/* Kill floats on the column divs */
body .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
body .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2,
body .woocommerce-MyAccount-content .woocommerce-Addresses .col-1,
body .woocommerce-MyAccount-content .woocommerce-Addresses .col-2,
body .woocommerce-MyAccount-content .col2-set > div {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
}

/* Address card */
.woocommerce-Address {
  background: var(--wc-bg) !important;
  border: 1px solid var(--wc-border) !important;
  border-radius: var(--wc-radius-lg) !important;
  padding: 20px 22px !important;
}

/* Header row: h2 + edit link side by side */
header.woocommerce-Address-title {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--wc-border) !important;
}

/* The h2 inside an address card (NOT the page-level h2) */
.woocommerce-Address header.woocommerce-Address-title h2 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--wc-text) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  line-height: 1.4 !important;
}

/* Edit link pill */
header.woocommerce-Address-title a.edit {
  display: inline-block !important;
  color: var(--wc-primary) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  padding: 4px 12px !important;
  border: 1px solid var(--wc-primary-light) !important;
  border-radius: 20px !important;
  background: var(--wc-primary-xlight) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  transition: background 0.15s, border-color 0.15s !important;
}

header.woocommerce-Address-title a.edit:hover {
  background: var(--wc-primary-light) !important;
  border-color: var(--wc-primary) !important;
}

/* Address body text */
.woocommerce-Address address {
  font-style: normal !important;
  font-size: 14px !important;
  color: var(--wc-text-muted) !important;
  line-height: 1.8 !important;
}

/* Clearfix */
.woocommerce-Addresses::after {
  content: "";
  display: table;
  clear: both;
}

/* =====================================================
   9. ACCOUNT DETAILS FORM (Edit Account)
   ===================================================== */
.woocommerce-EditAccountForm fieldset {
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: 20px 22px;
  margin-bottom: 24px;
  background: var(--wc-bg);
}

.woocommerce-EditAccountForm legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--wc-primary-dark);
  padding: 0 8px;
  background: var(--wc-bg);
}

/* =====================================================
   10. FORM FIELDS (shared across address/account forms)
   ===================================================== */
.woocommerce-MyAccount-content .form-row,
.woocommerce-account .form-row {
  margin-bottom: 16px;
}

.woocommerce-MyAccount-content .form-row label,
.woocommerce-account .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--wc-text);
  margin-bottom: 6px;
}

.woocommerce-MyAccount-content .form-row label .required,
.woocommerce-account .form-row label .required {
  color: #dc2626;
  margin-left: 2px;
}

.woocommerce-MyAccount-content .form-row input[type="text"],
.woocommerce-MyAccount-content .form-row input[type="email"],
.woocommerce-MyAccount-content .form-row input[type="password"],
.woocommerce-MyAccount-content .form-row input[type="tel"],
.woocommerce-MyAccount-content .form-row select,
.woocommerce-MyAccount-content .form-row textarea,
.woocommerce-account .form-row input[type="text"],
.woocommerce-account .form-row input[type="email"],
.woocommerce-account .form-row input[type="password"],
.woocommerce-account .form-row input[type="tel"],
.woocommerce-account .form-row select,
.woocommerce-account .form-row textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--wc-text);
  background: var(--wc-white);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.woocommerce-MyAccount-content .form-row input:focus,
.woocommerce-MyAccount-content .form-row select:focus,
.woocommerce-MyAccount-content .form-row textarea:focus,
.woocommerce-account .form-row input:focus,
.woocommerce-account .form-row select:focus,
.woocommerce-account .form-row textarea:focus {
  border-color: var(--wc-primary);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* =====================================================
   11. BUTTONS
   ===================================================== */
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-Button,
.woocommerce-account .button,
.woocommerce-account input[type="submit"],
.woocommerce-account button[type="submit"] {
  display: inline-block;
  padding: 11px 24px;
  background: var(--wc-primary);
  color: var(--wc-white) !important;
  border: none;
  border-radius: var(--wc-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}

.woocommerce-MyAccount-content .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover,
.woocommerce-MyAccount-content button[type="submit"]:hover,
.woocommerce-account .button:hover,
.woocommerce-account input[type="submit"]:hover,
.woocommerce-account button[type="submit"]:hover {
  background: var(--wc-primary-dark);
  transform: translateY(-1px);
}

.woocommerce-MyAccount-content .button.alt,
.woocommerce-account .button.alt {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-dark) !important;
  border: 1px solid var(--wc-primary-light);
}

.woocommerce-MyAccount-content .button.alt:hover,
.woocommerce-account .button.alt:hover {
  background: var(--wc-primary-light);
  transform: translateY(-1px);
}

/* =====================================================
   12. NOTICES & ALERTS
   ===================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 18px;
  border-radius: var(--wc-radius);
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid transparent;
}

.woocommerce-message {
  background: var(--wc-primary-xlight);
  border-color: var(--wc-primary-light);
  color: var(--wc-primary-darker);
}

.woocommerce-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.woocommerce-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  content: none;
}

/* =====================================================
   13. LOGIN / REGISTER PAGE
   ===================================================== */
.woocommerce-account:not(.logged-in) .woocommerce {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--wc-white);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: 28px 32px;
  box-shadow: var(--wc-shadow);
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--wc-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wc-text-muted);
}

.woocommerce-form-login__rememberme input[type="checkbox"] {
  accent-color: var(--wc-primary);
  width: 16px;
  height: 16px;
}

.woocommerce-LostPassword a {
  color: var(--wc-primary);
  font-size: 13px;
  text-decoration: none;
}

.woocommerce-LostPassword a:hover {
  text-decoration: underline;
}

/* =====================================================
   14. ORDER DETAIL PAGE
   ===================================================== */
.woocommerce-order-details__title,
.woocommerce-customer-details h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wc-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-table--order-details thead th {
  background: var(--wc-primary-xlight);
  color: var(--wc-primary-darker);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  border-bottom: 2px solid var(--wc-primary-light);
}

.woocommerce-table--order-details tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--wc-border);
  font-size: 14px;
  color: var(--wc-text);
  vertical-align: middle;
}

.woocommerce-table--order-details tfoot tr th,
.woocommerce-table--order-details tfoot tr td {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

.woocommerce-table--order-details tfoot tr:last-child td,
.woocommerce-table--order-details tfoot tr:last-child th {
  font-size: 16px;
  font-weight: 700;
  color: var(--wc-primary-dark);
}

/* =====================================================
   15. PAYMENT METHODS
   ===================================================== */
.woocommerce-MyAccount-content .payment_method {
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.woocommerce-MyAccount-content .payment_method input[type="radio"] {
  accent-color: var(--wc-primary);
}

/* =====================================================
   16. WOOHL LICENSES TAB
   Exact HTML: .woohl-my-account-licenses
               > table.woocommerce-MyAccount-woohl-licenses
               td > code.woohl-license-key
               td > button.woohl-copy-key
               td > span.woohl-status.woohl-status-active
               td > a.button.button-small (download links)
               p.woohl-licenses-notes
   ===================================================== */

/* Override the plugin's inline <style> block */
.woohl-my-account-licenses {
  margin-top: 4px;
}

/* ── TABLE ── */
.woocommerce-MyAccount-woohl-licenses {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 14px !important;
  margin-top: 8px !important;
}

.woocommerce-MyAccount-woohl-licenses thead th {
  background: var(--wc-primary-xlight) !important;
  color: var(--wc-primary-darker) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 12px 16px !important;
  text-align: left !important;
  border-bottom: 2px solid var(--wc-primary-light) !important;
}

.woocommerce-MyAccount-woohl-licenses tbody tr {
  border-bottom: 1px solid var(--wc-border) !important;
  transition: background 0.12s !important;
}

.woocommerce-MyAccount-woohl-licenses tbody tr:last-child {
  border-bottom: none !important;
}

.woocommerce-MyAccount-woohl-licenses tbody tr:hover {
  background: var(--wc-primary-xlight) !important;
}

.woocommerce-MyAccount-woohl-licenses td {
  padding: 14px 16px !important;
  vertical-align: middle !important;
  color: var(--wc-text) !important;
  font-size: 14px !important;
}

/* ── LICENSE KEY CODE CHIP ── */
.woohl-my-account-licenses .woohl-license-key {
  display: inline-block !important;
  font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace !important;
  font-size: 12px !important;
  background: var(--wc-primary-xlight) !important;
  color: var(--wc-primary-darker) !important;
  border: 1px solid var(--wc-primary-light) !important;
  padding: 4px 10px !important;
  border-radius: var(--wc-radius) !important;
  letter-spacing: 0.03em !important;
  vertical-align: middle !important;
}

/* ── COPY BUTTON ── */
.woohl-my-account-licenses .woohl-copy-key,
.woohl-my-account-licenses .woohl-copy-key.button,
.woohl-my-account-licenses .woohl-copy-key.button-small {
  display: inline-block !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
  padding: 4px 12px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  background: var(--wc-white) !important;
  color: var(--wc-primary) !important;
  border: 1px solid var(--wc-primary) !important;
  border-radius: var(--wc-radius) !important;
  cursor: pointer !important;
  transition: background 0.15s, color 0.15s !important;
  line-height: 1.5 !important;
  transform: none !important;
}

.woohl-my-account-licenses .woohl-copy-key:hover {
  background: var(--wc-primary) !important;
  color: var(--wc-white) !important;
}

/* ── STATUS BADGE ── */
.woohl-my-account-licenses .woohl-status {
  display: inline-block !important;
  padding: 3px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.woohl-my-account-licenses .woohl-status-active {
  background: var(--wc-primary-light) !important;
  color: var(--wc-primary-darker) !important;
}

.woohl-my-account-licenses .woohl-status-expired {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.woohl-my-account-licenses .woohl-status-inactive {
  background: #f1f5f9 !important;
  color: #475569 !important;
}

.woohl-my-account-licenses .woohl-status-pending {
  background: #fef9c3 !important;
  color: #854d0e !important;
}

/* ── DOWNLOAD BUTTONS ── */
.woohl-my-account-licenses .button.button-small {
  display: inline-block !important;
  padding: 6px 13px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  background: var(--wc-primary) !important;
  color: var(--wc-white) !important;
  border: none !important;
  border-radius: var(--wc-radius) !important;
  text-decoration: none !important;
  margin-right: 6px !important;
  margin-bottom: 4px !important;
  transition: background 0.15s !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
}

.woohl-my-account-licenses .button.button-small:hover {
  background: var(--wc-primary-dark) !important;
  color: var(--wc-white) !important;
}

/* Exclude copy button from the download button style above */
.woohl-my-account-licenses .woohl-copy-key.button.button-small {
  background: var(--wc-white) !important;
  color: var(--wc-primary) !important;
  border: 1px solid var(--wc-primary) !important;
  padding: 4px 12px !important;
}

.woohl-my-account-licenses .woohl-copy-key.button.button-small:hover {
  background: var(--wc-primary) !important;
  color: var(--wc-white) !important;
}

/* ── NOTES PARAGRAPH ── */
.woohl-my-account-licenses .woohl-licenses-notes {
  margin-top: 16px !important;
  padding: 12px 16px !important;
  background: var(--wc-primary-xlight) !important;
  border-left: 3px solid var(--wc-primary) !important;
  border-radius: 0 var(--wc-radius) var(--wc-radius) 0 !important;
  font-size: 13px !important;
  color: var(--wc-text-muted) !important;
  line-height: 1.6 !important;
}

.woocommerce-MyAccount-navigation ul {
    width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .woocommerce-MyAccount-woohl-licenses {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .woohl-my-account-licenses .woohl-license-key {
    font-size: 11px !important;
    word-break: break-all !important;
  }
}

/* =====================================================
   17. RESPONSIVE — TABLET & MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
    gap: 16px;
  }

  /* ── MOBILE NAV: force visible, full width, horizontal scroll tab bar ── */
  .woocommerce-MyAccount-navigation {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Firefox */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: var(--wc-radius) !important;
    background: var(--wc-white) !important;
    border: 1px solid var(--wc-border) !important;
    gap: 0 !important;
  }

  /* Hide scrollbar in Chrome/Safari */
  .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
    display: none !important;
  }

  .woocommerce-MyAccount-navigation ul li {
    flex: 0 0 auto !important;
    border-bottom: none !important;
    border-right: 1px solid var(--wc-border) !important;
    white-space: nowrap !important;
  }

  .woocommerce-MyAccount-navigation ul li:last-child {
    border-right: none !important;
  }

  .woocommerce-MyAccount-navigation ul li a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--wc-text) !important;
    text-decoration: none !important;
    border-left: none !important;
    border-bottom: 3px solid transparent !important;
    white-space: nowrap !important;
    transition: background 0.15s, color 0.15s !important;
  }

  .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--wc-primary-xlight) !important;
    color: var(--wc-primary-dark) !important;
    padding-left: 16px !important; /* cancel desktop indent effect */
  }

  .woocommerce-MyAccount-navigation ul li.is-active a,
  .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--is-active a {
    background: var(--wc-primary-xlight) !important;
    color: var(--wc-primary-dark) !important;
    border-left: none !important;
    border-bottom: 3px solid var(--wc-primary) !important;
    font-weight: 600 !important;
  }

  /* Logout stays red */
  .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #dc2626 !important;
  }

  .woocommerce-MyAccount-content {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  body .woocommerce-MyAccount-content .woocommerce-Addresses,
  body .woocommerce-MyAccount-content .col2-set {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-account:not(.logged-in) .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-orders-table,
  .woocommerce-MyAccount-woohl-licenses {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .woocommerce-MyAccount-content {
    padding: 14px;
  }

  .woocommerce-MyAccount-navigation ul li a {
    font-size: 12px !important;
    padding: 11px 13px !important;
  }
}


/* =====================================================
   Blog Grid — 3 Column Layout
   Primary Color: #059669 (Emerald Green)
   File: wp-content/themes/YOUR-THEME/css/blog-grid.css
   (or paste into your theme's style.css)
   ===================================================== */

/* =====================================================
   1. ENQUEUE NOTE
   Add this to your functions.php:

   function theme_enqueue_blog_styles() {
     wp_enqueue_style(
       'blog-grid',
       get_stylesheet_directory_uri() . '/css/blog-grid.css',
       [],
       '1.0.0'
     );
   }
   add_action( 'wp_enqueue_scripts', 'theme_enqueue_blog_styles' );

   Also register the thumbnail size in functions.php:

   add_image_size( 'blog-card-thumb', 640, 420, true );
   ===================================================== */

/* =====================================================
   2. CSS VARIABLES
   ===================================================== */
:root {
  --blog-primary:        #059669;
  --blog-primary-dark:   #047857;
  --blog-primary-darker: #065f46;
  --blog-primary-light:  #d1fae5;
  --blog-primary-xlight: #ecfdf5;
  --blog-text:           #111827;
  --blog-text-muted:     #6b7280;
  --blog-border:         #e5e7eb;
  --blog-bg:             #f9fafb;
  --blog-white:          #ffffff;
  --blog-radius:         10px;
  --blog-radius-lg:      14px;
  --blog-shadow:         0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --blog-shadow-hover:   0 8px 24px rgba(5,150,105,0.12), 0 2px 6px rgba(0,0,0,0.06);
}

/* =====================================================
   3. PAGE WRAPPER
   ===================================================== */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* =====================================================
   4. ARCHIVE HEADER
   ===================================================== */
.blog-archive-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--blog-primary-light);
}

.blog-archive-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blog-primary);
  background: var(--blog-primary-xlight);
  border: 1px solid var(--blog-primary-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-archive-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--blog-text);
  margin: 0;
  line-height: 1.2;
}

/* =====================================================
   5. GRID
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

/* =====================================================
   6. CARD
   ===================================================== */
.blog-card {
  background: var(--blog-white);
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius-lg);
  overflow: hidden;
  box-shadow: var(--blog-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--blog-shadow-hover);
  transform: translateY(-3px);
  border-color: var(--blog-primary-light);
}

/* ── Thumbnail ── */
.blog-card__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blog-primary-xlight);
  position: relative;
  flex-shrink: 0;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

/* Placeholder (no featured image) */
.blog-card__image-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blog-primary-xlight);
  text-decoration: none;
}

.blog-card__placeholder-icon {
  font-size: 36px;
  color: var(--blog-primary-light);
  user-select: none;
}

/* ── Body ── */
.blog-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

/* ── Meta row ── */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blog-primary-darker);
  background: var(--blog-primary-xlight);
  border: 1px solid var(--blog-primary-light);
  padding: 2px 9px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.blog-card__cat:hover {
  background: var(--blog-primary-light);
  border-color: var(--blog-primary);
}

.blog-card__date {
  font-size: 12px;
  color: var(--blog-text-muted);
  font-weight: 400;
}

/* ── Title ── */
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--blog-text);
  margin: 0;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.blog-card__title a:hover {
  color: var(--blog-primary);
}

/* ── Excerpt ── */
.blog-card__excerpt {
  font-size: 14px;
  color: var(--blog-text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Read more link ── */
.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blog-primary);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.15s, gap 0.15s;
}

.blog-card__readmore:hover {
  color: var(--blog-primary-dark);
  gap: 9px;
}

.blog-card__readmore svg {
  flex-shrink: 0;
  transition: transform 0.15s;
}

.blog-card__readmore:hover svg {
  transform: translateX(2px);
}

/* =====================================================
   7. PAGINATION
   ===================================================== */
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* paginate_links() with type='list' outputs a <ul> */
.blog-pagination ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination ul li {
  margin: 0;
  padding: 0;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--blog-radius);
  border: 1px solid var(--blog-border);
  background: var(--blog-white);
  color: var(--blog-text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

/* Hover state */
.blog-pagination ul li a:hover {
  background: var(--blog-primary-xlight);
  border-color: var(--blog-primary-light);
  color: var(--blog-primary-dark);
}

/* Current page */
.blog-pagination ul li span.current {
  background: var(--blog-primary);
  border-color: var(--blog-primary);
  color: var(--blog-white);
  font-weight: 700;
  cursor: default;
}

/* Dots (...) */
.blog-pagination ul li span.dots {
  border: none;
  background: none;
  color: var(--blog-text-muted);
  min-width: 24px;
  padding: 0;
}

/* Prev / Next arrows */
.blog-pagination ul li a.prev,
.blog-pagination ul li a.next {
  padding: 0 18px;
  font-weight: 600;
  color: var(--blog-primary);
  border-color: var(--blog-primary-light);
  background: var(--blog-primary-xlight);
}

.blog-pagination ul li a.prev:hover,
.blog-pagination ul li a.next:hover {
  background: var(--blog-primary);
  border-color: var(--blog-primary);
  color: var(--blog-white);
}

/* =====================================================
   8. NO POSTS
   ===================================================== */
.blog-no-posts {
  text-align: center;
  padding: 60px 20px;
  color: var(--blog-text-muted);
  font-size: 16px;
}

/* =====================================================
   9. RESPONSIVE
   ===================================================== */

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-container {
    padding: 36px 20px 48px;
  }
}

/* Mobile: 1 column */
@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-container {
    padding: 28px 16px 40px;
  }

  .blog-archive-title {
    font-size: 24px;
  }

  .blog-card__body {
    padding: 16px 18px 18px;
  }

  .blog-pagination ul li a,
  .blog-pagination ul li span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    padding: 0 10px;
  }
}