/**
 * 🕷️ ANT TEA GAMES — Shop Variant Styles
 * 
 * Orange commercial parody, ironic merchandise aesthetic
 */

/* Root Variables */
:root {
  --shop-primary: #ff6600;
  --shop-secondary: #ffaa00;
  --shop-accent: #ff8800;
  --shop-text: #000000;
  --shop-bg: #ffffff;
}

/* Base Styles */
body {
  background: linear-gradient(45deg, #ffaa00 0%, #ff6600 25%, #ffaa00 50%, #ff6600 75%, #ffaa00 100%);
  background-size: 40px 40px;
  color: var(--shop-text);
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Navigation */
.shop-nav {
  background: linear-gradient(90deg, #ffaa00 0%, #ff6600 50%, #ffaa00 100%);
  border-bottom: 4px solid var(--shop-primary);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
}

.commercial-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--shop-primary);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--shop-text);
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links a {
  color: var(--shop-text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--shop-primary);
  text-shadow: 0 0 8px var(--shop-primary);
}

/* Hero Section */
.shop-hero {
  background: linear-gradient(45deg, #ffaa00 0%, #ff6600 25%, #ffaa00 50%, #ff6600 75%, #ffaa00 100%);
  background-size: 30px 30px;
  padding: 4rem 2rem;
  text-align: center;
}

.commercial-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--shop-primary);
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Arial Black', Arial, sans-serif;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--shop-text);
  margin: 0 0 2rem 0;
}

.shop-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.commercial-btn {
  background: var(--shop-primary);
  color: var(--shop-bg);
  border: 2px solid var(--shop-primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
}

.commercial-btn:hover {
  background: var(--shop-bg);
  color: var(--shop-primary);
  box-shadow: 0 6px 30px rgba(255, 102, 0, 0.7);
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products-section h2 {
  color: var(--shop-primary);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--shop-bg);
  border: 3px solid var(--shop-primary);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 6px 30px rgba(255, 102, 0, 0.7);
  transform: translateY(-5px);
}

.commercial-border {
  border: 3px solid var(--shop-primary);
  background: linear-gradient(45deg, #ffaa00 0%, #ff6600 50%, #ffaa00 100%);
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
  position: relative;
}

.sale-badge,
.new-badge,
.limited-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff0000;
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.new-badge {
  background: #00ff00;
  color: black;
}

.limited-badge {
  background: #ff00ff;
  color: white;
}

.product-overlay {
  color: var(--shop-text);
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-title {
  color: var(--shop-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Arial Black', Arial, sans-serif;
}

.product-description {
  font-size: 1rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.price {
  color: var(--shop-primary);
  font-size: 1.5rem;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
}

.add-to-cart-btn {
  background: var(--shop-primary);
  color: var(--shop-bg);
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.5);
}

.add-to-cart-btn:hover {
  background: var(--shop-bg);
  color: var(--shop-primary);
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.7);
}

/* Anti-Consumerist Section */
.anti-consumerist-section {
  background: var(--shop-bg);
  padding: 4rem 2rem;
  text-align: center;
}

.anti-consumerist-section h2 {
  color: var(--shop-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.anti-info {
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.anti-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature {
  background: var(--shop-secondary);
  border: 3px solid var(--shop-primary);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
}

.feature h3 {
  color: var(--shop-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Arial Black', Arial, sans-serif;
}

/* Cart Section */
.cart-section {
  background: var(--shop-accent);
  padding: 4rem 2rem;
  text-align: center;
}

.cart-section h2 {
  color: var(--shop-primary);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cart-items {
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.empty-cart {
  color: var(--shop-text);
  font-style: italic;
}

.cart-total {
  background: var(--shop-bg);
  border: 3px solid var(--shop-primary);
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
}

.checkout-btn {
  background: var(--shop-primary);
  color: var(--shop-bg);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 102, 0, 0.5);
  margin-top: 1rem;
}

.checkout-btn:hover {
  background: var(--shop-bg);
  color: var(--shop-primary);
  box-shadow: 0 6px 30px rgba(255, 102, 0, 0.7);
}

/* Footer */
.shop-footer {
  background: var(--shop-bg);
  border-top: 4px solid var(--shop-primary);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(255, 102, 0, 0.5);
}

.shop-footer p {
  margin: 0.5rem 0;
  font-weight: bold;
  text-transform: uppercase;
}

.shop-footer p:first-child {
  color: var(--shop-primary);
  font-size: 1.2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .shop-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .commercial-title {
    font-size: 2rem;
  }
  
  .shop-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .anti-features {
    grid-template-columns: 1fr;
  }
}
