.product-card {
  background-color: #fff8f0;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin: 20px;
  text-align: center;
  max-width:190px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card img {
  max-width:90%;
  border-radius: 8px;
}

  body.lighting-page .product-card .card-button {
  background-color: #007BFF; /* blue */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
body.lighting-page .product-card h2,
body.lighting-page .product-card h3 {
  font-size: .90rem; /* Adjust as needed */
}

body.lighting-page .product-card p {
  font-size: .80rem;
}
body.lighting-page .product-card .cta-button,
body.lighting-page .product-card .card-button {
  font-size: 0.95rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* ← This controls the space between cards */
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007BFF;
  color: #fff8dc;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}

