@font-face {
font-family: 'GoodTiming'; 
src: url('/public/asset/font/good_timing/good-timing-bd.otf'); 
}

.body-lock {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}


.gk-header {
  background: linear-gradient(88deg,rgba(0, 33, 0, 1) 0%, rgba(5, 125, 21, 1) 50%, rgba(0, 33, 0, 1) 100%);
  position: relative; 
  z-index: 100;
}

.gk-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
}



.gk-hamburger {
    color: #ffffff;
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 0;
}
.gk-hamburger:hover { background: #f3f3f3; }
.gk-hamburger svg { width: 22px; height: 22px; }

.gk-brand { display: flex; align-items: center; flex: 0 0 auto; }
.gk-brand__logo { height: 42px; width: auto; display: block; }

.gk-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  margin-right: 10PX;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: 'SatoshiVariable', sans-serif;
}
.gk-nav__link { font-size: 14px; color: #ffffff; text-decoration: none; padding: 8px 6px; border-radius: 10px; }


.gk-nav__link:hover { background: #f3f3f3; color:#000; }
.gk-nav__link.is-active { color: #e6a941; font-weight: 600 !important; }

.gk-chevron { width: 18px; height: 18px; opacity: .7; }

.gk-search-wrapper { flex: 1 1 auto; position: relative; }


.gk-search { 
  display: flex; 
  align-items: center; 
  background: #f1f1f1; 
  border-radius: 10px; 
  height: 35px; 
  padding: 0 16px; 
  gap: 12px; 
}

.gk-search__icon {
  display: flex;          
  align-items: center;    
  justify-content: center;
  height: 100%;
}

.gk-search__icon svg { 
  width: 20px;   
  height: 20px; 
  opacity: .55; 
  display: block;
}

.gk-search__input { 
  width: 100%; 
  height: 100%;     
  border: 0; 
  outline: none; 
  background: transparent; 
  font-size: 14px; 
  font-family: 'SatoshiVariable', sans-serif; 
  padding: 0;        
  margin: 0;         
  line-height: normal; 
  color: #111;       
}

.gk-search__input::placeholder { 
  color: #8a8a8a; 
  opacity: 1; 
}


.gk-search-results { position: absolute; top: 48px; left: 0; right: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12); max-height: 400px; overflow-y: auto; display: none; z-index: 1000; }
.gk-search-results.show { display: block; }
.gk-search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; text-decoration: none; color: #1b1b1b; border-bottom: 1px solid #f3f3f3; transition: background .2s; font-family: 'SatoshiVariable', sans-serif; }
.gk-search-result-item:last-child { border-bottom: none; }
.gk-search-result-item:hover { background: #f9fafb; }
.gk-search-result-img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; background: #f5f5f5; flex-shrink: 0; }
.gk-search-result-info { flex: 1; min-width: 0; }
.gk-search-result-name { font-size: 14px; font-weight: 600; color: #111; margin: 0 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gk-search-result-meta { font-size: 12px; color: #666; display: flex; gap: 8px; align-items: center; }
.gk-search-result-brand { padding: 2px 8px; background: #f0f0f0; border-radius: 4px; font-size: 11px; }
.gk-search-no-results, .gk-search-loading { padding: 24px 16px; text-align: center; color: #999; font-size: 14px; font-family: 'SatoshiVariable', sans-serif; }
.gk-search-view-all { display: block; padding: 12px 16px; text-align: center; color: #111; font-weight: 600; font-size: 13px; text-decoration: none; border-top: 1px solid #e5e7eb; background: #fafafa; border-radius: 0 0 14px 14px; font-family: 'SatoshiVariable', sans-serif; }
.gk-search-view-all:hover { background: #f3f3f3; }

.gk-actions { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; margin-left:10px; }

.gk-iconbtn { position: relative; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; }
.gk-iconbtn:hover { background: #f3f3f3; }
.gk-icon-svg { width: 36px; height: 36px; display: block; color: #cecece; }
.gk-iconbtn:hover .gk-icon-svg { color: #000; }

.gk-auth { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.gk-btn { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 14px; border-radius: 999px; font-size: 13px; font-weight: 600; text-decoration: none; font-family: 'SatoshiVariable', sans-serif; line-height: 1; white-space: nowrap; transition: background .2s, border-color .2s, transform .05s; }
.gk-btn:active { transform: translateY(1px); }
.gk-btn--ghost { color: #111; border: 1px solid #e5e7eb; background: #fff; }
.gk-btn--ghost:hover { background: #f3f3f3; }
.gk-btn--solid { color: #000000; border: 1px solid #111; background: #ebac43; }
.gk-btn--solid:hover { background: #ffda9b; }


.gk-btn .gk-btn-icon { display: none; align-items: center; justify-content: center; }
.gk-btn .gk-btn-icon svg { width: 23px; height: 23px; }

.gk-badge { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 4px; border-radius: 999px; background: #74a660; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: 'SatoshiVariable', sans-serif; border: 2px solid #fff; }

.gk-user-menu { position: relative; margin-left: 8px; }
.gk-user-btn { display: flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; border: 1px solid #e5e7eb; border-radius: 999px; background: #fff; cursor: pointer; transition: all .2s; font-family: 'SatoshiVariable', sans-serif; height: 36px; }
.gk-user-btn:hover { background: #f9fafb; border-color: #ccc; }
.gk-user-avatar, .gk-user-avatar-placeholder { width: 27px; height: 27px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.gk-user-avatar-placeholder { background: #111; color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 13px; }
.gk-user-name { font-weight: 600; font-size: 13px; color: #111; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gk-user-dropdown { position: absolute; top: calc(100% + 6px); right: 0; background: white; border: 1px solid #e5e7eb; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12); min-width: 240px; display: none; overflow: hidden; z-index: 1000; }
.gk-user-dropdown.show { display: block; }
.gk-user-dropdown-header { padding: 14px 16px; background: #f9fafb; border-bottom: 1px solid #eee; }
.gk-user-dropdown-name { font-weight: 600; font-size: 14px; color: #111; margin: 0 0 4px; font-family: 'SatoshiVariable', sans-serif; }
.gk-user-dropdown-email { font-size: 12px; color: #666; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: 'SatoshiVariable', sans-serif; }
.gk-user-dropdown-divider { height: 1px; background: #eee; }
.gk-user-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: #333; text-decoration: none; font-size: 13px; font-weight: 500; transition: background .2s; cursor: pointer; border: none; background: none; width: 100%; text-align: left; font-family: 'SatoshiVariable', sans-serif; }
.gk-user-dropdown-item:hover { background: #f9fafb; }
.gk-user-dropdown-item svg { flex-shrink: 0; color: #666; }
.gk-user-logout { color: #dc2626; }
.gk-user-logout svg { color: #dc2626; }


.gk-subnav {
  background: transparent; 
  border-bottom: 1px solid rgba(255,255,255,0.1);} 

.gk-subnav__inner {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 18px;   
  display: flex;
  align-items: center;
  gap: 0;
  height: 30px;
}


.gk-subnav__all {
  position: relative;
  flex-shrink: 0;
}

.gk-subnav__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 12px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  transition: background 0.15s;
  white-space: nowrap;
}

.gk-subnav__all-btn:hover,
.gk-subnav__all.is-open .gk-subnav__all-btn {
  background: rgba(255,255,255,0.2);
}

.gk-subnav__grid-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gk-subnav__caret {
  width: 14px;
  height: 14px;
  transition: transform 0.15s;
  opacity: 0.85;
}

.gk-subnav__all.is-open .gk-subnav__caret {
  transform: rotate(180deg);
}


.gk-subnav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
  z-index: 999;
  padding: 6px 0;
}

.gk-subnav__all.is-open .gk-subnav__dropdown {
  display: block;
}

.gk-subnav__dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  font-family: 'SatoshiVariable', sans-serif;
  transition: background 0.1s;
}

.gk-subnav__dd-item:hover {
  background: #f0f9f0;
  color: #145214;
}

.gk-subnav__dd-item svg {
  flex-shrink: 0;
  color: #145214;
  opacity: 0.7;
}

.gk-subnav__dd-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 4px 0;
}


.gk-subnav__sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  margin: 0 1px;
  flex-shrink: 0;
}

.gk-subnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-left: 30px;
}

.gk-subnav__links::-webkit-scrollbar { display: none; }

.gk-subnav__link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'SatoshiVariable', sans-serif;
  white-space: nowrap;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.gk-subnav__link:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}


@media (max-width: 768px) {
  .gk-subnav { display: none; }
}

.gk-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.gk-mobile-overlay.is-open { display: block; }

.gk-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.gk-mobile-drawer.is-open { transform: translateX(0); }

.gk-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.gk-mobile-drawer__close {
    color: #111;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 0;
}
.gk-mobile-drawer__close:hover { background: #f3f3f3; }
.gk-mobile-drawer__close svg { width: 18px; height: 18px; }

.gk-mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 10px 10px;
  gap: 2px;
  flex: 1;
}

.gk-mobile-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  font-family: 'SatoshiVariable', sans-serif;
  transition: background .15s;
}
.gk-mobile-drawer__link:hover { background: #f5f5f5; }
.gk-mobile-drawer__link.is-active {
  background: #eaf4ea;
  color: #145214;
  font-weight: 700;
}
.gk-mobile-drawer__link.is-active svg { stroke: #145214; }

.gk-mobile-drawer__auth {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.gk-mobile-drawer__auth-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'SatoshiVariable', sans-serif;
}
.gk-mobile-drawer__auth-btn--ghost { color: #111; border: 1px solid #e5e7eb; background: #fff; }
.gk-mobile-drawer__auth-btn--ghost:hover { background: #f3f3f3; }
.gk-mobile-drawer__auth-btn--solid { color: #fff; border: 1px solid #111; background: #111; }
.gk-mobile-drawer__auth-btn--solid:hover { background: #000; }



@media (max-width: 860px) {
  .gk-hamburger { display: inline-flex; }
  .gk-actions { margin-left: auto; gap:0px;}
  .gk-nav { display: none; }
  .gk-search-wrapper { display: none; }
  .gk-user-btn {
    border: none;
    background: transparent;
    padding: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
  }
  .gk-hamburger:hover { background: #ffffff; }
.gk-hamburger:hover svg { stroke: #000000; }
  .gk-user-btn:hover { background: transparent; }
  .gk-chevron { display: none; }
  .gk-user-avatar,
  .gk-user-avatar-placeholder {
    width: 27px;
    height: 27px;
  }
  .gk-btn--desktop-only { display: none; }
  .gk-btn .gk-btn-label { display: none; }
  .gk-btn .gk-btn-icon { display: inline-flex; }
  .gk-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    border-color: transparent;
    color: #ffffff;
  }
  .gk-btn:hover { background: #f3f3f3; }
.gk-btn:hover .gk-btn-icon svg { color: #000000; stroke: #000000; }
  .gk-auth { gap: 4px; margin-left: 0; }
  .gk-icon-svg { width: 28px; height: 28px; display: block; color: #ffffff; }
  .gk-iconbtn:hover { background: #ffffff; }
  .gk-iconbtn:hover .gk-icon-svg { color: #000000; }

  .gk-search-result-item { 
  gap: 4px; 
  padding: 5px 12px; 
    }
    
}



@media (max-width: 860px) {
  .gk-brand--desktop-only {
    display: none !important;
  }

  .gk-search-wrapper--mobile-fill {
    display: flex !important;
    flex: 1;
    min-width: 0;
    margin: 0 8px;
  }

  .gk-search-wrapper--mobile-fill .gk-search {
    width: 100%;
  }
}

@media (min-width: 861px) {
  .gk-brand--desktop-only {
    display: flex;
  }
}


@media (min-width: 861px) {
  .gk-mobile-drawer {
    display: none !important;
  }
  .gk-mobile-overlay {
    display: none !important;
  }
}