/* Sticky Where to Buy Button */
.sticky-where-to-buy {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 12px 30px;
  background: #d90429;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sticky-where-to-buy.hidden {
  transform: translateX(-50%) translateY(150%);
}

@media (max-width: 768px) {
  .sticky-where-to-buy {
    display: block;
  }
  
  /* Hide desktop version on mobile */
  .desktop-only .where-to-buy-btn {
    display: none;
  }
}