@font-face {
  font-family: "Romance";
  src: url("https://shootingswallows.neocities.org/RomanceA.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

/* CUSTOMIZABLE VARIABLES */
:root {
  --font-family: 'Romance';
  --text-color: #470636;
  --bg-image: url("images/bg.jpg");
  --price-size: 0.95rem;
}
body {
  font-family: 'Romance';
  color: #470636;
  background-image: url("https://shootingswallows.neocities.org/img/dither_it_IMG_3077.jpeg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
  
}

/* HEADER */
.site-header {
  text-align: center;
  margin-bottom: 30px;
}

.site-header img {
  max-width: 100%;
  height: auto;
}

/* GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* PRODUCT CARD */
.product {
  text-decoration: none;
  color: inherit;
}

.product img {
  width: 100%;
  display: block;
}

.price {
  text-align: center;
  margin-top: 8px;
  font-size: 18;
}
.home-button {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.9rem;
}

.home-button:hover {
  background: rgba(0, 0, 0, 0.05);
}


/* HOVER (optional, subtle) */
.product:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 800px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}
