﻿.product-menu,
.product-menu * {
  text-align: center !important;
}

/* Ensure mobile menu toggles correctly */
.tcg-show { display: block !important; }

/* NAV BAR FIXES (no underline, no green hover) */
.tcg-bar .tcg-bar-item,
.tcg-bar .tcg-bar-item:link,
.tcg-bar .tcg-bar-item:visited,
.tcg-bar .tcg-bar-item:hover,
.tcg-bar .tcg-bar-item:active,
.tcg-bar a,
.tcg-bar a:link,
.tcg-bar a:visited,
.tcg-bar a:hover,
.tcg-bar a:active {
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
  outline: 0;
  color: inherit;
}

/* PRODUCT MENU BAR (responsive, clean, fully centered) */
.product-menu {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 2px solid #eee;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers horizontally */
  justify-content: center; /* centers vertically */
  text-align: center;
  padding: 0.5rem;
}

.product-item a {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers image + text horizontally */
  justify-content: center; /* centers vertically within link */
  text-decoration: none;
  width: 100%;
}

.product-item img {
  max-width: 120px;   /* consistent icon size */
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
}

.resizetext {
  font-size: 0.95rem;
  font-weight: 600;
  color: #396BBA;
  text-align: center;    /* ensures text is centered */
}

/* HERO SECTION */
.hero {
  background: #fff;
  padding: 3rem 1rem;
}
.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.hero-image img {
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.hero-content { max-width: 500px; }
.hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #396BBA;
}
.hero-content p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* BUY BUTTONS */
.buy-buttons {
  display: flex;
  gap: 1rem;
}
.buy-buttons a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.buy-buttons a:hover { transform: scale(1.05); }
.amazon-btn { background: #FF9900; color: #fff; }
.amazon-btn:hover { background: #e68a00; color: #fff; }
.gamestop-btn { background: #E60012; color: #fff; }
.gamestop-btn:hover { background: #b0000f; color: #fff; }

/* SET LOGOS GRID */
.set-logos {
  background: #fff;
  padding: 2rem 1rem;
  margin-top: 2rem;
}
.set-logos h2 {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 1.5rem;
  color: #396BBA;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  justify-items: center;
}
.logo-grid img {
  max-height: 60px;
  transition: transform 0.2s ease;
}
.logo-grid img:hover { transform: scale(1.1); }

/* FOOTER */
.tcg-footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.tcg-footer a { text-decoration: none; }
.tcg-footer a:hover {
  text-decoration: none;
  color: #00ffff; /* aqua hover for footer links */
}