/* ════════════════════════════════════════════
   ABJ Login Page — Full CSS v1.0.0
   All selectors prefixed .abjl- — zero theme conflict
   CSS variables set by PHP in wp_head
   ════════════════════════════════════════════ */

/* ── Reset inside shell only ── */
.abjl-shell, .abjl-shell * { box-sizing: border-box; }
.abjl-shell { margin: 0; padding: 0; }

/* ── SHELL ── */
.abjl-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  font-family: var(--abjl-body);
  font-weight: 300;
  color: var(--abjl-dark);
  background: var(--abjl-bg);
}

/* WebGL canvas */
.abjl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Glassmorphism layer */
.abjl-glass {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  display: flex;
  flex-direction: column;
}
.abjl-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72) 30%, rgba(255,255,255,0.72) 70%, transparent);
  z-index: 3;
  pointer-events: none;
}

/* ── ANIMATIONS ── */
@keyframes abjl-fade-up   { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes abjl-fade-in   { from { opacity:0; } to { opacity:1; } }
@keyframes abjl-panel-in  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
@keyframes abjl-glow      { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(232,201,122,.5); } 50% { opacity:.5; box-shadow:0 0 0 5px rgba(232,201,122,0); } }
@keyframes abjl-ring      { 0% { transform:scale(1); opacity:.65; } 100% { transform:scale(1.6); opacity:0; } }
@keyframes abjl-strength  { from { width:0; } to { width:100%; } }

/* ════════ SHARED HEADER ════════ */
.abjl-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 52px;
  border-bottom: 0.5px solid rgba(110,26,42,0.14);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.abjl-logo {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 20px;
  color: var(--abjl-dark);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
}
.abjl-logo small {
  display: block;
  font-family: var(--abjl-body);
  font-style: normal;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--abjl-dark);
  opacity: .42;
  margin-top: 3px;
  font-weight: 300;
}
.abjl-back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--abjl-dark);
  opacity: .45;
  text-decoration: none;
  font-weight: 300;
  transition: opacity .2s, color .2s;
}
.abjl-back svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }
.abjl-back:hover { opacity: 1; color: var(--abjl-burg); }

/* ════════ V1 — SPLIT LAYOUT ════════ */
.abjl-v1 .abjl-split {
  display: grid;
  grid-template-columns: var(--abjl-pw) 1fr;
  flex: 1;
}

/* ── Brand Panel ── */
.abjl-brand {
  background: var(--abjl-panel-bg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  animation: abjl-fade-in .55s cubic-bezier(.22,1,.36,1) .05s both;
}
.abjl-b-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.abjl-b-orb1 { top:-80px;  right:-80px; width:280px; height:280px; background:radial-gradient(circle,rgba(196,154,60,.2) 0%,transparent 70%); }
.abjl-b-orb2 { bottom:-60px; left:-60px; width:220px; height:220px; background:radial-gradient(circle,rgba(196,154,60,.1) 0%,transparent 70%); }
.abjl-b-orb3 { top:40%; right:10%; width:160px; height:160px; background:radial-gradient(circle,rgba(232,201,122,.07) 0%,transparent 70%); }

.abjl-b-logo {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 26px;
  color: var(--abjl-panel-txt);
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.abjl-b-tag {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--abjl-gl);
  opacity: .55;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.abjl-b-top { position: relative; z-index: 1; }

/* Collage */
.abjl-collage {
  position: relative;
  height: 210px;
  margin: 28px 0;
  z-index: 1;
}
.abjl-photo {
  position: absolute;
  width: 105px;
  height: 138px;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 32px rgba(0,0,0,.35);
  transition: transform .3s;
}
.abjl-photo:hover { transform: scale(1.03) !important; }
.abjl-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.abjl-ptag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 5px 0;
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(0,0,0,.55);
  color: var(--abjl-gl);
  font-family: var(--abjl-body);
}
.abjl-accent1, .abjl-accent2 { width: 68px !important; height: 88px !important; }

.abjl-b-bottom { position: relative; z-index: 1; }
.abjl-b-quote {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 21px;
  color: var(--abjl-panel-txt);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 300;
}
.abjl-b-quote em { color: var(--abjl-gl); font-style: italic; }
.abjl-b-craft {
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--abjl-gl);
  opacity: .45;
  margin-bottom: 18px;
  font-weight: 300;
}
.abjl-b-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,154,60,.14);
  border: 1px solid rgba(196,154,60,.32);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--abjl-gl);
  font-weight: 400;
  font-family: var(--abjl-body);
}
.abjl-b-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--abjl-gl);
  display: inline-block;
  animation: abjl-glow 2s ease-in-out infinite;
}

