/* css/cuenta.css — SantoPadre® Account Page Stylesheet */
:root {
  --ink: #041c14;
  --ink-2: #06241a;
  --ink-3: #0a3325;
  --bone: #f4f4f2;
  --white: #ffffff;
  --accent: #e55d27; /* SantoPadre Naranja Fuego */
  --accent-dark: #b8461b;
  --forest: #486d54; /* SantoPadre Verde Bosque */
  --line: #124032;
  --mute: #9a9a97;
  --space: 'Space Grotesk', sans-serif;
  
  /* Acentos de SantoPadre */
  --lime: #dcfe54;   /* Amarillo/Verde Neón */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--ink);
  color: var(--bone);
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* HEADER STYLE (SantoPadre Brand Consistency) */
header {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

header .header-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

header .logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .logo img {
  height: 50px;
  width: auto;
  display: block;
}

header .header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .back-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

header .back-btn:hover {
  background: var(--line);
  border-color: var(--accent);
  color: var(--accent);
}


/* GOOGLE REVIEW BRAND BUTTON */
.btn-google-review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  background: var(--white) !important;
  color: #1f1f1f !important;
  border: 1px solid #dadce0 !important;
  padding: 12px !important;
  border-radius: 4px;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-google-review:hover {
  background: #f8f9fa !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* MOBILE HAMBURGER AND CLOSE BUTTONS */
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.hamburger-btn:hover {
  background: var(--line);
  color: var(--accent);
  border-color: var(--accent);
}

.close-sidebar-btn {
  display: none;
  background: none;
  border: none;
  color: var(--mute);
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s ease;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.close-sidebar-btn:hover {
  color: var(--accent);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 28, 20, 0.85); /* Deep green transparent mask */
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
}

/* LAYOUT STRUCTURE */
.account-container {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* LEFT COLUMN: SIDEBAR */
.sidebar {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  align-self: start;
}

.profile-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-summary h2 {
  font-family: var(--space);
  font-size: 15px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.2;
  word-break: break-word;
}

.profile-summary p {
  color: var(--mute);
  font-size: 12px;
  word-break: break-all;
}

/* Sidebar Navigation Items */
.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.sidebar-nav-item a:hover {
  background: var(--ink-3);
  color: var(--accent);
}

.sidebar-nav-item.active a {
  background: var(--ink-3);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-label svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  color: currentColor;
}

.nav-badge {
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--mute);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}

.sidebar-nav-item.active .nav-badge {
  background: rgba(229, 93, 39, 0.1);
  color: var(--accent);
  border-color: rgba(229, 93, 39, 0.3);
}

/* RIGHT COLUMN: MAIN CONTENT */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Tab Bar Navigation */
.tab-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.tab-item button {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  color: var(--bone);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.tab-item button svg {
  width: 20px;
  height: 20px;
  color: var(--mute);
  transition: color 0.3s ease;
}

.tab-item button:hover {
  background: var(--ink-3);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tab-item.active button {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(229, 93, 39, 0.3);
}

.tab-item.active button svg {
  color: var(--ink);
}

/* Tab Content Display */
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Segment Header */
.section-title {
  font-family: var(--space);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* LIST OF QUESTS / CARDS */
.quest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quest-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.quest-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quest-main {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quest-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quest-icon {
  background: var(--ink-3);
  border: 1px solid var(--line);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quest-icon svg {
  width: 22px;
  height: 22px;
}

.quest-text h4 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.quest-text p {
  color: var(--mute);
  font-size: 13px;
}

/* BUTTONS */
.quest-btn {
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quest-btn:hover {
  background: var(--lime);
  transform: translateY(-1px);
}

/* Droppable Details Panel */
.quest-details-toggle {
  width: 100%;
  background: var(--ink-3);
  border: none;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.quest-details-toggle:hover {
  color: var(--accent);
  background: rgba(229, 93, 39, 0.05);
}

.quest-details-panel {
  display: none;
  padding: 20px 24px;
  background: var(--ink-3);
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
  line-height: 1.6;
}

.quest-details-panel.active {
  display: block;
}

/* REFERRALS SECTION */
.referral-section {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.referral-title {
  font-family: var(--space);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.referral-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.referral-box label {
  font-size: 12px;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.referral-input-group {
  display: flex;
  gap: 10px;
}

.referral-input {
  flex: 1;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}

.referral-input:focus {
  border-color: var(--accent);
  outline: none;
}

.referral-copy-btn {
  background: var(--accent);
  color: var(--ink);
  border: none;
  padding: 0 20px;
  border-radius: 4px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.referral-copy-btn:hover {
  background: var(--lime);
}

/* CARTERA TAB SPECIFIC STYLES - VIP MEMBERSHIP CARD */
.vip-membership-card {
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1.5px solid rgba(220, 254, 84, 0.15);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 
              inset 0 1px 1px rgba(255, 255, 255, 0.05),
              0 0 40px rgba(220, 254, 84, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              border-color 0.4s ease;
  backdrop-filter: blur(25px);
  margin-bottom: 24px;
}

.vip-membership-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 254, 84, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), 
              inset 0 1px 1px rgba(255, 255, 255, 0.08),
              0 0 50px rgba(220, 254, 84, 0.08);
}

/* Glow effects inside card */
.vip-card-glow-lime {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(220, 254, 84, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.vip-card-glow-orange {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229, 93, 39, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Header inside card */
.vip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.vip-badge {
  background: rgba(220, 254, 84, 0.08);
  border: 1px solid rgba(220, 254, 84, 0.25);
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  font-family: var(--space);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  box-shadow: 0 0 12px rgba(220, 254, 84, 0.06);
  backdrop-filter: blur(4px);
}

/* Main Balance inside card */
.vip-main-balance {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.vip-balance-val {
  font-family: var(--space);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 6px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.vip-balance-equiv {
  font-size: 10px;
  font-family: var(--space);
  color: var(--mute);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
}

/* Dual Balance Columns */
.vip-balances-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.vip-bal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px;
  transition: background 0.3s, border-color 0.3s;
}

.vip-bal-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.vip-bal-lbl {
  font-size: 9px;
  color: var(--mute);
  display: block;
  text-transform: uppercase;
  font-family: var(--space);
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.vip-bal-val {
  font-size: 18px;
  color: var(--white);
  font-family: var(--space);
  font-weight: 700;
  display: block;
}

/* Footer elements */
.vip-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.vip-status-active {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
  font-size: 9px;
  font-family: var(--space);
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vip-status-active .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse 1.5s infinite;
}

/* Action button area */
.wallet-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.grid-full-width {
  grid-column: span 2;
}

.btn-action-primary {
  background: var(--lime);
  color: var(--ink-3);
  font-weight: 800;
  height: 48px;
  font-size: 13px;
  font-family: var(--space);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.2s, 
              box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(220, 254, 84, 0.15);
}

.btn-action-primary:hover {
  background: #c3e540;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 254, 84, 0.25);
}

.btn-action-primary:active {
  transform: translateY(0);
}

.btn-action-secondary {
  background: var(--ink-2);
  border: 1.5px solid var(--line);
  color: var(--bone);
  height: 46px;
  font-size: 12px;
  font-family: var(--space);
  font-weight: bold;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
  gap: 6px;
}

.btn-action-secondary:hover {
  border-color: var(--lime);
  background: rgba(220, 254, 84, 0.03);
  color: var(--lime);
  transform: translateY(-2px);
}

.btn-action-secondary:active {
  transform: translateY(0);
}

/* History feed styling */
.history-feed-title {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--mute);
  font-family: var(--space);
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 6px;
}

.history-feed-list {
  max-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
}

/* Custom scrollbar for history feed */
.history-feed-list::-webkit-scrollbar {
  width: 4px;
}

.history-feed-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
}

.history-feed-list::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 2px;
}

.history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s, border-color 0.2s;
}

.history-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ADD FUNDS PAYMENT MODAL GRID & STYLES */
.payment-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-payment-card {
  background: var(--ink-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
}

.modal-payment-card span {
  font-family: var(--space);
  font-size: 13px;
  font-weight: 700;
  color: var(--bone);
  transition: color 0.3s ease;
}

.modal-payment-card svg {
  color: var(--mute);
  transition: color 0.3s ease, transform 0.3s ease;
}

.modal-payment-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.modal-payment-card:hover svg {
  transform: translateY(-2px);
}

.modal-payment-card.active {
  border-color: var(--lime);
  background: rgba(220, 254, 84, 0.03);
  box-shadow: 0 0 15px rgba(220, 254, 84, 0.08);
}

.modal-payment-card.active span {
  color: var(--white);
}

.modal-payment-card.active svg {
  color: var(--lime);
}

/* Phantom card active state */
.modal-payment-card[data-value="phantom"].active {
  border-color: #AB9FF2;
  background: rgba(171, 159, 242, 0.04);
  box-shadow: 0 0 15px rgba(171, 159, 242, 0.1);
}

.modal-payment-card[data-value="phantom"].active span {
  color: #AB9FF2;
}

.modal-payment-card[data-value="phantom"].active svg {
  color: #AB9FF2;
}

/* Detail Box */
.payment-details-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 10px;
  color: var(--mute);
  text-transform: uppercase;
  font-family: var(--space);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 13px;
  color: var(--white);
  font-family: var(--space);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-copy-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--lime);
  font-family: var(--space);
  font-size: 9px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mini-copy-btn:hover {
  background: var(--lime);
  color: var(--ink-3);
  border-color: var(--lime);
}

.mini-copy-btn[data-color="phantom"] {
  color: #AB9FF2;
}

.mini-copy-btn[data-color="phantom"]:hover {
  background: #AB9FF2;
  color: var(--ink-3);
  border-color: #AB9FF2;
}

/* VIP TAB SPECIFIC STYLES */
.vip-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.vip-tier-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.vip-tier-card:hover {
  transform: translateY(-5px);
}

.vip-tier-card.active {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(229,93,39,0.05) 0%, var(--ink-2) 100%);
  box-shadow: 0 4px 15px rgba(229, 93, 39, 0.1);
}

.vip-icon {
  font-size: 32px;
}

.vip-tier-card h4 {
  font-family: var(--space);
  font-size: 18px;
  color: var(--white);
  text-transform: uppercase;
}

.vip-tier-card p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}

.vip-status-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--line);
  color: var(--mute);
}

.active .vip-status-label {
  background: var(--accent);
  color: var(--ink);
}

/* CANJEAR TAB SPECIFIC STYLES */
.reward-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reward-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reward-card-info h4 {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.reward-card-info p {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
/* LOADING & MOCK WARNING PANELS */
.loading-box {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: var(--mute);
  font-weight: 700;
}

.mock-warning-banner {
  background: rgba(229, 93, 39, 0.1);
  border: 1px solid rgba(229, 93, 39, 0.3);
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

/* FORM AND PROFILE DETAILS STYLES */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.form-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.profile-input,
.profile-select,
.profile-textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
}

.profile-input:focus,
.profile-select:focus,
.profile-textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 10px rgba(229, 93, 39, 0.2);
}

.profile-textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

.radio-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
  margin-top: 5px;
}

.radio-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-title {
  font-family: var(--space);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.radio-card-desc {
  font-size: 11px;
  color: var(--mute);
  line-height: 1.4;
}

.radio-card:hover {
  border-color: var(--forest);
  background: var(--ink-2);
}

.radio-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--ink-3);
  box-shadow: 0 0 12px rgba(229, 93, 39, 0.2);
}

.radio-card:has(input:checked) .radio-card-title {
  color: var(--lime);
}

.segment-group {
  display: flex;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  max-width: 600px;
  margin-top: 5px;
}

.segment-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.segment-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segment-label {
  display: block;
  padding: 12px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--mute);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.segment-item:hover .segment-label {
  background: rgba(229, 93, 39, 0.05);
  color: var(--white);
}

.segment-item:has(input:checked) .segment-label {
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-top: 5px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.checkbox-card:hover {
  border-color: var(--forest);
  background: var(--ink-2);
}

.checkbox-card input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-card:has(input:checked) {
  border-color: var(--lime);
  background: var(--ink-3);
}

.checkbox-label {
  font-size: 12px;
  color: var(--bone);
  font-weight: 600;
}


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .account-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tab-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reward-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .radio-card-grid {
    grid-template-columns: 1fr !important;
  }

  .checkbox-grid {
    grid-template-columns: 1fr !important;
  }

  .segment-group {
    flex-direction: column;
  }

  #pane-perfil-detalles {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .profile-left-col {
    width: 100% !important;
  }

  /* Mobile Drawer & Hamburger Styling */
  .hamburger-btn {
    display: flex !important;
  }

  header .back-btn {
    display: none !important;
  }

  .close-sidebar-btn {
    display: block !important;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -320px; /* Hide offscreen */
    width: 300px;
    height: 100vh;
    z-index: 1000;
    background: var(--ink-2);
    border-right: 1px solid var(--line);
    border-left: none;
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.6);
    padding: 24px;
    padding-top: 60px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    align-self: stretch;
  }

  .sidebar.open {
    left: 0;
  }

  .sidebar-nav-item.item-volver-tienda a {
    border: 1px dashed var(--line);
    margin-bottom: 10px;
    background: rgba(229, 93, 39, 0.03);
  }

  .sidebar-nav-item.item-volver-tienda a:hover {
    border-color: var(--accent);
    background: rgba(229, 93, 39, 0.08);
  }
}

@media (max-width: 600px) {
  .tab-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tab-item:last-child {
    grid-column: auto;
  }
  
  .quest-main {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quest-btn {
    width: 100%;
    text-align: center;
  }
}

/* PASSKIT DIGITAL STAMP CARD STYLES */
.wallet-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.wallet-left-column,
.wallet-right-column {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 820px) {
  .wallet-grid-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .wallet-left-column,
  .wallet-right-column {
    margin: 0;
  }
}

.passkit-pass {
  width: 100%;
  max-width: 320px;
  background: #08231a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #061c14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pass-logo-text {
  font-family: var(--space);
  font-size: 16px;
  font-weight: 800;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pass-logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pass-logo-container img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height 0.2s ease;
}

.pass-header-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.pass-label {
  font-size: 8px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.pass-value {
  font-size: 13px;
  font-weight: bold;
  color: var(--white);
}

.pass-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.pass-field {
  text-align: left;
}

.pass-field.text-right {
  text-align: right;
}

.pass-field .pass-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.pass-field .pass-value {
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

.pass-strip {
  width: 100%;
  height: 110px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.pass-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

/* Punched card divider effect */
.pass-divider {
  position: relative;
  height: 12px;
  background: #061c14;
  display: flex;
  align-items: center;
}

.pass-punch {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--ink); /* Matches page main background */
  border: 1px solid var(--line);
  border-radius: 50%;
  top: -2px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.pass-punch.left {
  left: -9px;
}

.pass-punch.right {
  right: -9px;
}

.pass-divider::after {
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  top: 6px;
}

.pass-body {
  padding: 20px;
  background: #08231a;
}

.pass-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #061c14;
  border-top: none;
}

.pass-barcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pass-barcode {
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 60px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pass-barcode:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
}

.barcode-svg {
  width: 100%;
  height: 100%;
}

.pass-serial {
  font-family: monospace;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.pass-stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.pass-stamp-slot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1d1d21;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.pass-stamp-slot span {
  position: relative;
  z-index: 1;
}

.pass-stamp-slot.active {
  background: var(--lime);
  border: 2px solid var(--lime);
  color: var(--ink-3);
  box-shadow: 0 0 12px rgba(180, 255, 30, 0.3);
  transform: scale(1.05);
}

.pass-stamp-slot.active::before {
  content: '🌮';
  font-size: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pass-stamp-slot.active span {
  display: none;
}

.pass-stamp-slot.gold-taco {
  border-color: rgba(255, 204, 0, 0.3);
  color: #ffcc00;
  font-size: 12px;
}

.pass-stamp-slot.gold-taco.active {
  background: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);
  border-color: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.pass-stamp-slot.gold-taco.active::before {
  content: '🎁';
  font-size: 15px;
}

.pass-promo-text {
  font-size: 11px;
  color: var(--mute);
  margin-top: 15px;
  line-height: 1.45;
  text-align: center;
}

.wallet-badge-row a:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* KEYFRAMES */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* MOBILE OPTIMIZATIONS FOR IPHONE AND SAMSUNG (Screens <= 480px) */
@media (max-width: 480px) {
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  header {
    padding: 10px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .account-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    margin: 15px 0 !important;
    overflow-x: hidden !important;
    gap: 20px !important;
  }

  .main-content {
    width: 100% !important;
    max-width: 100% !important;
    gap: 20px !important;
  }

  /* Adjust tab buttons size to fit screen width */
  .tab-bar {
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
  }

  .tab-item button {
    padding: 10px 6px !important;
    font-size: 10px !important;
    gap: 4px !important;
  }

  .tab-item button svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Adjust main section title font size */
  .section-title {
    font-size: 16px !important;
    padding-bottom: 8px !important;
  }

  /* VIP Membership Card Mobile overrides */
  .vip-membership-card {
    padding: 20px !important;
    border-radius: 14px !important;
    margin-bottom: 20px !important;
  }
  
  .vip-balance-val {
    font-size: 30px !important;
  }
  
  .vip-bal-val {
    font-size: 15px !important;
  }
  
  .vip-bal-box {
    padding: 10px !important;
  }
  
  .vip-card-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  
  .wallet-action-grid {
    gap: 8px !important;
  }
  
  .btn-action-primary, .btn-action-secondary {
    height: 44px !important;
    font-size: 11px !important;
  }

  /* Progress Bar optimizations */
  .level-progress-container {
    padding: 15px 10px !important;
    border-radius: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .progress-bar-track-wrapper {
    margin: 20px 4px 20px 4px !important;
    height: 4px !important;
  }

  .progress-node {
    width: 20px !important;
    height: 20px !important;
    font-size: 11px !important;
    top: -8px !important;
  }

  .progress-node span {
    font-size: 10px !important;
  }

  /* Ocultar etiquetas de texto de nivel en móvil */
  .progress-node span[style*="position: absolute"] {
    display: none !important;
  }

  .passkit-pass {
    max-width: 295px !important;
    border-radius: 12px !important;
  }

  .pass-header {
    padding: 12px 15px !important;
  }

  .pass-logo-container img {
    height: 60px !important;
  }

  .pass-body {
    padding: 15px !important;
  }

  .pass-stamp-grid {
    gap: 8px !important;
    margin: 10px 0 !important;
  }

  .pass-stamp-slot {
    font-size: 12px !important;
  }

  .pass-footer {
    padding: 15px !important;
  }

  .pass-barcode {
    width: 180px !important;
    height: 52px !important;
    padding: 8px 12px !important;
  }

  .pass-serial {
    font-size: 9px !important;
  }

  /* Reducir padding general de pestañas en móvil */
  .tab-pane.active {
    gap: 15px !important;
  }

  .welcome-box, .simulation-card {
    padding: 15px !important;
    border-radius: 8px !important;
    margin-top: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Extra mobile compatibility for very narrow screens (e.g. iPhone SE / Samsung Galaxy Fold) */
@media (max-width: 360px) {
  .passkit-pass {
    max-width: 275px !important;
  }

  .pass-logo-container img {
    height: 50px !important;
  }
  
  .progress-node {
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
    top: -7px !important;
  }

  .progress-node span {
    font-size: 9px !important;
  }

  .pass-stamp-grid {
    gap: 6px !important;
  }
  
  .pass-stamp-slot span {
    font-size: 11px !important;
  }

  .pass-barcode {
    width: 160px !important;
    height: 48px !important;
    padding: 6px 10px !important;
  }

  .pass-serial {
    font-size: 8px !important;
  }
}

/* FAVORITES WISHLIST STYLES */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}
.favorite-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.favorite-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 4px 20px rgba(220,254,84,0.15);
}
.favorite-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.favorite-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.favorite-card-title {
  font-family: var(--space);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.favorite-card-desc {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
  flex: 1;
}
.favorite-card-price {
  font-weight: 800;
  color: var(--lime);
  font-size: 15px;
}
.favorite-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.favorite-card-actions .btn-add-cart {
  flex: 1;
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
  font-family: var(--space);
}
.favorite-card-actions .btn-add-cart:hover {
  background: var(--white);
}
.favorite-card-actions .btn-remove-fav {
  background: rgba(255, 255, 255, 0.05);
  color: var(--mute);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.favorite-card-actions .btn-remove-fav:hover {
  background: rgba(229, 93, 39, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}
.favorites-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.1);
  grid-column: 1 / -1;
  width: 100%;
}
.favorites-empty-state .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.favorites-empty-state p {
  font-size: 14px;
  color: var(--mute);
  max-width: 320px;
  line-height: 1.5;
}
.favorites-empty-state .btn-go-shop {
  margin-top: 15px;
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--space);
}
.favorites-empty-state .btn-go-shop:hover {
  background: var(--white);
}

/* Rewards Catalog Grid and Cards */
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 550px) {
  .rewards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .reward-card-body {
    padding: 10px;
  }
  
  .reward-card-title {
    font-size: 11px;
    margin-bottom: 4px;
  }
  
  .reward-card-pts {
    font-size: 11px;
    margin-bottom: 8px;
  }
}

.reward-card {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reward-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(220, 254, 84, 0.2);
}

.reward-card-img-wrapper {
  background: #111;
  width: 100%;
  aspect-ratio: 9 / 10;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.reward-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.1);
  transition: transform 0.8s cubic-bezier(.2, .7, .2, 1), filter 0.8s ease;
}

.reward-card:hover .reward-card-img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.reward-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reward-card-title {
  font-family: var(--space);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--bone);
  line-height: 1.3;
}

.reward-card-pts {
  font-family: var(--space);
  font-size: 13px;
  color: var(--lime);
  font-weight: bold;
  margin-bottom: 14px;
  flex-grow: 1;
  letter-spacing: 0.05em;
}

/* SPLIT LOGIN INTERFACE */
.login-split-wrapper {
  display: flex;
  height: 950px;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.login-video-column {
  width: 65%;
  flex: 0 0 65%;
  position: relative;
  border-right: 1px solid var(--line);
}

.login-video-column video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.login-video-overlay {
  display: none;
}


.login-form-column {
  width: 35%;
  flex: 0 0 35%;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
}

@media (max-width: 992px) {
  .login-split-wrapper {
    flex-direction: column;
    margin: 0;
    height: auto;
    min-height: auto;
  }
  .login-video-column {
    width: 100%;
    flex: 0 0 auto;
    height: 280px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .login-form-column {
    width: 100%;
    flex: 0 0 auto;
    padding: 40px 24px;
  }
}



