/*
Theme Name: 365ezone Blog
Theme URI: https://www.365ezone.com/blog/
Author: 365ezone Hosting
Author URI: https://www.365ezone.com
Description: Official custom WordPress theme for 365ezone matching the exact corporate brand identity, navigation, typography, announcement bar, and footer of 365ezone.com.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 365ezone-blog
Tags: blog, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready, two-columns, right-sidebar
*/

/* ==========================================================================
   1. CSS VARIABLES & DESIGN SYSTEM (365ezone Brand Palette)
   ========================================================================== */
:root {
    --brand-green: #5ED000;
    --brand-green-dark: #43A900;
    --brand-green-action: #00C853;
    --navy: #101C32;
    --dark-navy: #101C32;
    --navy-2: #17243B;
    --navy-light: #1E293B;
    --light-green: #F1FBEA;
    --light-bg: #F6F9FC;
    --white: #FFFFFF;
    --text: #172033;
    --text-dark: #0F172A;
    --muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --positive: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 6px rgba(16, 28, 50, 0.05);
    --shadow-md: 0 8px 20px rgba(16, 28, 50, 0.08);
    --shadow-lg: 0 16px 36px rgba(16, 28, 50, 0.12);
    --shadow-hover: 0 20px 40px rgba(16, 28, 50, 0.14);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--light-bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

a {
    color: var(--brand-green-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--navy);
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
}

.btn-primary, .btn-nav-login {
    background-color: var(--brand-green-action) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
}

.btn-primary:hover, .btn-nav-login:hover {
    background-color: #00B34A !important;
    box-shadow: 0 6px 18px rgba(0, 200, 83, 0.35);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.btn-secondary {
    background-color: var(--navy);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--navy-2);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--brand-green);
    color: var(--brand-green-dark);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--brand-green);
    color: #ffffff;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   3. TOP SLIM PROMOTIONAL / ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar-global {
    background: #17243B;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 16px;
    line-height: 1.4;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
}

.announcement-bar-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.announcement-badge {
    display: inline-block;
    background: #5ED000;
    color: #101C32;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.announcement-message {
    color: #E2E8F0;
}

.announcement-message strong {
    color: #5ED000;
    font-weight: 700;
}

.announcement-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.timer-label {
    color: #94A3B8;
}

.timer-clock {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-weight: 700;
    color: #5ED000;
}

.timer-unit {
    margin-right: 2px;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(94, 208, 0, 0.15);
    color: #5ED000 !important;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(94, 208, 0, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
}

.announcement-link:hover {
    background: #5ED000;
    color: #101C32 !important;
    border-color: #5ED000;
}

/* ==========================================================================
   4. CENTRAL STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(16, 28, 50, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 86px;
    display: flex;
    align-items: center;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    width: 180px;
    height: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 700;
    color: #172033;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active {
    color: #5ED000;
    background-color: rgba(94, 208, 0, 0.06);
}

.dropdown-caret {
    font-size: 9px;
    margin-left: 2px;
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.nav-item:hover .dropdown-caret {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Menus */
.dropdown-menu, .mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 14px 35px rgba(16, 28, 50, 0.12);
    border: 1px solid #E2E8F0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    pointer-events: none;
}

.nav-item:hover > .dropdown-menu,
.nav-item:hover > .mega-dropdown,
.nav-item:focus-within > .dropdown-menu,
.nav-item:focus-within > .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Compact Dropdown */
.dropdown-menu {
    min-width: 250px;
    padding: 10px;
}

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

.dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #172033;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-link:hover {
    background-color: #F1FBEA;
    color: #43A900;
}

.dropdown-item-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.dropdown-item-desc {
    display: block;
    font-size: 12.5px;
    color: #64748B;
    margin-top: 2px;
}

/* Mega Dropdown (Reseller 2-Column) */
.mega-2col-panel {
    min-width: 480px;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
}

.nav-item:hover > .mega-2col-panel {
    transform: translateX(-50%) translateY(0);
}

.mega-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mega-col-heading {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #5ED000;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #E2E8F0;
}

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

