/* Neon Retro OpenCart Theme - Main Stylesheet */

/* -------------------------------- 
   Base Variables & Reset
-------------------------------- */
:root {
  --primary-color: #0c0029;        /* Deep navy/purple background */
  --secondary-color: #1a0042;      /* Slightly lighter purple for cards */
  --accent-color-cyan: #00fcff;      /* Neon cyan */
  --accent-color-pink: #ff00ff;      /* Neon pink */
  --accent-color-yellow: #fcee0c;    /* Neon yellow */
  --accent-color-purple: #b400ff;    /* Neon purple */
  --text-color: #ffffff;             /* White - main text */
  --text-secondary: #c5c5e2;         /* Light purple/blue - secondary text */
  --card-background: #1a0042;        /* Card backgrounds */
  --card-border: rgba(0, 252, 255, 0.3);  /* Subtle cyan border for cards */
  --card-shadow: 0 0 15px rgba(0, 252, 255, 0.3), 0 0 30px rgba(255, 0, 255, 0.2); /* Neon glow shadow */
  --border-radius: 16px;             /* Rounded corners */
  --border-radius-sm: 8px;           /* Smaller rounded corners */
  --transition-speed: 0.3s;          /* Transition speed */
  --font-main: 'Inter', 'Roboto', sans-serif;
  --font-accent: 'Press Start 2P', 'VT323', 'Courier New', monospace;
  --neon-text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                      0 0 10px currentColor,
                      0 0 20px currentColor,
                      0 0 30px currentColor,
                      0 0 40px currentColor;
  --wave-height: 180px;
  --wave-color: #6a0099;
  --neon-cyan: #00ffff;
  --neon-pink: #ff00ff;
  --neon-yellow: #ffff00;
  --neon-green: #00ff8c;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Press+Start+2P&family=VT323&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 35%, rgba(106, 0, 153, 0.15) 0%, rgba(12, 0, 41, 0) 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 252, 255, 0.1) 0%, rgba(12, 0, 41, 0) 50%);
  pointer-events: none;
  z-index: -1;
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent;
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
  padding: 20px 0;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------- 
   Typography & Links
-------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 700;
  color: var(--text-color);
}

h1, h2, .section-title {
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  font-size: 2.5rem;
  background: linear-gradient(to bottom, var(--accent-color-cyan) 0%, var(--accent-color-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--neon-text-shadow);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

h2 {
  font-size: 2rem;
  color: var(--accent-color-pink);
  text-shadow: 0 0 10px var(--accent-color-pink);
}

h3 {
  font-size: 1.5rem;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5),
                 0 0 5px currentColor;
}

h4 {
  font-size: 1.2rem;
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.5),
                 0 0 5px currentColor;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  color: var(--accent-color-cyan);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
  position: relative;
}

a:hover, a:focus {
  color: var(--accent-color-pink);
  text-shadow: 0 0 8px var(--accent-color-pink);
}

.neon-text {
  text-shadow: var(--neon-text-shadow);
}

.neon-cyan {
  color: var(--accent-color-cyan);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
              0 0 10px var(--accent-color-cyan),
              0 0 20px var(--accent-color-cyan),
              0 0 30px var(--accent-color-cyan);
}

.neon-pink {
  color: var(--accent-color-pink);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
              0 0 10px var(--accent-color-pink),
              0 0 20px var(--accent-color-pink),
              0 0 30px var(--accent-color-pink);
}

.neon-yellow {
  color: var(--accent-color-yellow);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
              0 0 10px var(--accent-color-yellow),
              0 0 20px var(--accent-color-yellow),
              0 0 30px var(--accent-color-yellow);
}

/* -------------------------------- 
   Header & Navigation 
-------------------------------- */
.site-header {
  background-color: var(--primary-color);
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo section - Bigger size */
.header-logo {
  flex: 0 0 auto;
  position: relative;
}

#logo img {
  max-height: 80px;
  width: auto;
  position: relative;
  z-index: 2;
}

#logo h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 2px;
}

/* Main menu section */
.header-menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.header-menu .main-menu {
  background-color: transparent;
  box-shadow: none;
  margin: 0;
}