/* ── Form Panel ── */
.abjl-form-panel {
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: abjl-fade-up .5s cubic-bezier(.22,1,.36,1) .1s both;
}

/* ════════ OFFER STRIP ════════ */
.abjl-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(110,26,42,.08);
  border: 1px solid rgba(110,26,42,.18);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.abjl-offer-badge {
  background: var(--abjl-burg);
  color: #fdf8f0;
  border-radius: 10px;
  padding: 8px 11px;
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 4px 16px rgba(110,26,42,.28);
}
.abjl-offer-txt {
  font-size: 12px;
  color: var(--abjl-dark);
  line-height: 1.6;
  font-weight: 300;
  opacity: .85;
}
.abjl-offer-txt strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--abjl-dark);
  display: block;
  margin-bottom: 2px;
  opacity: 1;
}

/* ════════ TABS ════════ */
.abjl-tabs {
  display: flex;
  border-bottom: 1px solid rgba(110,26,42,.14);
  margin-bottom: 28px;
}
.abjl-tab {
  flex: 1;
  font-family: var(--abjl-body);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 11px 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--abjl-dark);
  opacity: .36;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-align: center;
  transition: all .18s;
  font-weight: 400;
}
.abjl-tab:hover { opacity: .7; }
.abjl-tab.on {
  opacity: 1;
  color: var(--abjl-burg);
  border-bottom-color: var(--abjl-burg);
  font-weight: 500;
}

/* ════════ PANELS ════════ */
.abjl-panel { display: none; }
.abjl-panel.on { display: block; animation: abjl-panel-in .32s cubic-bezier(.22,1,.36,1) both; }
.abjl-panel-note { display: none; } /* hidden — just for register context */

.abjl-eyebrow {
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--abjl-gold);
  margin-bottom: 5px;
  font-weight: 400;
}
.abjl-title {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: var(--abjl-tfs);
  line-height: 1.1;
  color: var(--abjl-dark);
  font-weight: 300;
  margin-bottom: 5px;
}
.abjl-title em { color: var(--abjl-burg); font-style: italic; }
.abjl-sub {
  font-size: 13px;
  color: var(--abjl-dark);
  opacity: .5;
  margin-bottom: 22px;
  line-height: 1.65;
  font-weight: 300;
}

/* ════════ WC FORM STYLES ════════ */
/* Style the WooCommerce form fields to match ABJ design */
.abjl-shell .woocommerce-form-login,
.abjl-shell .woocommerce-form-register {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Hide WC form headings — we use our own */
.abjl-shell .woocommerce-form-login .woocommerce-form-login__submit,
.abjl-shell .woocommerce-form-register .woocommerce-form-register__submit {
  /* styled below as .abjl-shell button[type=submit] */
}

/* Field rows */
.abjl-shell .woocommerce-form-row,
.abjl-shell p.form-row {
  margin-bottom: 15px !important;
  padding: 0 !important;
}
.abjl-shell .woocommerce-form-row.form-row-first,
.abjl-shell .woocommerce-form-row.form-row-last {
  width: 48% !important;
  float: left !important;
}
.abjl-shell .woocommerce-form-row.form-row-last { float: right !important; }
.abjl-shell .clear { clear: both; }

/* Labels */
.abjl-shell .woocommerce-form-row label,
.abjl-shell p.form-row label {
  display: block !important;
  font-family: var(--abjl-body) !important;
  font-size: 9px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--abjl-dark) !important;
  opacity: .5 !important;
  margin-bottom: 7px !important;
  font-weight: 400 !important;
}
.abjl-shell .woocommerce-form-row label .required,
.abjl-shell p.form-row label .required { display: none !important; }

