/* Klaviyo-style email signup popup */
.email-signup-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.55);
}

.email-signup-overlay[hidden] {
  display: none !important;
}

.email-signup-modal {
  position: relative;
  width: min(1000px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 30px;
}

.email-signup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(61, 59, 51, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-signup-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-width: 200px;
  border: 20px solid #fff;
  background: #f4efdc;
}

.email-signup-left {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 420px;
  justify-content: center;
  padding: 2rem 2.5rem;
  gap: 1rem;
}

.email-signup-banner {
  width: 100%;
  height: auto;
  display: block;
}

.email-signup-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #241f20;
  background: transparent;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: #241f20;
}

.email-signup-input:focus {
  outline: none;
  border-bottom-color: #7367f0;
}

.email-signup-submit {
  width: 100%;
  border: 0;
  background: #241f20;
  color: #fff;
  padding: 0.95rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.email-signup-submit:hover {
  opacity: 0.92;
}

.email-signup-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.email-signup-msg {
  margin: 0;
  font-size: 0.875rem;
  color: #241f20;
}

.email-signup-msg.is-error {
  color: #c0392b;
}

.email-signup-right {
  display: none;
  width: 500px;
  min-width: 500px;
  min-height: 420px;
  overflow: hidden;
}

.email-signup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .email-signup-left {
    width: 50%;
    min-height: 632px;
  }

  .email-signup-right {
    display: block;
    min-height: 632px;
  }
}

@media (max-width: 767px) {
  .email-signup-form {
    border-width: 12px;
  }

  .email-signup-left {
    min-height: auto;
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .email-signup-close {
    top: 12px;
    right: 12px;
    color: #241f20;
  }
}
