:root {
  --gh-bg: #0b0e12;
  --gh-surface: #12161b;
  --gh-border: rgba(255, 255, 255, 0.08);
  --gh-gold: #c9a84c;
  --gh-gold-dim: rgba(201, 168, 76, 0.3);
  --gh-text: rgba(255, 255, 255, 0.92);
  --gh-muted: rgba(255, 255, 255, 0.45);
  --gh-height: 64px;
  --gh-height-sm: 52px;
  --drawer-width: 300px;
  --transition: 0.25s ease;
}

body.ga-light {
  --gh-bg: #f4f1eb;
  --gh-surface: #ffffff;
  --gh-border: rgba(0, 0, 0, 0.1);
  --gh-text: rgba(0, 0, 0, 0.88);
  --gh-muted: rgba(0, 0, 0, 0.4);
  --drawer-bg: #ffffff;
  --drawer-text: rgba(0, 0, 0, 0.85);
}

#ga-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  height: var(--gh-height) !important;
  background: var(--gh-bg) !important;
  border-bottom: 1px solid var(--gh-border) !important;
  transition: height var(--transition), background var(--transition), box-shadow var(--transition) !important;
  will-change: height !important;
}

#ga-header.ga-scrolled {
  height: var(--gh-height-sm) !important;
  background: rgba(11, 14, 18, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
  border-bottom-color: rgba(201, 168, 76, 0.15) !important;
}

body.ga-light #ga-header.ga-scrolled {
  background: rgba(244, 241, 235, 0.96) !important;
}

#ga-header__inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  position: relative !important;
}

#ga-header::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--gh-gold), transparent) !important;
  opacity: 0.7 !important;
}

#ga-header-spacer {
  height: var(--gh-height) !important;
  display: block !important;
}

#ga-scroll-progress {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 1.5px !important;
  width: 0% !important;
  background: linear-gradient(90deg, var(--gh-gold), #e8c96a) !important;
  transition: width 0.1s linear !important;
  pointer-events: none !important;
}

#ga-hamburger {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  border-radius: 4px !important;
  transition: background var(--transition) !important;
  flex-shrink: 0 !important;
}

#ga-hamburger:hover {
  background: rgba(201, 168, 76, 0.08) !important;
}

.ga-ham-line {
  display: block !important;
  width: 22px !important;
  height: 2px !important;
  background: var(--gh-text) !important;
  border-radius: 2px !important;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease !important;
  transform-origin: center !important;
}

#ga-header.ga-drawer-open .ga-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
#ga-header.ga-drawer-open .ga-ham-line:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
#ga-header.ga-drawer-open .ga-ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

#ga-header__logo {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  transition: opacity var(--transition) !important;
}

#ga-header__logo:hover {
  opacity: 0.85 !important;
}

#ga-header__logo-img {
  height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: height var(--transition) !important;
}

#ga-header.ga-scrolled #ga-header__logo-img {
  height: 32px !important;
}

#ga-header__logo-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1px !important;
}

.ga-logo-name {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 0.12em !important;
  color: var(--gh-text) !important;
  line-height: 1 !important;
}

.ga-logo-tag {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
  color: var(--gh-gold) !important;
  text-transform: uppercase !important;
}

#ga-header__actions {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex-shrink: 0 !important;
}

#ga-theme-toggle,
#ga-header__cart {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: 50% !important;
  color: var(--gh-text) !important;
  transition: border-color var(--transition), background var(--transition), transform 0.3s ease !important;
}

#ga-theme-toggle {
  background: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

#ga-theme-toggle:hover,
#ga-header__cart:hover {
  border-color: var(--gh-gold-dim) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}

#ga-theme-toggle:hover {
  transform: rotate(20deg) !important;
}

#ga-theme-toggle svg,
#ga-header__cart svg {
  width: 16px !important;
  height: 16px !important;
}

#ga-icon-sun { display: none !important; }
#ga-icon-moon { display: block !important; }
body.ga-light #ga-icon-sun { display: block !important; }
body.ga-light #ga-icon-moon { display: none !important; }

#ga-header__cart {
  position: relative !important;
  text-decoration: none !important;
}

#ga-cart-count {
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  min-width: 17px !important;
  height: 17px !important;
  background: #b21e1e !important;
  color: #fff !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 4px !important;
  border: 1.5px solid var(--gh-bg) !important;
  line-height: 1 !important;
}

#ga-cart-count:empty,
#ga-cart-count[data-count="0"] {
  display: none !important;
}

