/*
Theme Name: TshirtTsar Child
Theme URI: https://tshirttsar.com
Author: Wendi AI
Template: generatepress
Description: Custom neon retro child theme for Tshirt Tsar 2.0
Version: 1.2
Text Domain: tshirttsar-child
*/

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&family=Inter:wght@300;400&display=swap');

/* ===================================
   GLOBAL BRAND VARIABLES
=================================== */
:root {
  --neon-magenta: #E5008D;
  --electric-blue: #00B9FF;
  --neon-lime: #A6FF00;
  --gold-glitter: #FFD700;
  --tsar-black: #000000;
  --soft-white: #F5F5F5;
  --indigo-shadow: #4B0082;
}

/* ===================================
   BASE STYLES
=================================== */
body {
  background: var(--tsar-black);
  color: var(--soft-white);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  color: var(--electric-blue);
}

a, .button {
  color: var(--neon-lime);
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover, .button:hover {
  color: var(--electric-blue);
  text-shadow: 0 0 10px var(--electric-blue);
}

/* ===================================
   HEADER STYLE
=================================== */
.tsar-header {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--electric-blue);
}

/* --- Logo --- */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-wrap img {
  max-height: 70px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--electric-blue));
}

/* --- Inline nav structure --- */
.below-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* Nav links */
.nav-inline {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-inline a {
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  color: var(--neon-lime);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-inline a:hover {
  color: var(--electric-blue);
  text-shadow: 0 0 10px var(--electric-blue);
}

/* --- Search + Cart inline row --- */
.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-tools form {
  margin: 0;
}
.cart-link {
  color: var(--neon-magenta);
  font-size: 1.2rem;
  text-decoration: none;
}
.cart-link:hover {
  color: var(--electric-blue);
}
.cart-count {
  color: var(--neon-lime);
  font-weight: bold;
  margin-left: 4px;
}

/* ===================================
   BUTTONS
=================================== */
.button, button, input[type=submit] {
  background: linear-gradient(90deg, var(--neon-magenta), var(--electric-blue), var(--neon-lime));
  color: #000;
  border: none;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.button:hover, button:hover, input[type=submit]:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 15px var(--electric-blue);
}

/* ===================================
   FOOTER (optional, matches header)
=================================== */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  background: var(--tsar-black);
  border-top: 1px solid var(--electric-blue);
  color: var(--soft-white);
}
.site-footer a {
  color: var(--neon-lime);
}
.site-footer a:hover {
  color: var(--electric-blue);
}

/* ===================================
   RESPONSIVE SETTINGS
=================================== */
@media (max-width: 768px) {
  .below-nav {
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-inline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .logo-wrap img {
    max-height: 60px;
  }
  .header-tools {
    justify-content: center;
  }
}

/* ===================================
   ANIMATION EFFECT
=================================== */
section, header, footer {
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}