.ast-primary-header-wrap,
.site-header,
.ast-site-header-cart,
#masthead {
  display: none !important;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap");
:root {
  --neon-purple: #cc11f0;
  --neon-cyan: #00d4ff;
  --neon-pink: #ff008d;
  --neon-yellow: #ff0;
  --neon-green: #39ff14;
  --dark-bg: #0a0e27;
  --darker-bg: #050811;
  --card-bg: rgba(15, 20, 45, 0.8);
}

/* body text stays Inter */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif !important;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--darker-bg) 100%
  ) !important;
  color: #e5e7eb !important;
  overflow-x: hidden;
  margin: 0;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 212, 255, 0.08) 25%,
      rgba(0, 212, 255, 0.08) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.08) 75%,
      rgba(0, 212, 255, 0.08) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 212, 255, 0.08) 25%,
      rgba(0, 212, 255, 0.08) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.08) 75%,
      rgba(0, 212, 255, 0.08) 76%,
      transparent 77%,
      transparent
    );
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.mhjoy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.promo-banner {
  background: linear-gradient(
    135deg,
    var(--neon-pink) 0%,
    var(--neon-yellow) 100%
  );
  padding: 12px 20px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(255, 0, 141, 0.5);
  animation: bannerPulse 3s ease-in-out infinite;
  cursor: pointer;
}
@keyframes bannerPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 0, 141, 0.5);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 0, 141, 0.8);
  }
}
.promo-banner span {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.custom-header {
  background: rgba(5, 8, 17, 0.95);
  border-bottom: 3px solid var(--neon-cyan);
  padding: 20px 0;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  position: sticky;
  top: 44px;
  z-index: 999;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  letter-spacing: 2px;
  text-decoration: none;
}
.logo:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 25px rgba(255, 255, 0, 0.8);
}
.search-container {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.search-box {
  width: 100%;
  padding: 12px 45px 12px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--neon-cyan);
  border-radius: 8px;
  color: var(--neon-cyan);
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  outline: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}
.search-box:focus {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.4);
}
.search-box::placeholder {
  color: rgba(0, 212, 255, 0.5);
}
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--neon-cyan);
  /* allow clicking */
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
}
.nav-links a:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--neon-cyan);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.mobile-close {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--neon-pink);
  border: 2px solid #fff;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 0, 141, 0.8);
  transition: all 0.3s ease;
}
.mobile-close:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 0, 141, 1);
}
.quick-links-bar {
  background: rgba(10, 14, 39, 0.9);
  border-bottom: 2px solid var(--neon-purple);
  padding: 12px 0;
  position: sticky;
  top: 104px;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(204, 17, 240, 0.2);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.quick-links-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 5px 15px;
  border: 1px solid transparent;
}
.quick-link:hover {
  color: var(--neon-yellow);
  border: 1px solid var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
  transform: translateY(-2px);
}
.quick-link-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-search-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: fixed !important;
  top: 44px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: rgba(5, 8, 17, 0.98) !important;
  border-bottom: 2px solid var(--neon-cyan) !important;
  padding: 15px 20px !important;
  z-index: 1001 !important;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-100%) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none !important;
}
.sticky-search-wrapper.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.sticky-search-wrapper .search-container {
  max-width: 600px !important;
  width: 100% !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sticky-search-wrapper .search-box {
  width: 100% !important;
  padding: 12px 45px 12px 20px !important;
  background: rgba(0, 212, 255, 0.1) !important;
  border: 2px solid var(--neon-cyan) !important;
  border-radius: 8px !important;
  color: var(--neon-cyan) !important;
  font-family: "Orbitron", "Courier New", monospace !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2) !important;
}
.sticky-search-wrapper .search-box:focus {
  border-color: var(--neon-yellow) !important;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.4) !important;
  background: rgba(0, 212, 255, 0.15) !important;
}
.sticky-search-wrapper .search-box::placeholder {
  color: rgba(0, 212, 255, 0.6) !important;
}
.sticky-search-wrapper .search-icon {
  position: absolute !important;
  right: 15px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
  color: var(--neon-cyan) !important;
  pointer-events: none !important;
}
.search-overlay-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  backdrop-filter: blur(5px);
}
.search-overlay-backdrop.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-side-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -600px;
  width: 550px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(5, 8, 17, 0.98);
  border-left: 4px solid var(--neon-cyan);
  box-shadow: -10px 0 60px rgba(0, 212, 255, 0.8);
  z-index: 10001;
  overflow-y: auto;
  padding: 0;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.search-side-panel.active {
  display: block;
  right: 0;
}
.panel-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
}
.panel-header h3 {
  font-size: 20px;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.panel-close-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 0, 141, 0.3);
  border: 2px solid #fff;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.panel-close-btn:hover {
  background: var(--neon-pink);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(255, 0, 141, 0.8);
}
.panel-content {
  padding: 30px;
}
.panel-info {
  padding: 20px;
  background: rgba(255, 255, 0, 0.1);
  border: 2px solid var(--neon-yellow);
  margin-bottom: 30px;
  text-align: center;
  color: var(--neon-yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.panel-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.panel-product-card {
  background: var(--card-bg);
  border: 2px solid rgba(204, 17, 240, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
}
.panel-product-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.8);
  transform: translateX(-5px);
}
.panel-no-results {
  padding: 60px 30px;
  text-align: center;
  color: var(--neon-pink);
  font-size: 16px;
  border: 2px solid var(--neon-pink);
  background: rgba(255, 0, 141, 0.1);
}
.panel-no-results h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.category-jump-menu {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid var(--neon-purple);
  padding: 15px 0;
  position: sticky;
  top: 158px;
  z-index: 997;
  box-shadow: 0 4px 20px rgba(204, 17, 240, 0.3);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: auto;
  white-space: nowrap;
}
.category-jump-menu::-webkit-scrollbar {
  height: 4px;
}
.category-jump-menu::-webkit-scrollbar-track {
  background: rgba(0, 212, 255, 0.1);
}
.category-jump-menu::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 2px;
}
.category-jump-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 15px;
}
.category-jump-btn {
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.category-jump-btn.active,
.category-jump-btn:hover {
  background: linear-gradient(
    135deg,
    var(--neon-purple) 0%,
    var(--neon-cyan) 100%
  );
  color: #fff;
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.6);
  transform: translateY(-2px);
}
.category-showcase {
  margin: 60px 0;
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.08),
    rgba(0, 212, 255, 0.08)
  );
  border-top: 2px solid var(--neon-purple);
  border-bottom: 2px solid var(--neon-cyan);
  position: relative;
}
.category-showcase-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.category-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.category-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.category-carousel-track.paused {
  animation-play-state: paused;
}
.category-visual-card {
  min-width: 280px;
  background: var(--card-bg);
  border: 3px solid rgba(204, 17, 240, 0.4);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.3);
  position: relative;
}
.category-visual-card:hover {
  transform: scale(1.1) translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(204, 17, 240, 0.5);
  z-index: 10;
}
.category-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--neon-purple);
}
.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-visual-card:hover .category-card-image img {
  transform: scale(1.15);
}
.category-card-placeholder {
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}
.category-card-info {
  padding: 25px;
  background: rgba(10, 14, 39, 0.95);
  text-align: center;
}
.category-card-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--neon-cyan);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.category-card-count {
  font-size: 13px;
  color: var(--neon-yellow);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.category-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.category-carousel-btn {
  width: 55px;
  height: 55px;
  background: rgba(204, 17, 240, 0.3);
  border: 3px solid var(--neon-purple);
  color: var(--neon-purple);
  font-size: 28px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.category-carousel-btn:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 25px rgba(204, 17, 240, 0.8);
  transform: scale(1.15);
}
.filters-container {
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid var(--neon-cyan);
  padding: 20px;
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.filter-group {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  color: var(--neon-yellow);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-btn {
  padding: 8px 18px;
  background: rgba(204, 17, 240, 0.1);
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.6);
  transform: translateY(-2px);
}
.sort-select {
  padding: 8px 15px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  outline: 0;
  text-transform: uppercase;
}
.sort-select option {
  background: var(--dark-bg);
  color: var(--neon-cyan);
}
.hero {
  position: relative;
  min-height: 650px;
  margin: 60px 0;
  padding: 80px 40px;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.1) 0%,
    rgba(0, 212, 255, 0.1) 100%
  );
  border: 3px solid var(--neon-purple);
  box-shadow: 0 0 40px rgba(204, 17, 240, 0.4),
    inset 0 0 40px rgba(0, 212, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 212, 255, 0.1) 25%,
      rgba(0, 212, 255, 0.1) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.1) 75%,
      rgba(0, 212, 255, 0.1) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 212, 255, 0.1) 25%,
      rgba(0, 212, 255, 0.1) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.1) 75%,
      rgba(0, 212, 255, 0.1) 76%,
      transparent 77%,
      transparent
    );
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
  animation: scanlines 8s linear infinite;
}
@keyframes scanlines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 900;
  margin: 0 0 20px 0;
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(204, 17, 240, 0.5);
  letter-spacing: 3px;
  line-height: 1.2;
  animation: titleGlow 2s ease-in-out infinite;
}
@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8),
      0 0 60px rgba(204, 17, 240, 0.5);
  }
  50% {
    text-shadow: 0 0 50px rgba(0, 212, 255, 1), 0 0 80px rgba(204, 17, 240, 0.8);
  }
}
.hero p {
  font-size: 24px;
  color: var(--neon-yellow);
  margin-bottom: 45px;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
  letter-spacing: 2px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.stat {
  padding: 30px;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}
.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  border-color: var(--neon-purple);
}
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--neon-yellow);
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.6);
  margin-bottom: 10px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-label {
  font-size: 12px;
  color: var(--neon-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(
    135deg,
    var(--neon-purple) 0%,
    var(--neon-cyan) 100%
  );
  border: 2px solid var(--neon-cyan);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  font-family: "Orbitron", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.5);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(204, 17, 240, 0.8), 0 0 20px rgba(0, 212, 255, 0.5);
}
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 20px;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 212, 255, 0.2);
  border-top: 4px solid var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-text {
  color: var(--neon-cyan);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.error-message {
  background: rgba(255, 0, 141, 0.1);
  border: 2px solid var(--neon-pink);
  padding: 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 0 30px rgba(255, 0, 141, 0.3);
}
.error-message h3 {
  color: var(--neon-pink);
  font-size: 24px;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 0, 141, 0.6);
}
.error-message p {
  color: var(--neon-cyan);
  font-size: 14px;
  letter-spacing: 1px;
}
.category-section {
  margin-bottom: 100px;
  scroll-margin-top: 220px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.15) 0%,
    rgba(0, 212, 255, 0.15) 100%
  );
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.3);
}
.section-title {
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  margin: 0;
}
.section-icon {
  font-size: 36px;
  animation: iconPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.section-meta {
  font-size: 14px;
  color: var(--neon-yellow);
  font-weight: 700;
  background: rgba(255, 255, 0, 0.1);
  padding: 10px 20px;
  border: 1px solid var(--neon-yellow);
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  letter-spacing: 1px;
}
.category-description {
  background: rgba(0, 212, 255, 0.05);
  padding: 20px;
  border: 1px solid var(--neon-cyan);
  margin-bottom: 30px;
  font-size: 15px;
  color: var(--neon-cyan);
  line-height: 1.8;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
  letter-spacing: 0.5px;
}
.category-description strong {
  color: var(--neon-yellow);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}
.product-card {
  background: var(--card-bg);
  border: 2px solid rgba(204, 17, 240, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
  position: relative;
}
.product-card:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.8), 0 0 60px rgba(0, 212, 255, 0.3);
  transform: translateY(-8px) scale(1.02);
}
.product-card.out-of-stock {
  opacity: 0.6;
  cursor: not-allowed;
}
.product-card.out-of-stock:hover {
  transform: none;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
}
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(
    135deg,
    var(--neon-pink) 0%,
    var(--neon-yellow) 100%
  );
  color: #fff;
  padding: 6px 12px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 0 20px rgba(255, 0, 141, 0.8);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  animation: salePulse 2s ease-in-out infinite;
  border-radius: 3px;
}
@keyframes salePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-size: 60px;
  border-bottom: 2px solid var(--neon-purple);
}
.product-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}
.product-info {
  padding: 18px;
  background: rgba(10, 14, 39, 0.9);
}
.product-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  text-transform: capitalize;
}
.product-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--neon-yellow);
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-price.sale {
  display: flex;
  align-items: center;
  gap: 10px;
}
.original-price {
  font-size: 16px;
  color: var(--neon-pink);
  text-decoration: line-through;
  opacity: 0.7;
}
.product-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(
    135deg,
    var(--neon-purple) 0%,
    var(--neon-pink) 100%
  );
  color: #fff;
  border: none;
  font-weight: 900;
  cursor: pointer;
  font-family: "Orbitron", monospace;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.4);
  letter-spacing: 1px;
}
.product-btn:hover {
  box-shadow: 0 0 25px rgba(204, 17, 240, 0.8);
  transform: scale(1.05);
}
.product-btn.out-of-stock-btn {
  background: linear-gradient(135deg, #555 0%, #333 100%);
  cursor: not-allowed;
  opacity: 0.6;
}
.product-btn.out-of-stock-btn:hover {
  transform: none;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.4);
}
.view-all-btn {
  display: block;
  margin: 0 auto 50px;
  padding: 14px 50px;
  background: linear-gradient(
    135deg,
    var(--neon-cyan) 0%,
    var(--neon-purple) 100%
  );
  color: #fff;
  border: 2px solid var(--neon-cyan);
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Orbitron", monospace;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  text-decoration: none;
}
.view-all-btn:hover {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
  transform: translateY(-3px);
}
.testimonials-section {
  margin: 100px 0;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.1) 0%,
    rgba(0, 212, 255, 0.1) 100%
  );
  border: 2px solid var(--neon-purple);
  box-shadow: 0 0 40px rgba(204, 17, 240, 0.2);
}
.testimonials-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--neon-yellow);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
  text-transform: uppercase;
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 350px;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid var(--neon-cyan);
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  border-color: var(--neon-purple);
}
.testimonial-rating {
  color: var(--neon-yellow);
  font-size: 18px;
  margin-bottom: 15px;
}
.testimonial-text {
  color: var(--neon-cyan);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.5);
}
.testimonial-info h4 {
  color: var(--neon-yellow);
  font-size: 14px;
  margin: 0 0 5px 0;
  font-weight: 900;
}
.testimonial-info p {
  color: var(--neon-cyan);
  font-size: 11px;
  margin: 0;
  opacity: 0.8;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.carousel-btn {
  width: 50px;
  height: 50px;
  background: rgba(204, 17, 240, 0.2);
  border: 2px solid var(--neon-purple);
  color: var(--neon-purple);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.carousel-btn:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.6);
  transform: scale(1.1);
}
.newsletter-section {
  margin: 100px 0;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 0, 0.1),
    rgba(0, 212, 255, 0.1)
  );
  border: 3px solid var(--neon-yellow);
  box-shadow: 0 0 40px rgba(255, 255, 0, 0.3);
  text-align: center;
}
.newsletter-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--neon-yellow);
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
  letter-spacing: 2px;
}
.newsletter-subtitle {
  font-size: 15px;
  color: var(--neon-cyan);
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  outline: 0;
  letter-spacing: 0.5px;
}
.newsletter-input::placeholder {
  color: rgba(0, 212, 255, 0.5);
}
.newsletter-input:focus {
  border-color: var(--neon-yellow);
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}
.newsletter-btn {
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--neon-yellow), var(--neon-green));
  border: 2px solid var(--neon-yellow);
  color: var(--dark-bg);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  font-family: "Orbitron", monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 0, 0.4);
}
.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 255, 0, 0.8);
}
.features-section {
  margin: 100px 0;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.1) 0%,
    rgba(0, 212, 255, 0.1) 100%
  );
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}
.features-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.feature-card {
  padding: 30px;
  background: rgba(0, 212, 255, 0.05);
  border: 2px solid var(--neon-purple);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.6);
  border-color: var(--neon-cyan);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--neon-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.feature-card p {
  color: var(--neon-cyan);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-align: center;
}
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 997;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
  }
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 35px rgba(37, 211, 102, 1);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: #fff;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--neon-purple) 0%,
    var(--neon-cyan) 100%
  );
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.5);
  font-size: 24px;
  color: #fff;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(204, 17, 240, 0.8);
}
.footer {
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.15) 0%,
    rgba(0, 212, 255, 0.15) 100%
  );
  border-top: 3px solid var(--neon-cyan);
  padding: 60px 0;
  margin-top: 100px;
  box-shadow: inset 0 0 40px rgba(0, 212, 255, 0.1);
}
.footer-content {
  text-align: center;
}
.footer-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-stat {
  text-align: center;
  padding: 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
}
.footer-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}
.footer-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--neon-yellow);
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-stat-label {
  font-size: 11px;
  color: var(--neon-cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer p {
  margin: 15px 0;
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px !important;
  }
  .hero p {
    font-size: 16px !important;
  }
  .hero {
    padding: 50px 20px !important;
    min-height: 500px !important;
  }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .stat {
    padding: 20px !important;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .custom-header {
    margin-left: 0 !important;
    width: 100% !important;
    top: 44px !important;
    padding: 15px 0 !important;
  }
  .quick-links-bar {
    margin-left: 0 !important;
    width: 100% !important;
    top: 94px !important;
  }
  .quick-links-content {
    gap: 15px !important;
  }
  .quick-link {
    font-size: 11px !important;
    padding: 5px 12px !important;
  }
  .category-jump-menu {
    margin-left: 0 !important;
    width: 100% !important;
    top: 138px !important;
  }
  .search-container {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .search-side-panel {
    width: 100% !important;
    max-width: 100% !important;
  }
  .category-showcase {
    padding: 40px 0 !important;
    margin: 40px 0 !important;
  }
  .category-showcase-title {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
  .category-visual-card {
    min-width: 220px !important;
  }
  .category-carousel-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 22px !important;
  }
  .category-carousel-nav {
    margin-top: 25px !important;
    gap: 15px !important;
  }
  .testimonials-section {
    padding: 40px 20px !important;
    margin: 60px 0 !important;
  }
  .testimonials-title {
    font-size: 24px !important;
  }
  .testimonial-card {
    min-width: 280px !important;
    padding: 20px !important;
  }
  .carousel-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }
  .newsletter-section {
    padding: 40px 20px !important;
    margin: 60px 0 !important;
  }
  .newsletter-title {
    font-size: 24px !important;
  }
  .newsletter-subtitle {
    font-size: 13px !important;
  }
  .newsletter-form {
    flex-direction: column !important;
  }
  .newsletter-input {
    min-width: 100% !important;
  }
  .newsletter-btn {
    width: 100% !important;
  }
  .features-section {
    padding: 40px 20px !important;
    margin: 60px 0 !important;
  }
  .features-title {
    font-size: 24px !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .feature-card {
    padding: 25px !important;
  }
  .section-title {
    font-size: 22px !important;
  }
  .section-icon {
    font-size: 28px !important;
  }
  .section-header {
    padding: 20px !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  .section-meta {
    margin-top: 10px !important;
  }
  .category-description {
    font-size: 13px !important;
    padding: 15px !important;
  }
  .product-card {
    transition: transform 0.2s ease !important;
  }
  .product-card:hover {
    transform: none !important;
  }
  .product-image {
    height: 200px !important;
  }
  .product-name {
    font-size: 12px !important;
    min-height: 35px !important;
  }
  .product-price {
    font-size: 18px !important;
  }
  .filters-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  .filter-group {
    width: 100% !important;
  }
  .sort-select {
    width: 100% !important;
  }
  .footer {
    padding: 40px 0 !important;
    margin-top: 60px !important;
  }
  .footer-stats {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .footer-stat {
    width: 100% !important;
  }
  .footer p {
    font-size: 12px !important;
  }
  .whatsapp-float {
    bottom: 80px !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
  }
  .whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
  }
  .back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 20px !important;
  }
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 250px !important;
    height: 100vh !important;
    background: rgba(5, 8, 17, 0.98) !important;
    flex-direction: column !important;
    padding: 30px !important;
    gap: 20px !important;
    transition: right 0.3s ease !important;
    border-left: 2px solid var(--neon-cyan) !important;
    box-shadow: -5px 0 30px rgba(0, 212, 255, 0.3) !important;
    padding-top: 80px !important;
  }
  .nav-links.active {
    right: 0 !important;
  }
  .hamburger {
    display: flex !important;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
  }
  .mobile-close.active {
    display: flex !important;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px !important;
  }
  .hero p {
    font-size: 14px !important;
  }
  .products-grid {
    grid-template-columns: 1fr !important;
  }
  .category-visual-card {
    min-width: 200px !important;
  }
  .quick-link span {
    display: none !important;
  }
  .promo-banner {
    font-size: 12px !important;
    padding: 10px !important;
  }
  .logo {
    font-size: 20px !important;
  }
  .search-box {
    font-size: 12px !important;
  }
  .testimonial-card {
    min-width: 260px !important;
  }
}
/* ===========================
   CYBERPUNK NEON VARIABLES
   =========================== */
:root {
  --neon-purple: #cc11f0;
  --neon-cyan: #00d4ff;
  --neon-pink: #ff008d;
  --neon-yellow: #ffff00;
  --neon-green: #39ff14;
  --neon-blue: #0099ff;

  --dark-bg: #0a0e27;
  --darker-bg: #050811;
  --card-bg: rgba(15, 20, 45, 0.8);
  --glow-shadow: 0 0 20px rgba(204, 17, 240, 0.5);
  --text-primary: #e0e0ff;
  --text-secondary: #a0a0c0;
}

/* ===========================
   BODY & GLOBAL STYLES
   =========================== */
html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: "Courier New", monospace;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 212, 255, 0.05) 25%,
      rgba(0, 212, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.05) 75%,
      rgba(0, 212, 255, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 212, 255, 0.05) 25%,
      rgba(0, 212, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 212, 255, 0.05) 75%,
      rgba(0, 212, 255, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.site-header,
.header,
header {
  background: rgba(5, 8, 17, 0.95);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.nav-link,
nav a {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.nav-link:hover,
nav a:hover {
  color: var(--neon-cyan);
}

/* Center header content on initial load, without touching sticky bar */
.custom-header .header-content {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.custom-header .search-container {
  flex: 1 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.custom-header .search-box {
  width: 100% !important;
}

/* ===========================
   PRODUCTS GRID
   =========================== */
.woocommerce ul.products,
ul.products,
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ===========================
   PRODUCT CARDS - OPTIMIZED
   =========================== */
.woocommerce-loop-product__link,
.product-item,
li.product {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid rgba(204, 17, 240, 0.3);
  background: var(--card-bg);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
  contain: layout style paint;
  content-visibility: auto;
  contain-intrinsic-size: auto 450px;
}

.woocommerce-loop-product__link:hover,
li.product:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.8);
  transform: translateY(-8px) scale(1.02);
}

/* Product image */
.woocommerce-loop-product__link img,
li.product img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.woocommerce-loop-product__link:hover img,
li.product:hover img {
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* Product title */
h2.woocommerce-loop-product__title,
.woocommerce-loop-product__title {
  color: var(--text-primary);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px;
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.1) 0%,
    rgba(0, 212, 255, 0.1) 100%
  );
  margin: 0;
}

/* Product price */
.woocommerce-Price-amount,
.price {
  color: var(--neon-yellow);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Add to cart button */
.woocommerce button.button,
button.add_to_cart_button,
.button.add_to_cart_button,
a.button {
  background: linear-gradient(
    135deg,
    var(--neon-purple) 0%,
    var(--neon-pink) 100%
  );
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.4);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.woocommerce button.button:hover,
button.add_to_cart_button:hover,
.button.add_to_cart_button:hover,
a.button:hover {
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.8);
  transform: scale(1.05);
}

/* ===========================
   SINGLE PRODUCT PAGE
   =========================== */
.single-product article.product,
.single-product .product {
  background: var(--card-bg);
  border: 2px solid rgba(204, 17, 240, 0.3);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.2);
  contain: layout style paint;
}

h1.product_title,
.single-product .product_title {
  color: var(--neon-cyan);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  margin: 0 0 20px 0;
}

/* ===========================
   FORMS & INPUTS
   =========================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--neon-cyan);
  color: var(--text-primary);
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.3);
  outline: none;
}

/* ===========================
   CART & CHECKOUT
   =========================== */
.woocommerce-checkout-form,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-cart-form__contents {
  background: var(--card-bg);
  border: 2px solid var(--neon-purple);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(204, 17, 240, 0.2);
  contain: layout style paint;
}

/* Cart table styling */
.woocommerce table.shop_table {
  border: 1px solid rgba(204, 17, 240, 0.3);
  background: rgba(15, 20, 45, 0.5);
}

.woocommerce table.shop_table th {
  background: linear-gradient(
    135deg,
    rgba(204, 17, 240, 0.2) 0%,
    rgba(0, 212, 255, 0.2) 100%
  );
  color: var(--neon-cyan);
  border-bottom: 2px solid var(--neon-purple);
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(204, 17, 240, 0.2);
  color: var(--text-primary);
}

/* ===========================
   ALERTS & MESSAGES
   =========================== */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-left: 4px solid var(--neon-cyan);
  background: rgba(0, 212, 255, 0.1);
  color: var(--text-primary);
  padding: 15px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.woocommerce-error {
  border-left-color: var(--neon-pink);
  background: rgba(255, 0, 141, 0.1);
}

.woocommerce-message {
  border-left-color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
}

/* ===========================
   PAGINATION
   =========================== */
.woocommerce-pagination {
  text-align: center;
  margin: 40px 0;
}

.woocommerce-pagination ul li {
  display: inline-block;
  margin: 0 5px;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  background: rgba(204, 17, 240, 0.2);
  border: 1px solid var(--neon-purple);
  color: var(--text-primary);
  padding: 10px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
  background: var(--neon-purple);
  color: white;
  box-shadow: 0 0 20px rgba(204, 17, 240, 0.6);
}

/* ===========================
   BREADCRUMBS
   =========================== */
.woocommerce-breadcrumb {
  background: rgba(0, 212, 255, 0.05);
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  margin-bottom: 20px;
}

.woocommerce-breadcrumb a {
  color: var(--neon-cyan);
  transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
  color: var(--neon-purple);
}

/* ===========================
   SIDEBAR & WIDGETS
   =========================== */
.sidebar .widget,
.widget-area .widget {
  background: var(--card-bg);
  border: 2px solid rgba(204, 17, 240, 0.3);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(204, 17, 240, 0.2);
}

.sidebar .widget-title,
.widget-area .widget-title {
  color: var(--neon-cyan);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer,
footer {
  background: rgba(5, 8, 17, 0.95);
  border-top: 2px solid var(--neon-purple);
  color: var(--text-secondary);
  padding: 40px 0;
}

.site-footer a,
footer a {
  color: var(--neon-cyan);
  transition: color 0.3s ease;
}

.site-footer a:hover,
footer a:hover {
  color: var(--neon-purple);
}

/* ===========================
   UTILITY CLASSES - HIDE UNWANTED
   =========================== */
/* Hide default footer sections */
.site-footer-section-1,
.ast-footer-copyright {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/* Hide star ratings - NO RATINGS SHOWN */
.star-rating,
.woocommerce .star-rating,
.product .star-rating,
.comment-form-rating,
.woocommerce-product-rating {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Hide review tab if needed */
.woocommerce-tabs .reviews_tab {
  display: none !important;
}

/* Hide upsells if you don't want */
.upsells.products {
  display: none !important;
}

/* ===========================
   SALE BADGE
   =========================== */
.woocommerce span.onsale,
span.onsale {
  background: linear-gradient(
    135deg,
    var(--neon-pink) 0%,
    var(--neon-yellow) 100%
  );
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 0, 141, 0.5);
  animation: salePulse 2s ease-in-out infinite;
}

@keyframes salePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 141, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 141, 0.8);
  }
}

/* ===========================
   OUT OF STOCK
   =========================== */
.woocommerce .outofstock,
.out-of-stock {
  opacity: 0.6;
  pointer-events: none;
}

.woocommerce .outofstock::after,
.out-of-stock::after {
  content: "OUT OF STOCK";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 141, 0.9);
  color: white;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 0, 141, 0.8);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .woocommerce ul.products,
  ul.products,
  .products {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .woocommerce-loop-product__link img,
  li.product img {
    height: 180px;
  }

  h2.woocommerce-loop-product__title,
  .woocommerce-loop-product__title {
    font-size: 14px;
    padding: 10px;
  }

  .woocommerce-Price-amount,
  .price {
    font-size: 16px;
  }

  .woocommerce button.button,
  button.add_to_cart_button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .sticky-search-wrapper .search-container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  ul.products,
  .products {
    grid-template-columns: 1fr;
  }

  .woocommerce-loop-product__link img,
  li.product img {
    height: 220px;
  }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(204, 17, 240, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(204, 17, 240, 0.8);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   PERFORMANCE OPTIMIZATIONS
   =========================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Prevent layout shifts */
img,
video {
  max-width: 100%;
  height: auto;
}
/* =========================================
   MHJOY – GLOBAL READABILITY OVERRIDES
   (put at very bottom of cyberpunk-theme.css)
   ========================================= */

/* Default text color on dark background */
body,
body p,
body span,
body li,
body label,
body dd,
body dt,
body small,
body input,
body select,
body textarea,
.woocommerce-breadcrumb,
.woocommerce-tabs .panel,
.single-product .summary,
.entry-content {
  color: #e5e7eb !important; /* soft light grey, readable on dark */
  text-shadow: none !important;
}

/* Headings – bright and readable */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6) !important;
}