.header-menu #menu {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}

.header-menu #menu .navbar-nav {
  justify-content: flex-end;
  width: 100%;
}

.header-menu #menu .nav-link {
  color: var(--text-color);
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-speed) ease;
  position: relative;
  text-shadow: none;
}

.header-menu #menu .nav-link:hover,
.header-menu #menu .nav-link:focus,
.header-menu #menu .nav-link.active {
  color: var(--accent-color-cyan);
  text-shadow: 0 0 10px var(--accent-color-cyan);
  background-color: transparent;
}

.header-menu #menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color-cyan);
  transition: all var(--transition-speed) ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent-color-cyan);
}

.header-menu #menu .nav-link:hover::after,
.header-menu #menu .nav-link:focus::after,
.header-menu #menu .nav-link.active::after {
  width: 80%;
}

.header-menu #menu .dropdown-toggle::after {
  color: var(--text-secondary);
  font-size: 0.8em;
  vertical-align: middle;
}

/* Tools section (search, account, cart) */
.header-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.header-tools-item {
  margin-left: 15px;
  position: relative;
}

.header-tools-item:first-child {
  margin-left: 0;
}

.tool-icon {
  color: var(--text-color);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  position: relative;
  overflow: hidden;
}

.tool-icon:hover,
.tool-icon:focus {
  color: var(--accent-color-cyan);
  background-color: rgba(0, 252, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 252, 255, 0.5);
  transform: translateY(-3px);
}

/* Search icon and dropdown */
.search-dropdown .dropdown-menu {
  width: 300px;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--secondary-color);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

/* Mobile menu toggle */
.navbar-toggler {
  border: none;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border-radius: var(--border-radius-sm);
  padding: 10px 15px;
  margin-right: 15px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--accent-color-cyan);
}

.navbar-toggler i {
  font-size: 1.2rem;
}

/* Mobile menu container */
.mobile-menu {
  margin-bottom: 15px;
}

.mobile-menu .main-menu {
  margin-top: 15px;
  margin-bottom: 0;
}

.mobile-menu #menu {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-sm);
}

.mobile-menu #menu .nav-link {
  color: var(--text-color);
  font-family: var(--font-accent);
  font-size: 0.9rem;
}

.mobile-menu #menu .nav-link:hover,
.mobile-menu #menu .nav-link:focus {
  color: var(--accent-color-cyan);
}

/* Cart icon with count */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent-color-pink);
  color: var(--text-color);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 10px var(--accent-color-pink);
}

/* Cart dropdown button styling */
#cart > button {
  background: none;
  border: none;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
  color: var(--text-color);
}

#cart > button i {
  font-size: 1.25rem;
}

#cart > button .cart-total {
  margin-left: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Enhanced cart dropdown */
#cart .dropdown-menu {
  width: 350px;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius-sm);
  background-color: var(--secondary-color);
  box-shadow: var(--card-shadow);
  right: 0;
  left: auto;
  border: 1px solid var(--card-border);
}

.cart-dropdown-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--accent-color-cyan);
}

.cart-dropdown-header h5 {
  margin: 0;
  color: var(--accent-color-cyan);
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--card-border);
}

.cart-item-name {
  font-weight: 500;
  color: var(--text-color);
  display: block;
  margin-bottom: 5px;
}

