/* ===== EDIT EMAIL PAGE ===== */
.email-main-wrapper {
  max-width: 576px;
  margin: 0 auto;
  min-height: 100vh;
  background: white;
}
@media (min-width: 768px) {
  .email-main-wrapper {
    max-width: 500px;
    margin: 3rem auto;
    min-height: auto;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #eee;
  }
}
.email-info-box {
  background-color: #fff8f5;
  border: 1px solid #ffe5d9;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.email-info-box i { color: #ff5200; font-size: 1.2rem; margin-top: 2px; }
.email-info-box p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }
.email-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  display: block;
  letter-spacing: 0.5px;
}
.email-input {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1.5px solid #eee;
  background: #f5f5f5;
  width: 100%;
  font-size: 0.95rem;
  transition: 0.2s;
}
.email-input:focus {
  border-color: #ff5200;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,82,0,0.1);
  outline: none;
}
.email-input[readonly] {
  background-color: #fcfcfc;
  border-style: dashed;
  color: #000;
}
.email-btn-save {
  background-color: #ff5200;
  color: white;
  border: none;
  font-weight: 700;
  padding: 16px;
  border-radius: 14px;
  width: 100%;
  font-size: 1rem;
  transition: 0.3s;
  cursor: pointer;
}
.email-btn-save:hover:not(:disabled) {
  background-color: #e64a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,82,0,0.2);
}
.email-btn-save:disabled { background-color: #ddd; cursor: not-allowed; }
.email-fixed-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 1.2rem;
  border-top: 1px solid #eee;
  z-index: 100;
}
@media (min-width: 768px) {
  .email-fixed-bottom { position: static; padding: 0; margin-top: 2rem; border: none; background: transparent; }
}
.email-modal-confirm {
  background: #ff5200; color: white; border-radius: 12px;
  font-weight: 700; padding: 12px; border: none; width: 100%; transition: 0.2s;
}
.email-modal-cancel {
  background: #f3f4f6; color: #4b5563; border-radius: 12px;
  font-weight: 600; padding: 12px; border: none; width: 100%;
}
