/* Shared mobile sticky book bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #111;
  border-top: 1px solid rgba(255, 0, 168, 0.3);
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.sticky-bar-text strong {
  color: #fff;
  font-weight: 500;
}
.sticky-bar-text a {
  color: inherit;
  text-decoration: none;
}
.sticky-bar .btn-primary {
  display: inline-flex;
  align-items: center;
  background: #FF00A8;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
}
.sticky-bar .btn-primary:hover { background: #D6008E; }
body { padding-bottom: 0; }
body.has-sticky-pad { padding-bottom: 72px; }
@media (max-width: 768px) {
  .sticky-bar { padding: 14px 20px; }
  .sticky-bar-text { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-bar { transition: none; }
}
