/* LV Interest Popup */

.lvip { position: fixed; inset: 0; z-index: 999999; display: none; font-family: inherit; }
.lvip.lvip--open { display: block; }

.lvip__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }

.lvip__dialog {
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,0.06);
}

@media (min-width: 900px) {
  .lvip__dialog { margin-top: 12vh; }
}

html.lvip-lock, html.lvip-lock body { overflow: hidden !important; }

.lvip__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lvip__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lvip__title { margin: 0 0 8px; font-size: 22px; line-height: 1.2; }
.lvip__sub { margin: 0 0 14px; color: rgba(0,0,0,0.7); font-size: 14px; }

.lvip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 14px;
}

@media (min-width: 520px) {
  .lvip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.lvip__card {
  text-align: left;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  cursor: pointer;
  min-height: 64px;
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform .06s ease, border-color .06s ease, box-shadow .06s ease;
}

.lvip__card:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,0.08); }
.lvip__card.is-active { border-color: rgba(0,0,0,0.35); box-shadow: 0 10px 24px rgba(0,0,0,0.10); background: rgba(17,17,17,0.03); }

.lvip__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.lvip__card.is-active .lvip__check { display: inline-flex; }

.lvip__emoji { font-size: 22px; }
.lvip__labelText { font-weight: 700; font-size: 13px; line-height: 1.2; }

.lvip__label { display: block; font-size: 12px; font-weight: 700; margin: 10px 0 6px; }
.lvip__muted { color: rgba(0,0,0,0.6); font-weight: 600; }

#lvip-email, #lvip-name {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  outline: none;
  font-size: 14px;
}

#lvip-email:focus, #lvip-name:focus { border-color: rgba(0,0,0,0.35); box-shadow: 0 0 0 4px rgba(0,0,0,0.06); }

.lvip__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0 6px;
  font-size: 13px;
  color: rgba(0,0,0,0.75);
}

.lvip__consent input { margin-top: 2px; }

.lvip__wa {
  margin: 12px 0 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lvip__waText { font-size: 13px; font-weight: 800; }

.lvip__waBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #111;
}

.lvip__waNote { font-size: 12px; color: rgba(0,0,0,0.6); }

.lvip__actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 14px;
}

.lvip__btn {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  width: 100%;
}

.lvip__btn--ghost { background: rgba(0,0,0,0.04); }

.lvip__btn--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.lvip__btn[disabled] { opacity: .55; cursor: not-allowed; }

.lvip__tiny {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,0.6);
}