.mega-sub-link {
    display: block;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.mega-sub-link:hover {
    background: #F1FBEA;
}

.mega-sub-title {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: #172033;
}

.mega-sub-link:hover .mega-sub-title {
    color: #43A900;
}

.mega-sub-desc {
    display: block;
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

/* VPS Mega Dropdown */
.vps-mega-dropdown {
    min-width: 520px;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
}

.nav-item:hover > .vps-mega-dropdown {
    transform: translateX(-50%) translateY(0);
}

.vps-dropdown-header {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
}

.vps-dropdown-title {
    font-size: 15px;
    font-weight: 800;
    color: #101C32;
}

.vps-dropdown-subtitle {
    font-size: 12.5px;
    color: #64748B;
}

.vps-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vps-menu-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #F1F5F9;
    background: #F8FAFC;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vps-menu-card:hover {
    border-color: #5ED000;
    background: #F1FBEA;
    transform: translateY(-2px);
}

.vps-menu-icon {
    font-size: 20px;
    line-height: 1;
}

.vps-menu-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #101C32;
}

.vps-menu-desc {
    display: block;
    font-size: 11.5px;
    color: #64748B;
    margin-top: 2px;
}

/* Header Right CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-login {
    padding: 10px 22px;
    font-size: 15px;
    border-radius: 8px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #101C32;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

/* ==========================================================================
   5. MOBILE NAVIGATION DRAWER & OVERLAY
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(16, 28, 50, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #64748B;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #F1F5F9;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #101C32;
    text-decoration: none;
    flex: 1;
}

.mobile-accordion-toggle {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #64748B;
    cursor: pointer;
    padding: 10px 14px;
    line-height: 1;
}

.mobile-accordion-body {
    display: none;
    padding: 0 0 12px 14px;
}

.mobile-nav-item.open .mobile-accordion-body {
    display: block;
}

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

.mobile-sub-link {
    display: block;
    padding: 8px 0;
    font-size: 14.5px;
    font-weight: 600;
    color: #64748B;
    text-decoration: none;
}

.mobile-sub-link:hover {
    color: #5ED000;
}

.mobile-drawer-footer {
    padding: 20px;
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
}

/* ==========================================================================
   6. BREADCRUMBS & BLOG SUBHEADER / HERO
   ========================================================================== */
.breadcrumbs-wrap {
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 12px 0;
    font-size: 14px;
    color: #64748B;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs a {
    color: #64748B;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: #5ED000;
}

.breadcrumbs .separator {
    color: #CBD5E1;
    font-size: 12px;
}

.breadcrumbs .current-crumb {
    color: #0F172A;
    font-weight: 700;
}

/* Blog Hero Banner */
.blog-hero {
    background: linear-gradient(135deg, #101C32 0%, #17243B 100%);
    color: #ffffff;
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 208, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(94, 208, 0, 0.15);
    color: #5ED000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(94, 208, 0, 0.3);
}

.blog-hero-title {
    color: #ffffff;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.blog-hero-title .text-green {
    color: #5ED000;
}

.blog-hero-subtitle {
    color: #94A3B8;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ==========================================================================
   7. MAIN BLOG LAYOUT & POST CARDS GRID
   ========================================================================== */
.blog-main-layout {
    padding: 48px 0 80px;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.blog-layout-grid.no-sidebar {
    grid-template-columns: 1fr;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

/* Post Card */
.post-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(94, 208, 0, 0.5);
}

.post-card-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0F172A;
    overflow: hidden;
}

.post-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #5ED000;
    color: #101C32;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: background 0.2s ease;
}

.post-card-category-badge:hover {
    background: #ffffff;
    color: #101C32;
}

.post-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748B;
    margin-bottom: 10px;
}

.post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #0F172A;
}

.post-card-title a {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card-title a:hover {
    color: #5ED000;
}

.post-card-excerpt {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    margin-top: auto;
}

.post-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #1E293B;
}

.post-card-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.post-read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #43A900;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.post-read-more-link:hover {
    color: #101C32;
    gap: 8px;
}

/* ==========================================================================
   8. PAGINATION
   ========================================================================== */
.posts-pagination {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.posts-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.posts-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    text-decoration: none;
    transition: var(--transition);
}

.posts-pagination .page-numbers:hover {
    background: #F1FBEA;
    color: #43A900;
}

.posts-pagination .page-numbers.current {
    background: #5ED000;
    color: #101C32;
    cursor: default;
}

