/* Popup email capture — Phase 5, Plan 05-05 */
/* UI-SPEC §Surface 3 — prefix tsh-popup-email to avoid Aspro CSS collisions */

.tsh-popup-email {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.tsh-popup-email[data-shown="true"] {
  display: flex;
}

.tsh-popup-email__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(57, 48, 39, 0.72);
}

.tsh-popup-email__card {
  position: relative;
  max-width: 400px;
  width: 90vw;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  font-family: 'Manrope', Arial, sans-serif;
  box-shadow: 0 24px 64px rgba(29, 29, 29, 0.24);
}

.tsh-popup-email__close {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: #393027;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tsh-popup-email__close:hover {
  opacity: 0.7;
}

.tsh-popup-email__heading {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #393027;
}

.tsh-popup-email__body {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #393027;
}

.tsh-popup-email__form {
  display: flex;
  flex-direction: column;
}

.tsh-popup-email__input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #393027;
  background: #FFFFFF;
  border: 1px solid #393027;
  border-radius: 8px;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.tsh-popup-email__input:focus {
  outline: none;
  border: 2px solid #A59301;
  padding: 11px 15px; /* compensate for thicker border */
}
.tsh-popup-email__input::placeholder {
  color: rgba(57, 48, 39, 0.5);
}

.tsh-popup-email__submit {
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  background-color: #A59301;
  color: #1D1D1D;
  border: 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s;
  -webkit-appearance: none;
}
.tsh-popup-email__submit:hover {
  background-color: #8A7A01;
}
.tsh-popup-email__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tsh-popup-email__error {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #660204;
  min-height: 20px;
}

.tsh-popup-email__privacy {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(57, 48, 39, 0.8);
}

.tsh-popup-email__success {
  text-align: center;
  padding: 32px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #393027;
}
.tsh-popup-email__success small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(57, 48, 39, 0.7);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .tsh-popup-email__card {
    padding: 24px;
    max-width: none;
  }
  .tsh-popup-email__heading {
    font-size: 18px;
  }
}
