/* VoyeurTees Styles - Dark, Neon, Provocative */

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

body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Neon Text Effect */
.neon-text {
  color: #ff006e;
  text-shadow: 
    0 0 10px #ff006e,
    0 0 20px #ff006e,
    0 0 30px #ff006e,
    0 0 40px #ff006e;
  animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
  from {
    text-shadow: 
      0 0 10px #ff006e,
      0 0 20px #ff006e,
      0 0 30px #ff006e;
  }
  to {
    text-shadow: 
      0 0 20px #ff006e,
      0 0 30px #ff006e,
      0 0 40px #ff006e,
      0 0 50px #ff006e;
  }
}

/* Flicker Effect */
.flicker {
  animation: flicker 3s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  41.99% { opacity: 1; }
  42% { opacity: 0.8; }
  43% { opacity: 1; }
  45.99% { opacity: 1; }
  46% { opacity: 0.6; }
  46.5% { opacity: 1; }
}

/* Header */
header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.logo {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #666;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: lowercase;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.light-switch {
  background: transparent;
  border: 2px solid #333;
  color: #666;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.light-switch:hover {
  border-color: #ff006e;
  color: #ff006e;
  text-shadow: 0 0 10px #ff006e;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
  animation: buzz 0.1s infinite;
}

@keyframes buzz {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-1px); }
  75% { transform: translateX(1px); }
}

.switch-text {
  font-weight: bold;
}

/* Products Container - GRID LAYOUT */
.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Product Card */
.product-card {
  background: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: #ff006e;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.product-type {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #333;
  color: #666;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: bold;
  cursor: pointer;
  margin-top: auto;
  align-self: center;
}

.buy-btn:hover {
  border-color: #ff006e;
  color: #ff006e;
  text-shadow: 0 0 10px #ff006e;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

/* Lights Off Mode */
body.lights-off {
  background-color: #050505;
}

body.lights-off .product-card {
  border-color: rgba(255, 0, 110, 0.3);
  background: #000;
}

body.lights-off .product-card:hover {
  border-color: #ff006e;
  box-shadow: 0 0 50px rgba(255, 0, 110, 0.8);
}

body.lights-off .buy-btn {
  border-color: #ff006e;
  color: #ff006e;
  text-shadow: 0 0 5px #ff006e;
}

body.lights-off .buy-btn:hover {
  text-shadow: 0 0 15px #ff006e;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
  animation: buzz 0.1s infinite;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 1rem;
  background: #0a0a0a;
  margin-top: 5rem;
}

footer .neon-text {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  
  .products-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card img {
    height: 180px;
  }
}
