 /* === RESET & BASICS === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-para); /* Default body font */
            color: var(--wk-text-dark);
            background-color: #fff !important;
            -webkit-font-smoothing: antialiased;
            
        }

        /* Apply Title Font explicitly */
        h1, h2, h3, h4, h5, h6, .wk-title-font {
            font-family: var(--font-title);
        }

        a {
            text-decoration: none !important;
            color: inherit;
        }        
        
        
        
        
        /* === CSS VARIABLES === */
        :root {
            /* Branding Colors */
            --wk-red: #E53B24;
            --wk-red-dark: #c8321e;
            --wk-red-light: #fef2f2;
            
            /* Text Colors */
            --wk-text-dark: #0f172a;
            --wk-text-muted: #64748b;
            
            /* Backgrounds & Borders */
            --wk-bg-soft: #f8fafc;
            --wk-line-color: #e2e8f0;

            /* Button Themes */
            --wk-theme-call-bg: #f0fdf4;
            --wk-theme-call-text: #16a34a;
            --wk-theme-call-border: #bbf7d0;

            --wk-theme-mail-bg: #f5f3ff;
            --wk-theme-mail-text: #6d28d9;
            --wk-theme-mail-border: #ddd6fe;

            --wk-theme-catalog-bg: #eff6ff;
            --wk-theme-catalog-text: #2563eb;
            --wk-theme-catalog-border: #bfdbfe;

            /* === DUAL FONT SYSTEM === */
            --font-title: 'Montserrat', sans-serif; /* For Headings, Nav Links, Buttons */
            --font-para: 'Inter', sans-serif;       /* For Body, Search, Dropdowns, Paragraphs */

            /* Layout */
            --wk-round-max: 50px;
            --wk-round-sm: 8px;
            --wk-round-lg: 24px;
        }

       

        ul {
            list-style: none;
        }

        .wk-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* === HEADER TOP SECTION === */
        .wk-header {
            width: 100%;
            background-color: #ffffff;
            position: sticky;
            top: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            z-index: 1000;
        }

        /* Perfect Center Alignment for Desktop using Flexbox */
        .wk-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 20px;
        }

        /* Left Side (Takes equal space to keep center strict) */
        .wk-logo-wrap {
            flex: 1; 
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .wk-logo-wrap img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        /* Center Side (Absolutely Middle) */
        .wk-search-wrap {
            flex: 0 1 500px; /* Cannot grow beyond 500px, stays perfectly centered */
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .wk-search-box {
            position: relative;
            width: 100%;
        }

        .wk-form {
            display: flex;
            align-items: center;
            width: 100%;
            background-color: var(--wk-bg-soft);
            border: 1px solid transparent;
            border-radius: var(--wk-round-max);
            padding: 4px 6px 4px 20px;
            box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .wk-form:focus-within {
            background-color: #ffffff;
            border-color: var(--wk-line-color);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transform: translateY(-1px);
        }

        .wk-icon-s {
            width: 18px;
            height: 18px;
            color: var(--wk-text-muted);
            margin-right: 12px;
            opacity: 0.7;
            transition: color 0.3s;
        }

        .wk-form:focus-within .wk-icon-s {
            color: var(--wk-red);
            opacity: 1;
        }

        .wk-input {
            font-family: var(--font-para); /* Using Paragraph font for input */
            flex-grow: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 14.5px;
            font-weight: 500;
            color: var(--wk-text-dark);
            padding: 10px 0;
            width: 100%;
        }

        .wk-input::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }

        .wk-submit {
            background-color: var(--wk-red);
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(229, 59, 36, 0.3);
        }

        .wk-submit:hover {
            background-color: var(--wk-red-dark);
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(229, 59, 36, 0.4);
        }

        .wk-submit svg {
            width: 16px;
            height: 16px;
            color: #ffffff;
            stroke-width: 2.5;
        }

        /* Search Suggestions Dropdown */
        .wk-suggest-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            border: 1px solid var(--wk-line-color);
            border-radius: var(--wk-round-sm);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 10px;
            padding: 8px 0;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1002;
            display: none;
        }

        .wk-suggest-list.is-active {
            display: block;
        }

        .wk-suggest-list li a {
            font-family: var(--font-para);
            display: block;
            padding: 12px 20px;
            color: var(--wk-text-dark);
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s ease;
        }

        .wk-suggest-list li:last-child a {
            border-bottom: none;
        }

        .wk-suggest-list li a:hover {
            background-color: var(--wk-bg-soft);
            color: var(--wk-red);
            padding-left: 25px;
        }

        .wk-suggest-list li a strong {
            color: var(--wk-red);
            font-weight: 700;
        }

        /* Right Side (Takes equal space to balance Logo) */
        .wk-buttons-wrap {
            flex: 1; 
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Always flush right */
            gap: 12px;
        }

        .wk-action-btn {
            font-family: var(--font-title); /* Buttons use Title font */
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: var(--wk-round-max);
            font-size: 13.5px;
            font-weight: 700;
            transition: all 0.2s ease;
        }

        .wk-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }

        .wk-action-btn svg {
            width: 18px;
            height: 18px;
        }

        .wk-call {
            background-color: var(--wk-theme-call-bg);
            color: var(--wk-theme-call-text);
            border: 1px solid var(--wk-theme-call-border);
        }

        .wk-mail {
            background-color: var(--wk-theme-mail-bg);
            color: var(--wk-theme-mail-text);
            border: 1px solid var(--wk-theme-mail-border);
        }

        .wk-catalog {
            background-color: var(--wk-theme-catalog-bg);
            color: var(--wk-theme-catalog-text);
            border: 1px solid var(--wk-theme-catalog-border);
        }

        /* Mobile Hamburger */
        .wk-nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }

        .wk-lines {
            display: block;
            width: 20px;
            height: 2px;
            background-color: var(--wk-text-dark);
            position: relative;
            transition: background-color 0.2s ease-out;
            border-radius: 2px;
            margin: 0 auto;
        }

        .wk-lines::before,
        .wk-lines::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: var(--wk-text-dark);
            transition: transform 0.2s ease-out;
            border-radius: 2px;
        }

        .wk-lines::before { top: -6px; left: 0; }
        .wk-lines::after { bottom: -6px; left: 0; }

        .wk-nav-toggle.is-active .wk-lines { background-color: transparent; }
        .wk-nav-toggle.is-active .wk-lines::before { transform: translateY(6px) rotate(45deg); }
        .wk-nav-toggle.is-active .wk-lines::after { transform: translateY(-6px) rotate(-45deg); }

        /* === HEADER BOTTOM (Nav) === */
        .wk-bottom-bar {
            border-top: 1px solid var(--wk-line-color);
            background-color: #ffffff;
        }

        .wk-navigation {
            display: flex;
            justify-content: center;
        }

        .wk-menu-list {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .wk-menu-list>li {
            position: relative;
        }

        /* Top Level Nav Items */
        .wk-menu-list>li>a {
            font-family: var(--font-title); /* Main Links use Title font */
            display: flex;
            align-items: center;
            padding: 22px 0;
            font-size: 14px;
            font-weight: 700;
            color: var(--wk-text-dark);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: color 0.2s;
            position: relative;
        }

        .wk-menu-list>li>a:hover {
            color: var(--wk-red);
        }

        .wk-menu-list .wk-chv-down {
            width: 14px;
            height: 14px;
            margin-left: 6px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* === PREMIUM BOLD DROPDOWN === */
        .wk-drop-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            min-width: 260px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--wk-line-color);
            border-top: 3px solid var(--wk-red);
            border-radius: 0 0 var(--wk-round-sm) var(--wk-round-sm);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 100;
        }

        .wk-drop-parent:hover>.wk-drop-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .wk-drop-parent:hover>a .wk-chv-down {
            transform: rotate(180deg);
        }

        .wk-drop-menu li {
            position: relative;
        }

        /* Dropdown Items */
        .wk-drop-menu li a {
            font-family: var(--font-para); /* Sub links use Paragraph font */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 24px;
            color: var(--wk-text-dark);
            font-size: 14.5px;
            font-weight: 500;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.2s ease;
        }

        .wk-drop-menu li:last-child a {
            border-bottom: none;
            border-radius: 0 0 var(--wk-round-sm) var(--wk-round-sm);
        }

        .wk-drop-menu li a:hover {
            color: var(--wk-red);
            background-color: var(--wk-bg-soft);
            padding-left: 28px;
        }

        .wk-chv-right {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            color: var(--wk-text-muted);
            transition: transform 0.3s, color 0.3s;
        }

        .wk-drop-menu li a:hover .wk-chv-right {
            color: var(--wk-red);
            transform: translateX(4px);
        }

        /* === NESTED SUB-DROPDOWN === */
        .wk-sub-menu {
            position: absolute;
            top: -3px;
            left: calc(100% + 1px);
            background-color: #ffffff;
            min-width: 250px;
            box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--wk-line-color);
            border-top: 3px solid var(--wk-red);
            border-radius: 0 var(--wk-round-sm) var(--wk-round-sm) var(--wk-round-sm);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateX(15px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 101;
        }

        .wk-sub-parent:hover>.wk-sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        /* Backdrop Overlay for Mobile Menu */
        .wk-bg-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .wk-bg-overlay.is-active {
            opacity: 1;
        }

        /* === GLOBAL RESPONSIVENESS === */
        @media (max-width: 1024px) {
            .wk-menu-list {
                gap: 20px;
            }

            .wk-header{
                 padding-left: 10px;
                 padding-left: 10px;
            }

            .wk-search-wrap {
                max-width: 350px;
            }
            .wk-action-btn {
                padding: 10px 14px;
            }
        }

        /* =========================================================
           📱 APP-LIKE PREMIUM MOBILE LAYOUT 
           ========================================================= */
        @media (max-width: 860px) {

            .wk-bg-overlay {
                display: block;
                pointer-events: none;
            }

            .wk-bg-overlay.is-active {
                pointer-events: auto;
            }

            .wk-container {
                padding: 0 20px;
            }

            .wk-header {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
                padding-right: 10px;
                padding-left: 10px;

            }

            .wk-top-bar {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                grid-template-rows: auto auto; 
                align-items: center;
                padding: 16px 0;
                row-gap: 16px; 
            }

            .wk-nav-toggle {
                grid-column: 1;
                grid-row: 1;
                justify-self: start;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 46px;
                height: 46px;
                padding: 0;
                border-radius: 14px;
                background-color: var(--wk-bg-soft);
                border: 1px solid var(--wk-line-color);
            }

            .wk-logo-wrap {
                grid-column: 2;
                grid-row: 1;
                justify-self: center;
                display: flex;
                align-items: center;
                z-index: 10;
            }

            .wk-logo-wrap img {
                max-height: 42px;
                width: auto;
                object-fit: contain;
            }

            .wk-buttons-wrap {
                grid-column: 3;
                grid-row: 1;
                justify-self: end;
                gap: 8px; 
            }

            .wk-action-btn span {
                display: none;
            }

            .wk-action-btn {
                padding: 0;
                width: 46px;
                height: 46px;
                border-radius: 14px;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: none;
            }

            .wk-action-btn svg {
                width: 22px;
                height: 22px;
                margin: 0;
            }

            .wk-search-wrap {
                grid-column: 1 / -1; 
                grid-row: 2;
                width: 100%;
                max-width: 100%;
                margin: 0; 
            }

            .wk-form {
                padding: 6px 8px 6px 20px;
                background-color: #f1f5f9;
                box-shadow: none;
                border-radius: 16px;
                height: 52px;
            }

            .wk-form:focus-within {
                background-color: #ffffff;
                box-shadow: 0 0 0 2px var(--wk-red-light), 0 4px 12px rgba(0, 0, 0, 0.05);
                border-color: var(--wk-red);
            }

            .wk-input {
                font-size: 16px; 
            }

            .wk-submit {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }

            @keyframes appSheetSlideIn {
                0% { opacity: 0; transform: scale(0.96) translateY(-10px); }
                100% { opacity: 1; transform: scale(1) translateY(0); }
            }

            .wk-bottom-bar {
                position: absolute;
                top: calc(100% + 12px);
                left: 20px;
                right: 20px;
                width: auto;
                background-color: #ffffff;
                border: 1px solid rgba(0, 0, 0, 0.04);
                box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.02);
                border-radius: var(--wk-round-lg);
                display: none;
                z-index: 999;
                max-height: calc(100vh - 140px);
                overflow-y: auto;
                padding: 8px 0;
            }

            .wk-bottom-bar.is-open {
                display: block;
                animation: appSheetSlideIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            }

            .wk-menu-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                width: 100%;
            }

            .wk-menu-list>li { width: 100%; }

            .wk-menu-list>li>a {
                padding: 16px 24px;
                width: 100%;
                justify-content: space-between;
                font-size: 15px;
                color: var(--wk-text-dark);
                border-bottom: 1px solid #f8fafc;
            }

            .wk-drop-parent.is-expanded>a {
                color: var(--wk-red);
                background-color: var(--wk-red-light);
            }

            .wk-drop-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                padding: 0;
                display: none;
                background-color: transparent;
                margin: 4px 20px 8px 24px;
                border-left: 2px solid var(--wk-line-color);
            }

            .wk-drop-menu li a {
                padding: 12px 16px 12px 20px;
                border-bottom: none;
                font-size: 14.5px;
                color: var(--wk-text-muted);
                border-radius: 8px;
            }

            .wk-drop-menu li a:hover,
            .wk-drop-menu li a:active {
                background-color: var(--wk-bg-soft);
                color: var(--wk-text-dark);
                padding-left: 20px;
            }

            .wk-sub-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                padding: 4px 0 4px 16px;
                display: none;
                background-color: transparent;
                border-left: 2px solid var(--wk-line-color);
                margin-left: 16px;
                margin-top: 4px;
            }

            .wk-sub-menu li a {
                padding: 10px 16px;
                font-size: 14px;
                color: #94a3b8;
            }

            .wk-sub-menu li a:hover {
                color: var(--wk-text-dark);
            }

            /* JS Trigger Classes */
            .wk-drop-parent.is-expanded>.wk-drop-menu { display: block; }
            .wk-drop-parent.is-expanded>a .wk-chv-down { transform: rotate(180deg); color: var(--wk-red); }
            .wk-sub-parent.is-expanded>.wk-sub-menu { display: block; }
            .wk-sub-parent.is-expanded>a .wk-chv-right { transform: rotate(90deg); color: var(--wk-text-dark); }
        }

        @media (max-width: 480px) {
            .wk-logo-wrap img { height: 52px; }
            .wk-buttons-wrap { gap: 6px; }
            .wk-action-btn,
            .wk-nav-toggle {
                width: 38px;
                height: 38px;
                border-radius: 12px;
            }
            .wk-form {
                height: 48px;
                border-radius: 12px;
            }
            .wk-header {
                padding-left: 10px;
                padding-right: 10px;
            }
        }

       