.cart-item-option,
.cart-item-quantity {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cart-item-remove button {
  color: var(--accent-color-pink);
  background: none;
  border: none;
  font-size: 0.9rem;
  padding: 5px;
}

.cart-item-remove button:hover {
  text-shadow: 0 0 10px var(--accent-color-pink);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.cart-actions {
  margin-top: 15px;
}

/* Dropdown menu styling */
.dropdown-menu {
  border-radius: var(--border-radius-sm);
  box-shadow: var(--card-shadow);
  border: none;
  padding: 10px;
  margin-top: 5px;
  background-color: var(--secondary-color);
  border: 1px solid var(--card-border);
}

.dropdown-inner {
  display: flex;
}

.dropdown-inner ul {
  flex: 1;
  min-width: 160px;
  padding: 0 10px;
}

.dropdown-item {
  padding: 8px 15px;
  border-radius: 5px;
  transition: all var(--transition-speed) ease;
  color: var(--text-secondary);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(0, 252, 255, 0.1);
  color: var(--accent-color-cyan);
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.view-all-link {
  font-weight: 500;
  color: var(--accent-color-cyan);
}

.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

/* -------------------------------- 
   Wave Animation Effect
-------------------------------- */
.wave-container {
  position: absolute;
  width: 100%;
  height: var(--wave-height);
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--wave-color);
  bottom: 0;
  left: 0;
}

.wave::before,
.wave::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%236a0099'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%236a0099'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%236a0099'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  bottom: 0;
  left: 0;
}

/* -------------------------------- 
   Product Cards 
-------------------------------- */
.product-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) ease;
  margin-bottom: 30px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--card-border);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 252, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.3);
  border-color: var(--accent-color-cyan);
}

.product-thumb {
  overflow: hidden;
  position: relative;
}

.product-thumb::before {
  content: '';
  display: block;
  padding-top: 75%;
}

.product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px;
  position: relative;
}

.product-name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-accent);
  color: var(--accent-color-cyan);
}

.product-name a {
  color: var(--accent-color-cyan);
  text-decoration: none;
}

.product-name a:hover, 
.product-name a:focus {
  color: var(--accent-color-pink);
  text-shadow: 0 0 10px var(--accent-color-pink);
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--accent-color-yellow);
  text-shadow: 0 0 10px var(--accent-color-yellow);
}

.price-old {
  color: var(--text-secondary);
  text-decoration: line-through;
  font-weight: normal;
  font-size: 0.9rem;
  text-shadow: none;
}

.price-new {
  color: var(--accent-color-pink);
  font-weight: 700;
  text-shadow: 0 0 10px var(--accent-color-pink);
}

.product-action {
  margin-top: 15px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  margin-top: 15px;
  font-size: 0.85rem;
}

.product-category {
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(0, 252, 255, 0.1);
  color: var(--accent-color-cyan);
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.product-date {
  color: var(--text-secondary);
}

/* -------------------------------- 
   Section Headings
-------------------------------- */
.section-title {
  position: relative;
  margin-bottom: 30px;
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-accent);
  text-transform: uppercase;
}

.section-title span {
  position: relative;
  z-index: 1;
  color: var(--accent-color-cyan);
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.section-title .view-all {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-color-pink);
  text-shadow: 0 0 10px var(--accent-color-pink);
}

/* -------------------------------- 
   Home Banner
-------------------------------- */
.home-banner {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--secondary-color) 0%, var(--accent-color-purple) 100%);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.home-banner-content {
  padding: 60px 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.home-banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: var(--font-accent);
  text-transform: uppercase;
  background: linear-gradient(to bottom, var(--accent-color-cyan) 0%, var(--accent-color-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
               0 0 10px var(--accent-color-cyan),
               0 0 20px var(--accent-color-pink);
  line-height: 1.2;
}

.home-banner p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: auto;
}

.home-banner:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('image/catalog/banner/grid.png');
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

/* -------------------------------- 
   Floating elements for retro style
-------------------------------- */
.floating-element {
  position: absolute;
  z-index: 1;
}

.floating-element.circle-1 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color-purple);
  top: 20%;
  left: 10%;
  box-shadow: 0 0 20px var(--accent-color-purple);
  animation: float 6s ease-in-out infinite;
}

.floating-element.circle-2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color-cyan);
  bottom: 20%;
  right: 10%;
  box-shadow: 0 0 20px var(--accent-color-cyan);
  animation: float 8s ease-in-out infinite;
}

