.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hidden {
  display: none;
}

.modal {
  background: white;
  padding: 70px 35px;
  border-radius: 0px;
  text-align: center;
  position: relative;
  width: 550px;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.store-options {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 20px;
}

.store-option {
  border-radius: 50%;
  padding: 10px;
  border: 2px solid transparent;
}

.store-option img {
  width: 60px;
  height: 60px;
}

.store-option.active {
  border: 2px solid black;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  font-size: 18px;
}
