@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

/* ── Geo Topbar — Premium Brand Strip ───────────────────── */
.geoTopbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(10, 16, 40, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 9px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 50;
  text-transform: uppercase;
  color: var(--text-muted);
}

.geoItem {
  color: var(--text-muted);
  white-space: nowrap;
}

.geoDivider {
  width: 1px;
  height: 12px;
  background: var(--border-color);
  flex-shrink: 0;
}

.geoItemHighlight {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Legacy — kept to avoid TS errors */
.geoItemFire {
  color: var(--accent-cyan);
  font-weight: 700;
  white-space: nowrap;
}

@media only screen and (max-width: 900px) {
  .geoTopbar {
    font-size: 0.65rem;
    padding: 7px 16px;
    gap: 0;
    justify-content: center;
  }
  .geoDivider { display: none; }
  .geoItem { display: none; }
  .geoItemHighlight { font-size: 0.65rem; }
}
/* ──────────────────────────────────────────────────────── */

.containerPc {
  position: sticky;
  top: 0;
  z-index: 40;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 9, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-primary);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.title h2 {
  margin: 0;
}

.logo {
  cursor: pointer;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: var(--transition-smooth);
}

.logo:hover {
  filter: drop-shadow(0 2px 12px rgba(0, 200, 232, 0.2));
  transform: scale(1.03);
}

.filter {
  display: flex;
  align-items: center;
  width: 40%;
  max-width: 500px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.filter input {
  width: 100%;
  height: 42px;
  padding: 0 48px 0 18px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  outline: none;
}

.filter input::placeholder {
  color: var(--text-muted);
}

.filter input:focus {
  border-color: rgba(0, 200, 232, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 200, 232, 0.06);
}

.filter button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  border-radius: 4px;
  background: rgba(0, 200, 232, 0.12);
  border: 1px solid rgba(0, 200, 232, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.filter button:hover {
  background: rgba(0, 200, 232, 0.22);
  border-color: rgba(0, 200, 232, 0.4);
}

.cart {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: var(--transition-fast);
  padding: 9px 12px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.cart:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.cart span {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  color: #06091a;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 0.7rem;
}

.subContainer {
  background: rgba(6, 9, 26, 0.88);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-subtle);
}

.subContainer ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 0;
}

.subContainer li {
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 14px 20px;
}

.subContainer li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.subContainer li:hover {
  color: var(--text-primary);
}

.subContainer li:hover::after {
  transform: scaleX(1);
}

/* Mobile Header */
.headerMobile {
  display: none;
}
.subHeaderMobile {
  display: none;
}

@media only screen and (max-width: 900px) {
  .containerPc {
    display: none;
  }

  .containerMobile {
    position: sticky;
    top: 0;
    z-index: 40;
  }
  
  .headerMobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6, 9, 26, 0.95);
    backdrop-filter: blur(16px);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-subtle);
  }

  .titleMobile h2 {
    margin: 0;
  }
  
  .wrapperIconsHeaderMobile {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .btnMenuMobile {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
  }
  
  .btnMenuMobile:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  
  .cartIconMobile {
    position: relative;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
  }
  
  .cartIconMobile span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-cyan);
    border-radius: 50%;
    color: #06091a;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.65rem;
  }
  
  .subHeaderMobile {
    display: block;
    padding: 10px 16px;
    background: rgba(6, 9, 26, 0.92);
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .subHeaderMobile .filter {
    width: 100%;
  }
}

/* ══ CART BUTTON ════════════════════════════════════════ */
.cartBtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  transition: 0.2s;
  flex-shrink: 0;
}

.cartBtn:hover {
  background: rgba(0,200,232,0.08);
  border-color: rgba(0,200,232,0.2);
}

.cartBadge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-cyan);
  color: #06091a;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
}

/* ══ MENU OVERLAY ════════════════════════════════════════ */
.menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══ SIDE MENU ═══════════════════════════════════════════ */
.sideMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: min(360px, 85vw);
  height: 100vh;
  background: #06091a;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: none;
}

.sideMenuOpen {
  transform: translateX(0);
}

.sideMenuHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.sideMenuBrand {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.sideMenuClose {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.sideMenuClose:hover { color: #fff; background: rgba(255,255,255,0.1); }

.sideMenuSection {
  padding: 20px 16px 8px;
  flex-shrink: 0;
}

.sideMenuSectionTitle {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 10px;
  padding: 0 4px;
}

.sideMenuCategoryItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 4px;
}

.sideMenuCategoryItem:hover {
  background: rgba(255,255,255,0.04);
}

.sideMenuCategoryEmoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sideMenuCategoryText {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.sideMenuCategoryText strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.sideMenuCategoryText span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.sideMenuArrow {
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
}

.sideMenuLinks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sideMenuLinks a {
  text-decoration: none;
}

.sideMenuLinks span {
  display: block;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.sideMenuLinks span:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.sideMenuFooter {
  margin-top: auto;
  padding: 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.socialBtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  font-family: "Outfit", sans-serif;
}

.socialBtn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

/* headerRoot */
.headerRoot { display: contents; }

