.register-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 90vh;
  background: #fff;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  transition: bottom 0.5s ease;
  z-index: 9999;
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.register-modal.active {
  bottom: 0;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 26px;
  cursor: pointer;
  color: #666;
}

.login-title {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.currency-select select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-top: 15px;
  font-size: 14px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.hint {
  font-size: 12px;
  color: #777;
  text-align: left;
  margin: 4px 5px 0;
}

.promo {
  text-align: left;
  color: #007bff;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 15px;
  text-align: left;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.checkbox-group a {
  color: #007bff;
  text-decoration: none;
}

.register-btn {
  width: 100%;
  padding: 12px;
  background: #6ee7b7;
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.register-btn:hover {
  background: #4ade80;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.socials img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.socials img:hover {
  transform: scale(1.1);
}

.register-switch {
  margin-top: 20px;
  font-size: 14px;
}

.register-switch a {
  color: #007bff;
  text-decoration: none;
}

/*.register-modal {*/
/*  position: fixed;*/
/*  bottom: -100%;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 90vh;*/
/*  background: #fff;*/
/*  border-radius: 25px 25px 0 0;*/
/*  transition: bottom 0.5s ease;*/
/*}*/

/*.register-modal.active {*/
/*  bottom: 0;*/
/*}*/

/* 🔹 Promo Button (Add promo code) */
.promo {
  display: block;
  background: #f3f3f3;
  border: 1px solid #ccc;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  margin: 10px 0;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
}

.promo:hover {
  background: #e6e6e6;
  border-color: #999;
}

/* 🔹 Promo Input (visible after clicking “Add promo code”) */
.promo-input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: 0.25s ease;
}

.promo-input:focus {
  border-color: #0066ff;
  box-shadow: 0 0 4px rgba(0, 102, 255, 0.3);
}


.toast-msg {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}
.toast-msg.show { opacity: 1; transform: translateY(0); }
.toast-msg.success { background: #28a745; }
.toast-msg.error { background: #dc3545; }