.floating-element.star-1 {
  width: 30px;
  height: 30px;
  background: var(--accent-color-yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 15%;
  right: 15%;
  box-shadow: 0 0 20px var(--accent-color-yellow);
  animation: float 7s ease-in-out infinite, spin 10s linear infinite;
}

.floating-element.square-1 {
  width: 30px;
  height: 30px;
  background: var(--accent-color-yellow);
  transform: rotate(45deg);
  bottom: 30%;
  left: 15%;
  box-shadow: 0 0 20px var(--accent-color-yellow);
  animation: float 9s ease-in-out infinite, spin 15s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* -------------------------------- 
   Buttons & Forms
-------------------------------- */
.btn {
  border-radius: 8px;
  padding: 12px 30px;
  transition: all var(--transition-speed) ease;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.btn:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: all 0.3s;
  border-radius: 8px;
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 15px var(--accent-color-cyan);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  box-shadow: 0 0 25px var(--accent-color-cyan);
}

.btn-primary:before {
  background-color: var(--accent-color-pink);
}

.btn-outline-primary {
  border: 1px solid var(--accent-color-cyan);
  color: var(--accent-color-cyan);
  background-color: transparent;
  box-shadow: 0 0 10px var(--accent-color-cyan);
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: var(--primary-color);
  box-shadow: 0 0 20px var(--accent-color-cyan);
}

.btn-outline-primary:before {
  background-color: var(--accent-color-cyan);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.form-control {
  border-radius: var(--border-radius-sm);
  padding: 12px 15px;
  border: 1px solid var(--card-border);
  transition: all var(--transition-speed) ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
}

.form-control:focus {
  border-color: var(--accent-color-cyan);
  box-shadow: 0 0 0 0.2rem rgba(0, 252, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.1);
}

.form-control::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

/* -------------------------------- 
   Search styling
-------------------------------- */
#search .input-group {
  position: relative;
}

#search input {
  border-radius: 8px;
  padding-right: 50px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-color);
}

#search .btn {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 8px 8px 0;
  z-index: 10;
  height: 100%;
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

#search .btn i {
  font-size: 1rem;
}

/* -------------------------------- 
   Footer Styling
-------------------------------- */
footer {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 60px 0 20px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

footer:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('image/catalog/banner/grid.png');
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 60px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-about p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-heading {
  color: var(--accent-color-cyan);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--font-accent);
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
  position: relative;
  padding-left: 15px;
}

.footer-list a:before {
  content: '>';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color-pink);
  font-size: 0.8rem;
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.footer-list a:hover, 
.footer-list a:focus {
  color: var(--accent-color-cyan);
  text-shadow: 0 0 8px var(--accent-color-cyan);
  padding-left: 20px;
}

.footer-list a:hover:before, 
.footer-list a:focus:before {
  opacity: 1;
}

.footer-newsletter {
  margin-bottom: 30px;
}

.footer-newsletter p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 252, 255, 0.2);
}

.newsletter-form input {
  flex: 1;
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--card-border);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  padding: 12px 15px;
}

.newsletter-form .btn {
  border-radius: 0 8px 8px 0;
  padding: 0 20px;
}

.footer-socials {
  display: flex;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all var(--transition-speed) ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover,
.social-icon:focus {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--accent-color-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 40px;
}

.footer-bottom p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* -------------------------------- 
   Accessibility Controls
-------------------------------- */
.accessibility-controls {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 15px rgba(0, 252, 255, 0.3);
  border: 1px solid var(--card-border);
}

.accessibility-controls button {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 3px;
  transition: all var(--transition-speed) ease;
}

.accessibility-controls button:hover,
.accessibility-controls button:focus {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  box-shadow: 0 0 10px var(--accent-color-cyan);
}

/* -------------------------------- 
   Blog/News Section 
-------------------------------- */
.blog-card {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--card-border);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 252, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.3);
  border-color: var(--accent-color-cyan);
}

.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb::before {
  content: '';
  display: block;
  padding-top: 60%;
}

.blog-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color-pink);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 1;
  box-shadow: 0 0 15px var(--accent-color-pink);
  font-family: var(--font-accent);
  text-transform: uppercase;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: block;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-accent);
}

.blog-title a {
  color: var(--accent-color-cyan);
  text-shadow: 0 0 8px var(--accent-color-cyan);
}

.blog-title a:hover,
.blog-title a:focus {
  color: var(--accent-color-pink);
  text-shadow: 0 0 8px var(--accent-color-pink);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.5em;
}

