/*
Theme Name: Aquilisio Child
Template: aquilisio-2026
Version: 1.0.0
Text Domain: aquilisio-child
*/

/* Aquilisio Child Theme - 8892 Design */
:root {
            --bg-primary: #050507;
            --bg-secondary: #0a0a0f;
            --bg-tertiary: #12121a;
            --bg-card: #0e0e14;
            --accent-primary: #6366f1;
            --accent-secondary: #8b5cf6;
            --accent-tertiary: #d946ef;
            --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --text-muted: #71717a;
            --border-color: rgba(255,255,255,0.08);
            --glow: 0 0 40px rgba(99,102,241,0.3);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }
        
        /* Animated background */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }
        
        .bg-glow {
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(99,102,241,0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 70%, rgba(217,70,239,0.06) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-2%, -2%); }
        }
        
        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(99,102,241,0.3); }
            50% { box-shadow: 0 0 40px rgba(99,102,241,0.5); }
        }
        
        @keyframes slide-up {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5,5,7,0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
        }
        
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        
        .nav-links {
            display: flex;
            gap: 10px;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.22s ease, filter 0.22s ease;
        }

        .nav-links > li > a {
            display: inline-block;
            padding: 8px 4px;
            position: relative;
        }

        .nav-links > li > a::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 1px;
            opacity: 0;
            transform: scaleX(0.24);
            transform-origin: center;
            transition: transform 0.22s ease, opacity 0.22s ease;
            background: linear-gradient(90deg, rgba(99,102,241,0), rgba(99,102,241,0.9), rgba(217,70,239,0.86), rgba(217,70,239,0));
        }

        .nav-links > li > a:hover,
        .nav-links > .current-menu-item > a,
        .nav-links > .current_page_item > a,
        .nav-links > .current-menu-ancestor > a {
            color: var(--text-primary);
            filter: drop-shadow(0 0 10px rgba(99,102,241,0.22));
        }

        .nav-links > li > a:hover::before,
        .nav-links > .current-menu-item > a::before,
        .nav-links > .current_page_item > a::before,
        .nav-links > .current-menu-ancestor > a::before {
            opacity: 0.95;
            transform: scaleX(1);
        }

        .nav-links.group-hover-marketing > li.nav-group-marketing > a::before,
        .nav-links.group-hover-websupport > li.nav-group-websupport > a::before {
            opacity: 0.86;
            transform: scaleX(1);
        }

        .nav-links.group-hover-marketing > li.nav-group-marketing > a,
        .nav-links.group-hover-websupport > li.nav-group-websupport > a {
            color: var(--text-primary);
        }

        .nav-links.group-hover-marketing > li.nav-group-parent-marketing > a,
        .nav-links.group-hover-websupport > li.nav-group-parent-websupport > a {
            color: #fff;
            filter: drop-shadow(0 0 14px rgba(99,102,241,0.28));
        }

        .nav-links > .menu-item-has-children > a {
            padding-right: 28px;
        }

        .nav-links > .menu-item-has-children > a::after {
            content: "▾";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border-radius: 999px;
            border: 1px solid rgba(99,102,241,0.45);
            background: rgba(99,102,241,0.12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            line-height: 1;
            color: rgba(255,255,255,0.92);
            box-shadow: inset 0 0 0 1px rgba(9,12,20,0.45);
            transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
        }

        .nav-links > .menu-item-has-children:hover > a::after,
        .nav-links > .menu-item-has-children.open > a::after {
            transform: translateY(-50%) rotate(180deg);
            background: rgba(99,102,241,0.2);
            border-color: rgba(99,102,241,0.72);
            color: #fff;
        }
        
        .nav-cta {
            padding: 10px 20px;
            background: var(--accent-gradient);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: var(--glow);
        }

        .nav-cta,
        .nav-cta:hover,
        .nav-cta:focus-visible {
            text-decoration: none;
        }

        .nav-cta::before {
            display: none;
            content: none;
        }

        .nav-lang {
            position: relative;
            display: inline-flex;
            align-items: center;
            margin-left: 10px;
            margin-right: 8px;
        }

        .nav-lang .nav-lang-toggle {
            appearance: none;
            border: 1px solid var(--border-color);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            height: 28px;
            border-radius: 7px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .04em;
            padding: 0 24px 0 10px;
            cursor: pointer;
            transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        }

        .nav-lang .nav-lang-toggle::after {
            content: "▾";
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 10px;
            color: rgba(255, 255, 255, 0.78);
            pointer-events: none;
            transition: transform 0.2s ease;
        }

        .nav-lang.open .nav-lang-toggle::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .nav-lang .nav-lang-toggle:hover,
        .nav-lang.open .nav-lang-toggle {
            border-color: rgba(99, 102, 241, 0.52);
            color: #fff;
            background: rgba(99, 102, 241, 0.16);
        }

        .nav-lang .nav-lang-list {
            position: absolute;
            right: 0;
            top: calc(100% + 8px);
            min-width: 68px;
            display: none;
            padding: 6px;
            border-radius: 10px;
            border: 1px solid rgba(99, 102, 241, 0.28);
            background: linear-gradient(180deg, rgba(18,18,30,0.97), rgba(10,10,16,0.98));
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36);
            z-index: 180;
        }

        .nav-lang.open .nav-lang-list {
            display: block;
        }

        .nav-lang .lang-option {
            display: block;
            text-align: center;
            text-decoration: none;
            padding: 8px 10px;
            border-radius: 7px;
            color: var(--text-secondary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .04em;
            border: 1px solid transparent;
        }

        .nav-lang .lang-option:hover {
            color: #fff;
            border-color: rgba(99, 102, 241, 0.46);
            background: rgba(99, 102, 241, 0.18);
        }

        .nav-lang .lang-option.is-active {
            color: #fff;
            border-color: rgba(99, 102, 241, 0.64);
            background: rgba(99, 102, 241, 0.24);
        }
        
        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .hero-content {
            animation: slide-up 0.8s ease-out;
        }
        
        .hero h1 {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 24px;
        }
        
        .hero h1 .gradient {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 16px 32px;
            background: var(--accent-gradient);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse-glow 3s infinite;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--glow);
        }
        
        .btn-secondary {
            padding: 16px 32px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--accent-primary);
        }
        
        /* Services Section */
        .services { padding: 100px 0; }
        
        .section-header {
            text-align: center;
            margin-bottom: 64px;
            animation: slide-up 0.8s ease-out;
        }
        
        .section-header h2 {
            font-size: 40px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.4s ease;
            animation: fade-in 0.6s ease-out;
            animation-fill-mode: both;
        }
        
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-primary);
            box-shadow: var(--glow);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--accent-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
        }
        
        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .service-card p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
        }
        
        .service-features li {
            font-size: 14px;
            color: var(--text-muted);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-features li i {
            color: var(--accent-primary);
            font-size: 12px;
        }
        
        /* Why Choose Us */
        .why-us {
            padding: 100px 0;
            background: var(--bg-secondary);
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 48px;
            align-items: center;
        }
        
        .why-content h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        
        .why-list {
            list-style: none;
        }
        
        .why-list li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .why-list li i {
            color: var(--accent-primary);
            font-size: 20px;
            margin-top: 2px;
        }
        
        .why-list span {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        .why-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        
        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            border-color: var(--accent-primary);
            transform: scale(1.02);
        }
        
        .stat-value {
            font-size: 42px;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 8px;
        }
        
        /* CTA */
        .cta {
            padding: 120px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }
        
        .cta p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }
        
        /* Footer */
        footer {
            padding: 48px 0;
            border-top: 1px solid var(--border-color);
            text-align: center;
        }
        
        footer p {
            color: var(--text-muted);
            font-size: 14px;
        }
        
