body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111; 
  color: #eee;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #e60023; 
  text-shadow: 0 0 10px rgba(230,0,35,0.7);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(230,0,35,0.4);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(230,0,35,0.7);
}

.product-card img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain; 
  background-color: #000;
  border-radius: 6px;
  border: 2px solid #e60023;
  box-shadow: 0 0 12px rgba(230,0,35,0.5);
  margin-bottom: 1rem;
}

.product-card h2 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 1.1rem;
  color: #e60023;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #e60023;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(230,0,35,0.6);
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #b71c29;
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: #555;
  transform: translateY(-3px);
}