.blog-meta {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.blog-author {
  display: flex;
  align-items: center;
}

.blog-author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--card-border);
}

.blog-author-name {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* -------------------------------- 
   Pagination
-------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-item .page-link {
  color: var(--text-secondary);
  background-color: var(--secondary-color);
  border: 1px solid var(--card-border);
  margin: 0 5px;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  border-color: var(--accent-color-cyan);
  box-shadow: 0 0 15px var(--accent-color-cyan);
}

.pagination .page-item.active .page-link {
  background-color: var(--accent-color-cyan);
  color: var(--primary-color);
  border-color: var(--accent-color-cyan);
  box-shadow: 0 0 15px var(--accent-color-cyan);
}

/* -------------------------------- 
   Sidebar
-------------------------------- */
.sidebar {
  margin-bottom: 30px;
}

.sidebar-widget {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.sidebar-widget-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--accent-color-cyan);
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-accent);
  text-transform: uppercase;
  text-shadow: 0 0 10px var(--accent-color-cyan);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.category-list a:hover, 
.category-list a:focus {
  color: var(--accent-color-cyan);
  text-shadow: 0 0 8px var(--accent-color-cyan);
  transform: translateX(5px);
}

.category-count {
  background-color: rgba(0, 252, 255, 0.1);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--accent-color-cyan);
  box-shadow: 0 0 10px rgba(0, 252, 255, 0.2);
}

/* -------------------------------- 
   Product Detail Page
-------------------------------- */
.product-detail {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.product-images {
  position: relative;
  margin-bottom: 30px;
}

.product-image-main {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 15px rgba(0, 252, 255, 0.2);
}

.product-image-additional {
  display: flex;
  flex-wrap: wrap;
}

.product-image-additional img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed) ease;
}

.product-image-additional img:hover,
.product-image-additional img.active {
  border-color: var(--accent-color-cyan);
  box-shadow: 0 0 15px var(--accent-color-cyan);
}

.product-info h1 {
  margin-bottom: 15px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  background: linear-gradient(to bottom, var(--accent-color-cyan) 0%, var(--accent-color-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
              0 0 10px var(--accent-color-cyan),
              0 0 20px var(--accent-color-pink);
}

.product-price {
  font-size: 1.5rem;
  color: var(--accent-color-yellow);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--accent-color-yellow);
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* -------------------------------- 
   Console Logo Carousel - ENHANCED
-------------------------------- */
.console-logo-carousel {
  overflow: hidden;
  position: relative;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 2px solid var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  margin: 20px 0 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.logo-track {
  display: flex;
  animation: scroll 30s linear infinite;
  height: 100%;
  align-items: center;
}

.logo-slide {
  flex: 0 0 auto;
  padding: 10px;
  min-width: 140px;
  height: 100px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.logo-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0) 30%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.logo-slide:hover::after {
  opacity: 1;
}

.logo-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px var(--neon-cyan));
  transition: all 0.3s ease;
  opacity: 0.8;
}

.logo-slide:hover img {
  filter: drop-shadow(0 0 10px var(--neon-pink));
  opacity: 1;
  transform: scale(1.15);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-140px * 18 - 30px * 18)); }
}

