/* Basis open/closed */
#shop-choice-modal.closed {
  display: none;
}

#shop-choice-modal.open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

/* Overlay */
.shop-choice-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal content */
.shop-choice-content {
  position: relative;
  width: 500px;
  max-width: 90%;
  padding: 40px 30px 30px 30px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  font-family: Arial, sans-serif;
}

/* Titel */
.shop-choice-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Tekst */
.shop-choice-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

/* Knoppen wrapper */
.shop-choice-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

/* Knoppen */
.btn-choice {
  flex: 1 1 48%;
  padding: 14px 20px;
  background: #004712;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-choice:hover {
  background: #00350F;
  box-shadow: 0 0 8px #A8D5BA;
}

/* Kruis rechtsboven */
.shop-choice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px; /* groter kruisje */
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  color: #000;
  transition: color 0.2s;
}

.shop-choice-close:hover {
  color: #666;
}