:root {
    --gk-adminbar-h: 0px;
    --gk-header-h: 0px;
    --gk-header-bg: rgba(255, 255, 255, .92);
    --gk-header-surface: #ffffff;
    --gk-header-text: #171717;
    --gk-header-muted: #737373;
    --gk-header-border: rgba(229, 231, 235, .92);
    --gk-header-soft: #f5f5f5;
    --gk-header-soft-2: #fafafa;
    --gk-header-primary: var(--gk-primary, #2563eb);
    --gk-header-primary-soft: rgba(37, 99, 235, .09);
    --gk-header-danger: #ef4056;
    --gk-header-shadow: 0 8px 30px rgba(15, 23, 42, .06);
    --gk-header-shadow-lg: 0 24px 64px rgba(15, 23, 42, .14);
    --gk-header-radius: 20px;
    --gk-header-radius-lg: 24px;
    --gk-header-width: min(100% - 24px, 1680px);
}

.gk-site {
    overflow-x: clip;
    overflow-x: hidden;
}

.gk-pro-header,
.gk-header {
    position: sticky;
    top: 0;
    z-index: var(--gk-z-header, 90);
    border-bottom: 1px solid var(--gk-header-border);
    background: var(--gk-header-bg);
    color: var(--gk-header-text);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow .22s ease, transform .24s ease, background .22s ease;
    direction: rtl;
}

.gk-pro-header *,
.gk-pro-header *::before,
.gk-pro-header *::after {
    box-sizing: border-box;
}

.gk-pro-header a {
    color: inherit;
    text-decoration: none;
}

.gk-pro-header button,
.gk-pro-header input {
    font-family: inherit;
}

.gk-header.is-compact {
    box-shadow: var(--gk-header-shadow);
}

.gk-header__inner {
    width: var(--gk-header-width);
    margin-inline: auto;
}

.gk-header__main-row {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 72px;
    transition: min-height .25s ease;
}

.gk-header.is-compact .gk-header__main-row {
    min-height: 64px;
}

.gk-header__brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.gk-header__icon-btn,
.gk-header-action,
.gk-header-login,
.gk-mobile-search-trigger,
.gk-header-drawer__login,
.gk-header-drawer__logout,
.gk-header-drawer__account-grid a {
    -webkit-tap-highlight-color: transparent;
}

.gk-header__icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gk-header-border);
    border-radius: 16px;
    background: var(--gk-header-surface);
    color: #404040;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .12s ease;
}

.gk-header__icon-btn:hover {
    background: var(--gk-header-soft-2);
    border-color: #d4d4d4;
    color: var(--gk-header-primary);
}

.gk-header__icon-btn:active,
.gk-header-action:active,
.gk-header-login:active {
    transform: translateY(1px);
}

.gk-header__menu-btn {
    display: none;
}

.gk-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.gk-header-logo,
.gk-header-drawer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gk-header-logo img,
.gk-header-drawer__logo img,
.gk-header-logo .custom-logo,
.gk-header-drawer__logo .custom-logo {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 42px;
    object-fit: contain;
}

.gk-header-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: var(--gk-header-primary-soft);
    color: var(--gk-header-primary);
    font-size: 17px;
    font-weight: 950;
}

.gk-header-logo__text {
    color: var(--gk-header-text);
    font-size: 19px;
    font-weight: 950;
    white-space: nowrap;
}

.gk-header-search {
    position: relative;
    flex: 1 1 640px;
    max-width: 640px;
    min-width: 240px;
}

.gk-header-search__form {
    position: relative;
    display: block;
}

.gk-header-search__input,
.gk-search .search-input {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    border-radius: 24px;
    background: var(--gk-header-soft);
    color: #111827;
    font-size: 14px;
    font-weight: 650;
    outline: none;
    padding: 0 48px 0 46px;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.gk-header-search__input:hover {
    background: #eeeeee;
}

.gk-header-search__input:focus,
.gk-search.is-open .gk-header-search__input {
    border-color: rgba(37, 99, 235, .24);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .09);
}

.gk-header-search__input::placeholder {
    color: transparent;
}

.gk-header-search__icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #9ca3af;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.gk-header-search__input:focus ~ .gk-header-search__icon,
.gk-search.is-open .gk-header-search__icon {
    color: var(--gk-header-primary);
}

.gk-header-search__icon:hover,
.gk-header-search__input:focus + .gk-header-search__icon,
.gk-header-search:focus-within .gk-header-search__icon {
    color: var(--gk-header-primary);
}

.gk-header-search__placeholder {
    position: absolute;
    top: 50%;
    right: 48px;
    left: 46px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity .18s ease;
}

.gk-header-search__input:focus ~ .gk-header-search__placeholder,
.gk-header-search__input:not(:placeholder-shown) ~ .gk-header-search__placeholder {
    opacity: 0;
}

.gk-header-search__clear {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .16s ease, color .16s ease;
}

.gk-header-search.has-value .gk-header-search__clear,
.gk-search.has-value .gk-header-search__clear {
    display: inline-flex;
}

.gk-header-search__clear:hover {
    background: #e5e7eb;
    color: #404040;
}

.gk-header__search-backdrop {
    position: fixed;
    inset: var(--gk-header-h, 72px) 0 0;
    z-index: -1;
    background: rgba(15, 23, 42, .16);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.gk-header.search-open .gk-header__search-backdrop {
    opacity: 1;
    visibility: visible;
}

.gk-search-panel {
    position: absolute;
    z-index: 120;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    max-height: min(72vh, 620px);
    border: 1px solid var(--gk-header-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--gk-header-shadow-lg);
    overflow: hidden auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.985);
    transform-origin: top center;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.gk-search-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.gk-header__spacer {
    flex: 1 1 auto;
    min-width: 16px;
}

.gk-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex: 0 0 auto;
}