/* -------------------------------- 
   Responsive Adjustments
-------------------------------- */
@media (max-width: 1199px) {
  .header-menu #menu .nav-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .home-banner h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .header-menu {
    display: none;
  }
  
  .header-main {
    justify-content: space-between;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-tools-item.search-dropdown {
    display: none;
  }
  
  .header-tools-item.wishlist-icon {
    display: none;
  }
  
  #cart > button .cart-total {
    display: none;
  }
  
  .home-banner-content {
    padding: 40px 20px;
  }
  
  .home-banner h2 {
    font-size: 2rem;
  }
  
  .home-banner p {
    font-size: 1rem;
  }
  
  .floating-element {
    display: none;
  }
  
  .product-card, .blog-card {
    margin-bottom: 20px;
  }
  
  .section-title {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-title .view-all {
    margin-left: 0;
    margin-top: 10px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 15px 0;
  }
  
  #logo img {
    max-height: 50px;
  }
  
  .header-tools-item {
    margin-left: 10px;
  }
  
  .tool-icon {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  #cart .dropdown-menu {
    width: 290px;
    right: -70px;
  }
  
  .footer-about, 
  .footer-list, 
  .footer-newsletter {
    margin-bottom: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .newsletter-form .btn {
    border-radius: 8px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .product-detail {
    padding: 15px;
  }
  
  .home-banner h2 {
    font-size: 1.5rem;
  }
  
  .home-banner p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}

/* ---------------------------------------------------------
   Responsive styles for the retro theme (from retro-theme-responsive.css)
--------------------------------------------------------- */

/* Tablets (medium screens) */
@media (max-width: 991px) {
  /* Header */
  .header-main {
    padding: 10px 0;
  }
  
  .header-logo img {
    max-height: 40px;
  }
  
  /* Hide desktop menu, show mobile menu */
  .header-menu.d-none.d-lg-block {
    display: none !important;
  }
  
  .mobile-menu.d-block.d-lg-none {
    display: block !important;
  }
  
  /* Mobile header tools */
  .header-tools {
    display: flex;
    align-items: center;
  }
  
  .header-tools-item {
    margin-left: 10px;
  }
  
  .tool-icon {
    font-size: 1.1rem;
    color: var(--text-light);
  }
  
  /* Mobile categories button */
  .retro-mobile-category-btn {
    display: block;
    width: 100%;
    padding: 12px 15px;
    background-color: var(--secondary-bg);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--button-border-radius);
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  }
  
  .retro-mobile-category-btn:after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Banner adjustments */
  .home-banner {
    padding: 30px 15px;
  }
  
  .banner-title {
    font-size: 1.5rem;
  }
  
  .banner-subtitle {
    font-size: 1.2rem;
  }
  
  .shop-now-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  
  /* Products grid - 3 columns on tablet */
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Category cards - 3 columns */
  .category-card {
    padding: 10px;
  }
  
  .category-image {
    height: 70px;
  }
  
  .category-title {
    font-size: 0.7rem;
    min-height: 40px;
  }
  
  /* Newsletter section */
  .newsletter-section {
    padding: 30px;
  }
  
  .newsletter-section h2 {
    font-size: 1.2rem;
  }
  
  .newsletter-section p {
    font-size: 1rem;
  }
}

/* Mobile (small screens) */
@media (max-width: 767px) {
  /* Section spacing */
  .section-spacing {
    margin-bottom: 30px;
  }
  
  /* Header */
  .header-logo img {
    max-height: 35px;
  }
  
  /* Banner */
  .home-banner {
    padding: 20px 10px;
  }
  
  .banner-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .banner-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .shop-now-btn {
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  
  /* Logo carousel */
  .logo-slide {
    width: 60px;
    height: 40px;
    margin: 0 10px;
  }
  
  .logo-slide img {
    max-height: 30px;
  }
  
  /* Play retro section */
  .play-retro-section {
    padding: 15px;
  }
  
  .play-retro-section h3 {
    font-size: 0.8rem;
  }
  
  /* Products grid - 2 columns on mobile */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  /* Product cards */
  .product-card {
    margin-bottom: 15px;
  }
  
  .product-thumb {
    height: 120px;
  }
  
  .product-card-body {
    padding: 8px;
  }
  
  .product-name {
    font-size: 0.9rem;
    min-height: 30px;
  }
  
  .price {
    font-size: 0.9rem;
  }
  
  .add-to-cart {
    font-size: 0.5rem;
    padding: 6px 8px;
  }
  
  /* Blog cards */
  .blog-thumb {
    height: 100px;
  }
  
  .blog-category {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .blog-title {
    font-size: 0.9rem;
    min-height: 30px;
  }
  
  .blog-excerpt {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
  }
  
  /* Newsletter section */
  .newsletter-section {
    padding: 20px;
    margin: 30px 0;
  }
  
  .newsletter-section h2 {
    font-size: 1rem;
  }
  
  .newsletter-section p {
    font-size: 0.9rem;
  }
  
  .newsletter-form input {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .newsletter-form button {
    padding: 8px 12px;
    font-size: 0.6rem;
  }
  
  /* Footer */
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }
  
  .footer-heading {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    margin-top: 30px;
    font-size: 0.8rem;
  }
}

/* Very small screens */
@media (max-width: 479px) {
  /* Header */
  .header-logo img {
    max-height: 30px;
  }
  
  /* Banner */
  .banner-title {
    font-size: 1rem;
  }
  
  .banner-subtitle {
    font-size: 0.9rem;
  }
  
  .shop-now-btn {
    font-size: 0.6rem;
    padding: 6px 12px;
  }
  
  /* Products grid - limit height on small screens */
  .product-thumb {
    height: 100px;
  }
  
  .product-name {
    font-size: 0.8rem;
  }
  
  .price {
    font-size: 0.8rem;
  }
  
  .add-to-cart {
    font-size: 0.45rem;
    padding: 5px 6px;
  }
  
  /* Category cards */
  .category-image {
    height: 60px;
  }
  
  .category-title {
    font-size: 0.6rem;
  }
  
  .category-explore-btn {
    font-size: 0.5rem;
    padding: 4px 8px;
  }
  
  /* Blog cards */
  .blog-thumb {
    height: 80px;
  }
  
  .blog-title {
    font-size: 0.8rem;
  }
  
  /* Newsletter section */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--button-border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--button-border-radius);
    width: 100%;
  }
}