/* Links – readable & clearly clickable */
a {
  color: #00d4ff !important; /* neon cyan */
}

a:hover {
  color: #ffea00 !important; /* warm yellow on hover */
}

/* Product description areas – extra safety */
.single-product .product_title,
.single-product .summary p,
.single-product .summary span,
.single-product .summary label {
  color: #e5e7eb !important;
}

/* Widgets, cart, checkout, footers text */
.widget,
.widget p,
.woocommerce-cart-form,
.woocommerce-checkout-form,
.footer,
.footer p,
.footer a {
  color: #e5e7eb !important;
}
/* =========================================
   SINGLE PRODUCT – MAKE PRICE & SHORT DESC VISIBLE
   ========================================= */

/* Short description + meta text */
.single-product .summary,
.single-product .summary p,
.single-product .summary span,
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p {
  color: #e5e7eb !important; /* light grey on dark bg */
  opacity: 1 !important;
  text-shadow: none !important;
}

/* Main price */
.single-product .price,
.single-product .summary .price,
.single-product .summary .woocommerce-Price-amount,
.single-product .summary .woocommerce-Price-amount bdi {
  color: var(--neon-yellow) !important; /* your bright price color */
  opacity: 1 !important;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Any extra meta under price (e.g. stock, tax text) */
.single-product .product_meta,
.single-product .product_meta span,
.single-product .product_meta a {
  color: #9ca3af !important; /* muted but readable */
  opacity: 1 !important;
}
/* =========================================
   FORCE SINGLE-PRODUCT SHORT DESCRIPTION VISIBLE
   ========================================= */

/* Make short description and general text visible */
.single-product div.product .summary,
.single-product div.product .summary p,
.single-product div.product .summary span,
.single-product div.product .summary li {
  color: #e5e7eb !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

/* Keep prices bright and readable */
.single-product div.product .summary .price,
.single-product div.product .summary .price *,
.single-product div.product .summary .woocommerce-Price-amount,
.single-product div.product .summary .woocommerce-Price-amount * {
  color: var(--neon-yellow) !important;
  opacity: 1 !important;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}
/* Extra safety: calculator line + buttons on single product page */

/* Calculator / converted price line (covers strong/b etc.) */
.single-product div.product .summary strong,
.single-product div.product .summary b,
.single-product div.product .summary em {
  color: #e5e7eb !important; /* same light grey as other text */
  opacity: 1 !important;
}

/* Suggest Card / Add Suggested to Cart / other buttons */
.single-product div.product .summary button,
.single-product div.product .summary .button,
.single-product div.product .summary input[type="submit"] {
  color: #ffffff !important; /* white text */
  text-shadow: none !important;
}
/* Styles moved to astra/assets/css/cyberpunk-theme.css */
#themeToggle,
.theme-toggle {
  display: none !important;
}

/* WooCommerce variation dropdown – professional white theme */
.single-product .variations select,
.single-product .variations select:focus {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #111827 !important;
  border-radius: 6px !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif !important;
}

/* Dropdown options text color – white theme */
.single-product .variations select option {
  background: #ffffff;
  color: #111827;
}

/* Make all product form labels readable on white background */
.single-product .summary label,
.single-product .summary .label,
.single-product .variations label,
.single-product .summary .woocommerce-Price-amount,
.single-product .summary p,
.single-product .summary span {
  color: #111827 !important; /* dark text */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif !important;
}

/* Ensure dropdown text is visible – white background */
.single-product .variations select,
.single-product .variations select option {
  background-color: #ffffff !important; /* white background */
  color: #111827 !important; /* dark text */
  border: 1px solid #e5e7eb !important;
}

/* Hide category jump menu on single product pages */
.single-product .category-jump-menu {
  display: none !important;
}

/* Hide Astra footer only on single product pages */
.single-product footer#colophon {
  display: none !important;
}
/* Remove underline from all links inside product cards */
.product-card a,
.product-card a:hover,
.product-card a:visited,
.product-card a:focus {
  text-decoration: none !important;
}

/* Optional: if your titles are h3 > a */
.product-name a {
  text-decoration: none !important;
}
/* Astra product card Sale badge */
.ast-on-card-button.ast-onsale-card {
  background: #ff007a !important; /* badge background color */
  color: #ffffff !important; /* text color */
  border-radius: 999px !important; /* pill shape */
  padding: 3px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  border: none !important;
}
/* Hide category line under product title on single product */
.single-product-category {
  display: none !important;
}

/* Hide “Categories: …” meta line on single product */
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta span.posted_in {
  display: none !important;
}
/* WooCommerce quantity input styling */
.woocommerce .quantity .qty,
input.qty,
input[type="number"].qty {
  color: #ffffff; /* text color */
  background-color: #111827; /* dark box */
  border: 1px solid #22d3ee; /* neon border (cyan) */
  border-radius: 6px;
}

/* Optional: focus glow */
.woocommerce .quantity .qty:focus,
input.qty:focus {
  outline: none;
  box-shadow: 0 0 0 2px #22d3ee66;
}
/* MHJOY target amount input styling */
#mhjoy_target_amount {
  color: #ffffff; /* text color */
  background-color: #111827; /* dark background */
  border: 1px solid #22d3ee; /* neon border */
  border-radius: 6px;
  padding: 8px 10px;
}

