 /* ===== YOUR EXISTING STYLES ===== */
        /* (Keep your existing CSS here) */
        #mobile-menu ul .gq-btn{
            background:#7962a6;
            padding: 15px 30px;
            border-radius: 40px;
            color:#fff;
            font-weight:700;
            font-family: 'Raleway', sans-serif;
            cursor:pointer;
        }
        /* ===== ACTIVE NAVIGATION STYLES ===== */
        .main-menu nav ul li.active > .active-color {
            color: #ff9222 !important;
            font-weight: 600;
        }

        .main-menu nav ul li.active {
            position: relative;
        }

        .main-menu nav ul li.active > .active-color::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ff9222;
            border-radius: 2px;
        }

        /* For dropdown items */
        .main-menu nav ul li ul li.active > a {
            color: #2a7de1 !important;
            font-weight: 600;
        }

        /* ===== POPUP OVERLAY & WRAPPER ===== */
        .gq-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: gqFadeIn 0.3s ease;
        }

        .gq-overlay.gq-active {
            display: flex;
        }

        @keyframes gqFadeIn {
            from { opacity: 0; transform: scale(0.96); }
            to { opacity: 1; transform: scale(1); }
        }

        /* ===== POPUP CARD ===== */
        .gq-popupWrapper {
            max-width: 820px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            background: #ffffff;
            /*border-radius: 40px;*/
            box-shadow: 0 30px 60px rgba(0, 20, 40, 0.30), 0 12px 30px rgba(0, 0, 0, 0.10);
            padding: 2.5rem 2.8rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            animation: gqSlideUp 0.3s ease;
        }

        @keyframes gqSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* scrollbar for popup */
        .gq-popupWrapper::-webkit-scrollbar {
            width: 6px;
        }
        .gq-popupWrapper::-webkit-scrollbar-track {
            background: #f0f4fe;
            border-radius: 12px;
        }
        .gq-popupWrapper::-webkit-scrollbar-thumb {
            background: #b6cae2;
            border-radius: 12px;
        }

        /* ===== POPUP HEADER ===== */
        .gq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .gq-headerTitle {
            font-weight: 600;
            font-size: 1.9rem;
            color: #0b1e33;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .gq-headerTitle i {
            color: #7962A6;
            font-size: 2rem;
        }

        .gq-closeBtn {
            background: #f0f4fe;
            width: 44px;
            height: 44px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #3a4a5e;
            transition: 0.2s;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .gq-closeBtn i {
            line-height: 1;
        }

        .gq-closeBtn:hover {
            background: #e6edfa;
            color: #0b1e33;
            border-color: #cdddf5;
        }

        /* ===== FORM GRID ===== */
        .gq-formGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem 2rem;
        }

        .gq-fullWidth {
            grid-column: 1 / -1;
        }

        /* ===== FIELDS ===== */
        .gq-field {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .gq-fieldLabel {
            font-weight: 500;
            font-size: 0.9rem;
            color: #1f324a;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .gq-fieldLabel i {
            color: #7962A6;
            font-size: 0.9rem;
            width: 1.2rem;
        }

        .gq-input,
        .gq-select,
        .gq-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background: #f8faff;
            border: 1.5px solid #e3eaf5;
            border-radius: 18px;
            font-size: 0.95rem;
            color: #0b1e33;
            transition: 0.2s;
            outline: none;
        }

        .gq-input:focus,
        .gq-select:focus,
        .gq-textarea:focus {
            border-color: #2a7de1;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(42, 125, 225, 0.08);
        }

        .gq-input::placeholder,
        .gq-textarea::placeholder {
            color: #a3b6d0;
            font-weight: 400;
        }

        /* custom select */
        .gq-select {
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%234a5e77" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
            background-repeat: no-repeat;
            background-position: right 1.2rem center;
            background-size: 1rem;
            padding-right: 2.8rem;
            cursor: pointer;
        }

        /* ===== PRODUCT SCROLL ===== */
        .gq-productScroll {
            background: #f8faff;
            border: 1.5px solid #e3eaf5;
            border-radius: 20px;
            padding: 0.6rem 0.8rem;
            max-height: 130px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            transition: 0.2s;
        }

        .gq-productScroll:focus-within {
            border-color: #2a7de1;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(42, 125, 225, 0.08);
        }

        .gq-productScroll::-webkit-scrollbar {
            width: 5px;
        }
        .gq-productScroll::-webkit-scrollbar-track {
            background: #e3eaf5;
            border-radius: 12px;
        }
        .gq-productScroll::-webkit-scrollbar-thumb {
            background: #b6cae2;
            border-radius: 12px;
        }

        .gq-productItem {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.4rem 0.5rem;
            border-radius: 30px;
            font-weight: 450;
            color: #1f324a;
            cursor: pointer;
            transition: 0.1s;
            font-size: 0.95rem;
        }

        .gq-productItem:hover {
            background: #eef4fe;
        }

        .gq-productCheck {
            width: 18px;
            height: 18px;
            accent-color: #2a7de1;
            cursor: pointer;
            flex-shrink: 0;
        }

        /* ===== QUANTITY ===== */
        .gq-quantityWrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .gq-quantityWrapper .gq-input {
            flex: 1;
            min-width: 110px;
        }

        .gq-quantityHint {
            color: #4a5e77;
            font-weight: 450;
            font-size: 0.9rem;
            background: #f0f5fe;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            white-space: nowrap;
        }

        .gq-textarea {
            resize: vertical;
            min-height: 80px;
        }

        .gq-hint {
            font-size: 0.7rem;
            color: #7c92af;
            margin-top: 0.1rem;
            padding-left: 0.5rem;
        }

        /* ===== ACTIONS ===== */
        .gq-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1.2rem;
            margin-top: 2.2rem;
            padding-top: 0.8rem;
            border-top: 1px solid #e9eefa;
        }

        .gq-btn {
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            background: transparent;
            cursor: pointer;
            transition: 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .gq-btn-primary {
            background: #1a3d6b;
            color: white;
            box-shadow: 0 6px 14px rgba(26, 61, 107, 0.25);
        }

        .gq-btn-primary i {
            color: white;
        }

        .gq-btn-primary:hover {
            background: #0f2c4f;
            transform: scale(0.97);
            box-shadow: 0 4px 10px rgba(26, 61, 107, 0.3);
        }

        .gq-btn-secondary {
            background: #eef3fc;
            color: #1f324a;
        }

        .gq-btn-secondary:hover {
            background: #e2eaf8;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 650px) {
            .gq-popupWrapper {
                padding: 1.8rem;
                margin: 10px;
            }
            .gq-formGrid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .gq-fullWidth {
                grid-column: 1;
            }
            .gq-actions {
                flex-direction: column-reverse;
                align-items: stretch;
            }
            .gq-btn {
                justify-content: center;
            }
            .gq-headerTitle {
                font-size: 1.6rem;
            }
        }