/* Store page specific styles */

/* Store Hero Section */
.store-hero {
  text-align: center;
  padding: 60px 0;
}

.store-hero h1 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
  text-shadow: 0 8px 40px rgba(110, 255, 214, 0.1);
}

.store-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.category-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(110, 255, 214, 0.15);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.category-card p {
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.category-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent), transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.category-card:hover .category-glow {
  opacity: 0.1;
  transform: translate(-50%, -50%) scale(2);
}

/* Featured Products */
.featured-products {
  margin-top: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.product-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 15px 30px rgba(110, 255, 214, 0.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.product-card p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Enhanced button styling for store */
.product-card .btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(110, 255, 214, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.product-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 255, 214, 0.3);
  filter: brightness(1.1);
}

.product-card .btn:hover::before {
  left: 100%;
}

.product-card .btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .store-hero h1 {
    font-size: 2.5rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-card,
  .product-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .store-hero h1 {
    font-size: 2rem;
  }
  
  .store-hero p {
    font-size: 1rem;
  }
  
  .category-icon {
    font-size: 2.5rem;
  }
  
  .product-icon {
    font-size: 2rem;
  }
}
