/* ================================
   BUY NOW BUTTONS - UX Enhancement
   ================================ */

/* OPTION 1: Sticky Floating Button (bottom right) */
.sticky-buy-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(181, 37, 102, 0.4);
  
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.sticky-buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(181, 37, 102, 0.6);
}

/* Hide on very small screens to avoid overlap */
@media (max-width: 480px) {
  .sticky-buy-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* OPTION 2: Section Buy Buttons (inline in content) */
.section-buy-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(181, 37, 102, 0.3);
  margin: 20px auto;
  
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.section-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 37, 102, 0.5);
}

/* Center the button wrapper */
.btn-center {
  text-align: center;
  margin: 30px auto;
}

/* Responsive */
@media (max-width: 768px) {
  .section-buy-btn {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 20px auto;
    text-align: center;
  }
}

/* OPTION 3: Sticky Top Bar (alternative to floating button) */
.sticky-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181, 37, 102, 0.3);
  padding: 12px 20px;
  
  display: none; /* Hidden by default, show with JavaScript */
  justify-content: center;
  align-items: center;
  gap: 20px;
  
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-top-bar.visible {
  display: flex;
}

.sticky-top-bar span {
  color: #ccc;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.sticky-top-bar a {
  padding: 8px 20px;
  background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.sticky-top-bar a:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .sticky-top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }
  
  .sticky-top-bar span {
    font-size: 12px;
  }
}
