/* =====================
   CSS VARIABLES — edit these to style everything
   ===================== */
:root {
  --bg: #000;
  --text: #fff;
  --accent: #fff;
  --font: sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

/* Landing */
.landing {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing a {
  transition: box-shadow 0.2s ease;
  display: inline-block;
}

.landing a:hover img {
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.landing-img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  cursor: pointer;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.products-grid a {
  display: block;
}

.products-grid img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.products-grid img:hover {
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

/* Product page */
.product-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.product-page img {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
}

.product-page h1 {
  margin-bottom: 0.5rem;
}

.product-page .price {
  margin-bottom: 1rem;
}

.product-page .description {
  margin-bottom: 2rem;
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-decoration: none;
}

.buy-btn {
  display: block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}