/* Wave divider decorative elements */
.wave-divider {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' fill='none'%3E%3Cpath d='M0 20C240 5 480 35 720 20C960 5 1200 35 1440 20V40H0V20Z' fill='%23f0f7f7'/%3E%3C/svg%3E");
  background-size: cover;
  height: 40px;
}
.wave-divider-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' fill='none'%3E%3Cpath d='M0 20C240 5 480 35 720 20C960 5 1200 35 1440 20V40H0V20Z' fill='%23fdfcf7'/%3E%3C/svg%3E");
  background-size: cover;
  height: 40px;
}

/* Product image consistent sizing */
.product-img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.product-hero-img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

/* PayPal button styling */
.paypal-btn {
  display: inline-block;
  background-color: #2e6b66;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
  font-size: 1rem;
}
.paypal-btn:hover {
  background-color: #255553;
}
