    :root {
        --iq-primary: #26590e;
        --iq-primary-dark: #1e4712;
        --iq-gold: #26590e;
        --iq-bg: #f8f8f8;
        --iq-surface: #ffffff;
        --iq-border: #e5e5e5;
        --iq-ink: #1a1a1a;
        --iq-muted: #666666;
        --iq-radius: 12px;
        --iq-tr: all 0.3s ease;
    }

    /* start */
    .menu-item-search {
        padding: 13px;
        display: grid;
        gap: 0px;
        background: #f9f9f9;
        align-items: center;
        grid-template-columns: 2fr 1fr;
    }

    .menu-searchField {
        outline: none;
        padding: 10px;
        border: none;
        border-bottom: 1px solid #212121;
    }

    .menu-searchIcon {
        width: fit-content;
        background: #d9d9d9;
        padding: 7px 10px;
    }

    .empty {
        text-align: center;
    }

    .shop-cart {
        display: none;
        width: 350px;
        background-color: #fff;
        position: absolute;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        top: 34px;
        right: -24px;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
        color: #000;
        padding: 20px;
        z-index: 1002;
    }

    .shop-delete {
        background: #26590e;
        width: 20px;
        line-height: 20px;
        border-radius: 50%;
        text-align: center;
        color: #fff;
        flex: none;
    }

    .shop-cart-subtotal {
        font-weight: 600;
    }

    .shop-cart-icon:hover .shop-cart {
        display: block;
    }

    .shop-cart-footer .view_cart_btn {
        display: block;
        background-color: transparent;
        border: 1px solid #212121;
        text-align: center;
    }

    .shop-cart::after {
        content: '';
        position: absolute;
        top: -7px;
        right: 33px;
        width: 15px;
        height: 15px;
        background: #fff;
        transform: rotate(44deg);
    }

    .shop-cart-total {
        padding: 10px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
    }

    .chekc_btn {
        background-color: #26590e;
        color: #fff;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
    }

    .shop-cart-body {

        max-height: 400px;
        overflow-y: auto;

    }

    .shop-cart-body a {
        text-decoration: none;
        color: #212121;
    }

    .shop-cart-items {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
    }

    .shop-cart-footer {
        padding: 10px 20px;
    }

    .shop-img img {
        object-fit: contain;
        width: 50px;
        height: 50px;
    }

    .shop-info {
        padding: 0px 3px;
        text-align: left;
    }

    #to-top {
        width: 30px;
        line-height: 25px;
        background-color: #26590e;
        border-radius: 3px;
        vertical-align: middle;
        text-align: center;
        position: fixed;
        bottom: 30px;
        right: 20px;
        z-index: 9999;
        cursor: pointer;
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        display: none;
    }

    .mobile-menu-search {
        padding: 10px;
        display: flex;
        margin: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f5f5f5;
    }

    .mobile-menu-search .search-input {
        flex: 1;
        padding: 8px;
        border: none;
        background-color: transparent;
        outline: none;
    }

    .mobile-menu-search #jq-search-btn {
        padding: 8px;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .search-input {
            box-shadow: none;
        }
    }

    .header-action .fas.fa-search {
        position: absolute;
        right: 15px;
        color: #26590e;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .header-action .fas.fa-search:hover {
        color: #26590e;
    }

    .cart-count {
        line-height: 20px;
        position: absolute;
        top: -11px;
        left: 6px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        color: #e05151;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -90%;
        width: 90%;
        height: 100%;
        background: white;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .side-menu.active {
        left: 0;
    }

    .big_hide {
        display: none;
    }

    .side-menu .menu-header {
        height: 50px;
        color: #212121;
        display: flex;
        align-items: center;
        padding: 0 15px;
        font-weight: bold;
    }

    .side-menu .menu-close {
        margin-left: auto;
        font-size: 20px;
        cursor: pointer;
    }

    .side-menu .menu-list {
        list-style: none;
        padding: 10px 0;
    }

    .side-menu .menu-item {
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .side-menu .menu-link {
        display: block;
        width: 90%;
        padding: 12px 15px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }

    .side-menu .menu-link:hover {
        background-color: #f9f9f9;
    }

    .side-menu .menu-icon {
        margin-right: 10px;
        font-size: 16px;
        color: #666;
    }

    .side-menu .menu-arrow {
        width: 30px;
        height: 30px;
        transition: transform 0.3s ease;
        transform-origin: center;
        color: #999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .side-menu .menu-arrow.expanded {
        transform: rotate(90deg);
    }

    .side-menu .submenu {
        width: 100%;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9f9f9;
    }

    .side-menu .submenu.expanded {
        max-height: 1000px;
    }

    .side-menu .submenu .menu-link {
        padding-left: 40px;
    }

    .side-menu .submenu .menu-link {
        padding-left: 65px;
    }


    .content {
        margin-top: 60px;
        padding: 15px;
    }

    .content h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .content p {
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .successful_title {
        color: #26590e;
        padding: 10px;
        text-align: center;
        font-weight: 600;
        font-size: 18px;
        animation: flash 0.5s ease-in-out;
    }

    @keyframes flash {

        0%,
        100% {
            opacity: 1;
        }

        25%,
        75% {
            opacity: 0.5;
        }
    }

    .Pop-up .quantity-control {
        display: flex;
        align-items: center;
        margin: 15px 0;
    }

    .Pop-up .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        background-color: #f0f0f0;
        border: 1px solid #ddd;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .Pop-up .quantity-btn:hover {
        background-color: #e0e0e0;
    }

    .quantity-input {
        width: 50px;
        height: 30px;
        text-align: center;
        border: 1px solid #ddd;
        border-left: none;
        border-right: none;
        -moz-appearance: textfield;
        outline: none;
        font-size: 12px;
    }

    .quantity-input::-webkit-outer-spin-button,
    .quantity-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* nodel */

    .overlay .container {
        --uib-size: 45px;
        --uib-color: #1a1a1a;
        --uib-speed: 1.75s;
        position: relative;
        height: var(--uib-size);
        width: var(--uib-size);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: rotate calc(var(--uib-speed) * 4) linear infinite;
    }

    .particle {
        position: absolute;
        top: 0%;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;

        &:nth-child(1) {
            --uib-delay: 0;
            transform: rotate(8deg);
        }

        &:nth-child(2) {
            --uib-delay: -0.4;
            transform: rotate(36deg);
        }

        &:nth-child(3) {
            --uib-delay: -0.9;
            transform: rotate(72deg);
        }

        &:nth-child(4) {
            --uib-delay: -0.5;
            transform: rotate(90deg);
        }

        &:nth-child(5) {
            --uib-delay: -0.3;
            transform: rotate(144deg);
        }

        &:nth-child(6) {
            --uib-delay: -0.2;
            transform: rotate(180deg);
        }

        &:nth-child(7) {
            --uib-delay: -0.6;
            transform: rotate(216deg);
        }

        &:nth-child(8) {
            --uib-delay: -0.7;
            transform: rotate(252deg);
        }

        &:nth-child(9) {
            --uib-delay: -0.1;
            transform: rotate(300deg);
        }

        &:nth-child(10) {
            --uib-delay: -0.8;
            transform: rotate(324deg);
        }

        &:nth-child(11) {
            --uib-delay: -1.2;
            transform: rotate(335deg);
        }

        &:nth-child(12) {
            --uib-delay: -0.5;
            transform: rotate(290deg);
        }

        &:nth-child(13) {
            --uib-delay: -0.2;
            transform: rotate(240deg);
        }
    }

    .particle::before {
        content: '';
        position: absolute;
        height: 17.5%;
        width: 17.5%;
        border-radius: 50%;
        background-color: var(--uib-color);
        flex-shrink: 0;
        transition: background-color 0.3s ease;
        --uib-d: calc(var(--uib-delay) * var(--uib-speed));
        animation: orbit var(--uib-speed) linear var(--uib-d) infinite;
    }

    @keyframes orbit {
        0% {
            transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
            opacity: 0.65;
        }

        5% {
            transform: translate(calc(var(--uib-size) * 0.4)) scale(0.684208);
            opacity: 0.58;
        }

        10% {
            transform: translate(calc(var(--uib-size) * 0.3)) scale(0.631576);
            opacity: 0.51;
        }

        15% {
            transform: translate(calc(var(--uib-size) * 0.2)) scale(0.578944);
            opacity: 0.44;
        }

        20% {
            transform: translate(calc(var(--uib-size) * 0.1)) scale(0.526312);
            opacity: 0.37;
        }

        25% {
            transform: translate(0%) scale(0.47368);
            opacity: 0.3;
        }

        30% {
            transform: translate(calc(var(--uib-size) * -0.1)) scale(0.526312);
            opacity: 0.37;
        }

        35% {
            transform: translate(calc(var(--uib-size) * -0.2)) scale(0.578944);
            opacity: 0.44;
        }

        40% {
            transform: translate(calc(var(--uib-size) * -0.3)) scale(0.631576);
            opacity: 0.51;
        }

        45% {
            transform: translate(calc(var(--uib-size) * -0.4)) scale(0.684208);
            opacity: 0.58;
        }

        50% {
            transform: translate(calc(var(--uib-size) * -0.5)) scale(0.73684);
            opacity: 0.65;
        }

        55% {
            transform: translate(calc(var(--uib-size) * -0.4)) scale(0.789472);
            opacity: 0.72;
        }

        60% {
            transform: translate(calc(var(--uib-size) * -0.3)) scale(0.842104);
            opacity: 0.79;
        }

        65% {
            transform: translate(calc(var(--uib-size) * -0.2)) scale(0.894736);
            opacity: 0.86;
        }

        70% {
            transform: translate(calc(var(--uib-size) * -0.1)) scale(0.947368);
            opacity: 0.93;
        }

        75% {
            transform: translate(0%) scale(1);
            opacity: 1;
        }

        80% {
            transform: translate(calc(var(--uib-size) * 0.1)) scale(0.947368);
            opacity: 0.93;
        }

        85% {
            transform: translate(calc(var(--uib-size) * 0.2)) scale(0.894736);
            opacity: 0.86;
        }

        90% {
            transform: translate(calc(var(--uib-size) * 0.3)) scale(0.842104);
            opacity: 0.79;
        }

        95% {
            transform: translate(calc(var(--uib-size) * 0.4)) scale(0.789472);
            opacity: 0.72;
        }

        100% {
            transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
            opacity: 0.65;
        }
    }

    .Pop-up {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        max-width: 600px;
        min-width: 300px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow: hidden;
        animation: modalFadeIn 0.5s;
    }

    .Pop-up .top_header {
        display: flex;
        align-items: center;
        padding: 5px;
        justify-content: end;
    }

    .Pop-up .products_box {
        padding: 20px;
    }

    .Pop-up .box_price .discount_price {
        text-decoration: line-through;
        color: #2a2828;
        font-size: 14px;
    }

    .Pop-up .box_price .price {
        color: #2a2828;
        font-weight: 500;
        font-size: 16px;
        margin-left: 15px;
    }

    .Pop-up .btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .Pop-up .btn .button {
        padding: 10px;
        background: #26590e;
        border-radius: 5px;
        margin: 0px 5px;
        color: #fff;
        font-weight: 500;
        cursor: pointer;
    }

    .Pop-up select {
        padding: 2px 5px;
        width: 300px;
        height: 2.75rem;
        border: 1px solid #ddd;
        font-size: 12px;
        transition: border-color 0.3s ease;
        box-shadow: inset 0 -1.4em 1em 0 rgba(0, 0, 0, .02);
        outline: none;
    }

    .Pop-up .sku_code {
        margin-top: 10px;
    }

    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
    }

    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, -60%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    /* end */

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

    body {
        font-family: 'Jost', sans-serif;
        background-color: #f8f8f8;
    }

    #header {
        position: sticky;
        top: 0px;
        z-index: 299;
        padding: 10px;
        background: var(--iq-primary);
    }

    .global-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
        width: 100%;
        margin: 0px auto 5px;
        padding: 3px 20px;
        min-height: 36px;
        border-bottom: 1px solid #eaeaea;
        transition: box-shadow 0.3s ease;
    }

    .global-header:hover {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .global {
        max-width: 1500px;
        margin: 0 auto;
        padding: 3px 20px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .global-header-menu a {
        display: inline-block;
        padding: 0px 10px;
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        font-size: 12px;
        line-height: 20px;
        margin: 0px 10px;
        transition: all 0.3s ease-in-out;
    }

    .global-header-menu a:hover {
        text-decoration: underline;
    }

    .gb-nav {
        display: flex;
        align-items: center;
        padding: 0px 10px;
    }

    .gb-logo {
        max-width: 100px;
        display: flex;
        align-items: center;
    }

    .global-header a {
        font-weight: 500;
        color: #212121;
        margin: 0px 10px;
        text-decoration: none;
        font-size: 14px;
    }

    .login-m {
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 60px;
    }

    .gb-nav-list {
        position: relative;
    }

    .gb-nav-sub {
        width: 300px;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        padding: 10px;
        display: none;
    }

    .gb-logo img {
        max-width: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .gb-nav-list:hover .gb-nav-sub {
        display: block;
    }

    .gb-nav-sub-item {
        display: flex;
        padding: 10px;
        flex-wrap: wrap;
    }

    .navLink-item {
        margin-top: 10px !important;
        width: 40%;
        display: block;
    }

    .navLink-item:hover {
        text-decoration: underline;
    }

    .gb-cart-icon {
        display: flex;
        align-items: center;
    }

    .searchPanel {
        display: flex;
        align-items: center;
    }

    .searchPanel input {
        outline: none;
        border: none;
    }

    .searchIcon {
        cursor: pointer;
    }

    .gb-icon {
        color: #212121;
        margin: 0px 10px;
        text-decoration: none;
    }

    .gb-menu {
        display: none;
    }

    .footer-grid {
        max-width: 1500px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .social-links {
        font-size: 18px;
        text-align: center;
    }

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

    .site-footer {
        background: var(--iq-primary);
        padding: 20px 10px;
        color: #fff;

    }

    .footer-links .footer-link {
        display: block;
        color: #fff;
        text-decoration: none;
        margin-top: 10px;
    }

    .footer-links .footer-link:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        margin-top: 20px;
        text-align: center;
    }

    .footer-column {
        width: 25%;
        margin-top: 10px;
    }

    .footer-text {
        margin: 10px 0px;
    }

    .footer-heading::after {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: #fff;
        margin-top: 10px;
    }

    .global-header-menu .gb-nav-list {
        display: inline-block;
        position: relative;
    }

    .global-header-menu .gb-nav-sub {
        top: 100%;
        min-width: 220px;
        width: auto;
        left: 0;
        padding-top: 8px;
    }

    .global-header-menu .gb-nav-sub:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 8px;
    }

    .global-header-menu .navLink-item {
        color: #333;
        font-size: 13px;
        width: auto;
        width: 100%;
        display: inline-block;
        padding: 4px 8px;
        margin: 2px 0 !important;
        text-decoration: none;
        transition: all 0.2s;
    }

    .global-header-menu .navLink-item:hover {
        color: #1a1a1a;
        background-color: #f5f5f5;
        border-radius: 4px;
        text-decoration: none;
    }

    @media (max-width: 768px) {
        #header {
            padding: 0px;
        }

        .shop-cart-icon:hover .shop-cart {
            display: none;
        }

        .small-nav {
            display: none;
        }

        .gb-menu {
            display: block;
        }

        .footer-column {
            width: 100%;
            margin-top: 30px;
        }

        .global-header {
            padding: 10px;
        }
    }