.bottom-buttons {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 16px;
  z-index: 10;
}

.bottom-buttons a {
  text-decoration: none;
  padding: 12px 18px;
  background: #fff;
  color: #6D0D1B;
  border: 2px solid #6D0D1B;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bottom-buttons a:hover {
  background: #e80527;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px) {
  .bottom-buttons a {
    padding: 14px 20px;
    font-size: 16px;
  }
}