#ga-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.65) !important;
  z-index: 10998 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  backdrop-filter: blur(2px) !important;
}

#ga-drawer-overlay.ga-active {
  opacity: 1 !important;
  pointer-events: all !important;
}

#ga-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: var(--drawer-width) !important;
  max-width: 85vw !important;
  background: var(--gh-surface) !important;
  z-index: 10999 !important;
  transform: translateX(-100%) !important;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  border-right: 1px solid rgba(201, 168, 76, 0.12) !important;
}

#ga-drawer.ga-open {
  transform: translateX(0) !important;
}

#ga-drawer::-webkit-scrollbar { width: 3px !important; }
#ga-drawer::-webkit-scrollbar-track { background: transparent !important; }
#ga-drawer::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.2) !important; border-radius: 2px !important; }

.ga-drawer__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  flex-shrink: 0 !important;
}

.ga-drawer__logo,
.ga-drawer__wa {
  text-decoration: none !important;
}

.ga-drawer__logo-img {
  height: 36px !important;
  width: auto !important;
  object-fit: contain !important;
}

.ga-drawer__logo-text {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 20px !important;
  letter-spacing: 0.1em !important;
  color: var(--gh-text) !important;
}

#ga-drawer-close {
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  color: var(--gh-text) !important;
  transition: background var(--transition) !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

#ga-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

#ga-drawer-close svg {
  width: 14px !important;
  height: 14px !important;
}

.ga-drawer__divider {
  height: 1px !important;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.2), transparent) !important;
  margin: 4px 0 !important;
  flex-shrink: 0 !important;
}

.ga-drawer__nav {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px 12px !important;
  gap: 2px !important;
}

.ga-drawer__link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 12px !important;
  color: var(--gh-text) !important;
  text-decoration: none !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  transition: background var(--transition), color var(--transition) !important;
}

.ga-drawer__link svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  color: var(--gh-muted) !important;
}

.ga-drawer__link:hover,
.ga-drawer__link--active {
  background: rgba(201, 168, 76, 0.08) !important;
  color: var(--gh-gold) !important;
}

.ga-drawer__link:hover svg,
.ga-drawer__link--active svg {
  color: var(--gh-gold) !important;
}

.ga-drawer__section-label {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.35em !important;
  color: var(--gh-gold) !important;
  padding: 12px 24px 8px !important;
  text-transform: uppercase !important;
}

.ga-drawer__cats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  padding: 4px 12px 12px !important;
}

.ga-drawer__cat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 6px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  transition: border-color var(--transition), background var(--transition), transform var(--transition) !important;
}

.ga-drawer__cat:hover {
  border-color: rgba(201, 168, 76, 0.3) !important;
  background: rgba(201, 168, 76, 0.06) !important;
  transform: translateY(-2px) !important;
}

.ga-drawer__cat img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) invert(73%) sepia(42%) saturate(500%) hue-rotate(5deg) brightness(95%) !important;
}

.ga-drawer__cat span {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: rgba(255, 255, 255, 0.75) !important;
  text-align: center !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

.ga-drawer__cat--all {
  border-color: rgba(201, 168, 76, 0.2) !important;
}

.ga-drawer__cat--all span {
  color: var(--gh-gold) !important;
}

.ga-drawer__wa {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 8px 12px 20px !important;
  padding: 13px !important;
  background: linear-gradient(135deg, #2fbf6d, #159a54) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: filter var(--transition) !important;
}

.ga-drawer__wa:hover {
  filter: brightness(1.08) !important;
}

body.ga-light #ga-drawer {
  background: #fff !important;
  border-right-color: rgba(0, 0, 0, 0.1) !important;
}

body.ga-light .ga-drawer__link { color: rgba(0, 0, 0, 0.85) !important; }
body.ga-light .ga-drawer__cat span { color: rgba(0, 0, 0, 0.7) !important; }
body.ga-light .ga-drawer__cat { border-color: rgba(0, 0, 0, 0.08) !important; }
body.ga-light .ga-logo-name,
body.ga-light .ga-drawer__logo-text { color: rgba(0, 0, 0, 0.9) !important; }
body.ga-light #ga-drawer-close { background: rgba(0, 0, 0, 0.05) !important; border-color: rgba(0, 0, 0, 0.1) !important; color: rgba(0, 0, 0, 0.7) !important; }

body.ga-light {
  background: #f4f1eb !important;
  color: rgba(0, 0, 0, 0.85) !important;
}
