@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700&display=swap');

:root {
  --aero-blue: #00c4ff;
  --aero-glow: #66ffff;
  --aero-dark: #0b003d;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  color: white;
  background: var(--aero-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header copied from homepage */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--aero-glow);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

nav a:hover {
  color: var(--aero-blue);
  text-shadow: 0 0 10px var(--aero-blue);
}

.theme-toggle {
  margin-left: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.theme-toggle:hover {
  background: rgba(0,200,255,0.2);
  color: var(--aero-blue);
}

/* Hero Section */
.store-hero {
  text-align: center;
  padding: 5rem 2rem 2rem;
}

.store-hero h1 {
  font-size: 3rem;
  color: var(--aero-blue);
  text-shadow: 0 0 20px var(--aero-glow);
}

.store-hero p {
  margin-top: 1rem;
  opacity: 0.8;
}

/* Featured Product */
.featured-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s;
}

.featured-product:hover {
  border-color: var(--aero-blue);
  box-shadow: 0 0 25px rgba(0,200,255,0.3);
}

.featured-product img {
  width: 300px;
  border-radius: 1rem;
  margin-right: 2rem;
}

.featured-details {
  max-width: 400px;
}

.featured-details h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--aero-blue);
}

.featured-details p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.btn {
  background: var(--aero-blue);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  transition: 0.3s;
  box-shadow: 0 0 15px var(--aero-glow);
}

.btn:hover {
  background: var(--aero-glow);
  color: #000;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  padding: 3rem 8%;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--aero-blue);
  box-shadow: 0 0 20px rgba(0,200,255,0.3);
}

.product-card img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.product-card p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background: rgba(255,255,255,0.05);
  font-size: 0.9rem;
  margin-top: 4rem;
}