.gk-header-action,
.gk-header-login {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    height: 44px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    color: #404040;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, color .16s ease, transform .12s ease;
}

.gk-header-action:hover,
.gk-header-login:hover,
.gk-header-account.is-open .gk-header-action--account {
    border-color: var(--gk-header-border);
    background: var(--gk-header-soft-2);
    color: var(--gk-header-primary);
}

.gk-header-login {
    min-width: auto;
    padding: 0 13px;
    color: #262626;
    font-size: 14px;
    font-weight: 850;
}

.gk-header-action__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--gk-header-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
    transform: none;
}

.gk-header-action__dot,
.gk-notif-badge {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: var(--gk-header-danger);
    box-shadow: 0 0 0 0 rgba(239, 64, 86, .7);
    animation: gkHeaderPulse 2s infinite;
}

@keyframes gkHeaderPulse {
    70% { box-shadow: 0 0 0 6px rgba(239, 64, 86, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 64, 86, 0); }
}

.gk-header-account {
    position: relative;
}

.gk-header-account__avatar,
.gk-header-account-menu__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 15px;
    background: var(--gk-header-primary-soft);
    color: var(--gk-header-primary);
    font-size: 13px;
    font-weight: 950;
}

.gk-header-account__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    color: #a3a3a3;
    transition: transform .16s ease;
}

.gk-header-account__chevron .gk-icon {
    width: 16px;
    height: 16px;
}

.gk-header-account.is-open .gk-header-account__chevron {
    transform: rotate(180deg);
}

.gk-header-account-menu,
.gk-acc-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    z-index: 130;
    width: 292px;
    max-width: min(92vw, 320px);
    border: 1px solid #f3f4f6;
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--gk-header-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.985);
    transform-origin: top left;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    overflow: hidden;
}

.gk-header-account.is-open .gk-header-account-menu,
.gk-account.is-open .gk-acc-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.gk-header-account-menu__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.gk-header-account-menu__meta {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.gk-header-account-menu__meta strong,
.gk-header-account-menu__meta small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gk-header-account-menu__meta strong {
    color: #171717;
    font-size: 14px;
    font-weight: 950;
}

.gk-header-account-menu__meta small {
    color: #737373;
    font-size: 12px;
}

.gk-header-account-menu__list {
    padding: 8px;
}

.gk-header-account-menu__item,
.gk-acc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 16px;
    color: #404040;
    font-size: 13px;
    font-weight: 850;
    transition: background .16s ease, color .16s ease;
}

.gk-header-account-menu__item:hover,
.gk-acc-item:hover {
    background: #f9fafb;
    color: var(--gk-header-primary);
}

.gk-header-account-menu__item .gk-icon:first-child {
    width: 19px;
    height: 19px;
    color: #737373;
}

.gk-header-account-menu__item .gk-icon:last-child {
    width: 15px;
    height: 15px;
    margin-inline-start: auto;
    color: #d4d4d4;
}

.gk-header-account-menu__logout,
.gk-acc-item--logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 16px 14px;
    min-height: 42px;
    border-radius: 16px;
    background: rgba(239, 64, 86, .08);
    color: #dc2626;
    font-size: 13px;
    font-weight: 950;
}

.gk-header-account-menu__logout:hover {
    background: rgba(239, 64, 86, .12);
}

.gk-header__mobile-search-row {
    display: none;
    overflow: hidden;
    transition: max-height .24s ease, opacity .24s ease, transform .24s ease;
}

.gk-mobile-search-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    background: #f8fafc;
    color: #6b7280;
    padding: 6px 9px;
    text-align: right;
    cursor: pointer;
}

.gk-mobile-search-trigger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: #fff;
    color: var(--gk-header-primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.gk-mobile-search-trigger__text {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}

.gk-mobile-search-trigger__badge {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 12px;
    background: #fff;
    color: #525252;
    font-size: 11px;
    font-weight: 950;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .04);
}

.gk-header__nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 46px;
    border-top: 1px solid rgba(229, 231, 235, .82);
    overflow: visible;
    transition: max-height .28s ease, opacity .24s ease, transform .28s ease, margin .28s ease;
}

.gk-header.gk-bottom-hidden .gk-header__nav-row {
    max-height: 0;
    margin-top: -46px;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.gk-header-nav,
.gk-main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex: 1 1 auto;
}

.gk-header-nav__cat {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
}

.gk-header-nav__cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    color: #404040;
    font-size: 14px;
    font-weight: 950;
    white-space: nowrap;
    transition: color .16s ease;
}

.gk-header-nav__cat-btn:hover,
.gk-header-nav__cat:hover .gk-header-nav__cat-btn {
    color: var(--gk-header-primary);
}

.gk-header-nav__cat-btn .gk-icon:last-child {
    width: 16px;
    height: 16px;
    transition: transform .16s ease;
}

.gk-header-nav__cat:hover .gk-header-nav__cat-btn .gk-icon:last-child {
    transform: rotate(180deg);
}

.gk-header-menu,
.gk-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: 0;
}

.gk-header-menu > li,
.gk-menu > li {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    margin: 0;
    padding: 0;
}