@media (max-width: 768px) {
            .nav-links { display: none; }
            .services-grid, .why-grid, .why-stats { grid-template-columns: 1fr; }
        }

/* Global menu behavior */
header .mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 !important;
    line-height: 1 !important;
}

header .mobile-menu-icon,
header .mobile-menu-icon::before,
header .mobile-menu-icon::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    content: "";
    color: inherit;
}

header .mobile-menu-icon {
    position: relative;
}

header .mobile-menu-icon::before {
    position: absolute;
    top: -5px;
    left: 0;
}

header .mobile-menu-icon::after {
    position: absolute;
    top: 5px;
    left: 0;
}

header .nav-links > li {
    position: relative;
}

header .nav-links > li > a {
    display: inline-block;
    padding: 8px 4px;
    position: relative;
}

header .nav-links > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    opacity: 0;
    transform: scaleX(0.24);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
    background: linear-gradient(90deg, rgba(99,102,241,0), rgba(99,102,241,0.9), rgba(217,70,239,0.86), rgba(217,70,239,0));
}

header .nav-links > li > a:hover,
header .nav-links > .current-menu-item > a,
header .nav-links > .current_page_item > a,
header .nav-links > .current-menu-ancestor > a {
    color: var(--text-primary);
    filter: drop-shadow(0 0 10px rgba(99,102,241,0.2));
}

header .nav-links > li > a:hover::before,
header .nav-links > .current-menu-item > a::before,
header .nav-links > .current_page_item > a::before,
header .nav-links > .current-menu-ancestor > a::before {
    opacity: 0.95;
    transform: scaleX(1);
}

header .nav-links.group-hover-marketing > li.nav-group-marketing > a::before,
header .nav-links.group-hover-websupport > li.nav-group-websupport > a::before {
    opacity: 0.86;
    transform: scaleX(1);
}

header .nav-links.group-hover-marketing > li.nav-group-marketing > a,
header .nav-links.group-hover-websupport > li.nav-group-websupport > a {
    color: var(--text-primary);
}

header .nav-links.group-hover-marketing > li.nav-group-parent-marketing > a,
header .nav-links.group-hover-websupport > li.nav-group-parent-websupport > a {
    color: #fff;
    filter: drop-shadow(0 0 14px rgba(99,102,241,0.28));
}

