.product-card {
  border-radius: 8px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.product-card.selected {
  background: #e0f7fa;
  border: 2px solid #00796b;
}

.checkmark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #00796b;
  background-color: white;
}
.product-card.selected .checkmark {
  background-color: #00796b;
  box-shadow: inset 0 0 0 2px white;
}

.card-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.card-images img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #ddd;
}


.badge {
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 0.85em;
  margin-bottom: 0.5em;
  color: #fff;
  background: #0073aa;
  text-transform: uppercase;
}

.wildmex-inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1em;
  padding: 1em;
}

.card-info {
  width: 100%;
  text-align: left;
  margin-top: 0.5em;
}

.wildmex-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 1em;
  justify-content: center;
}

/* Chips */
.selected-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0.5em;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 1em;
}
.chip {
  display: inline-flex;
  align-items: center;
  background-color: #00796b;
  color: white;
  padding: 0.4em 0.8em;
  border-radius: 16px;
  font-size: 0.9em;
}
.chip .remove-chip {
  margin-left: 0.5em;
  cursor: pointer;
  font-weight: bold;
}
.boogie-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.boogie-popup {
  background: #fff;
  padding: 1.5em 2em;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  max-width: 400px;
  text-align: center;
  position: relative;
  font-family: sans-serif;
}

.boogie-popup h3 {
  margin: 0 0 10px;
}

.boogie-popup p {
  margin: 0;
  font-size: 1em;
}

.boogie-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 18px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}