/* Inputs */
.abjl-shell .woocommerce-form-row input.input-text,
.abjl-shell p.form-row input.input-text,
.abjl-shell input[type="text"],
.abjl-shell input[type="email"],
.abjl-shell input[type="password"] {
  width: 100% !important;
  background: rgba(240,232,222,.7) !important;
  border: 1.5px solid rgba(110,26,42,.16) !important;
  border-radius: var(--abjl-fr) !important;
  padding: 13px 18px !important;
  font-family: var(--abjl-body) !important;
  font-size: var(--abjl-ffs) !important;
  font-weight: 300 !important;
  color: var(--abjl-dark) !important;
  outline: none !important;
  transition: border-color .2s, box-shadow .2s !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
.abjl-shell input[type="text"]:focus,
.abjl-shell input[type="email"]:focus,
.abjl-shell input[type="password"]:focus {
  border-color: var(--abjl-burg) !important;
  background: rgba(240,232,222,.9) !important;
  box-shadow: 0 0 0 3px rgba(110,26,42,.08) !important;
}
.abjl-shell input::placeholder { color: var(--abjl-dark) !important; opacity: .22 !important; }

/* Checkboxes (remember me) */
.abjl-shell .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-family: var(--abjl-body) !important;
  font-size: 12px !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
  color: var(--abjl-dark) !important;
  opacity: .55 !important;
  cursor: pointer !important;
}
.abjl-shell .woocommerce-form__label-for-checkbox input[type="checkbox"] {
  width: 14px !important;
  height: 14px !important;
  accent-color: var(--abjl-burg) !important;
}

/* Lost password link */
.abjl-shell .woocommerce-LostPassword {
  float: right;
  margin-top: -40px;
  margin-bottom: 20px;
}
.abjl-shell .woocommerce-LostPassword a {
  font-family: var(--abjl-body) !important;
  font-size: 12px !important;
  color: var(--abjl-burg) !important;
  text-decoration: none !important;
  opacity: .7;
  font-weight: 300;
}
.abjl-shell .woocommerce-LostPassword a:hover { opacity: 1; }

/* Buttons — all WC submit buttons */
.abjl-shell button[type="submit"],
.abjl-shell input[type="submit"],
.abjl-shell .woocommerce-Button {
  width: 100% !important;
  padding: 15px 20px !important;
  border-radius: var(--abjl-br) !important;
  background: var(--abjl-burg) !important;
  color: #fdf8f0 !important;
  border: none !important;
  font-family: var(--abjl-body) !important;
  font-size: 11px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  margin-top: 4px !important;
  margin-bottom: 16px !important;
  transition: all .25s cubic-bezier(.22,1,.36,1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}
.abjl-shell button[type="submit"]::before,
.abjl-shell input[type="submit"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.abjl-shell button[type="submit"]:hover,
.abjl-shell input[type="submit"]:hover {
  background: #3d0e17 !important;
  box-shadow: 0 8px 28px rgba(110,26,42,.32) !important;
  transform: translateY(-1px) !important;
}
.abjl-shell button[type="submit"]:active { transform: translateY(0) !important; }

/* WC notices */
.abjl-shell .woocommerce-error,
.abjl-shell .woocommerce-message,
.abjl-shell .woocommerce-info {
  border-radius: 10px !important;
  font-family: var(--abjl-body) !important;
  margin-bottom: 16px !important;
}

/* ════════ WHATSAPP ALTERNATIVE ════════ */
.abjl-wa-alt-wrap { margin-top: 16px; }
.abjl-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.abjl-or-line { flex: 1; height: 0.5px; background: rgba(110,26,42,.14); }
.abjl-or-txt {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--abjl-dark);
  opacity: .35;
  font-weight: 300;
  white-space: nowrap;
}
.abjl-wa-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--abjl-br);
  background: #25D366;
  color: #fff;
  border: none;
  font-family: var(--abjl-body);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: .2s;
  position: relative;
  overflow: hidden;
}
.abjl-wa-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 55%);
  pointer-events: none;
}
.abjl-wa-alt:hover { background: #1da851; color: #fff; }
.abjl-wa-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(37,211,102,.45);
  animation: abjl-ring 2.2s ease-out infinite;
}

/* ════════ ORNAMENTAL DIVIDER ════════ */
.abjl-ornament-div { padding: 0 52px; line-height: 0; }
.abjl-ornament-div svg { width: 100%; height: 24px; display: block; }