/* Optional focus effect */
#mhjoy_target_amount:focus {
  outline: none;
  box-shadow: 0 0 0 2px #22d3ee66;
}
/* ===================================================================
   MHJOY NEW HEADER REDESIGN - ANIMATED & OPTIMIZED
   =================================================================== */

/* Header fade-in animation on page load */
.mhjoy-header-animated {
  animation: headerFadeIn 0.6s ease-out;
}

@keyframes headerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo glow pulse animation */
.mhjoy-logo {
  animation: logoPulse 3s ease-in-out infinite;
  will-change: text-shadow;
}

@keyframes logoPulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 40px rgba(255, 0, 141, 0.8);
  }
}

/* New header layout: Logo | Search | Categories | Socials | Cart */
.custom-header .mhjoy-header-inner {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: nowrap !important;
}

.custom-header .mhjoy-logo {
  flex: 0 0 auto;
  order: 1;
  font-size: 24px;
  font-weight: 900;
  color: var(--neon-cyan);
  text-decoration: none;
  letter-spacing: 2px;
}

.custom-header .mhjoy-search-main {
  flex: 1 1 auto;
  order: 2;
  max-width: 500px;
  position: relative;
}

.custom-header .mhjoy-categories {
  flex: 0 0 auto;
  order: 3;
}