.gk-header-menu > li > a,
.gk-menu > li > a,
.gk-header-nav__quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 0;
    color: #525252;
    font-size: 13.5px;
    font-weight: 780;
    white-space: nowrap;
    transition: color .16s ease;
}

.gk-header-menu > li:hover > a,
.gk-header-menu > li.current-menu-item > a,
.gk-menu > li:hover > a,
.gk-menu > li.current-menu-item > a,
.gk-header-nav__quick-link:hover {
    color: var(--gk-header-primary);
}

.gk-header-menu .sub-menu,
.gk-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 125;
    width: 250px;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--gk-header-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--gk-header-shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.985);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.gk-header-menu li:hover > .sub-menu,
.gk-header-menu li:focus-within > .sub-menu,
.gk-menu li:hover > .sub-menu,
.gk-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.gk-header-menu .sub-menu a,
.gk-menu .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 12px;
    color: #525252;
    font-size: 13px;
    font-weight: 750;
}

.gk-header-menu .sub-menu a:hover,
.gk-menu .sub-menu a:hover {
    background: #f8fafc;
    color: var(--gk-header-primary);
}

.gk-header-menu .sub-menu .sub-menu,
.gk-menu .sub-menu .sub-menu {
    top: -8px;
    right: 100%;
    margin-right: 8px;
}

.gk-header-nav__quick {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.gk-header-nav__quick-link .gk-icon {
    width: 17px;
    height: 17px;
}

.gk-header-trust {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: #737373;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.gk-header-trust .gk-icon {
    color: var(--gk-header-primary);
    width: 18px;
    height: 18px;
}

#gkOverlay.gk-header-overlay {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(15, 23, 42, .42);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

#gkOverlay.gk-header-overlay.show {
    opacity: 1;
    visibility: visible;
}

#gkDrawer.gk-header-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    width: min(88vw, 340px);
    background: #fff;
    box-shadow: var(--gk-header-shadow-lg);
    transform: translateX(105%);
    transition: transform .28s ease;
    overflow: hidden;
}

#gkDrawer.gk-header-drawer.show {
    transform: translateX(0);
}

.gk-header-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.gk-header-drawer__logo .custom-logo {
    max-width: 145px;
}

.gk-header-drawer__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 14px 10px;
}

.gk-header-drawer__nav {
    display: grid;
    gap: 4px;
}

.gk-header-drawer__item,
.gk-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 16px;
    color: #404040;
    font-size: 14px;
    font-weight: 850;
    transition: background .16s ease, color .16s ease;
}

.gk-header-drawer__item:hover,
.gk-drawer-nav a:hover {
    background: #f8fafc;
    color: var(--gk-header-primary);
}

.gk-header-drawer__foot {
    border-top: 1px solid #f1f5f9;
    padding: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}

.gk-header-drawer__user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    background: #f8fafc;
}

.gk-header-drawer__user > span:last-child {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.gk-header-drawer__user strong,
.gk-header-drawer__user small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gk-header-drawer__user strong {
    color: #171717;
    font-size: 13px;
    font-weight: 950;
}

.gk-header-drawer__user small {
    color: #737373;
    font-size: 11px;
}

.gk-header-drawer__account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gk-header-drawer__account-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 70px;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    background: #fff;
    color: #404040;
    font-size: 11px;
    font-weight: 950;
}

.gk-header-drawer__account-grid a .gk-icon {
    color: var(--gk-header-primary);
}

.gk-header-drawer__logout,
.gk-header-drawer__login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 10px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 950;
}

.gk-header-drawer__logout {
    background: rgba(239, 64, 86, .08);
    color: #dc2626;
}

.gk-header-drawer__login {
    background: var(--gk-header-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .2);
}

.gk-mobile-search {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: #fff;
    transform: translateY(105%);
    transition: transform .28s ease;
}

.gk-mobile-search.is-open {
    transform: translateY(0);
}

.gk-mobile-search__bar {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}

.gk-mobile-search__form {
    position: relative;
    flex: 1 1 auto;
}

.gk-mobile-search__form > span {
    position: absolute;
    top: 50%;
    right: 13px;
    display: inline-flex;
    color: #9ca3af;
    transform: translateY(-50%);
    pointer-events: none;
}

.gk-mobile-search__form input {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: #f5f5f5;
    color: #111827;
    font-size: 16px;
    font-weight: 650;
    outline: none;
    padding: 0 42px 0 14px;
}

.gk-mobile-search__form input:focus {
    border-color: rgba(37, 99, 235, .24);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .09);
}

.gk-mobile-search__empty {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    color: #cbd5e1;
    text-align: center;
}

.gk-mobile-search__empty .gk-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    opacity: .6;
}

.gk-mobile-search__empty strong {
    color: #737373;
    font-size: 15px;
    font-weight: 950;
}

.gk-mobile-search__empty p {
    max-width: 280px;
    margin: 8px 0 0;
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1.9;
}

body.gk-drawer-open,
body.gk-mobile-search-open,
body.gk-mini-cart-open {
    overflow: hidden;
}

.gk-pro-header :focus-visible,
#gkDrawer.gk-header-drawer :focus-visible,
#gkMobileSearch.gk-mobile-search :focus-visible {
    outline: 2px solid var(--gk-header-primary);
    outline-offset: 3px;
}

@media (min-width: 993px) {
    .gk-header .gk-header__nav-row {
        max-height: 46px;
    }
}

