/*
Theme Name: AgenWebsite Theme
Theme URI: https://agenwebsite.com
Author: AgenWebsite
Author URI: https://agenwebsite.com
Description: A modern WordPress theme for AgenWebsite - E-commerce solutions provider for the Indonesian market. Features full Elementor support with custom widgets for showcasing WooCommerce plugins including shipping calculators, payment gateways, and WhatsApp notifications.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: agenwebsite
Tags: e-commerce, woocommerce, elementor, responsive, custom-widgets, business
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */

:root {
    --primary-color: #ff6600;
    --secondary-color: #015C80;
    --dark-blue: #0a1628;
    --light-gray: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.min-vh-75 {
    min-height: 75vh;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

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

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

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

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* ==========================================================================
   Top Banner
   ========================================================================== */

.top-banner {
    background: #ff1493;
    color: white;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.btn-banner {
    background-color: white;
    color: var(--text-dark);
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-banner:hover {
    background-color: #f8f9fa;
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation {
    background-color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-navigation.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 24px;
}

.logo-text {
    color: var(--text-dark);
}

.logo-light {
    font-weight: 300;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menus */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding-top: 18px;
    margin-top: 0;
    z-index: 1000;
    display: block;
}

/* Invisible bridge to prevent hover gap */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i,
.has-dropdown.dropdown-open .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

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

/* Search Button */
.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Get Started Button */
.btn-get-started {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* User Account Dropdown */
.user-account-dropdown {
    position: relative;
    display: inline-block;
}

/* Invisible bridge to prevent hover gap */
.user-account-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.btn-myaccount {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background-color: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-myaccount:hover {
    background-color: #e9ecef;
    border-color: var(--primary-color);
}

.btn-myaccount .user-avatar {
    border-radius: 50%;
    display: block;
    width: 24px;
    height: 24px;
}

.btn-myaccount i {
    color: var(--text-dark);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-account-dropdown:hover .btn-myaccount i,
.user-account-dropdown.dropdown-open .btn-myaccount i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-top: 18px;
    padding-bottom: 8px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding-left: 0;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

.user-account-dropdown:hover .user-dropdown-menu,
.user-account-dropdown.dropdown-open .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    list-style: none;
}

.user-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
}

.user-menu-link:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.user-menu-link i {
    width: 16px;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.user-menu-link:hover i {
    color: var(--primary-color);
}

/* Divider for dropdown menu */
.user-menu-item hr,
.user-menu-item .dropdown-divider {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid #e9ecef;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Search Modal
   ========================================================================== */

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.search-modal-content {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: white;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.search-container {
    padding: 30px 20px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 24px;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 20px 60px;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-input:focus {
    border-bottom-color: var(--primary-color);
}

.search-spinner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 24px;
    display: none;
}

.search-spinner.active {
    display: block;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px 0;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.search-result-item {
    display: block;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.search-result-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.search-result-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.search-result-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.search-result-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
}

.search-no-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    padding: 40px 20px;
}

.search-initial-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    padding: 20px;
}

/* Mobile responsive for search modal */
@media (max-width: 768px) {
    .search-modal-content {
        margin: 20px;
        border-radius: 15px;
    }

    .search-close {
        top: -40px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .search-input {
        font-size: 18px;
        padding: 15px 50px;
    }

    .search-icon {
        font-size: 20px;
        left: 15px;
    }

    .search-result-title {
        font-size: 16px;
    }

    .search-result-description {
        font-size: 13px;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hero-buttons .btn-primary:hover {
    background-color: #152944;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.hero-buttons .btn-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.hero-buttons .btn-link:hover {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Hero decorative shapes */
.hero-shape-1 {
    position: absolute;
    top: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-shape-2 {
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}

/* ==========================================================================
   Trusted Brands
   ========================================================================== */

.trusted-brands {
    padding: 60px 0;
    background-color: #fafbfc;
}

.brand-logo {
    opacity: 0.6;
    transition: var(--transition);
    max-width: 120px;
    height: auto;
}

.brand-logo:hover {
    opacity: 1;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    padding: 60px 0;
    background: white;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Advanced Features
   ========================================================================== */

.advanced-features {
    padding: 100px 0;
    background: white;
}

.feature-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-muted);
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: #a0a9b8;
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
}

.newsletter-form .form-control::placeholder {
    color: #a0a9b8;
}

.newsletter-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 20px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright {
    color: #a0a9b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: #a0a9b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 991px) {

    /* Navigation Mobile Styles */
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 20px;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 24px;
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        border-bottom: 2px solid var(--light-gray);
        background: white;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        padding: 0 24px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .nav-link {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        color: var(--text-dark);
        position: relative;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

    /* Mobile Dropdown Styles */
    .has-dropdown>.nav-link::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
    }

    .has-dropdown.active>.nav-link::after {
        transform: rotate(180deg);
    }

    .has-dropdown>.nav-link i {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            padding 0.3s ease;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .has-dropdown::after {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 12px 0 12px 16px;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 15px;
        border-radius: 6px;
        display: block;
        color: var(--text-dark);
    }

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

    /* Mobile Action Buttons Container */
    .nav-menu>.search-btn,
    .nav-menu>.btn-get-started,
    .nav-menu>.user-account-dropdown {
        margin: 16px 24px 0;
        width: calc(100% - 48px);
    }

    .search-btn {
        background-color: var(--light-gray);
        color: var(--text-dark);
        padding: 12px;
        border-radius: 8px;
        width: 100%;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
    }

    .search-btn:hover {
        background-color: #e9ecef;
    }

    .btn-get-started {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    /* User Account Dropdown Mobile */
    .user-account-dropdown {
        width: 100%;
        border-top: 2px solid var(--light-gray);
        padding-top: 16px;
        margin-top: 16px;
    }

    .btn-myaccount {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        background-color: var(--primary-color);
        color: white;
        border-radius: 8px;
        font-weight: 600;
    }

    .btn-myaccount:hover {
        background-color: #e55a00;
        border-color: transparent;
    }

    .btn-myaccount .user-avatar {
        width: 28px;
        height: 28px;
    }

    .btn-myaccount i {
        color: white;
    }

    .user-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 12px;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            padding 0.3s ease;
        background: var(--light-gray);
        border-radius: 8px;
    }

    .user-dropdown-menu::before {
        display: none;
    }

    .user-account-dropdown::after {
        display: none;
    }

    .user-account-dropdown.active .user-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 600px;
        padding: 8px 0;
    }

    .user-account-dropdown.active .btn-myaccount i {
        transform: rotate(180deg);
    }

    .user-menu-item {
        border-bottom: none;
    }

    .user-menu-link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 6px;
        margin: 0 8px;
    }

    .user-menu-link:hover {
        background-color: white;
    }

    .user-menu-item hr,
    .user-menu-item .dropdown-divider {
        margin: 8px 16px;
    }

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

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

    .hero-image {
        margin-top: 40px;
        transform: none;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }

    /* Archive Page Responsive */
    .page-header {
        padding: 80px 0 60px;
    }

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

    .plugin-description {
        min-height: auto;
    }

    .bundle-card {
        padding: 32px;
    }

    .bundle-title {
        font-size: 1.75rem;
    }

    .discount-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-banner {
        text-align: center;
        padding: 10px 15px;
    }

    .btn-banner {
        display: inline-block;
        margin-top: 8px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .video-wrapper {
        margin: 0 15px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .advanced-features {
        padding: 60px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }

    .btn-get-started {
        width: 100%;
        margin-top: 10px;
    }

    /* Archive Page Mobile */
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .plugins-archive {
        padding: 60px 0;
    }

    .plugins-archive .section-title {
        font-size: 1.875rem;
    }

    .plugin-card {
        margin-bottom: 30px;
    }

    .plugin-content {
        padding: 24px;
    }

    .plugin-price-box {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .bundle-card {
        padding: 24px;
    }

    .bundle-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .bundle-description {
        text-align: center;
        font-size: 1rem;
    }

    .bundle-includes {
        justify-content: center;
    }

    .bundle-price {
        text-align: center;
    }

    .discount-price {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }

    .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description br {
        display: none;
    }

    .section-title br {
        display: none;
    }

    .section-subtitle br {
        display: none;
    }

    .cta-title br {
        display: none;
    }

    .cta-subtitle br {
        display: none;
    }

    .brand-logo {
        max-width: 80px;
    }

    /* Archive Page Extra Small */
    .page-title {
        font-size: 1.75rem;
    }

    .plugins-archive .section-title {
        font-size: 1.5rem;
    }

    .plugin-title {
        font-size: 1.25rem;
    }

    .plugin-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .plugin-price-box .price {
        font-size: 1.5rem;
    }

    .bundle-title {
        font-size: 1.25rem;
    }

    .bundle-title i {
        font-size: 1.25rem;
    }

    .discount-price {
        font-size: 1.75rem;
    }

    .bundle-includes li {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ==========================================================================
   Stats Section (Hero)
   ========================================================================== */

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

/* Notification Badges (Hero) */
.notification-badge {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.notification-badge.badge-1 {
    top: 20%;
    right: -20px;
}

.notification-badge.badge-2 {
    top: 50%;
    left: -20px;
    animation-delay: 1s;
}

.notification-badge.badge-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Product Cards Section
   ========================================================================== */

.product-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
}

.product-features i {
    margin-right: 8px;
}

.product-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.product-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-price .period {
    color: var(--text-muted);
    margin-left: 5px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Product Card - Highlighted State */
.product-card--highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.15);
}

.product-card--highlighted:hover {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.25);
}

.product-card__highlight-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Product Card - Sale Badge */
.product-card__sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc3545;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Product Card - Sale Price */
.product-price .price--original {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.product-price .price--sale {
    font-size: 1.75rem;
    font-weight: 700;
    color: #dc3545;
}

.product-card--highlighted .product-price .price--sale {
    color: var(--primary-color);
}

/* Product Card - Countdown Timer */
.product-card__countdown {
    background: #fff8f0;
    border: 1px solid #ffe0c2;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: center;
}

.product-card__countdown-label {
    display: block;
    font-size: 12px;
    color: #e65100;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card__countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.product-card__countdown .countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.product-card__countdown .countdown-value {
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    min-width: 40px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.product-card__countdown .countdown-text {
    font-size: 10px;
    color: #999;
    margin-top: 3px;
    font-weight: 500;
}

.product-card__countdown .countdown-separator {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.product-card__countdown--expired .product-card__countdown-label {
    color: #999;
}

.product-card__countdown--expired .countdown-value {
    background: #ccc;
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */

.why-choose-section {
    padding: 100px 0;
    background: white;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin-right: 16px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ==========================================================================
   Page Header (Archive & Single Pages)
   ========================================================================== */

.page-header {
    background: var(--secondary-color);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Plugin Archive Page
   ========================================================================== */

.plugins-archive {
    padding: 80px 0;
    background: #f8f9fa;
}

.plugin-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.plugin-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.plugin-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.plugin-badge.badge-new {
    background: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.plugin-badge.badge-coming {
    background: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.plugin-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.plugin-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
}

.plugin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plugin-card:hover .plugin-image img {
    transform: scale(1.08);
}

.plugin-content {
    padding: 28px;
}

.plugin-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

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

.plugin-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f3f5;
}

.plugin-meta span {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.plugin-meta i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 13px;
}

.plugin-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
    min-height: 63px;
}

.plugin-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.plugin-features-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.plugin-features-list li i {
    margin-right: 10px;
    font-size: 14px;
}

.plugin-price-box {
    padding: 20px 0;
    border-top: 2px solid #f1f3f5;
    margin-bottom: 20px;
    text-align: center;
    background: #f8f9fa;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
}

.plugin-price-box .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-block;
}

.plugin-price-box .period {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plugin-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plugin-actions .btn {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.plugin-actions .btn-primary {
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.plugin-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.plugin-actions .btn-outline-primary {
    border-width: 2px;
}

.plugin-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Bundle Offer */
.bundle-offer-section {
    padding: 60px 0 40px;
}

.bundle-card {
    background: #fff9e6;
    border: 3px solid #ffc107;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.2);
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
}

.bundle-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 50%;
}

.bundle-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.bundle-title i {
    vertical-align: middle;
    font-size: 2rem;
}

.bundle-description {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 28px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.bundle-includes {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.bundle-includes li {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bundle-includes li:hover {
    transform: translateY(-2px);
}

.bundle-includes li i {
    margin-right: 8px;
    font-size: 16px;
}

.bundle-price {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.original-price {
    display: block;
    text-decoration: line-through;
    color: #dc3545;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.8;
}

.discount-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.bundle-price .period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   Plugin Single Page
   ========================================================================== */

.plugin-details {
    padding: 60px 0;
    background: #f8f9fa;
}

.plugin-header {
    margin-bottom: 30px;
}

.plugin-gallery {
    margin-bottom: 40px;
}

.plugin-gallery img {
    width: 100%;
    border-radius: 12px;
}

/* Plugin Sidebar */
.plugin-sidebar {
    position: sticky;
    top: 100px;
}

.purchase-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-display {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

.price-display .currency {
    font-size: 1.25rem;
    color: var(--text-muted);
}

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

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
    font-size: 14px;
}

/* Plugin Info Box */
.plugin-info-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-list .label {
    color: var(--text-muted);
    font-size: 14px;
}

.info-list .value {
    font-weight: 600;
    font-size: 14px;
}

/* Support Box */
.support-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

/* Related Products */
.related-products {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.related-item {
    display: flex;
    gap: 15px;
}

.related-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.related-info h6 {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Plugin Tabs */
.plugin-tabs {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    font-weight: 600;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

/* Reviews */
.review-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 14px;
}

/* Section Title Enhancement */
.plugins-archive .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.plugins-archive .section-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 24px;
    border: none;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #fff8f0;
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 24px;
    color: #6c757d;
    line-height: 1.8;
    font-size: 15px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.btn-warning {
    background-color: #ffc107;
    color: var(--text-dark);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-warning:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.125rem;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 12px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.sticky-top {
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   Landing Page Styles (Single Plugin Page)
   ========================================================================== */

/* Landing Hero Section */
.landing-hero {
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Landing Hero Container - handles boxed content */
.landing-hero-container {
    width: 100%;
    padding: 80px 15px;
}

/* Boxed Layout - content width controlled via Elementor */
.landing-hero.landing-hero-boxed .landing-hero-container {
    margin-left: auto;
    margin-right: auto;
}

/* Fullwidth Layout */
.landing-hero.landing-hero-fullwidth .landing-hero-container {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.landing-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.landing-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF;
}

.landing-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

.landing-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.landing-hero .hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Problem Section */
.problem-section .problem-header h2 {
    color: #1a1a2e;
}

.problem-section .problem-image img {
    border: 1px solid #e9ecef;
}

.problem-section .problem-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.problem-section .problem-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff5f5;
    border-radius: 10px;
    border: 1px solid #fee2e2;
    transition: all 0.2s ease;
}

.problem-section .problem-card:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

.problem-section .problem-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.problem-section .problem-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.problem-section .problem-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.problem-section .problem-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 8px;
    border: 1px solid #ffe082;
}

.problem-section .problem-alert i {
    color: #f59e0b;
    font-size: 16px;
    margin-top: 2px;
}

.problem-section .problem-alert span {
    font-size: 13px;
    color: #92400e;
    font-weight: 500;
    line-height: 1.5;
}

/* Expeditions Grid */
.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.expedition-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.expedition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Detailed Feature Sections */
.feature-detailed {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-detailed:nth-child(even) {
    background: #f8f9fa;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Pricing Section & Table */
.landing-hero~.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 100px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-period {
    font-size: 18px;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 5px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    font-size: 18px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.pricing-card.enterprise .pricing-cta {
    background: var(--secondary-color);
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-cta-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.pricing-cta-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.pricing-card.featured .pricing-cta-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-card.featured .pricing-cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Single Pricing Table */
.single-pricing-table {
    margin: 0 auto;
}

.single-pricing-table .pricing-card {
    width: 100%;
}

/* Sale Badge */
.pricing-sale-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Sale Price - Default Layout */
.pricing-price.pricing-price--original {
    font-size: 20px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.pricing-price.pricing-price--sale {
    color: #dc3545;
}

.pricing-card.featured .pricing-price.pricing-price--sale {
    color: var(--primary-color);
}

/* Sale Price - Horizontal Layout */
.pricing-hz-price.pricing-hz-price--original {
    font-size: 20px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.pricing-hz-price.pricing-hz-price--sale {
    color: #dc3545;
}

.pricing-card.featured .pricing-hz-price.pricing-hz-price--sale {
    color: var(--primary-color);
}

/* Sale Price - Square Layout */
.pricing-sq-price.pricing-sq-price--original {
    font-size: 18px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.pricing-sq-price.pricing-sq-price--sale {
    color: #dc3545;
}

.pricing-card.featured .pricing-sq-price.pricing-sq-price--sale {
    color: var(--primary-color);
}

/* Pricing Description */
.pricing-description {
    margin-bottom: 15px;
}

.pricing-description p {
    margin: 0;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.pricing-card.featured .pricing-description p {
    color: #555;
}

/* Coupon Code Section */
.pricing-coupon {
    padding: 0 20px;
    margin-bottom: 15px;
}

.pricing-coupon-inner {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px dashed #ffc107;
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-coupon-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 193, 7, 0.1) 10px,
            rgba(255, 193, 7, 0.1) 20px);
    pointer-events: none;
}

.coupon-label {
    display: block;
    font-size: 12px;
    color: #856404;
    margin-bottom: 5px;
    font-weight: 500;
    position: relative;
}

.coupon-code {
    display: inline-block;
    background: #ffc107;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-family: monospace;
    position: relative;
}

.coupon-description {
    display: block;
    font-size: 12px;
    color: #856404;
    margin-top: 5px;
    font-style: italic;
    position: relative;
}

.pricing-card.featured .pricing-coupon-inner {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: var(--primary-color);
}

.pricing-card.featured .coupon-label,
.pricing-card.featured .coupon-description {
    color: #e65100;
}

.pricing-card.featured .coupon-code {
    background: var(--primary-color);
    color: #fff;
}

/* Top Button (Above Features) */
.pricing-top-button {
    padding: 0 20px;
    margin-bottom: 15px;
}

.pricing-cta-top {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pricing-cta-top:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
}

.pricing-card.featured .pricing-cta-top {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pricing-card.featured .pricing-cta-top:hover {
    background: var(--primary-color);
    color: white;
}

.pricing-card.enterprise .pricing-cta-top {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pricing-card.enterprise .pricing-cta-top:hover {
    background: var(--secondary-color);
    color: white;
}

/* ==========================================================================
   Horizontal Layout
   ========================================================================== */
.single-pricing-table.layout-horizontal .pricing-card {
    padding: 40px;
}

.pricing-hz-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 30px;
}

.pricing-hz-left {
    flex-shrink: 0;
}

.pricing-hz-prefix {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4285f4;
    margin-bottom: 4px;
}

.pricing-hz-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pricing-hz-price {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.pricing-hz-period {
    font-size: 20px;
    font-weight: 400;
    color: #6c757d;
}

.pricing-hz-plan-name {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-top: 4px;
}

.pricing-hz-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

.pricing-hz-spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.pricing-hz-spec-item i {
    color: #4285f4;
    font-size: 18px;
}

.pricing-hz-description {
    margin-bottom: 20px;
}

.pricing-hz-description p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.pricing-hz-top-button {
    margin-bottom: 15px;
    max-width: 400px;
}

.pricing-hz-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.pricing-hz-divider {
    border-top: 1px solid #e9ecef;
    margin: 24px 0;
}

.pricing-hz-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pricing-hz-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-hz-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--secondary-color);
}

.pricing-hz-badge-icon i {
    color: white;
    font-size: 14px;
}

.pricing-hz-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Horizontal - Featured/Enterprise variants */
.pricing-card.featured .pricing-hz-prefix {
    color: var(--primary-color);
}

.pricing-card.featured .pricing-hz-spec-item i {
    color: var(--primary-color);
}

.pricing-card.enterprise .pricing-hz-prefix {
    color: var(--secondary-color);
}

.pricing-card.enterprise .pricing-hz-spec-item i {
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-hz-badge-icon {
    background-color: var(--primary-color);
}

/* ==========================================================================
   Square Layout
   ========================================================================== */
.single-pricing-table.layout-square .pricing-card {
    padding: 32px;
    text-align: center;
}

.pricing-sq-prefix {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4285f4;
    margin-bottom: 8px;
}

.pricing-sq-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.pricing-sq-price {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.pricing-sq-period {
    font-size: 18px;
    font-weight: 400;
    color: #6c757d;
}

.pricing-sq-plan-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.pricing-sq-description {
    margin-bottom: 20px;
}

.pricing-sq-description p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-sq-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-sq-divider {
    border-top: 1px solid #e9ecef;
    margin: 20px 0;
}

.pricing-sq-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: left;
}

.pricing-sq-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-sq-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--secondary-color);
}

.pricing-sq-badge-icon i {
    color: white;
    font-size: 12px;
}

.pricing-sq-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* Square - Featured/Enterprise variants */
.pricing-card.featured .pricing-sq-prefix {
    color: var(--primary-color);
}

.pricing-card.enterprise .pricing-sq-prefix {
    color: var(--secondary-color);
}

.pricing-card.featured .pricing-sq-badge-icon {
    background-color: var(--primary-color);
}

/* ==========================================================================
   Horizontal/Square Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .pricing-hz-top {
        flex-direction: column;
    }

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

    .pricing-hz-price {
        font-size: 40px;
    }

    .pricing-hz-buttons,
    .pricing-hz-top-button {
        max-width: 100%;
    }

    .pricing-sq-badges {
        grid-template-columns: 1fr;
    }
}

/* Steps Section */
.steps-section {
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Testimonial Cards (Landing Page Version) */
.landing-hero~section .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.landing-hero~section .testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.landing-hero~section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.landing-hero~section .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
}

/* FAQ Section (Landing Page Version) */
.landing-hero~.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.faq-answer {
    color: #6c757d;
    line-height: 1.6;
}

/* CTA Section (Landing Page Version) */
.landing-hero~.cta-section {
    background: var(--primary-color);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.landing-hero~.cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF;
}

.landing-hero~.cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #FFF;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

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

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Responsive Overrides for Landing Page */
@media (max-width: 768px) {
    .landing-hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .landing-hero.landing-hero-fullwidth .landing-hero-container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .landing-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* ==========================================================================
   Target Audience Section - Professional Clean Design
   ========================================================================== */

.target-audience-section {
    padding: 80px 0;
    background: white;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.target-card.suitable::before {
    background: #28a745;
}

.target-card.not-suitable::before {
    background: #6c757d;
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.target-card:hover::before {
    height: 6px;
}

.target-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.target-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.target-card:hover .target-card-icon {
    transform: scale(1.1);
}

.target-card.suitable .target-card-icon {
    background: #d4edda;
    color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.target-card.not-suitable .target-card-icon {
    background: #e2e3e5;
    color: #6c757d;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.target-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
}

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

.target-list li {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

.target-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.target-list li:first-child {
    padding-top: 0;
}

.target-list li:hover {
    padding-left: 8px;
    color: var(--text-dark);
}

.target-list-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.target-card.suitable .target-list-icon {
    background: #d4edda;
    color: #28a745;
}

.target-card.not-suitable .target-list-icon {
    background: #e2e3e5;
    color: #6c757d;
}

.target-list li:hover .target-list-icon {
    transform: scale(1.15);
}

.target-card.suitable .target-list li:hover .target-list-icon {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.target-card.not-suitable .target-list li:hover .target-list-icon {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .target-audience-section {
        padding: 60px 0;
    }

    .target-card {
        padding: 30px 24px;
        margin-bottom: 24px;
    }

    .target-card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .target-card-icon {
        margin-right: 0;
        margin-bottom: 16px;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .target-card-title {
        font-size: 1.25rem;
    }

    .target-list li {
        font-size: 14px;
    }
}

/* ==========================================================================
   How It Works Section - Professional Timeline Design
   ========================================================================== */

.how-it-works-section {
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: rgba(255, 102, 0, 0.02);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #fff5f0;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

/* Timeline connector line */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 65px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.step-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f8f9fa;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-content:hover::before {
    transform: scaleX(1);
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-number-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.step-number-badge {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s ease;
}

.step-content:hover .step-number-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.step-number-badge::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: white;
}

.step-number-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number-text {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.step-number-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #fff5f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    transform: rotateY(360deg);
    background: var(--primary-color);
    color: white;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.4;
}

.step-description {
    font-size: 14px;
    line-height: 1.8;
    color: #6c757d;
    text-align: center;
    margin-bottom: 20px;
}

.step-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-content:hover .step-image {
    transform: scale(1.05);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

.step-arrow {
    position: absolute;
    top: 50px;
    right: -15%;
    font-size: 32px;
    color: var(--primary-color);
    opacity: 0.3;
    z-index: 2;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.step-item:last-child .step-arrow {
    display: none;
}

/* Active state indicators */
.step-item.active .step-number-badge {
    background: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.step-item.active .step-number-text {
    background: #28a745;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 70px 0;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .steps-timeline::before {
        top: 65px;
        left: 50%;
        right: auto;
        width: 3px;
        height: calc(100% - 130px);
        background: #e9ecef;
        transform: translateX(-50%);
    }

    .step-arrow {
        display: none;
    }

    .step-number-badge {
        width: 100px;
        height: 100px;
    }

    .step-number-text {
        font-size: 36px;
    }

    .step-content {
        padding: 30px 24px;
    }

    .step-title {
        font-size: 1.125rem;
    }

    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .step-number-badge {
        width: 90px;
        height: 90px;
    }

    .step-number-text {
        font-size: 32px;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ==========================================================================
   Documentation Pages
   ========================================================================== */

/* Documentation Search */
.documentation-search {
    background: var(--light-gray);
}

.documentation-search .input-group-text {
    border-right: 0;
}

.documentation-search .form-control {
    border-left: 0;
}

.documentation-search .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* Documentation Archive Cards */
.documentation-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.documentation-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.documentation-card .documentation-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.documentation-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.documentation-icon.bg-shipping {
    background: var(--secondary-color);
}

.documentation-icon.bg-payments {
    background: #6f42c1;
}

.documentation-icon.bg-whatsapp {
    background: #25d366;
}

.documentation-icon.bg-jne {
    background: #ed1c24;
}

.documentation-icon.bg-invoice {
    background: #f59e0b;
}

.documentation-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.documentation-description {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.documentation-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.documentation-stats .stat-item {
    font-size: 14px;
    color: var(--text-muted);
}

.documentation-stats .stat-item i {
    color: var(--primary-color);
    margin-right: 5px;
}

.documentation-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-badge {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.documentation-card .documentation-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.documentation-card .documentation-content .btn {
    margin-top: auto;
}

/* Help Resources Section */
.help-resources-section {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
}

.help-option {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.help-option i {
    font-size: 24px;
    margin-top: 5px;
}

/* Getting Started Cards */
.getting-started-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.getting-started-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.getting-started-card .step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.getting-started-card .step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.getting-started-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.getting-started-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Popular Guides Cards */
.guide-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.guide-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.guide-card .guide-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--primary-color);
}

.guide-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.guide-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}

.guide-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.guide-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.guide-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.guide-link:hover i {
    transform: translateX(5px);
}

/* Documentation Header */
.documentation-header {
    background: var(--secondary-color);
    color: white;
    padding: 40px 0 30px;
}

.documentation-header .breadcrumb {
    background: transparent;
    margin-bottom: 20px;
}

.documentation-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.documentation-header .breadcrumb-item.active {
    color: white;
}

.documentation-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.documentation-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.documentation-main-title i {
    margin-right: 10px;
}

.documentation-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-top: 20px;
}

.documentation-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.documentation-meta .meta-item i {
    opacity: 0.8;
}

/* Documentation Content Layout */
.documentation-content {
    padding: 50px 0;
}

/* Sidebar Navigation */
.documentation-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.documentation-sidebar.sticky-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.documentation-sidebar .sidebar-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 15px;
}

.documentation-sidebar .sidebar-header h5 {
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}

.sidebar-nav .nav {
    flex-direction: column;
}

.sidebar-nav .nav-link {
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav .nav-link:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.sidebar-nav .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-nav .nav-link i {
    font-size: 14px;
    width: 18px;
}

.sidebar-nav .nav-link .toc-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.sidebar-nav .nav-link:hover .toc-icon {
    transform: translateX(3px);
    opacity: 1;
}

.sidebar-nav .nav-link.active .toc-icon {
    transform: translateX(3px);
    opacity: 1;
}

/* Sticky sidebar bottom position */
.documentation-sidebar.sticky-bottom {
    position: absolute;
    bottom: 20px;
}

.sidebar-nav .nav .nav {
    margin-left: 0;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 15px;
    border-left: 2px solid var(--light-gray);
}

.sidebar-nav .nav .nav li {
    list-style: none;
    margin-bottom: 4px;
}

.sidebar-nav .nav .nav .nav-link,
.sidebar-nav .nav .nav a {
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-muted);
    display: block;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
}

.sidebar-nav .nav .nav a::before {
    content: '→';
    position: absolute;
    left: -8px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.sidebar-nav .nav .nav a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
    padding-left: 20px;
}

.sidebar-nav .nav .nav a:hover::before {
    opacity: 1;
    left: 4px;
}

.sidebar-nav .nav .nav a.active {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 16px;
}

.sidebar-help {
    margin-top: 20px;
}

/* Main Documentation Content */
.documentation-main {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Documentation Content Headings */
.documentation-main .entry-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    scroll-margin-top: 100px;
    line-height: 1.3;
}

.documentation-main .entry-content h1:first-child {
    margin-top: 0;
}

.documentation-main .entry-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--light-gray);
    scroll-margin-top: 100px;
    line-height: 1.35;
}

.documentation-main .entry-content h2:first-child {
    margin-top: 0;
}

.documentation-main .entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    scroll-margin-top: 100px;
    line-height: 1.4;
}

.documentation-main .entry-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
    scroll-margin-top: 100px;
    line-height: 1.4;
}

.documentation-main .entry-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    scroll-margin-top: 100px;
    line-height: 1.45;
}

.documentation-main .entry-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    scroll-margin-top: 100px;
    line-height: 1.5;
}

/* Documentation Heading Icons (if using Font Awesome) */
.documentation-main .entry-content h2>i:first-child,
.documentation-main .entry-content h3>i:first-child,
.documentation-main .entry-content h4>i:first-child {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.doc-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--light-gray);
}

.doc-section:first-child {
    padding-top: 0;
}

.doc-section:last-of-type {
    border-bottom: none;
}

.doc-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.doc-section-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.doc-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.doc-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    scroll-margin-top: 100px;
}

.doc-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.doc-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.doc-content p {
    margin-bottom: 15px;
}

.doc-content ul,
.doc-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

.doc-content img {
    border: 1px solid #e9ecef;
}

.doc-content code {
    background: var(--light-gray);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e83e8c;
}

/* Step Badge */
.step-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

/* Step Instructions */
.step-instructions {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 6px;
    margin: 20px 0;
}

.step-instructions ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.step-instructions li {
    margin-bottom: 10px;
}

.step-instructions li:last-child {
    margin-bottom: 0;
}

.step-instructions ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Feature Highlight */
.feature-highlight {
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.feature-highlight h5 {
    margin-bottom: 8px;
}

.feature-highlight p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.requirement-item {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.requirement-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.requirement-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.requirement-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Settings List */
.settings-list {
    margin: 30px 0;
}

.setting-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.setting-item h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.setting-item p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.setting-value {
    margin-top: 10px;
}

.setting-example {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
}

.setting-example strong {
    color: var(--primary-color);
}

/* Troubleshooting Items */
.troubleshoot-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
}

.error-badge,
.warning-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-badge {
    background: #dc3545;
    color: white;
}

.warning-badge {
    background: #ffc107;
    color: var(--text-dark);
}

.troubleshoot-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.troubleshoot-item strong {
    color: var(--primary-color);
}

/* Documentation Footer */
.doc-footer {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
}

.feedback-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feedback-section .btn {
    margin-right: 10px;
}

/* Responsive Documentation */
@media (max-width: 991px) {
    .documentation-sidebar {
        margin-bottom: 30px;
    }

    .documentation-sidebar.sticky-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .documentation-main-title {
        font-size: 2rem;
    }

    .doc-section-title {
        font-size: 1.75rem;
    }

    .documentation-main {
        padding: 30px 20px;
    }

    .documentation-main .entry-content h1 {
        font-size: 2rem;
    }

    .documentation-main .entry-content h2 {
        font-size: 1.625rem;
        margin-top: 2rem;
    }

    .documentation-main .entry-content h3 {
        font-size: 1.375rem;
        margin-top: 1.75rem;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .documentation-header {
        padding: 30px 0 20px;
    }

    .documentation-main-title {
        font-size: 1.75rem;
    }

    .documentation-meta {
        gap: 15px;
        font-size: 13px;
    }

    .doc-section-title {
        font-size: 1.5rem;
    }

    .doc-content h3 {
        font-size: 1.25rem;
    }

    .documentation-main {
        padding: 20px 15px;
    }

    .documentation-main .entry-content h1 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .documentation-main .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .documentation-main .entry-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }

    .documentation-main .entry-content h4 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
    }

    .documentation-main .entry-content h5 {
        font-size: 1rem;
    }

    .documentation-main .entry-content h6 {
        font-size: 0.9375rem;
    }

    .step-instructions {
        padding: 15px 20px;
    }

    .troubleshoot-item {
        padding: 20px;
    }

    .documentation-card {
        padding: 20px;
    }

    .documentation-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .getting-started-card {
        padding: 25px 20px;
    }

    .help-resources-section {
        padding: 30px 20px;
    }

    /* Submenu mobile styles */
    .sidebar-nav .nav .nav {
        padding-left: 10px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    .sidebar-nav .nav .nav a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .sidebar-nav .nav .nav a:hover {
        padding-left: 18px;
    }

    .sidebar-nav .nav .nav a.active {
        padding-left: 14px;
    }
}

/* ==========================================================================
   Documentation Knowledge Base — Category & Article Layout
   ========================================================================== */

/* Archive — Category Cards */
.doc-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
}

.doc-category-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    color: inherit;
    text-decoration: none;
}

.doc-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.doc-category-image {
    width: 100%;
    overflow: hidden;
    background: var(--light-gray);
}

.doc-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.doc-category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: var(--secondary-color);
}

.doc-category-image-placeholder.bg-shipping { background: var(--secondary-color); }
.doc-category-image-placeholder.bg-payments { background: #6f42c1; }
.doc-category-image-placeholder.bg-whatsapp { background: #25d366; }
.doc-category-image-placeholder.bg-storekit { background: var(--primary-color); }

.doc-category-info {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.doc-category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.doc-category-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.doc-category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--light-gray);
}

.doc-article-count {
    font-size: 13px;
    color: var(--text-muted);
}

.doc-article-count i {
    color: var(--secondary-color);
    margin-right: 4px;
}

.doc-category-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.doc-category-cta i {
    transition: transform 0.3s ease;
}

.doc-category-card:hover .doc-category-cta i {
    transform: translateX(4px);
}

/* Sidebar — Category Navigation */
.doc-category-sidebar {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-width: 0;
}

.doc-category-sidebar.sticky-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.doc-category-sidebar .sidebar-header {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 10px;
}

.doc-category-sidebar .sidebar-header h5 {
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.doc-category-sidebar .sidebar-header h5 i {
    color: var(--primary-color);
    margin-right: 6px;
}

.doc-category-sidebar .nav-link {
    color: var(--text-muted);
    padding: 10px 12px;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 0;
}

.doc-category-sidebar .nav-link:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.doc-category-sidebar .nav-link.active {
    background: var(--secondary-color);
    color: #fff;
}

.doc-category-sidebar .nav-link i {
    font-size: 14px;
    width: 18px;
    flex-shrink: 0;
}

.sidebar-cat-title {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Article Count Badge */
.doc-article-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.doc-category-sidebar .nav-link.active .doc-article-count-badge {
    background: rgba(255, 255, 255, 0.25);
}

/* Sub-article List */
.doc-subarticle-list {
    list-style: none;
    margin: 4px 0 8px;
    padding: 0 0 0 10px;
    border-left: 2px solid var(--light-gray);
}

.doc-subarticle-list li {
    margin-bottom: 2px;
}

.doc-subarticle-list a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    line-height: 1.4;
}

.doc-subarticle-list a:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.doc-subarticle-list a.active {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 8px;
}

/* Category View — Article Cards Grid */
.doc-category-intro {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.doc-article-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.doc-article-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.doc-article-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.doc-article-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.doc-article-card-title a {
    color: var(--text-dark);
    text-decoration: none;
}

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

.doc-article-card-excerpt {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.doc-article-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.doc-article-card-link:hover {
    color: var(--secondary-color);
}

.doc-article-card-link i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.doc-article-card-link:hover i {
    transform: translateX(4px);
}

/* Article View — In-Article TOC */
.doc-article-toc {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    border-left: 4px solid var(--secondary-color);
}

.doc-article-toc-header {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.doc-article-toc-header i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.doc-article-toc-list {
    margin: 0;
    padding-left: 20px;
}

.doc-article-toc-list li {
    margin-bottom: 6px;
}

.doc-article-toc-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.doc-article-toc-list a:hover {
    color: var(--primary-color);
}

/* Article View — Prev/Next Navigation */
.doc-article-nav {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.doc-nav-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: var(--transition);
}

.doc-nav-link:hover {
    background: #e9ecef;
    text-decoration: none;
}

.doc-nav-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.doc-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.4;
}

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

/* Responsive — Knowledge Base */
@media (max-width: 991px) {
    .doc-category-sidebar {
        margin-bottom: 24px;
    }

    .doc-category-sidebar.sticky-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .doc-category-image {
        height: 150px;
    }
}

@media (max-width: 767px) {
    .doc-category-card {
        flex-direction: column;
    }

    .doc-category-image {
        height: 140px;
    }

    .doc-category-info {
        padding: 16px 18px 20px;
    }

    .doc-article-card {
        padding: 18px;
    }

    .doc-article-toc {
        padding: 16px 18px;
    }

    .doc-article-nav .row > .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .doc-nav-link {
        margin-bottom: 10px;
    }

    .doc-nav-next {
        text-align: left;
    }

    .doc-subarticle-list {
        margin-left: 20px;
    }
}

/* ==========================================================================
   Blog & Post Styles
   ========================================================================== */

/* Blog Filter Section */
.blog-filter {
    border-bottom: 1px solid #e9ecef;
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-search .input-group-text {
    border-right: 0;
}

.blog-search .form-control {
    border-left: 0;
}

.blog-search .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.featured-post:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.category-tutorial {
    background: #e7f3ff;
    color: #0066cc;
}

.category-badge.category-tips {
    background: #fff3e0;
    color: #ff9800;
}

.category-badge.category-update {
    background: #f3e5f5;
    color: #9c27b0;
}

.category-badge.category-case-study {
    background: #e8f5e9;
    color: #4caf50;
}

.post-date {
    font-size: 13px;
    color: var(--text-muted);
}

.post-date i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    margin-top: auto;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.author-mini img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.reading-time {
    font-size: 13px;
    color: var(--text-muted);
}

.reading-time i {
    margin-right: 5px;
}

/* Post Header */
.post-header {
    padding: 60px 0 30px;
    background: var(--light-gray);
}

.post-meta-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.author-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-details h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    color: var(--text-muted);
    font-size: 14px;
}

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

.share-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 5px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Featured Image */
.post-featured-image {
    padding: 40px 0;
    background: var(--light-gray);
}

/* Post Content */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    scroll-margin-top: 100px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.post-content .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 30px;
}

/* Content Callouts */
.content-callout {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.content-callout.callout-info {
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
}

.content-callout.callout-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.content-callout.callout-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

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

.callout-icon i {
    font-size: 28px;
    color: inherit;
}

.callout-info .callout-icon i {
    color: #0066cc;
}

.callout-success .callout-icon i {
    color: #4caf50;
}

.callout-warning .callout-icon i {
    color: #ff9800;
}

.callout-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Content Image */
.content-image {
    margin: 40px 0;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

/* Content Code */
.content-code {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #282c34;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #21252b;
    border-bottom: 1px solid #181a1f;
}

.code-language {
    color: #abb2bf;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: transparent;
    border: 1px solid #3e4451;
    color: #abb2bf;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: #3e4451;
    color: white;
}

.content-code pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.content-code code {
    color: #abb2bf;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

/* Content Highlight */
.content-highlight {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.content-highlight h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Post Tags */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid var(--light-gray);
}

.tags-label {
    font-weight: 600;
    color: var(--text-dark);
}

.tag-link {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-bio-content h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.author-bio-content h6 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.author-bio-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Related Posts */
.related-posts h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.related-post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.related-post-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-category {
    background: var(--light-gray);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.related-post-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-post-content h5 a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Comments Section */
.comments-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.comment {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.comment-content {
    flex: 1;
}

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

.comment-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.author-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

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

.comment-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.comment-reply-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.comment-reply-btn:hover {
    color: var(--secondary-color);
}

.comment-reply {
    margin-left: 40px;
    margin-top: 20px;
}

/* Comment Form */
.comment-form {
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.comment-form h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* TOC Navigation */
.toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin-bottom: 10px;
}

.toc-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
}

.toc-nav a:hover {
    color: var(--primary-color);
    background: var(--light-gray);
    padding-left: 20px;
}

/* Popular Posts Widget */
.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-post-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.popular-post-content h6 a:hover {
    color: var(--primary-color);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.category-list i {
    margin-right: 10px;
    color: var(--text-muted);
}

.category-list .count {
    color: var(--text-muted);
    font-size: 13px;
}

/* CTA Widget */
.widget-cta {
    background: var(--primary-color);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.cta-content h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
}

.newsletter-form-inline .input-group {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form-inline .form-control {
    border: none;
    padding: 15px 20px;
}

.newsletter-form-inline .btn {
    padding: 15px 30px;
    font-weight: 600;
}

/* ==========================================================================
   Page Content Styles
   ========================================================================== */

/* Page Sections */
.page-content {
    color: var(--text-dark);
}

.page-intro {
    text-align: center;
}

.page-section {
    margin-bottom: 60px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

/* Info Boxes */
.info-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.info-box:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-position {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-check {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Page CTA */
.page-cta {
    margin-top: 60px;
}

.cta-box {
    background: var(--primary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    color: white;
}

.cta-box h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Partners Section */
.partner-logo {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-icon svg,
.feature-icon svg {
    margin: 20px;
    fill: #FFF;
}

.feature-icon svg {
    fill: var(--primary-color, #f60);
}

.woocommerce table.shop_table th {
    border: 0px;
    padding: 10px;
}

.woocommerce table.shop_table th a {
    color: #FFF;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 20% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 80%;
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
    border: 0px;
    padding: 10px !important;
    margin: 0 !important;
}

.woocommerce table.my_account_orders .button {
    padding: 10px;
    font-size: 12px !important;
    border-radius: 5px;
    font-weight: normal;
}

/* Responsive Styles for Blog & Pages */
@media (max-width: 991px) {
    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 30px;
    }

    .post-title {
        font-size: 2rem;
    }

    .author-info-header {
        flex-wrap: wrap;
    }

    .social-share {
        width: 100%;
        margin-top: 15px;
    }

    .blog-sidebar {
        margin-top: 50px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .category-filters {
        justify-content: center;
    }

    .blog-search {
        margin-top: 20px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

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

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.25rem;
    }

    .comment {
        flex-direction: column;
    }

    .comment-reply {
        margin-left: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-404 {
    padding: 80px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    padding: 40px 0;
}

.error-404-icon {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.error-404-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.error-404-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-404-search .input-group {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.error-404-search .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
}

.error-404-search .btn {
    padding: 15px 30px;
    border: none;
}

.error-404-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.error-404-links .btn {
    padding: 12px 30px;
    font-weight: 500;
}

.error-404-suggestions {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.suggestions-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.suggestion-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.suggestion-thumbnail {
    overflow: hidden;
}

.suggestion-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.suggestion-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.suggestion-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.suggestion-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

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

.suggestion-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.suggestion-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.suggestion-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.suggestion-link i {
    font-size: 12px;
}

/* Responsive Styles for 404 Page */
@media (max-width: 768px) {
    .error-404 {
        padding: 40px 0;
    }

    .error-404-icon {
        font-size: 80px;
    }

    .error-404-title {
        font-size: 80px;
    }

    .error-404-subtitle {
        font-size: 24px;
    }

    .error-404-text {
        font-size: 16px;
    }

    .error-404-links {
        flex-direction: column;
        align-items: stretch;
    }

    .error-404-links .btn {
        width: 100%;
    }

    .suggestions-title {
        font-size: 20px;
    }

    .suggestion-thumbnail img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .error-404-title {
        font-size: 60px;
    }

    .error-404-subtitle {
        font-size: 20px;
    }
}

/* ==========================================================================
   Current Plugin Indicator (Single Plugin Page)
   ========================================================================== */

.plugin-card.current-plugin {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 25px rgba(255, 102, 0, 0.2);
}

.current-plugin-indicator {
    position: absolute;
    top: 50px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.current-plugin-indicator i {
    margin-right: 4px;
}

.plugin-card.current-plugin .plugin-title a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

article.documentation img {
    background: radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 12px 13px/10px 10px,
        radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 26px 13px/10px 10px,
        radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 40px 13px/10px 10px,
        linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)) no-repeat 0 35px/100% 1px,
        #fff;
    padding-top: 36px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .current-plugin-indicator {
        top: 45px;
        right: 10px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

.screenshot {
    background: radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 12px 13px/10px 10px,
        radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 26px 13px/10px 10px,
        radial-gradient(circle, #e0e0e0 5px, transparent 5px) no-repeat 40px 13px/10px 10px,
        linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)) no-repeat 0 35px/100% 1px,
        #fff;
    padding-top: 36px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-bottom: 5px;
}

/* ==========================================================================
   Blog Archive Page
   ========================================================================== */

/* Blog Page Header */
.blog-page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    padding: 100px 0 60px;
}

.blog-page-header .page-title {
    color: white;
    margin-bottom: 15px;
}

.blog-page-header .archive-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.blog-page-header .archive-description p {
    margin-bottom: 0;
}

/* Blog Archive Section */
.blog-archive-section {
    padding: 60px 0;
    background: var(--light-gray);
}

/* Blog Image Placeholder */
.blog-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #adb5bd;
    font-size: 48px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 20px;
    padding-top: 30px;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: var(--border-radius);
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.blog-pagination .page-numbers:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.blog-pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    color: var(--text-muted);
    pointer-events: none;
}

.blog-pagination .prev,
.blog-pagination .next {
    font-size: 14px;
    gap: 6px;
}

/* No Posts State */
.blog-no-posts {
    padding: 80px 0;
}

.blog-no-posts i {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
    display: block;
}

.blog-no-posts h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-no-posts p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar Sticky */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* Responsive Blog Archive */
@media (max-width: 991px) {
    .blog-page-header {
        padding: 80px 0 50px;
    }

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

    .blog-archive-section {
        padding: 40px 0;
    }

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .blog-page-header {
        padding: 70px 0 40px;
    }

    .blog-page-header .page-title {
        font-size: 1.75rem;
    }

    .blog-archive-section {
        padding: 30px 0;
    }

    .blog-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 14px;
    }

    .featured-post .row {
        flex-direction: column;
    }

    .featured-image {
        min-height: 200px;
    }

    .featured-content {
        padding: 25px;
    }

    .featured-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Single Post Page
   ========================================================================== */

/* Post Header - Single */
.post-header {
    padding: 100px 0 30px;
    background: var(--light-gray);
}

.post-header .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 15px;
}

.post-header .breadcrumb-item {
    color: var(--text-muted);
    font-size: 14px;
}

.post-header .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.post-header .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.post-header .breadcrumb-item.active {
    color: var(--text-muted);
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.post-header .author-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.post-header .author-details h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.post-header .author-details h6 a:hover {
    color: var(--primary-color);
}

.post-header .author-avatar-large {
    width: 50px;
    height: 50px;
}

/* Featured Image - Single */
.post-featured-image {
    padding: 0;
    background: var(--light-gray);
}

.post-featured-image-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-height: 500px;
}

.post-featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Single Post Section */
.single-post-section {
    padding: 50px 0 30px;
}

/* Post Content Images */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 10px 0;
}

.post-content figure {
    margin: 30px 0;
}

.post-content figcaption {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

/* Post Content Blockquote */
.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 30px 0;
    background: var(--light-gray);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
}

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

.post-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

/* Post Content Table */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.post-content table thead th {
    background: var(--secondary-color);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.post-content table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
}

.post-content table tbody tr:hover {
    background: var(--light-gray);
}

/* Post Content Pre/Code */
.post-content pre {
    background: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 30px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.post-content code {
    background: var(--light-gray);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* Page Links */
.page-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-weight: 600;
    color: var(--text-dark);
}

.page-links .post-page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.page-links .post-page-numbers:hover,
.page-links .post-page-numbers.current {
    background: var(--primary-color);
    color: white;
}

/* Post Navigation */
.post-navigation {
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.post-nav-link {
    display: block;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.post-nav-link:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.post-nav-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.post-nav-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.post-nav-link:hover .post-nav-title {
    color: var(--primary-color);
}

/* Related Posts Section */
.related-posts-section {
    padding: 50px 0;
    background: var(--light-gray);
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* WordPress Comments Override */
.single-post-section .comments-area {
    margin-top: 40px;
}

.single-post-section .comments-area .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post-section .comments-area .comment-body {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.single-post-section .comments-area .comment-body .comment-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.single-post-section .comments-area .comment-body .comment-author .fn {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.single-post-section .comments-area .comment-metadata a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.single-post-section .comments-area .reply a {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.single-post-section .comments-area .reply a:hover {
    color: var(--secondary-color);
}

.single-post-section .comment-respond {
    margin-top: 30px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.single-post-section .comment-respond .comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.single-post-section .comment-respond .comment-form-comment label,
.single-post-section .comment-respond .comment-form-author label,
.single-post-section .comment-respond .comment-form-email label,
.single-post-section .comment-respond .comment-form-url label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.single-post-section .comment-respond textarea,
.single-post-section .comment-respond input[type="text"],
.single-post-section .comment-respond input[type="email"],
.single-post-section .comment-respond input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.single-post-section .comment-respond textarea:focus,
.single-post-section .comment-respond input[type="text"]:focus,
.single-post-section .comment-respond input[type="email"]:focus,
.single-post-section .comment-respond input[type="url"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.single-post-section .comment-respond .form-submit .submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.single-post-section .comment-respond .form-submit .submit:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Responsive Single Post */
@media (max-width: 991px) {
    .post-header {
        padding: 80px 0 25px;
    }

    .post-header .author-info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-header .social-share {
        margin-left: 0;
    }

    .single-post-section .blog-sidebar {
        position: static;
        margin-top: 40px;
    }

    .post-featured-image-wrapper {
        max-height: 350px;
    }
}

@media (max-width: 767px) {
    .post-header {
        padding: 70px 0 20px;
    }

    .post-header .post-title {
        font-size: 1.5rem;
    }

    .post-header .breadcrumb-item.active {
        max-width: 180px;
    }

    .post-featured-image-wrapper {
        max-height: 250px;
    }

    .single-post-section {
        padding: 30px 0 20px;
    }

    .post-navigation .row {
        gap: 15px;
    }

    .post-navigation .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left !important;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        margin: 0 auto;
    }

    .author-bio .btn {
        display: block;
    }

    .related-posts-section {
        padding: 30px 0;
    }

    .related-posts-title {
        font-size: 1.5rem;
    }
}