/* Buy landing — mobile order bar only (matches main site theme via style.css) */
.buy-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.buy-sticky.is-visible {
  display: flex;
}

@media (min-width: 901px) {
  .buy-sticky.is-visible {
    display: none;
  }
}

.buy-sticky__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-green);
}

.buy-sticky .btn-primary {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem;
}

body.buy-sticky-on {
  padding-bottom: 5rem;
}

@media (min-width: 901px) {
  body.buy-sticky-on {
    padding-bottom: 0;
  }
}