.posts-pagination .page-numbers.dots {
    color: #94A3B8;
    min-width: 24px;
}

/* ==========================================================================
   9. SIDEBAR & WIDGETS
   ========================================================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F1F5F9;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #5ED000;
}

/* Search Widget */
.search-form {
    display: flex;
    align-items: center;
    position: relative;
}

.search-form .search-field {
    width: 100%;
    padding: 12px 44px 12px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    color: #172033;
    outline: none;
    transition: var(--transition);
}

.search-form .search-field:focus {
    border-color: #5ED000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(94, 208, 0, 0.15);
}

.search-form .search-submit {
    position: absolute;
    right: 6px;
    background: #5ED000;
    color: #101C32;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-form .search-submit:hover {
    background: #43A900;
    color: #ffffff;
}

/* Sidebar Hosting CTA Card */
.sidebar-promo-card {
    background: linear-gradient(135deg, #101C32 0%, #17243B 100%);
    border-radius: var(--radius-md);
    padding: 26px 22px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sidebar-promo-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(94, 208, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sidebar-promo-badge {
    display: inline-block;
    background: #5ED000;
    color: #101C32;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sidebar-promo-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #FF0055;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 0, 85, 0.4);
    letter-spacing: 0.04em;
}

.sidebar-promo-discount-badge .disc-pct {
    color: #FFF275;
    font-size: 13px;
}

.sidebar-promo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 12px;
}

.sidebar-promo-pricing {
    margin: 12px 0 20px;
}

.sidebar-promo-start-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.sidebar-promo-price {
    font-size: 2.1rem;
    font-weight: 900;
    color: #5ED000;
    line-height: 1.1;
    display: inline-block;
}

.sidebar-promo-price span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #94A3B8;
}

.sidebar-promo-regular {
    font-size: 13px;
    color: #94A3B8;
    margin-top: 4px;
}

.sidebar-promo-regular del {
    color: #EF4444;
    font-weight: 700;
}

/* Categories List */
.sidebar-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-categories-list li {
    margin-bottom: 8px;
}

.sidebar-categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    color: #334155;
    font-size: 14.5px;
    font-weight: 600;
    background: #F8FAFC;
    transition: all 0.2s ease;
}

.sidebar-categories-list a:hover {
    background: #F1FBEA;
    color: #43A900;
    transform: translateX(3px);
}

.sidebar-categories-list .cat-count {
    background: #E2E8F0;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.sidebar-categories-list a:hover .cat-count {
    background: #5ED000;
    color: #101C32;
}

/* Recent Posts List */
.sidebar-recent-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-recent-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #0F172A;
}

.sidebar-recent-content {
    flex: 1;
}

.sidebar-recent-title {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-recent-title a {
    color: #1E293B;
}

.sidebar-recent-title a:hover {
    color: #5ED000;
}

.sidebar-recent-date {
    font-size: 12px;
    color: #64748B;
}

/* ==========================================================================
   10. SINGLE POST ARTICLE LAYOUT
   ========================================================================== */
.single-post-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    overflow: hidden;
}

.single-post-header {
    margin-bottom: 28px;
}

.single-category-badge {
    display: inline-block;
    background: #5ED000;
    color: #101C32;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
    text-decoration: none;
}

.single-post-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.single-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    color: #64748B;
    font-size: 14px;
}

.single-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.single-author-name {
    font-weight: 700;
    color: #0F172A;
}

.single-featured-image-wrap {
    margin: 28px 0 36px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.single-featured-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* Rich Article Body Content (Typography) */
.entry-content {
    font-size: 1.075rem;
    line-height: 1.8;
    color: #334155;
}

.entry-content p {
    margin-bottom: 22px;
}

.entry-content h2 {
    font-size: 1.85rem;
    color: #0F172A;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.entry-content h3 {
    font-size: 1.45rem;
    color: #0F172A;
    margin-top: 32px;
    margin-bottom: 12px;
}

.entry-content h4 {
    font-size: 1.2rem;
    color: #0F172A;
    margin-top: 24px;
    margin-bottom: 10px;
}

.entry-content ul, .entry-content ol {
    margin: 0 0 24px 24px;
}

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

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

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    background: #F8FAFC;
    border-left: 4px solid #5ED000;
    padding: 18px 24px;
    margin: 28px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #1E293B;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content pre {
    background: #0F172A;
    color: #F8FAFC;
    padding: 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 24px 0;
}

