.box_head .mi_cuenta a {
  color: #fff;
  font-size: 11px;
  display: flex;
  gap: 7px;
  line-height: 1;
  text-decoration: none;
  align-items: center;
}

.box_head .mi_cuenta a i {
  font-size: 21px;
  margin-top: 4px;
}

.theme-login-modal {
  display: none;
}

.theme-login-modal.is-open {
  display: block;
}

.theme-login-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

/* Dialog split */
.theme-login-modal__dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 30px));
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  z-index: 9999;
  font-family: "Outfit", sans-serif;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 420px;
}

.theme-login-modal__close {
  position: absolute;
    top: 10px;
    right: 12px;
    border: 1px solid #f3f4f8b0;
    background: #ffffff8c;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    color: #0c0c0c99;
    justify-content: center;
    align-items: center;
}

.theme-login-modal__content {
  padding: 70px 40px;
}

.theme-login-modal__title {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.theme-login-modal__subtitle {
  margin: -8px 0 18px;
  font-size: 14px;
  opacity: 0.75;
}

.theme-login-modal__row {
  margin-bottom: 12px;
}

.theme-login-modal__row label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  opacity: 0.9;
}

.theme-login-modal__row input[type="text"],
.theme-login-modal__row input[type="password"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ecedf3;
  border-radius: 10px;
  background: #f3f4f8;
  outline: none;
}

.theme-login-modal__row input[type="text"]:focus,
.theme-login-modal__row input[type="password"]:focus {
  border-color: rgba(233, 79, 29, 0.35);
  box-shadow: 0 0 0 4px rgba(233, 79, 29, 0.12);
}

.theme-login-modal__row--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.theme-login-modal__link {
  font-size: 13px;
}

.theme-login-modal__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.theme-login-modal__btn {
  padding: 11px 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background-color: #e94f1d;
  color: #fff;
  font-weight: 600;
}

.theme-login-modal__btn:hover {
  filter: brightness(0.97);
}

.theme-login-modal__msg {
  font-size: 13px;
  opacity: 0.9;
}

/* Panel derecho con imagen */
.theme-login-modal__media {
  position: relative;
  background: #6a2be2;
  min-height: 420px;
  overflow: hidden;
}

.theme-login-modal__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--theme-login-media);
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.theme-login-modal__media::after {
  /* overlay suave para que se vea pro */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 0, 0, 0.18),
      transparent 60%
    );
}

body.theme-login-modal-open {
  overflow: hidden;
}

.price--locked {
  display: inline-block;
  font-size: 13px;
  opacity: 0.85;
}

/* Responsive: en mobile se apila (imagen abajo u oculta) */
@media (max-width: 860px) {
  .theme-login-modal__dialog {
    grid-template-columns: 1fr;
    width: min(520px, calc(100% - 30px));
  }

  .theme-login-modal__media {
    min-height: 180px;
    order: 2;
  }
}
