/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Variables */
:root {
    --neon-blue: #00eaff;
    --neon-green: #00ffb7;
    --neon-purple: #a259ff;
    --bg-dark: #0a0a23;
    --bg-card: #181840;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.5;
    background-color: var(--bg-dark);
    color: white;
    min-height: 100vh;
}

/* Common Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

/* Neon Effects */
.shadow-neon {
    box-shadow: 0 0 8px var(--neon-blue), 0 0 16px rgba(0, 234, 255, 0.267);
}

.shadow-neon-green {
    box-shadow: 0 0 8px var(--neon-green), 0 0 16px rgba(0, 255, 183, 0.267);
}

.shadow-neon-purple {
    box-shadow: 0 0 8px var(--neon-purple), 0 0 16px rgba(162, 89, 255, 0.267);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
} 

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%) scale(0.95);
    background: #00ffb7;
    color: #181840;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 16px #00ffb7;
    border: 2px solid #181840;
    opacity: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.3s, transform 0.3s;
}
.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
} 

/* Neon Footer Styles */
.footer-vanilla {
  background: #0f0f0f;
  color: #fff;
  font-family: 'Rajdhani', Arial, sans-serif;
  padding: 3rem 1rem 1.5rem 1rem;
  margin-top: 4rem;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
@media (min-width: 700px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.logo-col {
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 0.5rem;
}
.footer-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 220px;
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.neon-cyan { color: #00eaff; }
.neon-purple { color: #a259ff; }
.neon-green { color: #00ffb7; }
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Rajdhani', Arial, sans-serif;
}
.footer-list a:hover, .footer-list a:focus {
  color: #00eaff;
  text-decoration: underline;
}
.footer-list .neon-purple a:hover, .footer-list .neon-purple a:focus {
  color: #a259ff;
}
.footer-list .neon-green a:hover, .footer-list .neon-green a:focus {
  color: #00ffb7;
}
.footer-icon {
  margin-right: 0.5rem;
  font-size: 1.1em;
}
.footer-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00eaff 0%, #a259ff 50%, #00ffb7 100%);
  opacity: 0.6;
  margin: 2.5rem 0 1.5rem 0;
  border-radius: 2px;
}
.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-size: 0.95rem;
  color: #a259ff;
  background: rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 0 8px #a259ff44;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  justify-content: center;
}
@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-sep {
  display: none;
}
@media (min-width: 700px) {
  .footer-sep {
    display: inline;
  }
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-size: 1.2rem;
}
.footer-social-link.neon-purple:hover, .footer-social-link.neon-purple:focus {
  color: #a259ff;
}
.footer-social-link.neon-cyan:hover, .footer-social-link.neon-cyan:focus {
  color: #00eaff;
}
.footer-social-link.neon-green:hover, .footer-social-link.neon-green:focus {
  color: #00ffb7;
} 