/* Nordic Breeze Premium WordPress Theme Stylesheet */

/* --- Index Page Styles --- */

        :root {
            --bg-deep: #030811;
            --bg-nav: rgba(3, 8, 17, 0.85);
            --primary: #00E5FF;
            --primary-dark: #009BB3;
            --text-light: #F8FAFC;
            --text-muted: #94A3B8;
            --border-glass: rgba(255, 255, 255, 0.08);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --gradient-accent: linear-gradient(135deg, #00E5FF, #3B82F6);
        }

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

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

        /* Nav */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            display: flex;
            justify-content: center;
            background: var(--bg-nav);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            z-index: 100;
        }
        .nav-inner {
            width: 100%;
            max-width: 1440px;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 2vw, 2.5rem);
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .btn {
            background: var(--gradient-accent);
            color: #fff;
            padding: 0.75rem 1.8rem;
            border-radius: 99px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
        }

        .btn:hover {
            box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5), 0 0 15px rgba(59, 130, 246, 0.3);
        }
        @media (hover: hover) {
            .btn:hover {
                transform: translateY(-2px) scale(1.02);
            }
        }

        /* Hero Panel */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding:  0;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            margin-top: 2rem;
            overflow: hidden;
        }
        .hero-inner {
            width: 100%;
            max-width: 1440px;
            display: flex;
            align-items: center;
            z-index: 1;
        }

        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            
            
            z-index: -2;
            animation: slowZoom 30s infinite alternate linear;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(3,8,17,0.98) 0%, rgba(3,8,17,0.85) 40%, rgba(3,8,17,0.3) 100%),
                        linear-gradient(to bottom, transparent 60%, rgba(3,8,17,1) 100%);
            z-index: -1;
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }

        .hero-content {
            max-width: 650px;
            animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #FFFFFF, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        
        padding-right: 0.05em;
}

        .hero h1 span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .features-ribbon {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
        }

        .ribbon-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding-left: 1rem;
            border-left: 2px solid var(--primary);
        }

        .ribbon-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .ribbon-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Products Grid */
        .section {
            padding: 6rem 0;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .section > * {
            width: 100%;
            max-width: 1440px;
        }

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

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 2rem;
        }

        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }

        .glass-card:hover {
            border-color: rgba(0, 229, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(0, 229, 255, 0.15);
        }
        @media (hover: hover) {
            .glass-card:hover {
                transform: translateY(-10px);
            }
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .card-content {
            flex-grow: 1;
        }

        .glass-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .glass-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .specs-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .specs-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            color: #CBD5E1;
        }

        .specs-list i {
            color: var(--primary);
        }

        /* Banner CTA */
        .cta-banner {
            margin: 6rem 5%;
            padding: 4rem;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(0, 155, 179, 0.2));
            border: 1px solid rgba(0, 229, 255, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.1rem;
            color: #E2E8F0;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-glass);
            display: flex;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;}
        .footer-inner {
            width: 100%;
            max-width: 1440px;
            padding: 3rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

                @media(max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .hero-overlay { background: linear-gradient(to bottom, rgba(3,8,17,0.7) 0%, rgba(3,8,17,0.95) 100%); }
            .cta-banner { padding: 2rem 1.5rem; }
            
            /* Center hero content on mobile */
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .hero p {
                text-align: center;
                margin-inline: auto;
            }
            .features-ribbon {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
                margin-top: 3rem;
            }
            .ribbon-item {
                border-left: none;
                border-top: 2px solid var(--primary);
                padding-left: 0;
                padding-top: 1rem;
                width: 100%;
                max-width: 250px;
                align-items: center;
            }
        }
    

        .burger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            z-index: 101;
            padding: 0.5rem;
        }
        .mobile-menu {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(3, 8, 17, 0.98);
            backdrop-filter: blur(20px);
            z-index: 99;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s ease;
        }
        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-menu a {
            color: #fff !important;
            font-size: 1.5rem !important;
            text-decoration: none;
            font-weight: 600;
        }
        .mobile-menu .header-cta {
            margin-top: 2rem;
            font-size: 1.2rem !important;
            padding: 1rem 2rem !important;
            display: block !important;
        }
        @media(max-width: 1200px) {
            .burger { display: block; }
            .burger svg { width: 32px; height: 32px; display: block; }
            .burger:active svg { transform: scale(0.9); }
            .nav-links { display: none !important; }
            .header-cta { display: none !important; }
            nav .lang-switch { display: none !important; }
            .nav-inner { padding: 1rem 0; }
            .logo { font-size: 1.35rem; white-space: nowrap; flex-shrink: 0; }
        }
    

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        /* FAQ Accordion Styles */
        .faq-details {
            border-bottom: 1px solid var(--border-glass);
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            transition: border-color 0.3s ease;
        }
        .faq-details[open] {
            border-color: rgba(0, 229, 255, 0.2);
        }
        .faq-details summary {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            list-style: none;
            user-select: none;
        }
        .faq-details summary::-webkit-details-marker {
            display: none;
        }
        .faq-details summary .faq-icon {
            color: var(--primary);
            font-size: 1.5rem;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            line-height: 1;
        }
        .faq-details[open] summary .faq-icon {
            transform: rotate(45deg);
            color: #fff;
        }
        .faq-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .faq-details[open] .faq-content {
            grid-template-rows: 1fr;
        }
        .faq-content-inner {
            min-height: 0;
            color: var(--text-muted);
            padding-top: 1rem;
            line-height: 1.6;
            font-size: 1rem;
            transition: opacity 0.3s ease;
            opacity: 0;
        }
        .faq-details[open] .faq-content-inner {
            opacity: 1;
        }

/* --- Fix for Client Injected Elementor CSS --- */
/* The client injected an HTML widget with padding-left/right: calc((100vw - 1440px)/2) 
   on .elementor-container which squeezed the content. We override it here with a higher specificity. */
body .elementor-section > .elementor-container {
    padding-left: clamp(1rem, 5vw, 2rem) !important;
    padding-right: clamp(1rem, 5vw, 2rem) !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix Elementor hero background repeating */
#hero.elementor-section {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
    

/* --- Shop Page Styles --- */

        :root {
            --bg-deep: #030811;
            --bg-nav: rgba(3, 8, 17, 0.85);
            --primary: #00E5FF;
            --primary-dark: #009BB3;
            --text-light: #F8FAFC;
            --text-muted: #94A3B8;
            --border-glass: rgba(255, 255, 255, 0.08);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --gradient-accent: linear-gradient(135deg, #00E5FF, #3B82F6);
        }

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

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

        /* Nav */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            display: flex;
            justify-content: center;
            background: var(--bg-nav);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-glass);
            z-index: 100;
        }
        .nav-inner {
            width: 100%;
            max-width: 1440px;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 2vw, 2.5rem);
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .btn {
            background: var(--gradient-accent);
            color: #fff;
            padding: 0.75rem 1.8rem;
            border-radius: 99px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
        }

        .btn:hover {
            box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5), 0 0 15px rgba(59, 130, 246, 0.3);
        }
        @media (hover: hover) {
            .btn:hover {
                transform: translateY(-2px) scale(1.02);
            }
        }

        /* Hero Panel */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding:  0;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            margin-top: 2rem;
            overflow: hidden;
        }

        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            
            
            z-index: -2;
            animation: slowZoom 30s infinite alternate linear;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(3,8,17,0.98) 0%, rgba(3,8,17,0.85) 40%, rgba(3,8,17,0.3) 100%),
                        linear-gradient(to bottom, transparent 60%, rgba(3,8,17,1) 100%);
            z-index: -1;
        }

        @keyframes slowZoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }

        .hero-content {
            max-width: 650px;
            animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #FFFFFF, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        
        padding-right: 0.05em;
}

        .hero h1 span {
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .features-ribbon {
            display: flex;
            gap: 2rem;
            margin-top: 4rem;
        }

        .ribbon-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding-left: 1rem;
            border-left: 2px solid var(--primary);
        }

        .ribbon-val {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
        }

        .ribbon-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Products Grid */
        .section {
            padding: 6rem 0;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
        }

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

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 2rem;
        }

        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--border-glass);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 229, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .card-content {
            flex-grow: 1;
        }

        .glass-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .glass-card p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .specs-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .specs-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            color: #CBD5E1;
        }

        .specs-list i {
            color: var(--primary);
        }

        /* Banner CTA */
        .cta-banner {
            margin: 6rem 5%;
            padding: 4rem;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(0, 155, 179, 0.2));
            border: 1px solid rgba(0, 229, 255, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            font-size: 1.1rem;
            color: #E2E8F0;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-inline: auto;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border-glass);
            display: flex;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;}
        .footer-inner {
            width: 100%;
            max-width: 1440px;
            padding: 3rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

        @media(max-width: 992px) {
            .packages-grid { grid-template-columns: 1fr; }
        }
        @media(max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .hero-overlay { background: linear-gradient(to bottom, rgba(3,8,17,0.7) 0%, rgba(3,8,17,0.95) 100%); }
            .features-ribbon { flex-direction: column; gap: 1.5rem; }
            .cta-banner { padding: 2rem 1.5rem; }
        }
    

        .burger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            z-index: 101;
            padding: 0.5rem;
        }
        .mobile-menu {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: rgba(3, 8, 17, 0.98);
            backdrop-filter: blur(20px);
            z-index: 99;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s ease;
        }
        .mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-menu a {
            color: #fff !important;
            font-size: 1.5rem !important;
            text-decoration: none;
            font-weight: 600;
        }
        .mobile-menu .header-cta {
            margin-top: 2rem;
            font-size: 1.2rem !important;
            padding: 1rem 2rem !important;
            display: block !important;
        }
        @media(max-width: 992px) {
            .packages-grid { grid-template-columns: 1fr; }
        }
        @media(max-width: 1200px) {
            .burger { display: block; }
            .burger svg { width: 32px; height: 32px; display: block; }
            .burger:active svg { transform: scale(0.9); }
            .nav-links { display: none !important; }
            .header-cta { display: none !important; }
            nav .lang-switch { display: none !important; }
            .nav-inner { padding: 1rem 0; }
            .logo { font-size: 1.35rem; white-space: nowrap; flex-shrink: 0; }
        }
    

        .shop-header {
            margin-top: 80px;
            padding: 3rem 0 1rem;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            text-align: center;
        }
        .shop-header h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(to right, #FFFFFF, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .shop-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .shop-container {
            padding: 2rem 0 4rem;
            padding-inline: max(5%, calc((100vw - 1440px) / 2)) !important;
            width: 100%;
        }
        .product-category {
            margin-bottom: 4rem;
        }
        .category-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding-bottom: 1rem;
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .category-title {
            font-size: 1.8rem;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 300;
        }
        .category-desc {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Grid for main packages */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .package-card {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .package-card:hover {
            border-color: rgba(0, 229, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        @media (hover: hover) {
            .package-card:hover {
                transform: translateY(-4px);
            }
        }
        .pkg-image-container {
            height: 140px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .pkg-image-container img {
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s;
            z-index: 1;
        }
        .package-card:hover img {
            transform: scale(1.05);
        }
        .badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gradient-accent);
            color: #fff;
            padding: 0.2rem 0.6rem;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 2;
        }
        .package-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
        }
        .package-card .desc {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }
        .price-box {
            background: rgba(3, 8, 17, 0.5);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.03);
        }
        .price {
            font-size: 1.8rem;
            color: #fff;
            font-weight: 300;
            font-family: 'Outfit', sans-serif;
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
        }
        .price span {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
        }
        .color-price {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        /* Compact List for accessories/single turbines */
        .compact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 1rem;
        }
        .compact-card {
            background: var(--glass-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
        }
        .compact-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(0, 229, 255, 0.2);
            transform: scale(1.02);
        }
        .compact-img {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
            padding: 0.5rem;
        }
        .compact-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .compact-info {
            flex-grow: 1;
        }
        .compact-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
            color: #fff;
        }
        .compact-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .compact-price {
            font-size: 1.2rem;
            color: #fff;
            font-weight: 600;
        }
        .compact-price span {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: normal;
        }
        .compact-color {
            font-size: 0.75rem;
            color: #94A3B8;
        }
        .compact-meta {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
            text-align: right;
            min-width: 130px;
        }
        
        .btn-shop {
            background: rgba(0, 229, 255, 0.1);
            color: var(--primary);
            padding: 0.6rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: 0.2s;
            border: 1px solid rgba(0, 229, 255, 0.2);
            display: inline-block;
            text-align: center;
        }
        .btn-shop:hover {
            background: var(--primary);
            color: #000;
        }
        .btn-shop.full {
            width: 100%;
        }

        @media(max-width: 992px) {
            .packages-grid { grid-template-columns: 1fr; }
        }
        @media(max-width: 768px) {
            .compact-grid { grid-template-columns: 1fr; }
            .compact-card { flex-direction: column; text-align: center; align-items: stretch; }
            .compact-meta { align-items: center; text-align: center; margin-top: 0.5rem; }
            .compact-img { margin: 0 auto; width: 100px; height: 100px; }
            .shop-header h1 { font-size: 2rem; }
            
            /* Homepage Responsive Spacing Overrides */
            .glass-card { padding: 1.5rem !important; }
            .section { padding-block: 2rem 3rem !important; }
            .section-title { margin-bottom: 2rem !important; }
            .section-title h2 { font-size: 2rem !important; }
            .hero { min-height: auto !important; padding: 5rem 0 1rem !important; }
            .hero h1 { font-size: 2.2rem !important; }
            .hero p { font-size: 1rem !important; }
            .features-ribbon { flex-direction: column; gap: 1.5rem; text-align: center; margin-top: 2rem; }
            .ribbon-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem; }
            .ribbon-item:last-child { border-bottom: none; }
            
            /* Responsive Circle for Objection Handling Section */
            .objection-circle { width: 240px !important; height: 240px !important; }
            .objection-circle h2 { font-size: 3rem !important; }

            /* Responsive Footer Optimizations */
            .footer-inner {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                gap: 1rem !important;
                padding: 3rem 0 !important;
            }
            .footer-inner > div {
                font-size: 0.85rem !important;
                color: var(--text-muted) !important;
                line-height: 1.6 !important;
                max-width: 320px;
                margin: 0 auto;
            }
            .footer-inner .logo {
                margin-bottom: 0.5rem !important;
            }
        }

        /* Contact Form 7 premium styling */
        .cta-form-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            width: 100%;
        }
        .cta-form-wrapper .wpcf7-form-control-wrap {
            width: 100%;
            max-width: 300px;
        }
        .cta-input {
            padding: 1rem 1.5rem !important;
            width: 100% !important;
            border-radius: 99px !important;
            border: none !important;
            outline: none !important;
            background: rgba(255,255,255,0.1) !important;
            color: white !important;
            font-family: 'Inter', sans-serif !important;
            font-size: 1rem !important;
            box-sizing: border-box !important;
            transition: all 0.3s ease !important;
        }
        .cta-input:focus {
            background: rgba(255,255,255,0.15) !important;
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.3) !important;
        }
        .cta-submit {
            padding: 1rem 2rem !important;
            border-radius: 99px !important;
            cursor: pointer !important;
            border: 1px solid rgba(0, 229, 255, 0.4) !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            background: var(--primary) !important;
            color: var(--bg-dark) !important;
            transition: all 0.3s ease !important;
        }
        .cta-submit:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4) !important;
        }
        .wpcf7-spinner {
            margin: 0 !important;
            position: absolute !important;
            right: 20px !important;
        }
        .wpcf7-response-output {
            margin: 1.5rem auto 0 !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 12px !important;
            max-width: 450px !important;
            font-size: 0.95rem !important;
            background: rgba(255,255,255,0.05) !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
            color: white !important;
            backdrop-filter: blur(10px) !important;
        }
        .wpcf7-not-valid-tip {
            color: #ff4a4a !important;
            font-size: 0.85rem !important;
            margin-top: 0.5rem !important;
            text-align: left !important;
            padding-left: 1rem !important;
        }
    

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.2); opacity: 0.5; }
            100% { transform: scale(1); opacity: 0.3; }
        }
    

/* Anchor Scroll Padding to account for Sticky Header */
section[id], .cta-banner[id] {
    scroll-margin-top: 100px;
}


        /* Active Navigation Link Highlights */
        .nav-links a.active,
        .nav-links a.current,
        .nav-links .current-menu-item a,
        .nav-links .current_page_item a,
        .mobile-menu a.active,
        .mobile-menu a.current {
            color: var(--primary) !important;
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
        }

/* Mobile responsive spec table utilities */
@media(min-width: 769px) {
    .show-on-mobile {
        display: none !important;
    }
}
@media(max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    .show-on-mobile {
        display: block !important;
    }
}