.custom-header .mhjoy-socials {
  flex: 0 0 auto;
  order: 4;
}

.custom-header .mhjoy-cart {
  flex: 0 0 auto;
  order: 5;
}

.custom-header .hamburger {
  flex: 0 0 auto;
  order: 6;
  display: none; /* Show on mobile only */
}

/* Search box focus glow animation */
.mhjoy-search-main .search-box:focus {
  animation: searchGlow 0.3s ease forwards;
}

@keyframes searchGlow {
  from {
    box-shadow: 0 0 0px rgba(0, 212, 255, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
}

/* Categories & Socials buttons */
.mhjoy-btn {
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--neon-cyan);
  border-radius: 8px;
  color: var(--neon-cyan);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mhjoy-btn:hover,
.mhjoy-btn:focus {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--neon-yellow);
  color: var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
}

/* Dropdown containers */
.mhjoy-header-item {
  position: relative;
}

.mhjoy-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: rgba(5, 8, 17, 0.98);
  border: 2px solid var(--neon-cyan);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9999;
  will-change: transform, opacity;
}

/* Show dropdown on hover (desktop) */
.mhjoy-header-item:hover .mhjoy-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown links */
.mhjoy-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mhjoy-dropdown a:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-cyan);
  border-left-color: var(--neon-cyan);
  padding-left: 25px;
}

