.product-card {
  background-color: #fff8f0;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin: 20px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-card img {
  max-width: 100%;
  border-radius: 8px;
}

.cta-button {
  background-color: #c71585;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color:#c71585;
  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;
}