@media (max-width: 1240px) {
    .gk-header-trust {
        display: none;
    }

    .gk-header-nav__quick {
        gap: 14px;
    }

    .gk-header-menu,
    .gk-menu {
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .gk-header__inner {
        width: min(100% - 20px, 100%);
    }

    .gk-header__main-row {
        min-height: 60px;
        gap: 10px;
    }

    .gk-header__menu-btn {
        display: inline-flex;
    }

    .gk-header-search {
        max-width: none;
    }

    .gk-header__nav-row,
    .gk-header-nav,
    .gk-main-nav {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .gk-header-logo img,
    .gk-header-logo .custom-logo {
        max-width: 126px;
        max-height: 34px;
    }

    .gk-header-logo__mark {
        width: 36px;
        height: 36px;
        border-radius: 14px;
    }

    .gk-header-logo__text {
        font-size: 16px;
    }

    .gk-header-search {
        display: none;
    }

    .gk-header__spacer {
        flex: 1 1 auto;
    }

    .gk-header-actions {
        gap: 3px;
    }

    .gk-header-action,
    .gk-header__icon-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 16px;
    }

    .gk-header-login span {
        display: none;
    }

    .gk-header-login {
        min-width: 40px;
        padding: 0;
    }

    .gk-header-action--notification,
    .gk-header-account {
        display: none;
    }

    .gk-header__mobile-search-row {
        display: block;
        max-height: 70px;
        padding: 0 0 12px;
        opacity: 1;
        transform: translateY(0);
    }

    .gk-header.gk-hide .gk-header__mobile-search-row {
        max-height: 0;
        padding-bottom: 0;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

    .gk-header.gk-hide {
        transform: translateY(-100%);
    }
}

@media (max-width: 420px) {
    .gk-header__inner {
        width: min(100% - 16px, 100%);
    }

    .gk-header-logo img,
    .gk-header-logo .custom-logo {
        max-width: 108px;
    }

    .gk-header__brand-group {
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gk-pro-header,
    .gk-pro-header *,
    .gk-header-drawer,
    .gk-mobile-search,
    .gk-header-overlay,
    .gk-search-panel {
        transition: none !important;
        animation: none !important;
    }
}

#gkMiniCart {
    z-index: 9998;
}

#gkMiniCart[aria-hidden="true"] {
    pointer-events: none;
}
.gk-pro-header .gk-top-link,
.gk-header-drawer .gk-top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    min-height: 34px;
    line-height: 1.5;
}

.gk-pro-header .gk-top-link .gk-icon,
.gk-header-drawer .gk-top-link .gk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.gk-pro-header .gk-top-link .gk-icon-img img,
.gk-header-drawer .gk-top-link .gk-icon-img img {
    display: block;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain;
    object-position: center;
    position: static !important;
    inset: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}

.gk-pro-header .gk-top-link .gk-title,
.gk-header-drawer .gk-top-link .gk-title {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.6;
}
.gk-pro-header .gk-icon-img,
.gk-header-drawer .gk-icon-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    overflow: hidden;
}

.gk-pro-header .gk-icon-img img,
.gk-header-drawer .gk-icon-img img {
    display: block;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain;
    position: static !important;
    transform: none !important;
}

/* Ganjeh Kala v1.3.2: visible submenu indicators for desktop and drawer menus */
.gk-submenu-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: currentColor;
    opacity: .72;
    transition: transform .18s ease, opacity .18s ease;
}

.gk-submenu-indicator svg {
    display: block;
    width: 14px;
    height: 14px;
}

.gk-header-menu > .menu-item-has-children:hover > a .gk-submenu-indicator--top,
.gk-header-menu > .menu-item-has-children:focus-within > a .gk-submenu-indicator--top,
.gk-menu > .menu-item-has-children:hover > a .gk-submenu-indicator--top,
.gk-menu > .menu-item-has-children:focus-within > a .gk-submenu-indicator--top,
.gk-main-nav li.gk-has-mega.is-open > .gk-top-link .gk-submenu-indicator--top {
    opacity: 1;
    transform: rotate(180deg);
}

.gk-header-menu .sub-menu a,
.gk-menu .sub-menu a {
    justify-content: space-between;
    gap: 10px;
}

.gk-submenu-indicator--nested {
    margin-inline-start: auto;
}

.gk-header-drawer__nav .gk-drawer-nav,
.gk-header-drawer__nav .gk-drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gk-header-drawer__nav .gk-drawer-nav li {
    position: relative;
}

.gk-header-drawer__nav .gk-drawer-nav .sub-menu[hidden] {
    display: none !important;
}

.gk-header-drawer__nav .gk-drawer-nav .sub-menu {
    display: grid;
    gap: 2px;
    padding-inline-start: 14px;
    padding-bottom: 4px;
}

.gk-header-drawer__nav .gk-drawer-nav .sub-menu a {
    min-height: 40px;
    font-size: 13px;
    font-weight: 800;
}

.gk-drawer-has-sub > a {
    padding-inline-end: 46px;
}

.gk-drawer-submenu-toggle {
    position: absolute;
    top: 7px;
    inset-inline-end: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.gk-drawer-submenu-toggle:hover,
.gk-drawer-submenu-toggle:focus-visible {
    background: rgba(37, 99, 235, .10);
    color: var(--gk-header-primary);
}

.gk-drawer-submenu-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform .18s ease;
}

.gk-drawer-has-sub.is-open > .gk-drawer-submenu-toggle svg {
    transform: rotate(180deg);
}


/* GK realfix v1.3.9: Header icon alignment + global image radius option */
.gk-header-actions .gk-header-action--notification,
.gk-header-actions .gk-header-action--cart {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
    flex: 0 0 44px;
}

