/* 1. Pin icons in upper left corner of cards */
.storepoint-location-card {
  position: relative;
}

/* Coinhub - Orange pin */
.storepoint-location-card[data-tags*="1c354d9c44e14348e733eb3c35e07e44"]::before {
  content: "\f3c5"; /* Font Awesome map-marker-alt */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: #f7931a; /* Orange */
}

/* Cash2Bitcoin - Green pin */
.storepoint-location-card[data-tags*="261bff9b87920dd403ef89170f65e64f"]::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  color: #2e7d32; /* Green */
}

/* 2. Remove "Categories" label from cards */
.storepoint-location-card .storepoint-tag-group-name {
  display: none;
}

/* 3. Phone number colors in black for both */
.storepoint-phone-link {
  color: #000000 !important;
}

/* 4. Button colors - Coinhub Orange */
.storepoint-location-card[data-tags*="1c354d9c44e14348e733eb3c35e07e44"] .storepoint-website-button,
.storepoint-location-card[data-tags*="1c354d9c44e14348e733eb3c35e07e44"] .storepoint-directions-button {
  background-color: #f7931a !important;
  color: #ffffff !important;
}

/* 4. Button colors - Cash2Bitcoin Green */
.storepoint-location-card[data-tags*="261bff9b87920dd403ef89170f65e64f"] .storepoint-website-button,
.storepoint-location-card[data-tags*="261bff9b87920dd403ef89170f65e64f"] .storepoint-directions-button {
  background-color: #2e7d32 !important;
  color: #ffffff !important;
}

/* Optional: Add padding-left to card content to make room for the pin */
.storepoint-location-info {
  padding-left: 30px;
}