.mhjoy-dropdown a.mhjoy-view-all {
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  margin-top: 8px;
  padding-top: 14px;
  color: var(--neon-yellow);
  font-weight: 700;
}

.mhjoy-dropdown a.mhjoy-view-all:hover {
  background: rgba(255, 255, 0, 0.1);
  border-left-color: var(--neon-yellow);
}

/* Cart link styling */
.mhjoy-cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 141, 0.1);
  border: 2px solid var(--neon-pink);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--neon-pink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.mhjoy-cart-link:hover {
  background: rgba(255, 0, 141, 0.2);
  border-color: var(--neon-yellow);
  color: var(--neon-yellow);
  box-shadow: 0 0 15px rgba(255, 0, 141, 0.5);
}

/* Cart count badge */
.mhjoy-cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(255, 0, 141, 0.8);
  animation: cartBadgePulse 2s ease-in-out infinite;
}

@keyframes cartBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Cart badge bounce when item added (triggered by JS) */
.mhjoy-cart-count-badge.bounce {
  animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}

/* Hide cart text on smaller screens */
@media (max-width: 768px) {
  .mhjoy-cart-text {
    display: none;
  }
}

/* ===================================================================
   MOBILE RESPONSIVE
   =================================================================== */

@media (max-width: 992px) {
  .custom-header .mhjoy-header-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .custom-header .mhjoy-search-main {
    order: 6;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .custom-header .hamburger {
    display: flex !important;
  }

  /* Hide categories and socials buttons on mobile (use hamburger menu) */
  .custom-header .mhjoy-categories,
  .custom-header .mhjoy-socials {
    display: none;
  }
}

/* ===================================================================
   HOMEPAGE ONLY: Quick Links Bar & Category Jump
   =================================================================== */

/* Show quick-links-bar only on homepage - handled by PHP conditional already */
body:not(.home):not(.page-template-default) .quick-links-bar {
  display: none !important;
}
/* ===================================================================
   WOOCOMMERCE CATEGORY PAGE HEADER FIX
   =================================================================== */

/* Category page header container */
.woocommerce-products-header {
  background: rgba(15, 20, 45, 0.6);
  border: 2px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 30px 40px;
  margin: 40px auto;
  max-width: 1400px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Animated background glow effect */
.woocommerce-products-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  animation: categoryGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes categoryGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(10%, 10%) scale(1.1);
  }
}