.entry-content code {
    background: #F1F5F9;
    color: #0F172A;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.9em;
}

.entry-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
}

.entry-content th, .entry-content td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}

.entry-content th {
    background: #101C32;
    color: #ffffff;
    font-weight: 700;
}

.entry-content tr:nth-child(even) {
    background: #F8FAFC;
}

/* Post Tags Cloud */
.single-post-tags {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.single-post-tags span {
    font-weight: 700;
    color: #0F172A;
    font-size: 14px;
    margin-right: 4px;
}

.tag-pill {
    display: inline-block;
    background: #F1F5F9;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-pill:hover {
    background: #5ED000;
    color: #101C32;
}

/* Share Buttons */
.single-post-share {
    margin-top: 28px;
    padding: 18px 24px;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.share-label {
    font-weight: 700;
    color: #0F172A;
    font-size: 15px;
}

.share-buttons-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #ffffff;
}

.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #1877F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: #334155; }

/* Author Bio Card */
.author-box {
    margin-top: 36px;
    padding: 28px;
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-box-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.author-box-content p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Post Navigation (Prev/Next) */
.post-navigation {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous, .nav-next {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.nav-previous:hover, .nav-next:hover {
    border-color: #5ED000;
    background: #F1FBEA;
    transform: translateY(-2px);
}

.nav-direction-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 6px;
}

.nav-post-title {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-next {
    text-align: right;
}

/* ==========================================================================
   11. COMMENTS SECTION
   ========================================================================== */
.comments-area {
    margin-top: 48px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.comments-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F1F5F9;
}

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

.comment-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

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

.comment-item .children {
    list-style: none;
    margin-top: 20px;
    padding-left: 32px;
    border-left: 2px solid #E2E8F0;
}

.comment-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

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

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.comment-author-name {
    font-size: 15px;
    font-weight: 800;
    color: #0F172A;
}

.comment-date {
    font-size: 12.5px;
    color: #94A3B8;
}

.comment-text {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: #43A900;
}

.comment-reply-link:hover {
    color: #101C32;
}

/* Comment Respond Form */
.comment-respond {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid #F1F5F9;
}

.comment-reply-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comment-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    color: #172033;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

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

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #5ED000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(94, 208, 0, 0.15);
}

.form-submit input[type="submit"] {
    background: #00C853;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.25);
    transition: var(--transition);
}

.form-submit input[type="submit"]:hover {
    background: #00B34A;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 200, 83, 0.35);
}

/* ==========================================================================
   12. 404 & SEARCH RESULTS PAGE
   ========================================================================== */
.error-404-container {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-code {
    font-size: 6rem;
    font-weight: 900;
    color: #5ED000;
    line-height: 1;
    margin-bottom: 12px;
}

.error-404-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.error-404-desc {
    font-size: 16px;
    color: #64748B;
    margin-bottom: 28px;
}

/* ==========================================================================
   13. 4-COLUMN FOOTER (Matches 365ezone.com exact styles)
   ========================================================================== */
.site-footer {
    background-color: #101C32;
    color: #ffffff;
    padding: 64px 0 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-description {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    transition: all 0.2s ease;
}

.footer-social-link:hover {
    background: #5ED000;
    color: #101C32 !important;
    transform: translateY(-2px);
}

.footer-column-title {
    color: #5ED000;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #9CA3AF;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9CA3AF;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #5ED000;
}

/* ==========================================================================
   14. WORDPRESS CORE COMPATIBILITY CLASSES
   ========================================================================== */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.wp-caption {
    margin-bottom: 20px;
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    color: #64748B;
    text-align: center;
    margin-top: 6px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   15. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .desktop-nav-container {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .blog-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 72px;
    }

    .brand-logo img {
        width: 145px;
    }

    .btn-nav-login {
        display: none;
    }

    .blog-hero {
        padding: 40px 0 32px;
    }

    .blog-hero-title {
        font-size: 2rem;
    }

    .posts-grid, .posts-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .single-post-wrapper {
        padding: 24px;
    }

    .single-post-title {
        font-size: 1.75rem;
    }

    .single-post-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .comments-area {
        padding: 24px;
    }

    .comment-form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
