body.loja-lock-ativa {
  overflow: hidden;
}

.loja-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(211, 47, 47, 0.22), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #09090b, #151518 58%, #070708);
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
}

.loja-lock-card {
  width: min(100%, 470px);
  position: relative;
  overflow: hidden;
  padding: 34px 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(20, 20, 20, 0.82);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.loja-lock-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(211, 47, 47, 0.15), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.loja-lock-card > * {
  position: relative;
  z-index: 1;
}

.loja-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(211, 47, 47, 0.35);
  border-radius: 999px;
  color: #ffd6d6;
  background: rgba(211, 47, 47, 0.12);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.loja-lock-card h2 {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.loja-lock-card p {
  margin: 0 0 24px;
  color: #b9b9b9;
  line-height: 1.7;
}

.loja-lock-dev {
  margin: -10px 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 201, 74, 0.28);
  border-radius: 14px;
  background: rgba(255, 201, 74, 0.1);
  color: #ffe19a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.loja-lock-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.loja-lock-field label {
  color: #e7e7e7;
  font-size: 0.92rem;
  font-weight: 700;
}

.loja-lock-field input {
  width: 100%;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0 16px;
  font-size: 0.98rem;
  outline: none;
}

.loja-lock-field input:focus {
  border-color: rgba(211, 47, 47, 0.75);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.loja-lock-options {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #cfcfcf;
  font-size: 0.9rem;
  font-weight: 600;
}

.loja-lock-options input {
  width: 16px;
  height: 16px;
  accent-color: #d32f2f;
}

.loja-lock-btn {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #d32f2f, #a71f1f);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(211, 47, 47, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.loja-lock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(211, 47, 47, 0.34);
}

.loja-lock-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ff8f8f;
  font-size: 0.9rem;
  font-weight: 700;
}

.loja-lock-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9f9f9f;
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .loja-lock-overlay {
    padding: 16px;
  }

  .loja-lock-card {
    padding: 26px 20px 22px;
    border-radius: 22px;
  }

  .loja-lock-card h2 {
    font-size: 1.65rem;
  }

  .loja-lock-field input,
  .loja-lock-btn {
    height: 52px;
  }
}