header .nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: 12px;
    background: linear-gradient(180deg, rgba(18,18,30,0.97), rgba(10,10,16,0.98));
    border: 1px solid rgba(99,102,241,0.28);
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    display: block !important;
    z-index: 120;
}

header .nav-links > li:hover > .sub-menu,
header .nav-links > li.open > .sub-menu,
header .nav-links > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

header .nav-links .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid transparent;
}

header .nav-links .sub-menu a:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.16), rgba(217,70,239,0.12));
    border-color: rgba(99,102,241,0.25);
}

header .nav-links > .menu-item-has-children > a::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid rgba(99,102,241,0.45);
    background: rgba(99,102,241,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    color: rgba(255,255,255,0.92);
    box-shadow: inset 0 0 0 1px rgba(9,12,20,0.45);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

header .nav-links > .menu-item-has-children > a {
    padding-right: 28px;
}

header .nav-links > .menu-item-has-children:hover > a::after,
header .nav-links > .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.72);
    color: #fff;
}

header .nav-cta,
header .nav-cta:hover,
header .nav-cta:focus-visible {
    text-decoration: none;
}

header .nav-cta::before {
    display: none;
    content: none;
}

@media (max-width: 980px) {
    header nav {
        position: relative;
    }

    header .mobile-menu-btn {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        border: 1px solid var(--border-color) !important;
        background: var(--bg-card) !important;
        border-radius: 10px !important;
    }

    header .nav-cta {
        display: none;
    }

    header .nav-lang {
        margin-left: auto;
        margin-right: 8px;
    }

    header .nav-links {
        display: none !important;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 6px;
        list-style: none;
        margin: 0;
        padding: 10px;
        background: rgba(10, 11, 20, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
        z-index: 130;
    }

    header .nav-links.active {
        display: flex !important;
    }

    header .nav-links > li > a {
        display: block;
        padding: 11px 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.02);
    }

    header .nav-links > .menu-item-has-children > a::after {
        right: 12px;
    }

    header .nav-links > li > a::before {
        display: none;
    }

    header .nav-links > li > a:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    header .nav-links .sub-menu {
        position: static;
        min-width: 0;
        margin-top: 6px;
        margin-left: 10px;
        padding: 8px;
        border-radius: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none !important;
    }

    header .nav-links .menu-item-has-children.open > .sub-menu,
    header .nav-links .menu-item-has-children:hover > .sub-menu {
        display: block !important;
    }
}

/* WooCommerce */
body.woocommerce-page .aq-woo-page,
body.woocommerce .aq-woo-page {
    padding: 36px 0 72px;
}

body.woocommerce-page .aq-woo-shell,
body.woocommerce .aq-woo-shell,
main > .woocommerce {
    background: linear-gradient(180deg, rgba(20, 24, 38, 0.86), rgba(10, 11, 20, 0.9));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 56px rgba(3, 6, 14, 0.45);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 14px;
}

.woocommerce .woocommerce-ordering select {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 12px;
}

.woocommerce ul.products {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(140, 149, 180, 0.3);
    background: linear-gradient(145deg, rgba(27, 34, 52, 0.9), rgba(18, 24, 40, 0.9));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 18px 30px rgba(7, 10, 20, 0.4);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.3;
    margin: 2px 0;
}

.woocommerce ul.products li.product .price {
    color: #8ee8d0;
    font-weight: 700;
    font-size: 18px;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow);
    opacity: 0.96;
    color: #fff;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    border-radius: 10px;
    border-color: rgba(99, 102, 241, 0.38);
    background: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
}

.woocommerce table.shop_table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(18, 22, 35, 0.86);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.woocommerce .cart_totals,
.woocommerce .woocommerce-cart-form {
    background: rgba(10, 13, 22, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
}

.woocommerce .quantity .qty,
.woocommerce .input-text,
.woocommerce textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

@media (max-width: 980px) {
    body.woocommerce-page .aq-woo-page,
    body.woocommerce .aq-woo-page {
        padding: 20px 0 48px;
    }

    body.woocommerce-page .aq-woo-shell,
    body.woocommerce .aq-woo-shell,
    main > .woocommerce {
        padding: 14px;
    }
}

/* Header parity guard against page-level exported styles */
body header #primary-nav > li > a::after {
    content: none !important;
    display: none !important;
}

body header #primary-nav > li.menu-item-has-children > a::after {
    content: "▾" !important;
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(99,102,241,0.45) !important;
    background: rgba(99,102,241,0.12) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    line-height: 1 !important;
    color: rgba(255,255,255,0.92) !important;
    box-shadow: inset 0 0 0 1px rgba(9,12,20,0.45) !important;
}

body header #primary-nav > li.menu-item-has-children:hover > a::after,
body header #primary-nav > li.menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg) !important;
    background: rgba(99,102,241,0.2) !important;
    border-color: rgba(99,102,241,0.72) !important;
    color: #fff !important;
}

body header nav > a.nav-cta,
body header nav > a.nav-cta:hover,
body header nav > a.nav-cta:focus-visible {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--accent-gradient) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