/* ---------------------------------------------------------
   Mobile Neon Glow Reduction (for headers, section titles, page titles, and play-retro-section)
--------------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --neon-text-shadow: 0 0 1.5px rgba(255,255,255,0.8) !important,
                        0 0 3px currentColor !important,
                        0 0 6px currentColor !important,
                        0 0 9px currentColor !important,
                        0 0 12px currentColor !important;
  }
  .neon-cyan {
    text-shadow: 0 0 1.5px rgba(255,255,255,0.8) !important,
                 0 0 3px var(--accent-color-cyan) !important,
                 0 0 6px var(--accent-color-cyan) !important,
                 0 0 9px var(--accent-color-cyan) !important;
  }
  .neon-pink {
    text-shadow: 0 0 1.5px rgba(255,255,255,0.8) !important,
                 0 0 3px var(--accent-color-pink) !important,
                 0 0 6px var(--accent-color-pink) !important,
                 0 0 9px var(--accent-color-pink) !important;
  }
  .neon-yellow {
    text-shadow: 0 0 1.5px rgba(255,255,255,0.8) !important,
                 0 0 3px var(--accent-color-yellow) !important,
                 0 0 6px var(--accent-color-yellow) !important,
                 0 0 9px var(--accent-color-yellow) !important;
  }
  .header-menu #menu .nav-link:hover,
  .header-menu #menu .nav-link:focus,
  .header-menu #menu .nav-link.active {
    text-shadow: 0 0 3px var(--accent-color-cyan) !important;
  }
  .header-menu #menu .nav-link::after {
    box-shadow: 0 0 3px var(--accent-color-cyan) !important;
  }
  .cart-count {
    box-shadow: 0 0 3px var(--accent-color-pink) !important;
  }
  .footer-heading {
    text-shadow: 0 0 3px var(--accent-color-cyan) !important;
  }
  .blog-title a,
  .blog-title a:hover,
  .blog-title a:focus {
    text-shadow: 0 0 3px var(--accent-color-cyan) !important;
  }
  /* Reduce glow on headers, section titles, page titles, and play-retro-section elements */
  body h1,
  body h2,
  body .section-title,
  body .page-title,
  h2.section-title span.neon-cyan,
  .play-retro-section h3,
  .play-retro-section a.play-online-btn {
    text-shadow: 0 0 1px rgba(0,0,0,0.3) !important;
  }
}

/* ---------------------------------------------------------
   Fix for Category Card Overlapping on Mobile
--------------------------------------------------------- */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--secondary-color);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 15px; /* space between cards */
}

.category-image {
  width: 100%;
  height: 150px; /* adjust as needed */
  overflow: hidden;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  padding: 15px;
  text-align: center;
}
