/* SHOP PAGE STYLING */

body {
  margin: 0;
  padding: 0;
  background: url('../assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: "Courier New", monospace;
  color: #0000ee;
}

.shop-container {
  padding: 60px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.shop-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.product {
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
  border: 1px solid #0000ee;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.product img:hover {
  transform: scale(1.05);
}

.product-title {
  font-size: 14px;
  margin-top: 8px;
  color: #0000ee;
}

.product-price {
  font-size: 12px;
  opacity: 0.8;
  color: #0000ee;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #0000ee;
  text-decoration: underline;
}

.back-link:hover {
  color: #5555ff;
}