/* Category title styling */
.woocommerce-products-header__title,
.woocommerce-products-header .page-title {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif !important;
  font-size: 42px !important;
  font-weight: 800 !important;
  color: var(--neon-cyan) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 !important;
  padding: 0 !important;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.5);
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8),
      0 0 40px rgba(0, 212, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 60px rgba(0, 212, 255, 0.7),
      0 0 80px rgba(255, 0, 141, 0.5);
  }
}

/* Category description (if you add one later) */
.woocommerce-products-header .term-description {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Breadcrumb styling above category header */
.woocommerce-breadcrumb {
  color: var(--text-secondary) !important;
  font-size: 14px !important;
  padding: 20px 0 10px 0 !important;
  margin: 0 auto !important;
  max-width: 1400px;
}

.woocommerce-breadcrumb a {
  color: var(--neon-cyan) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
  color: var(--neon-yellow) !important;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .woocommerce-products-header {
    padding: 20px 20px;
    margin: 20px 10px;
  }

  .woocommerce-products-header__title,
  .woocommerce-products-header .page-title {
    font-size: 28px !important;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .woocommerce-products-header__title,
  .woocommerce-products-header .page-title {
    font-size: 24px !important;
    letter-spacing: 1px;
  }
}
/* ===================================================================
   DUAL-TONE BACKGROUND FOR NON-HOMEPAGE PAGES (OPTION 4)
   Homepage keeps animated grid, other pages get professional dual-tone
   =================================================================== */

/* Remove animated grid overlay on non-homepage pages */
body:not(.home):not(.blog):not(.page-template-frontpage)::before {
  display: none !important;
}

/* Apply dual-tone gradient background to non-homepage pages */
body:not(.home):not(.blog):not(.page-template-frontpage) {
  background: linear-gradient(
      90deg,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 40%,
      transparent 60%,
      rgba(255, 0, 141, 0.1) 100%
    ),
    #000000 !important;
  background-attachment: fixed !important;
}

/* Ensure content is readable on dual-tone background */
body:not(.home):not(.blog):not(.page-template-frontpage) .site-content,
body:not(.home):not(.blog):not(.page-template-frontpage) .woocommerce {
  position: relative;
  z-index: 2;
}
/* ===================================================================
   SEARCH BOX TEXT FIX - PREVENT TEXT FADING
   =================================================================== */

/* Ensure search input text is fully visible and bright */
.mhjoy-search-main .search-box,
.search-container .search-box,
input.search-box {
  color: #ffffff !important; /* Pure white text */
  opacity: 1 !important; /* No fading */
  -webkit-text-fill-color: #ffffff !important; /* Safari/Chrome fix */
}

/* Keep placeholder visible but dimmer */
.mhjoy-search-main .search-box::placeholder,
.search-container .search-box::placeholder {
  color: rgba(0, 212, 255, 0.5) !important; /* Dim cyan */
  opacity: 0.5 !important;
}

/* When user types, ensure high contrast */
.mhjoy-search-main .search-box:focus,
.search-container .search-box:focus {
  color: #ffffff !important;
  background-color: rgba(0, 212, 255, 0.15) !important;
}

/* Remove any autocomplete styling that might cause fade */
.mhjoy-search-main .search-box:-webkit-autofill,
.search-container .search-box:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(0, 212, 255, 0.1) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
/* ===================================================================
   MOBILE MENU FIX - PROPER HAMBURGER BEHAVIOR
   =================================================================== */

@media (max-width: 992px) {
  /* Hide categories and socials buttons on mobile by default */
  .custom-header .mhjoy-categories,
  .custom-header .mhjoy-socials {
    display: none !important;
  }

  /* Keep cart visible but smaller */
  .custom-header .mhjoy-cart {
    flex: 0 0 auto;
  }

  .mhjoy-cart-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  /* Header stacks nicely */
  .custom-header .mhjoy-header-inner {
    gap: 10px;
  }

  /* Logo and search on one line, cart and hamburger on another */
  .custom-header .mhjoy-logo {
    flex: 1 1 auto;
    text-align: left;
  }

  .custom-header .mhjoy-search-main {
    order: 6;
    flex: 1 1 100%;
  }

  /* Show hamburger */
  .custom-header .hamburger {
    display: flex !important;
    order: 7;
  }

  /* Better cart badge on mobile */
  .mhjoy-cart-count-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }
}

/* Mobile hamburger menu improvements */
@media (max-width: 992px) {
  .nav-links.active {
    right: 0 !important;
    padding-top: 80px !important;
  }

  /* Add categories and socials links inside mobile menu */
  .nav-links::before {
    content: "📂 Categories";
    display: block;
    color: var(--neon-cyan);
    font-weight: 700;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 10px;
    cursor: pointer;
  }
}
/* =============================
   NAV-LINKS / MOBILE MENU RESET
   ============================= */

/* Desktop: keep nav-links hidden (we use desktop dropdowns instead) */
@media (min-width: 993px) {
  .nav-links {
    display: none !important;
  }
}

/* Mobile: nav-links is the slide-in menu */
@media (max-width: 992px) {
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* hidden by default */
    width: 260px !important;
    height: 100vh !important;
    background: rgba(5, 8, 17, 0.98) !important;
    border-left: 2px solid var(--neon-cyan) !important;
    box-shadow: -5px 0 30px rgba(0, 212, 255, 0.3) !important;
    padding: 80px 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 9999 !important;
    transition: right 0.3s ease !important;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .mobile-menu-section {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  }

  .mobile-menu-title {
    color: var(--neon-yellow);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .mobile-menu-section a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
  }
}
/* ===================================================================
   FIX FORM LABEL COLORS ON SINGLE PRODUCT
   =================================================================== */

/* General labels on single product pages */
.single-product label,
.single-product .summary label,
.single-product .variations label {
  color: #ffffff !important; /* bright white */
  font-weight: 600;
}

/* Specific custom field labels */
.single-product label[for="mhjoy_target_amount"],
.single-product label[for="pa_denomination"] {
  color: #ffffff !important; /* ensure visible */
  font-weight: 700;
}

/* If theme adds opacity to labels, override it */
.single-product label {
  opacity: 1 !important;
}
/* Hide original label text for this field */
label[for="mhjoy_target_amount"] {
  font-size: 0 !important; /* hides text but keeps element */
}

/* Insert new text via ::after */
label[for="mhjoy_target_amount"]::after {
  content: "Enter game price in USD"; /* new text, no (calc v1) */
  font-size: 14px; /* normal size */
  color: #ffffff; /* match your theme */
  font-weight: 600;
}
/* ==========================================
   LOGIN/ACCOUNT BUTTON STYLES
   ========================================== */

.mhjoy-account-link,
.mhjoy-login-link {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  white-space: nowrap;
}

.mhjoy-account-link {
  color: #32b8c6;
  border: 1.5px solid #32b8c6;
}

.mhjoy-account-link:hover {
  background: #32b8c6;
  color: #000;
  box-shadow: 0 0 10px rgba(50, 184, 198, 0.5);
}

.mhjoy-login-link {
  color: #ff0080;
  border: 1.5px solid #ff0080;
}

.mhjoy-login-link:hover {
  background: #ff0080;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

@media (max-width: 1024px) {
  .mhjoy-account-text,
  .mhjoy-login-text {
    display: none;
  }

  .mhjoy-account-link,
  .mhjoy-login-link {
    padding: 8px 10px;
  }
}
/* ULTIMATE INPUT TEXT FIX - ADD TO BOTTOM OF CSS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select,
.woocommerce input,
.woocommerce textarea,
.woocommerce select {
  color: #111827 !important; /* Dark text for light backgrounds */
  -webkit-text-fill-color: #111827 !important; /* Safari/Chrome fix */
}

/* Keep placeholders visible but lighter */
input::placeholder,
textarea::placeholder {
  color: #6b7280 !important; /* Gray placeholder */
  opacity: 0.6 !important;
}