/* ════════ BOTTOM BAR ════════ */
.abjl-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 13px 52px;
  border-top: 0.5px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
}
.abjl-copy {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--abjl-dark);
  opacity: .38;
}
.abjl-bar-tag {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 12px;
  color: var(--abjl-burg);
  opacity: .45;
}
.abjl-legal { display: flex; gap: 16px; }
.abjl-legal a {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--abjl-dark);
  opacity: .38;
  text-decoration: none;
  transition: opacity .2s, color .2s;
}
.abjl-legal a:hover { opacity: 1; color: var(--abjl-burg); }

/* ════════ V2 — MOBILE ════════ */
.abjl-hdr-v2 { padding: 12px 22px; }
.abjl-logo-v2 { font-size: 17px; }
.abjl-skip {
  font-family: var(--abjl-body);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--abjl-dark);
  opacity: .4;
  text-decoration: none;
}
.abjl-v2-hero {
  background: var(--abjl-panel-bg);
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  animation: abjl-fade-up .45s cubic-bezier(.22,1,.36,1) .05s both;
}
.abjl-v2-orb1 {
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,.18) 0%, transparent 70%);
  pointer-events: none;
}
.abjl-v2-orb2 {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,60,.08) 0%, transparent 70%);
  pointer-events: none;
}
.abjl-v2-collage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.abjl-v2-photo {
  position: absolute;
  width: 78px;
  height: 102px;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.abjl-v2-photo img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
.abjl-v2-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.abjl-v2-logo {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 22px;
  color: var(--abjl-panel-txt);
  font-weight: 400;
  margin-bottom: 3px;
}
.abjl-v2-tag {
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--abjl-gl);
  opacity: .5;
  margin-bottom: 14px;
  font-weight: 300;
}
.abjl-v2-quote {
  font-family: var(--abjl-display);
  font-style: italic;
  font-size: 17px;
  color: rgba(253,248,240,.9);
  line-height: 1.45;
  margin-bottom: 14px;
  font-weight: 300;
}
.abjl-v2-quote em { color: var(--abjl-gl); }
.abjl-v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(196,154,60,.14);
  border: 1px solid rgba(196,154,60,.3);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--abjl-gl);
  font-weight: 400;
}
.abjl-v2-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--abjl-gl);
  animation: abjl-glow 2s ease-in-out infinite;
}
.abjl-v2-form-area {
  padding: 24px 22px 32px;
  animation: abjl-fade-up .45s cubic-bezier(.22,1,.36,1) .15s both;
}
.abjl-offer-v2 { margin-bottom: 16px; border-radius: 12px; padding: 12px 15px; }

/* Social proof */
.abjl-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,154,60,.07);
  border: 1px solid rgba(196,154,60,.18);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.abjl-stars { color: var(--abjl-gold); font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.abjl-proof-txt {
  font-size: 11px;
  color: var(--abjl-dark);
  opacity: .68;
  line-height: 1.5;
  font-weight: 300;
}
.abjl-proof-txt strong { font-weight: 500; opacity: 1; }

/* Benefits */
.abjl-benefits {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.abjl-benefit {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(110,26,42,.06);
  border: 1px solid rgba(110,26,42,.12);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 10px;
  color: var(--abjl-dark);
  opacity: .7;
  font-weight: 300;
}
.abjl-benefit svg { width: 11px; height: 11px; stroke: var(--abjl-burg); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* V2 bar */
.abjl-bar-v2 {
  padding: 12px 22px;
  flex-direction: row;
  border-top: 0.5px solid rgba(110,26,42,.12);
  background: rgba(255,255,255,.06);
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .abjl-v1 .abjl-split { grid-template-columns: 1fr; }
  .abjl-brand { display: none; } /* hide brand panel, show only form on mobile for V1 */
  .abjl-hdr { padding: 14px 22px; }
  .abjl-form-panel { padding: 28px 22px; }
  .abjl-ornament-div { padding: 0 22px; }
  .abjl-bar { padding: 12px 22px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .abjl-bar-tag { display: none; }
}
@media (max-width: 500px) {
  .abjl-shell .woocommerce-form-row.form-row-first,
  .abjl-shell .woocommerce-form-row.form-row-last {
    width: 100% !important;
    float: none !important;
  }
}