.gk-header-actions .gk-header-action__icon,
.gk-header-actions .gk-header-action--cart > svg,
.gk-header-actions .gk-header-action--notification > svg {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.gk-header-actions .gk-header-action__icon svg,
.gk-header-actions .gk-header-action--cart svg,
.gk-header-actions .gk-header-action--notification svg {
    width: 22px;
    height: 22px;
    display: block;
    flex: 0 0 auto;
}

.gk-header-actions .gk-header-action__badge {
    top: -3px;
    inset-inline-end: -3px;
    right: auto;
}

.gk-header-actions .gk-header-action__dot,
.gk-header-actions .gk-notif-badge {
    top: 7px;
    inset-inline-end: 8px;
    right: auto;
}

/* GK Fix v1.4.4: product image radius only.
   این گزینه فقط روی تصاویر محصول اعمال می‌شود؛ نه بنر، برند، لوگو، استوری، آیکن یا تصاویر محتوایی. */
:where(
    .gk-product-card__image,
    .gk-product-card__thumb img,
    .gk-product-card__image-wrap img,
    .woocommerce ul.products li.product a img,
    body.post-type-archive-product img.wp-post-image,
    body.tax-product_cat img.wp-post-image,
    body.tax-product_tag img.wp-post-image,
    body.tax-product_brand img.wp-post-image,
    body.single-product .woocommerce-product-gallery img,
    body.single-product .woocommerce-product-gallery__image img,
    body.single-product div.product div.images img,
    .elementor-widget-ganjeh-kala-gallery .gk-gallery-container img,
    .elementor-widget-ganjeh-kala-gallery .gk-gallery-thumbnail,
    .product-card__image,
    .product-card__image-container img,
    .gk-product-grid__image img,
    .gk-main-img,
    .gk-hover-img,
    .gk-amazing-thumb img,
    .gk-offers__product-img-wrap img,
    .gk-story-product-card img,
    .gk-search-product-card__image img,
    .gk-mi-thumb img,
    .woocommerce-cart .product-thumbnail img,
    .woocommerce-checkout .product-thumbnail img,
    .gk-product-name img,
    .gk-fbt__item img,
    .gk-recent-card img,
    .gk-next-panel__row .product-thumbnail img,
    .gk-next-panel__table .product-thumbnail img,
    .woocommerce-account .woocommerce-orders-table img,
    .woocommerce-view-order .product-thumbnail img
) {
    border-radius: var(--gk-image-radius, 0px) !important;
}

:where(
    .gk-product-card__thumb,
    .gk-product-card__image-wrap,
    .woocommerce ul.products li.product a,
    body.single-product .woocommerce-product-gallery__image,
    body.single-product div.product div.images .woocommerce-product-gallery__image,
    .elementor-widget-ganjeh-kala-gallery .gk-gallery-container,
    .elementor-widget-ganjeh-kala-gallery .gk-gallery-thumbnail,
    .product-card__image-container,
    .gk-product-grid__image,
    .gk-amazing-thumb,
    .gk-offers__product-img-wrap,
    .gk-search-product-card__image,
    .gk-mi-thumb a,
    .gk-fbt__item,
    .gk-recent-card
) {
    border-radius: var(--gk-image-radius, 0px) !important;
    overflow: hidden;
}

/* === GK Header Professional Settings v1.5.2 === */
.gk-pro-header,
.gk-header {
    top: var(--gk-adminbar-h, 0px);
    border-bottom-width: var(--gk-header-border-width, 1px);
    transition: box-shadow var(--gk-header-scroll-duration, .24s) ease,
                transform var(--gk-header-scroll-duration, .24s) ease,
                background var(--gk-header-scroll-duration, .24s) ease;
    backdrop-filter: blur(var(--gk-header-blur, 18px));
    -webkit-backdrop-filter: blur(var(--gk-header-blur, 18px));
    will-change: transform;
}

.gk-header.is-compact {
    background: var(--gk-header-bg-compact, var(--gk-header-bg, rgba(255,255,255,.96)));
}

.gk-header__inner {
    width: var(--gk-header-width, min(100% - 24px, 1680px));
}

.gk-header__main-row {
    min-height: var(--gk-header-main-h, 72px);
    gap: var(--gk-header-row-gap, 18px);
}

.gk-header.is-compact .gk-header__main-row {
    min-height: var(--gk-header-main-compact-h, 64px);
}

.gk-header-logo img,
.gk-header-drawer__logo img,
.gk-header-logo .custom-logo,
.gk-header-drawer__logo .custom-logo {
    max-width: var(--gk-header-logo-w, 185px);
    max-height: var(--gk-header-logo-h, 42px);
}

.gk-header-search {
    max-width: var(--gk-header-search-w, 640px);
}

.gk-header-search__input,
.gk-search .search-input {
    height: var(--gk-header-search-h, 50px);
    border-radius: var(--gk-header-search-radius, 24px);
    background: var(--gk-header-soft, #f5f5f5);
}

.gk-header__icon-btn,
.gk-header-action,
.gk-header-login {
    min-width: var(--gk-header-action-size, 44px);
    width: var(--gk-header-action-size, 44px);
    height: var(--gk-header-action-size, 44px);
    border-radius: var(--gk-header-radius, 18px);
}

.gk-header-login {
    width: auto;
}

.gk-header-actions {
    gap: var(--gk-header-actions-gap, 7px);
}

.gk-header-account__avatar,
.gk-header-account-menu__avatar {
    border-radius: calc(var(--gk-header-radius, 18px) - 3px);
}

.gk-header-account-menu,
.gk-acc-menu,
.gk-search-panel,
.gk-header-menu .sub-menu,
.gk-menu .sub-menu {
    border-radius: var(--gk-header-radius-lg, 24px);
}

.gk-header__nav-row {
    min-height: var(--gk-header-nav-h, 46px);
}

.gk-header-menu > li,
.gk-menu > li,
.gk-header-menu > li > a,
.gk-menu > li > a,
.gk-header-nav__quick-link,
.gk-header-nav__cat,
.gk-header-nav__cat-btn {
    min-height: var(--gk-header-nav-h, 46px);
}

@media (min-width: 993px) {
    .gk-header .gk-header__nav-row {
        max-height: var(--gk-header-nav-h, 46px);
    }

    .gk-header.gk-bottom-hidden .gk-header__nav-row {
        max-height: 0;
        margin-top: calc(-1 * var(--gk-header-nav-h, 46px));
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        pointer-events: none;
    }
}

#gkDrawer.gk-header-drawer {
    width: min(88vw, var(--gk-header-drawer-w, 340px));
    background: var(--gk-header-drawer-bg, #fff);
}

#gkOverlay.gk-header-overlay {
    background: var(--gk-header-overlay, rgba(15, 23, 42, .42));
    backdrop-filter: blur(var(--gk-header-overlay-blur, 4px));
    -webkit-backdrop-filter: blur(var(--gk-header-overlay-blur, 4px));
}

.gk-mobile-search-trigger {
    min-height: var(--gk-header-mobile-search-h, 48px);
    border-radius: var(--gk-header-radius, 18px);
}

@media (max-width: 767px) {
    .gk-header__main-row {
        min-height: var(--gk-header-main-mobile-h, 60px);
    }

    .gk-header-logo img,
    .gk-header-logo .custom-logo {
        max-width: var(--gk-header-logo-mobile-w, 126px);
        max-height: var(--gk-header-logo-mobile-h, 34px);
    }

    .gk-header-action,
    .gk-header__icon-btn,
    .gk-header-login {
        min-width: var(--gk-header-mobile-action-size, 40px);
        width: var(--gk-header-mobile-action-size, 40px);
        height: var(--gk-header-mobile-action-size, 40px);
    }

    .gk-header__mobile-search-row {
        max-height: calc(var(--gk-header-mobile-search-h, 48px) + var(--gk-header-mobile-search-gap, 12px));
        padding-bottom: var(--gk-header-mobile-search-gap, 12px);
        transition: max-height var(--gk-header-scroll-duration, .24s) ease,
                    opacity var(--gk-header-scroll-duration, .24s) ease,
                    transform var(--gk-header-scroll-duration, .24s) ease,
                    padding var(--gk-header-scroll-duration, .24s) ease;
    }

    .gk-header.gk-mobile-bottom-hidden .gk-header__mobile-search-row,
    .gk-header.gk-hide .gk-header__mobile-search-row {
        max-height: 0;
        padding-bottom: 0;
        opacity: 0;
        transform: translate3d(0, -8px, 0);
        pointer-events: none;
    }

    .gk-header.gk-hide {
        transform: translate3d(0, -100%, 0);
    }
}

/* === GK Header Pro v1.5.3: reliable mobile scroll + deeper element styling === */
.gk-header__inner {
    padding-inline: var(--gk-header-inner-padding-x, 0px);
}

.gk-header__main-row {
    padding-block: var(--gk-header-main-padding-y, 0px);
}

.gk-header__brand-group,
.gk-header-logo,
.gk-header-drawer__logo {
    gap: var(--gk-header-logo-gap, 10px);
}

.gk-header-logo__mark {
    width: var(--gk-header-logo-mark-size, 40px);
    height: var(--gk-header-logo-mark-size, 40px);
    background: var(--gk-header-logo-mark-bg, var(--gk-header-primary-soft));
    color: var(--gk-header-logo-mark-color, var(--gk-header-primary));
}

.gk-header-logo__text {
    color: var(--gk-header-logo-text, var(--gk-header-text));
    font-size: var(--gk-header-logo-font-size, 19px);
}

.gk-header-action,
.gk-header-login,
.gk-header__icon-btn {
    color: var(--gk-header-action-color, #404040);
    background: var(--gk-header-action-bg, transparent);
    border-color: var(--gk-header-action-border, transparent);
}

.gk-header-action:hover,
.gk-header-login:hover,
.gk-header__icon-btn:hover {
    color: var(--gk-header-action-color-hover, var(--gk-header-primary));
    background: var(--gk-header-action-bg-hover, #f8fafc);
}

.gk-header-actions .gk-header-action__icon svg,
.gk-header-actions .gk-header-action--cart svg,
.gk-header-actions .gk-header-action--notification svg,
.gk-header__icon-btn svg,
.gk-header-login svg {
    width: var(--gk-header-action-icon-size, 22px) !important;
    height: var(--gk-header-action-icon-size, 22px) !important;
}

.gk-header-action__badge,
.gk-cart-count-el,
.gk-header-actions .gk-notif-badge,
.gk-header-actions .gk-header-action__dot {
    background: var(--gk-header-badge-bg, var(--gk-header-danger)) !important;
    color: var(--gk-header-badge-color, #fff) !important;
}

.gk-header-action__badge,
.gk-cart-count-el {
    min-width: var(--gk-header-badge-size, 18px);
    height: var(--gk-header-badge-size, 18px);
    line-height: var(--gk-header-badge-size, 18px);
}

.gk-header-search__input,
.gk-search .search-input {
    background: var(--gk-header-search-bg, var(--gk-header-soft));
    border-color: var(--gk-header-search-border, transparent);
    color: var(--gk-header-search-text, #111827);
    font-size: var(--gk-header-search-font-size, 14px);
}

.gk-header-search__input:focus,
.gk-search.is-open .gk-header-search__input {
    background: var(--gk-header-search-bg-focus, #fff);
    border-color: var(--gk-header-search-border-focus, rgba(37,99,235,.24));
}

.gk-header-search__placeholder {
    color: var(--gk-header-search-placeholder, #8b8b8b);
}

.gk-header-search__icon svg,
.gk-header-search__clear svg,
.gk-mobile-search-trigger__icon svg {
    width: var(--gk-header-search-icon-size, 20px);
    height: var(--gk-header-search-icon-size, 20px);
}

.gk-search-panel {
    width: min(100vw - 24px, var(--gk-header-search-panel-w, 640px));
    max-height: var(--gk-header-search-panel-max-h, 430px);
    background: var(--gk-header-dropdown-bg, #fff);
    color: var(--gk-header-dropdown-text, #171717);
}

.gk-header__nav-row {
    background: var(--gk-header-nav-bg, transparent);
    transition: max-height var(--gk-header-scroll-duration, .24s) ease,
                opacity var(--gk-header-scroll-duration, .24s) ease,
                transform var(--gk-header-scroll-duration, .24s) ease,
                padding var(--gk-header-scroll-duration, .24s) ease,
                margin var(--gk-header-scroll-duration, .24s) ease;
}

.gk-header-menu,
.gk-menu,
.gk-header__nav-row ul {
    gap: var(--gk-header-nav-gap, 4px);
}

.gk-header-menu > li > a,
.gk-menu > li > a,
.gk-header-nav__quick-link,
.gk-header-nav__cat,
.gk-header-nav__cat-btn {
    color: var(--gk-header-nav-text, var(--gk-header-text));
    font-size: var(--gk-header-nav-font-size, 14px);
}

.gk-header-menu > li:hover > a,
.gk-menu > li:hover > a,
.gk-header-nav__quick-link:hover,
.gk-header-nav__cat:hover,
.gk-header-nav__cat-btn:hover {
    color: var(--gk-header-nav-hover-text, var(--gk-header-primary));
    background: var(--gk-header-nav-hover-bg, var(--gk-header-soft));
}

.gk-header-account-menu,
.gk-acc-menu,
.gk-header-menu .sub-menu,
.gk-menu .sub-menu {
    width: var(--gk-header-dropdown-w, 280px);
    background: var(--gk-header-dropdown-bg, #fff);
    color: var(--gk-header-dropdown-text, #171717);
}

#gkDrawer.gk-header-drawer {
    padding: var(--gk-header-drawer-padding, 18px);
}

.gk-header-drawer a,
.gk-header-drawer button,
.gk-drawer-submenu-toggle {
    min-height: var(--gk-header-drawer-item-h, 46px);
}

.gk-mobile-search-trigger {
    background: var(--gk-header-mobile-search-bg, var(--gk-header-soft));
    color: var(--gk-header-mobile-search-text, #525252);
}

@media (max-width: 992px) {
    .gk-header.gk-header--mobile-scroll .gk-header__mobile-search-row,
    .gk-header.gk-header--mobile-scroll .gk-header__nav-row {
        overflow: hidden;
        will-change: max-height, opacity, transform;
    }

    .gk-header.gk-hide-mobile-search .gk-header__mobile-search-row {
        max-height: 0 !important;
        min-height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translate3d(0, -10px, 0) !important;
        pointer-events: none !important;
    }

    .gk-header.gk-hide-mobile-nav .gk-header__nav-row {
        max-height: 0 !important;
        min-height: 0 !important;
        height: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translate3d(0, -10px, 0) !important;
        pointer-events: none !important;
    }

    .gk-header.gk-mobile-bottom-hidden:not(.gk-hide) {
        transform: translate3d(0, 0, 0) !important;
    }

    .gk-header.gk-hide {
        transform: translate3d(0, calc(-100% - var(--gk-adminbar-h, 0px)), 0) !important;
    }
}


/* === GK Header v1.5.4: hard mobile scroll fix + stronger style binding === */
.gk-header,
.gk-pro-header {
    background: var(--gk-header-bg, rgba(255,255,255,.92)) !important;
    color: var(--gk-header-text, #171717) !important;
    border-bottom-color: var(--gk-header-border, rgba(229,231,235,.92)) !important;
}

.gk-header.is-compact,
.gk-pro-header.is-compact {
    background: var(--gk-header-bg-compact, var(--gk-header-bg, rgba(255,255,255,.96))) !important;
}

.gk-header__main-row {
    background: var(--gk-header-main-row-bg, transparent) !important;
}

.gk-header__mobile-search-row {
    background: var(--gk-header-mobile-row-bg, transparent) !important;
}

.gk-header-action,
.gk-header-login,
.gk-header__icon-btn,
.gk-account-toggle,
.gk-cart-toggle,
.gk-mobile-search-trigger {
    color: var(--gk-header-action-color, #404040) !important;
    background: var(--gk-header-action-bg, transparent) !important;
    border-color: var(--gk-header-action-border, transparent) !important;
    border-width: var(--gk-header-action-border-width, 1px) !important;
    box-shadow: var(--gk-header-action-shadow, none) !important;
}

.gk-header-action:hover,
.gk-header-login:hover,
.gk-header__icon-btn:hover,
.gk-account-toggle:hover,
.gk-cart-toggle:hover,
.gk-mobile-search-trigger:hover,
.gk-header-account.is-open .gk-header-action--account {
    color: var(--gk-header-action-color-hover, var(--gk-header-primary)) !important;
    background: var(--gk-header-action-bg-hover, #f8fafc) !important;
    border-color: var(--gk-header-action-border-hover, var(--gk-header-action-border, transparent)) !important;
}

.gk-header-action--cart {
    color: var(--gk-header-cart-color, var(--gk-header-action-color, #404040)) !important;
    background: var(--gk-header-cart-bg, var(--gk-header-action-bg, transparent)) !important;
}

.gk-header-action--notification {
    color: var(--gk-header-notification-color, var(--gk-header-action-color, #404040)) !important;
    background: var(--gk-header-notification-bg, var(--gk-header-action-bg, transparent)) !important;
}

.gk-header-action--account,
.gk-header-login {
    color: var(--gk-header-account-color, var(--gk-header-action-color, #404040)) !important;
    background: var(--gk-header-account-bg, var(--gk-header-action-bg, transparent)) !important;
}

.gk-header-search__form,
.gk-header-search__input,
.gk-search .search-input {
    background: var(--gk-header-search-bg, var(--gk-header-soft)) !important;
    border-color: var(--gk-header-search-border, transparent) !important;
    border-width: var(--gk-header-search-border-width, 1px) !important;
    color: var(--gk-header-search-text, #111827) !important;
    box-shadow: var(--gk-header-search-shadow, none) !important;
}

.gk-header-search__input:focus,
.gk-search.is-open .gk-header-search__input,
.gk-header-search:focus-within .gk-header-search__form {
    background: var(--gk-header-search-bg-focus, #fff) !important;
    border-color: var(--gk-header-search-border-focus, rgba(37,99,235,.24)) !important;
}

.gk-header-search__placeholder,
.gk-header-search__input::placeholder,
.gk-mobile-search input::placeholder {
    color: var(--gk-header-search-placeholder, #8b8b8b) !important;
}

.gk-header__nav-row,
.gk-header-nav,
.gk-main-nav {
    background: var(--gk-header-nav-bg, transparent) !important;
}

.gk-header-menu > li > a,
.gk-menu > li > a,
.gk-header-nav__quick-link,
.gk-header-nav__cat-btn {
    border-radius: var(--gk-header-nav-item-radius, 12px) !important;
    padding-inline: var(--gk-header-nav-item-padding-x, 8px) !important;
}

.gk-header-menu .sub-menu,
.gk-menu .sub-menu,
.gk-header-account-menu,
.gk-acc-menu,
.gk-search-panel {
    background: var(--gk-header-dropdown-bg, #fff) !important;
    color: var(--gk-header-dropdown-text, #171717) !important;
    border-color: var(--gk-header-dropdown-border, var(--gk-header-border)) !important;
    box-shadow: var(--gk-header-dropdown-shadow, var(--gk-header-shadow-lg)) !important;
}

.gk-header-drawer,
#gkDrawer.gk-header-drawer {
    background: var(--gk-header-drawer-bg, #fff) !important;
    color: var(--gk-header-drawer-text, var(--gk-header-text)) !important;
}

.gk-header-drawer a,
.gk-drawer-nav a,
.gk-drawer-submenu-toggle,
.gk-header-drawer__account-grid a {
    border-radius: var(--gk-header-drawer-item-radius, 14px) !important;
    color: var(--gk-header-drawer-item-color, inherit) !important;
    background: var(--gk-header-drawer-item-bg, transparent) !important;
}

.gk-header-drawer a:hover,
.gk-drawer-nav a:hover,
.gk-drawer-submenu-toggle:hover,
.gk-header-drawer__account-grid a:hover {
    color: var(--gk-header-drawer-item-hover-color, var(--gk-header-primary)) !important;
    background: var(--gk-header-drawer-item-hover-bg, var(--gk-header-soft)) !important;
}

@media (max-width: 1200px) {
    body.gk-header-mobile-search-hidden .gk-header .gk-header__mobile-search-row,
    body.gk-header-mobile-search-hidden .gk-pro-header .gk-header__mobile-search-row,
    .gk-header.gk-hide-mobile-search .gk-header__mobile-search-row,
    .gk-pro-header.gk-hide-mobile-search .gk-header__mobile-search-row {
        display: none !important;
        max-height: 0 !important;
        min-height: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        overflow: hidden !important;
    }

    body.gk-header-mobile-nav-hidden .gk-header .gk-header__nav-row,
    body.gk-header-mobile-nav-hidden .gk-pro-header .gk-header__nav-row,
    .gk-header.gk-hide-mobile-nav .gk-header__nav-row,
    .gk-pro-header.gk-hide-mobile-nav .gk-header__nav-row {
        display: none !important;
        max-height: 0 !important;
        min-height: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        overflow: hidden !important;
    }

    body.gk-header-full-hidden .gk-header,
    body.gk-header-full-hidden .gk-pro-header,
    .gk-header.gk-hide,
    .gk-pro-header.gk-hide {
        transform: translate3d(0, calc(-100% - var(--gk-adminbar-h, 0px)), 0) !important;
    }

    body.gk-header-mobile-bottom-hidden .gk-header:not(.gk-hide),
    body.gk-header-mobile-bottom-hidden .gk-pro-header:not(.gk-hide) {
        transform: translate3d(0, 0, 0) !important;
    }
}
