/* Delivery & Listing option buttons – always beat Woo/Elementor */
.delivery-btn,
.listing-btn {
  background-color: #1e73be !important; /* light blue */
  color: #fff !important;
  border: none !important;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.1s ease;
  box-shadow: none !important;
  text-shadow: none !important;
}

.delivery-btn:hover,
.listing-btn:hover,
.delivery-btn.active,
.listing-btn.active {
  background-color: #155a8a !important; /* slightly darker */
  transform: translateY(-1px);
}

/* (Optional) Submit/View buttons, kept here too for consistency */
button[type="submit"],
input[type="submit"],
.submit-btn,
.view-all-btn {
  background-color: #003366 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}
button[type="submit"]:hover,
input[type="submit"]:hover,
.submit-btn:hover,
.view-all-btn:hover {
  background-color: #005599 !important;
  color: #f2f2f2 !important;
  transform: translateY(-2px);
}
