
/* ================= GENERAL RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



:root{
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #14151A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;                 /* was 20px */
  font-family: 'Inter', sans-serif;
  background: var(--background);
  display: flex;
  justify-content: center;
  align-items: flex-start;    /* was center */
  min-height: 100vh;
  box-sizing: border-box;
}

.honda-auth-container {
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  box-sizing: border-box;
}

.honda-auth-container.active {
  display: flex;
}

/* ===== BANNER HEADER ===== */
.auth-banner {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 36px 36px;
  padding: 30px 20px 50px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 57, 166, 0.25);
}

.auth-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.auth-logo-square {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--white);
  border: 3px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.auth-logo-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.auth-logo-square:hover img {
  transform: scale(1.08);
  opacity: 0.92;
}

.auth-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.2px;
}

/* ===== WHITE CARD (overlaps banner) ===== */
.auth-page-inner {
  background: var(--white);
  border-radius: 26px;
  margin: -28px 14px 0;
  padding: 28px 22px 32px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(20, 21, 26, 0.08);
  position: relative;
  z-index: 2;
}

/* ===== TAB SWITCH ===== */
.auth-tab-switch {
  display: flex;
  background: var(--light-gray);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px;
  border-radius: 26px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 6px 14px rgba(0, 57, 166, 0.3);
}

/* ===== HEADING ===== */
.auth-welcome-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 4px 0;
  letter-spacing: -0.2px;
}

.auth-welcome-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  margin: 0 0 22px 0;
}

/* ===== INPUTS ===== */
.fieldmark-input-group {
  margin-bottom: 16px;
}

.fieldmark-input-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.optional-tag {
  font-weight: 500;
  color: #a3adbd;
  font-size: 12px;
}

.fieldmark-field-box {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border: 1.5px solid var(--border-gray);
  border-radius: 30px;
  padding: 8px 18px 8px 8px;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.fieldmark-field-box:focus-within {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 57, 166, 0.14);
}

.field-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.phone-code-inline {
  font-weight: 600;
  color: var(--black);
  font-size: 13.5px;
  flex-shrink: 0;
}

.fieldmark-field-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 13.5px;
  background: transparent;
  color: var(--black);
  font-family: inherit;
}

.fieldmark-field-box input::placeholder {
  color: #a3adbd;
}

.eye-icon {
  cursor: pointer;
  color: #a3adbd;
  font-size: 13px;
  flex-shrink: 0;
  margin-left: auto;
}

.eye-icon:hover {
  color: var(--blue);
}

/* ===== BUTTON ===== */
.fieldmark-btn-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  margin-top: 6px;
  box-shadow: 0 8px 18px rgba(0, 57, 166, 0.3);
  transition: transform 0.1s;
}

.fieldmark-btn-submit:active {
  transform: scale(0.98);
}

/* ===== SWITCH TEXT (below form) ===== */
.fieldmark-switch-action {
  text-align: center;
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text-gray);
}

.fieldmark-link-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
  font-size: 12.5px;
  font-family: inherit;
  padding: 0;
}

.auth-terms-text {
  text-align: center;
  font-size: 11px;
  color: #b6bec9;
  margin-top: 16px;
  line-height: 1.4;
  padding: 0 8px;
}

/* ===== VERIFICATION ROW ===== */
.verify-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.verify-row .fieldmark-field-box {
  flex: 1;
}

.fieldmark-btn-send {
  flex-shrink: 0;
  padding: 12px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 30px;
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}

.fieldmark-btn-send:hover {
  background: var(--blue-tint);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 380px) {
  .auth-page-inner { padding: 24px 18px 28px; }
  .auth-logo-square { width: 64px; height: 64px; }
  .auth-welcome-title { font-size: 21px; }
}

@media (max-height: 700px) {
  .auth-banner { padding: 22px 20px 40px; }
  .auth-logo-wrap { margin-bottom: 12px; }
}



.dashboard {
  width: 100%;
  max-width: 800px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  margin: 0 auto;
  padding: 50px 16px 24px 16px;
  box-sizing: border-box;
  background: #f8f9fa;
  background-attachment: fixed;
  color: #192231;
}


:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

body {
  padding-top: 2px !important;
  margin: 0;
}

.dashboard-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 6px 16px rgba(20, 21, 26, 0.05);
  box-sizing: border-box;
  border-bottom: 1px solid var(--border-gray);
}

.header-top-row {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  gap: 10px;
}

.header-user-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--light-gray);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 57, 166, 0.15);
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.brand-name .brand-nova,
.brand-name .brand-vallion {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.action-btn {
  position: relative;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  flex-shrink: 0;
}

.header-ticker {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-tint);
  margin: 0 14px 12px;
  padding: 8px 12px;
  border-radius: 10px;
  overflow: hidden;
}

.ticker-icon {
  color: var(--blue);
  font-size: 11.5px;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  overflow: hidden;
}

.ticker-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  padding-right: 50px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.gle-slim-card {
  width: 100%;
  max-width: 100%;
  margin: 56px auto 16px;   /* reduced from 76px to move it up */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 65, 184, 0.08);
  box-sizing: border-box;
}

.gle-slim-card img {
  width: 100%;
  height: auto;
  display: block;
}




@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700&display=swap');

:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

.main-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 12px;
  box-sizing: border-box;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.action-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20, 21, 26, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action-card:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(20, 21, 26, 0.08);
}

/* rounded-square icon badge */
.mx-circle-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.25) inset,
    0 -3px 6px rgba(0, 0, 0, 0.12) inset,
    0 3px 6px rgba(0, 57, 166, 0.15),
    0 8px 16px rgba(0, 57, 166, 0.28);
  transform: translateY(-1px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action-card:active .mx-circle-badge {
  transform: translateY(1px);
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.2) inset,
    0 -2px 4px rgba(0, 0, 0, 0.14) inset,
    0 2px 4px rgba(0, 57, 166, 0.1),
    0 4px 8px rgba(0, 57, 166, 0.22);
}

.action-icon {
  font-size: 18px;
  color: var(--white);
}

.action-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
}
/* HORIZONTAL SCROLLING WRAPPER */
.features-scroll-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  /* Hide scrollbar for Chrome/Safari */
  scrollbar-width: none; 
}

.features-scroll-container::-webkit-scrollbar {
  display: none;
}


.gle-slim-card img {
  transition: opacity 0.6s ease-in-out;
}


/* THE CARDS - Optimized for Mobile */
.feature-card {
  flex: 1 1 calc(33.33% - 10px); /* Adjusts to fit 3 cards per row */
  max-width: calc(33.33% - 10px); 
  background: #ffffff;
  border-radius: 15px; /* Slightly smaller radius for mobile */
  padding: 15px 5px;   /* Reduced padding to save space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  margin: 5px; /* Adds breathing room between cards */
}

.feature-title {
  font-size: 18px; /* Scaled down from 22px for mobile */
  font-weight: 800;
  color: #1a1a1a; 
  margin-bottom: 2px;
  text-align: center;
}

/* The 100% Blue Highlight */
.highlight-text {
  color: #2D6BEF !important;
}

.feature-subtitle {
  font-size: 11px; /* Scaled down from 14px */
  font-weight: 600;
  color: #99a1b7; 
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping ugly */
}
:root {
  --neon-purple: #9d4edd;
  --black-solid: #000000;
}

/* Force wrapper to be full width with zero margins */
.slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 110px; /* Generates breathing room for the content below */
}

/* Edge-to-edge full-bleed slider */
.image-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 250px; /* Adjusted to a sleek, compact card profile */
  background: transparent;
  margin: 0;
  padding: 0;
  scrollbar-width: none; /* Hides scrollbar on Firefox */
}

/* Hides scrollbar on Chrome/Safari */
.image-slider::-webkit-scrollbar { 
  display: none; 
}

.slide {
  min-width: 100%;
  scroll-snap-align: start;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops slightly to fill the edge-to-edge rectangle */
  display: block;
}

/* ATM Card Floating Adjustment (Using fixed pixels for consistent margins on all screens) */
.floating-gadget-card {
  position: absolute;
  bottom: -70px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--neon-purple), var(--black-solid));
  padding: 24px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(157, 78, 221, 0.3);
  color: white;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gadget-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.gadget-desc {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}
/* Products Header */
.products-header {
  margin-bottom: 12px;
  text-align: left; /* align text to left */
}

.products-header h2 {
  display: inline-block;        
  padding: 6px 16px;            
  font-size: 18px;
  font-weight: bold;
  color: #D4AF37;               /* white text */
  background: #d01e1e;          /* sky blue background */
  border-radius: 50px;          
  font-family: 'Arial Black', 'Helvetica', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;    
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* subtle black shadow */
}





.welcome-card {
  background: linear-gradient(135deg, #1E3A8A, #2f6df6); /* SONY-style blue */
  color: white;
  border-radius: 12px;       
  padding: 30px;             
  margin: 0;                 /* remove side margins */
  width: 100%;               /* full width of container/screen */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


.welcome-content {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: flex-start;  /* all left aligned */
}

.welcome-text {
  font-size: 16px;           
  font-weight: 300;          
  margin: 0;                 
}

.user-number {
  font-size: 20px;           
  font-weight: 700;          
  margin: 4px 0 0 0;         /* small space below header */
  letter-spacing: 1px;
}


.record-id {
  font-weight: 700;           /* Makes it bold */
  font-family: 'Courier New', Courier, monospace; /* Monospace for numbers */
  color: #000000;                /* Slightly darker for readability */
  background: #f0f0f0;        /* Light grey background badge */
  padding: 2px 6px;           /* Space inside the badge */
  border-radius: 4px;         /* Rounded corners */
  display: inline-block;      /* Keeps the background tight to the text */
  margin-top: 4px;            /* Space from the time above */
  font-size: 11px;            /* Keeps it small but clear */
  letter-spacing: 0.5px;      /* Spacing between numbers */
  user-select: all;           /* Allows user to select full ID with one tap */
}


:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
  --nav-inactive: #94a3b8;
}

.bottom-nav {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  margin: 0 auto;
  max-width: 430px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 -2px 4px rgba(20, 21, 26, 0.02),
              0 10px 30px rgba(20, 21, 26, 0.10);
  z-index: 9999;
}

.nav-pill-container {
  position: relative;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  align-items: center;
  justify-items: center;
}

.nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--nav-inactive);
  transition: all 0.2s ease;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}

.nav-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.nav-icon-wrapper i {
  font-size: 17px;
  color: var(--nav-inactive);
  transition: color 0.2s ease;
}

.nav-label-text {
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--nav-inactive);
  transition: color 0.2s ease;
}

/* active state — soft blue-tinted circle */
.nav-item.active .nav-icon-wrapper {
  background: var(--blue-tint);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.9) inset,
    0 3px 5px rgba(20, 21, 26, 0.03),
    0 6px 12px rgba(0, 57, 166, 0.14);
  transform: translateY(-1px);
}

.nav-item.active .nav-icon-wrapper i {
  color: var(--blue);
}

.nav-item.active .nav-label-text {
  color: var(--black);
  font-weight: 600;
}

/* hover feedback */
.nav-item:hover .nav-icon-wrapper {
  background: var(--blue-tint);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.9) inset,
    0 3px 5px rgba(20, 21, 26, 0.03),
    0 6px 12px rgba(0, 57, 166, 0.12);
  transform: translateY(-1px);
}

.nav-item:hover .nav-icon-wrapper i {
  color: var(--blue);
}

/* tap/press feedback */
.nav-item:active .nav-icon-wrapper {
  transform: translateY(0) scale(0.9);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.7) inset,
    0 1px 2px rgba(20, 21, 26, 0.04),
    0 3px 6px rgba(0, 57, 166, 0.16);
}

/* Default state */
#bottomNav {
    display: none; 
}

/* Visibility state */
.nav-visible {
    display: flex !important;
}




.ticker-search-bar {
  width: 90%;
  max-width: 400px;
  margin: 15px auto; /* Spacing between flyer and action buttons */
  height: 45px;
  background: #ffffff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(157, 78, 221, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite; /* Adjust speed here */
}

.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: #5c6a7e;
  gap: 8px;
}

.user-icon {
  width: 24px;
  height: 24px;
  background: #9d4edd;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
  --danger: #E5484D;
  --danger-soft: #FDECEC;
}

body {
  background-color: var(--background);
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: var(--black);
}

.profile-page {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  background-color: var(--background);
}

.pf-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 16px;
  border-bottom: 1px solid var(--border-gray);
  box-sizing: border-box;
}

.pf-header i {
  position: absolute;
  left: 16px;
  color: var(--black);
  font-size: 15px;
  cursor: pointer;
}

.pf-header span {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.profile-scroll-container {
  padding: 60px 0 calc(90px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

/* ===== BANNER ===== */
.pf-banner {
  position: relative;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 28px 28px;
  padding: 20px 18px 40px;
  box-shadow: 0 10px 24px rgba(0, 57, 166, 0.22);
}

.pf-logout-icon {
  position: absolute;
  top: 20px;
  right: 18px;
  color: var(--white);
  font-size: 16px;
  opacity: 0.9;
  cursor: pointer;
}

.pf-banner-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pf-info-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-info-avatar i {
  font-size: 18px;
  color: var(--white);
}

.pf-info-phone {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.pf-info-member {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.pf-balance-overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
}

.pf-info-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf-info-stat-right {
  align-items: flex-end;
}

.pf-info-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
}

.pf-info-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.pf-info-stat-value {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--white);
}

/* ===== QUICK ACTIONS ===== */
.pf-quick-actions {
  display: flex;
  gap: 10px;
  margin: -22px 16px 14px;
  position: relative;
  z-index: 2;
}

.pf-quick-btn {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 18px rgba(20, 21, 26, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pf-quick-btn:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: 0 2px 6px rgba(20, 21, 26, 0.06);
}

.pf-quick-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 57, 166, 0.25);
}

.pf-quick-icon i {
  font-size: 13px;
  color: var(--white);
}

.pf-quick-btn span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--black);
}

/* ===== FLAT MENU LIST ===== */
.pf-menu-card {
  margin: 0 16px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 20px rgba(20, 21, 26, 0.05);
}

.pf-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-top: 1px solid var(--border-gray);
}

.pf-menu-item:first-child {
  border-top: none;
}

.pf-menu-item:active {
  background: var(--blue-tint);
}

.pf-menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pf-menu-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-menu-icon i {
  color: var(--blue);
  font-size: 12.5px;
}

.pf-menu-icon-danger {
  background: var(--danger-soft);
}

.pf-menu-icon-danger i {
  color: var(--danger);
}

.pf-menu-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
}

.pf-logout-text {
  color: var(--danger);
}

.pf-chevron {
  color: #cbd5e1;
  font-size: 10.5px;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

.bank-page {
  background-color: var(--background);
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--black);
}

.bank-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 24px rgba(0, 57, 166, 0.22);
  z-index: 100;
  box-sizing: border-box;
}

.bank-back-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.bank-header h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.honda-bank-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 96px 16px 40px;
  box-sizing: border-box;
}

.honda-bank-form {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 20px rgba(20, 21, 26, 0.05);
}

.honda-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.honda-input-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
}

.honda-bank-form input,
.honda-bank-form select {
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 15px 14px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  width: 100%;
  box-sizing: border-box;
}

.honda-bank-form select {
  color: var(--text-gray);
}

.honda-bank-form input::placeholder {
  color: #a3adbd;
}

.honda-bank-form input:focus,
.honda-bank-form select:focus {
  border-color: var(--light-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(62, 111, 217, 0.12);
}

.honda-select-wrapper select {
  width: 100%;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.honda-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 18px rgba(0, 57, 166, 0.22);
  transition: transform 0.1s, box-shadow 0.2s;
}

.honda-submit-btn:hover {
  box-shadow: 0 10px 22px rgba(0, 57, 166, 0.28);
}

.honda-submit-btn:active {
  transform: scale(0.98);
}





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #14151A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
  --success: #22C55E;
}

/* ===================== RECHARGE PAGE ===================== */
.recharge-page {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  color: var(--black);
  margin: 0; padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/* Gradient hero header */
.recharge-header-fixed {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 22px;
  box-sizing: border-box;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 57, 166, 0.25);
}

.recharge-header-fixed h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.recharge-back-btn-v2 {
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.recharge-page-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 16px calc(100px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Balance card */
.rech-balance-card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(20,21,26,0.03), 0 8px 20px rgba(20,21,26,0.04);
}

.rech-balance-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.rech-balance-col + .rech-balance-col {
  border-left: 1px solid var(--border-gray);
  padding-left: 18px;
}

.rech-balance-label {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

.rech-balance-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

/* Recharge card */
.recharge-card {
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 20px 16px;
  box-sizing: border-box;
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(20,21,26,0.03), 0 8px 20px rgba(20,21,26,0.04);
}

.rech-card-heading {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 16px 0;
}

/* Amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.amount-option {
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  padding: 14px 4px;
  border-radius: 12px;
  text-align: center;
  color: var(--black);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.amount-option:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.amount-option.selected {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 16px rgba(0, 57, 166, 0.3);
}

.custom-amount-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.custom-amount-wrapper {
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 52px;
  box-sizing: border-box;
}

.currency-icon {
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 700;
  margin-right: 8px;
}

#customAmount {
  background: transparent;
  border: none;
  color: var(--black);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  outline: none;
  width: 100%;
  padding: 0;
}

#customAmount::placeholder { color: #a3adbd; }

/* Recharge Now button */
.deposit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 22px rgba(0, 57, 166, 0.3);
  transition: transform 0.1s ease;
}

.deposit-btn:active { transform: scale(0.98); }

/* Important Notes box */
.rech-notes-box {
  width: 100%;
  background: var(--blue-tint);
  border-radius: 16px;
  padding: 18px;
  box-sizing: border-box;
}

.rech-notes-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark-blue);
  margin: 0 0 12px 0;
}

.rech-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--dark-blue);
  line-height: 1.5;
}

.rech-note-item:last-child { margin-bottom: 0; }

.rech-note-item i {
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 360px) {
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== PAYMENT DETAILS PAGE ===================== */
.pay-page {
  background: var(--background);
  min-height: 100vh;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.rc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 0 16px;
  border-bottom: 1px solid var(--border-gray);
}

.rc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.rc-header-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.rc-back-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.pay-container {
  padding: 16px;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Gradient amount hero */
.pay-amount-card {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 20px;
  padding: 26px 20px 22px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(0, 57, 166, 0.25);
}

.pay-amount-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1;
}

.pay-amount-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* Step cards */
.pay-step-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 18px;
  padding: 18px 18px 6px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(20,21,26,0.03), 0 8px 20px rgba(20,21,26,0.04);
}

.pay-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 12px 0;
}

.pay-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-gray);
  gap: 10px;
}

.pay-detail-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
  flex-shrink: 0;
}

.pay-detail-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pay-detail-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-align: right;
  word-break: break-word;
}

.pay-note-value {
  color: var(--blue);
  letter-spacing: 0.5px;
}

.pay-copy-btn {
  border: none;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  cursor: pointer;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  transition: transform 0.1s ease;
}

.pay-copy-btn:active { transform: scale(0.93); }

/* Step 3 form */
.pay-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--black);
  margin: 14px 0 8px;
}

.pay-form-input {
  width: 100%;
  background: var(--light-gray);
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--black);
  outline: none;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  margin-bottom: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pay-form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 57, 166, 0.12);
}

.pay-form-input::placeholder { color: #a3adbd; }

.pay-file-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gray);
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.pay-file-btn {
  background: var(--blue-tint);
  color: var(--blue);
  border: none;
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.pay-file-name {
  font-size: 12.5px;
  color: var(--text-gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pay-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(0, 57, 166, 0.3);
  transition: transform 0.1s ease;
}

.pay-submit-btn:active { transform: scale(0.98); }
.pay-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }



.fintech-toast {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: Inter, sans-serif;
}


.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
}

.mx-unique-modal {
  background: var(--white);
  width: 100%;
  max-width: 340px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.mx-close-x-btn {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--light-gray);
  border: 1px solid var(--border-gray);
  width: 26px; height: 26px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-gray);
  font-weight: 800;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* HEADER PANEL */
.mx-modal-header {
  padding: 24px 20px 10px;
  text-align: center;
  flex-shrink: 0;
}

.mx-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.9) inset,
    0 -2px 5px rgba(0, 57, 166, 0.08) inset,
    0 4px 8px rgba(20, 21, 26, 0.05),
    0 10px 20px rgba(0, 57, 166, 0.18);
}

.mx-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mx-modal-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.mx-modal-subtitle {
  font-size: 12px;
  color: var(--text-gray);
  margin: 6px 0 0;
  font-weight: 500;
}

/* BODY PANEL */
.mx-modal-body {
  background: var(--white);
  padding: 6px 20px 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 14px;
}

.mx-benefits-box {
  background: var(--blue-tint);
  border-radius: 16px;
  padding: 14px;
}

.mx-benefits-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px;
}

.mx-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mx-benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
}

.mx-benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin: 0 auto 8px;
}

.mx-benefit-name {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
  margin: 0 0 4px;
}

.mx-benefit-value {
  font-size: 13px;
  color: var(--black);
  font-weight: 700;
  margin: 0;
}

/* 3D HOVERED BUTTONS */
.mx-action-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 13px;
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: var(--white);
  flex-shrink: 0;
}

.mx-action-btn i {
  font-size: 14px;
}

.mx-btn-primary {
  background: linear-gradient(145deg, var(--light-blue), var(--blue));
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.25) inset,
    0 -3px 6px rgba(0, 0, 0, 0.15) inset,
    0 3px 6px rgba(20, 21, 26, 0.06),
    0 8px 16px rgba(0, 57, 166, 0.3);
}

.mx-btn-primary:hover,
.mx-btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.2) inset,
    0 -2px 4px rgba(0, 0, 0, 0.15) inset,
    0 2px 4px rgba(20, 21, 26, 0.06),
    0 5px 12px rgba(0, 57, 166, 0.26);
}

.mx-btn-secondary {
  background: linear-gradient(145deg, var(--dark-blue), #001a44);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.15) inset,
    0 -3px 6px rgba(0, 0, 0, 0.2) inset,
    0 3px 6px rgba(20, 21, 26, 0.06),
    0 8px 16px rgba(0, 41, 102, 0.3);
}

.mx-btn-secondary:hover,
.mx-btn-secondary:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.1) inset,
    0 -2px 4px rgba(0, 0, 0, 0.2) inset,
    0 2px 4px rgba(20, 21, 26, 0.06),
    0 5px 12px rgba(0, 41, 102, 0.24);
}

.mx-action-btn:active { transform: scale(0.97); }

#welcomePopup {
  display: none; /* Changed from none to flex for visibility during testing */
}


.referral-promo-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid #e7edfb;
  box-shadow: 0 8px 24px rgba(3, 87, 238, 0.08);
  max-width: 500px;
  
  /* 🌟 CHANGE THIS LINE: Adds negative top margin to shift it up, and pushes the bottom up */
  margin: -20px auto 35px auto; 
  
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.referral-promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(3, 87, 238, 0.16);
}

.referral-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.referral-text-col { flex: 1; }

.referral-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0357EE;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.referral-headline {
  font-size: 21px;
  font-weight: 800;
  color: #0b1220;
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
}

.referral-subtext {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.referral-icon-badge {
  width: 42px;
  height: 42px;
  background: #eaf0fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #0357EE;
  flex-shrink: 0;
  border: 1px solid #d7e3fb;
}

.referral-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.referral-pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 30px;
  white-space: nowrap;
}

.referral-pill.green {
  background: #e8f8ef;
  color: #16a34a;
  border: 1px solid #c8ede0;
}

.referral-pill.amber {
  background: #fff6e6;
  color: #b45309;
  border: 1px solid #fbe3b0;
}

.referral-cta-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 13px;
  background: #0357EE;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(3, 87, 238, 0.25);
  transition: background 0.2s, transform 0.15s;
}

.referral-cta-btn:hover {
  background: #0241b8;
}

.referral-cta-btn:active {
  transform: scale(0.97);
}

@media (max-width: 380px) {
  .referral-headline { font-size: 19px; }
  .referral-icon-badge { width: 38px; height: 38px; border-radius: 10px; font-size: 15px; }
}


/* DAILY LOADER OVERLAY */
.daily-loader{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  z-index:9999;
}

/* 3D SPINNER */
.spinner-3d{
  width:60px;
  height:60px;
  border:6px solid rgba(255,255,255,0.2);
  border-top:6px solid #00c2ff;
  border-radius:50%;
  animation:spin3d 1s linear infinite;
  margin-bottom:15px;
}

@keyframes spin3d{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.daily-loader p{
  color:white;
  font-weight:600;
  font-size:16px;
}


/* ===== PRODUCT PAGE ===== */
.product-page {
  width: 100%;
  padding: 20px;
  padding-bottom: 80px;
  padding-top: 65px; /* space for fixed header */
  background: #ffffff; /* white background */
  min-height: 100vh;
  color: #ffffff;      /* white text */
  display: none;       /* show when active */
}

/* ===== FIXED HEADER ===== */
.product-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e40ff; /* blue header */
  padding: 12px 0;
  z-index: 1000;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;      /* white text */
  box-shadow: 0 3px 8px rgba(30, 64, 255, 0.2); /* subtle blue shadow */
}

.product-header i {
  margin-right: 8px;
  color: #ffffff; /* white icon */
}

/* ===== PREMIUM PRODUCT CARD - REDESIGNED ===== */
.premium-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  margin-top: -12px;
  margin-bottom: 16px;
  border: 1px solid #ede9f6;
  box-shadow: 0 4px 18px rgba(75, 0, 130, 0.07);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── TOP STRIP ── */
.inv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #4b0082, #9d4edd);
}

.inv-vip-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.inv-vip-badge i {
  color: #e9d5ff;
  font-size: 14px;
}

.inv-days-pill {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── BODY: IMAGE + STATS GRID ── */
.inv-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.inv-product-img {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 12px;
  background: #f5f0ff;
  border: 1px solid #ede9f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inv-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inv-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.inv-stat-box {
  background: #faf7ff;
  border-radius: 10px;
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid #ede9f6;
}

.inv-stat-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.inv-stat-label i {
  color: #9d4edd;
  font-size: 9px;
}

.inv-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: #9d4edd;
}

.inv-stat-val.dark {
  color: #0f172a;
}

.inv-stat-val.green {
  color: #16a34a;
}

/* ── FOOTER: DATE + PROGRESS BAR ── */
.inv-card-footer {
  padding: 0 16px 14px 16px;
  border-top: 1px solid #f3eeff;
  padding-top: 12px;
}

.inv-date-range {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 8px;
}

.inv-date-range i {
  color: #9d4edd;
}

.inv-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: #ede9f6;
  border-radius: 99px;
  overflow: hidden;
}

.inv-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4b0082, #9d4edd);
  border-radius: 99px;
  transition: width 0.5s ease;
}

/* ── COUNTDOWN ROW ── */
.inv-countdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #faf7ff;
  border-top: 1px solid #f3eeff;
}

.inv-next-label {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}

.inv-countdown-timer {
  font-family: monospace;
  font-weight: 700;
  color: #4b0082;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .inv-product-img {
    width: 72px;
    height: 72px;
    min-width: 72px;
  }
  .inv-stat-val {
    font-size: 12px;
  }
}




:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

.invite-page {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  background-color: var(--background);
  font-family: 'Inter', sans-serif;
  color: var(--black);
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 80px;
}

.invite-header-fixed-v2 {
  background: linear-gradient(135deg, var(--light-blue), var(--blue));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
  position: relative;
}

.invite-header-fixed-v2 h2 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
}

.invite-back-btn-v2 {
  position: absolute;
  left: 16px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
}

.referral-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── HERO GRADIENT ── */
.iv-hero-gradient {
  background: linear-gradient(135deg, var(--light-blue), var(--blue) 60%, var(--dark-blue));
  padding: 32px 20px 30px;
  text-align: center;
  box-sizing: border-box;
}

.iv-hero-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
}

.iv-hero-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin: 0 0 22px;
  line-height: 1.5;
  padding: 0 8px;
}

.iv-link-glass-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
}

.iv-glass-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 10px;
}

.iv-glass-row {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 6px 6px 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.iv-glass-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iv-glass-copy-btn {
  background: var(--white);
  color: var(--blue);
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  transition: transform 0.15s ease;
}

.iv-glass-copy-btn:active {
  transform: scale(0.95);
}

/* ── GENERIC CARD ── */
.iv-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin: 0 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 10px 26px rgba(0, 57, 166, 0.06);
}

.iv-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 16px;
}

/* ── COMMISSION ROWS (hovered 3D icon) ── */
.iv-comm-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-tint);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}

.iv-comm-row:last-child {
  margin-bottom: 0;
}

.iv-comm-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.25) inset,
    0 -3px 6px rgba(0, 0, 0, 0.15) inset,
    0 3px 6px rgba(0, 57, 166, 0.15),
    0 8px 16px rgba(0, 57, 166, 0.3);
}

.iv-comm-info {
  flex: 1;
}

.iv-comm-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 4px;
}

.iv-comm-info p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

.iv-comm-pct {
  font-size: 19px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

/* ── HOW IT WORKS TIMELINE (hovered 3D numbers) ── */
.iv-timeline {
  position: relative;
}

.iv-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 26px;
}

.iv-timeline-item.iv-timeline-last {
  padding-bottom: 0;
}

.iv-timeline-item:not(.iv-timeline-last)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--border-gray);
}

.iv-timeline-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
  box-shadow:
    0 1px 2px rgba(255, 255, 255, 0.25) inset,
    0 -3px 6px rgba(0, 0, 0, 0.15) inset,
    0 3px 6px rgba(0, 57, 166, 0.15),
    0 8px 16px rgba(0, 57, 166, 0.3);
}

.iv-timeline-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 4px;
}

.iv-timeline-info p {
  font-size: 12.5px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}




#earningsPage {
  background: #f6f7f9;
  color: #14151A;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.team-page-container {
  padding: 84px 16px 40px;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ===== HEADER (gradient banner) ===== */
.team-header-main {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: linear-gradient(135deg, #3E6FD9, #002966);
  box-shadow: 0 6px 16px rgba(0, 57, 166, 0.2);
  z-index: 1000;
  box-sizing: border-box;
}

.team-header-main span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.back-btn-white {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
}

/* ===== TABS ===== */
.team-list-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.team-tab-btn {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  border: 1.5px solid #e6e9ef;
  background: #ffffff;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.team-tab-btn.active {
  background: linear-gradient(135deg, #3E6FD9, #002966);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 57, 166, 0.28);
}

.team-tab-btn:active {
  transform: scale(0.97);
}

/* ===== COLUMN HEADER ===== */
.team-list-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #EAF1FB;
  border-radius: 14px;
  margin-bottom: 10px;
}

.team-list-columns span {
  font-size: 12.5px;
  font-weight: 700;
  color: #0039A6;
}

/* ===== LIST ===== */
.team-list-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef1f6;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.team-list-row:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(20, 21, 26, 0.06);
}

.team-list-number {
  font-size: 13px;
  font-weight: 600;
  color: #14151A;
}

.team-list-amount {
  font-size: 13px;
  font-weight: 700;
  color: #0039A6;
}

/* ===== EMPTY STATE ===== */
.team-list-empty-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 20px 0;
}

.team-list-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #EAF1FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-list-empty-icon i {
  font-size: 26px;
  color: #3E6FD9;
}

.team-list-empty-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #14151A;
  margin: 0 0 6px 0;
}

.team-list-empty-sub {
  font-size: 12.5px;
  font-weight: 400;
  color: #94a3b8;
  margin: 0;
}

#earningsPage.page {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
}



:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

.withdraw-page {
  background: var(--background);
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

/* ── HEADER ── */
.wd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 76px;
  padding: 0 16px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 24px rgba(0, 57, 166, 0.22);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

.wd-back-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.wd-history-btn {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  padding: 0;
  opacity: 0.9;
}

.wd-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-align: center;
  flex: 1;
}

/* ── CONTAINER ── */
.wd-container {
  padding: 96px 16px 80px 16px;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── BALANCE CARD ── */
.wd-balance-card {
  position: relative;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 18px;
  padding: 22px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 57, 166, 0.28);
}

.wd-bal-content {
  position: relative;
  z-index: 1;
}

.wd-bal-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.wd-bal-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.wd-bal-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wd-bal-icon i {
  font-size: 18px;
  color: var(--white);
}

/* ── SECTION CARDS (hover-lift feel) ── */
.wd-section-card,
.wd-bank-card,
.wd-rules-card {
  background: var(--white);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 18px rgba(20, 21, 26, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wd-section-card:hover,
.wd-bank-card:hover,
.wd-rules-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(20, 21, 26, 0.05),
              0 16px 30px rgba(0, 57, 166, 0.14);
}

.wd-section-card:active,
.wd-bank-card:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(20, 21, 26, 0.05),
              0 10px 20px rgba(0, 57, 166, 0.12);
}

.wd-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.wd-section-title i {
  color: var(--blue);
  font-size: 13.5px;
}

/* ── INPUT ── */
.wd-input-row {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  padding: 0 16px;
  height: 52px;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.wd-input-row:focus-within {
  border-color: var(--light-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(62, 111, 217, 0.12);
}

.wd-currency {
  font-size: 17px;
  font-weight: 700;
  color: #94a3b8;
  flex-shrink: 0;
}

.wd-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--black);
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.wd-input::placeholder {
  color: #a3adbd;
  font-weight: 400;
  font-size: 13.5px;
}

.wd-fee-row {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
}

/* ── BANK VERIFIED ROW ── */
.wd-bank-verified-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-tint);
  border-left: 3px solid var(--blue);
  border-radius: 14px;
  padding: 14px;
}

.wd-bank-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wd-bank-icon i {
  color: var(--white);
  font-size: 15px;
}

.wd-bank-details {
  flex: 1;
  min-width: 0;
}

.wd-bank-number {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.wd-bank-name {
  font-size: 12px;
  color: var(--text-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd-bank-verified-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blue);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.wd-bank-verified-tag i {
  font-size: 11px;
}

/* ── EMPTY BANK STATE ── */
.wd-add-bank-btn {
  width: 100%;
  border: 1.5px dashed var(--light-blue);
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 14px;
  padding: 16px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, transform 0.15s;
}

.wd-add-bank-btn:hover {
  background: #dceafc;
  transform: translateY(-2px);
}

.wd-add-bank-btn:active {
  transform: scale(0.98);
}

.wd-add-bank-btn i {
  font-size: 14px;
}

/* ── WITHDRAW BUTTON ── */
.wd-submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 22px rgba(0, 57, 166, 0.3);
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.wd-submit-btn:hover {
  box-shadow: 0 12px 26px rgba(0, 57, 166, 0.36);
  transform: translateY(-2px);
}

.wd-submit-btn:active {
  transform: scale(0.98);
}

/* ── RULES CARD (soft blue box like "Important Notes") ── */
.wd-rules-card {
  background: var(--blue-tint);
  box-shadow: none;
}

.wd-rules-card:hover {
  background: #e2ecfb;
  box-shadow: 0 8px 18px rgba(0, 57, 166, 0.08);
}

.wd-rules-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.wd-rules-title i {
  font-size: 13.5px;
}

.wd-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: wd-rule;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wd-rules-list li {
  counter-increment: wd-rule;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}

.wd-rules-list li::before {
  content: counter(wd-rule) ".";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.wd-rules-list li strong {
  color: var(--blue);
  font-weight: 700;
}

/* ── MOBILE ── */
@media (max-width: 380px) {
  .wd-bal-amount { font-size: 24px; }
  .wd-title { font-size: 15.5px; }
}



.page-section { display: none; }
#loginContainer { display: none; }
#signupContainer { display: none; }




:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

.bank-page {
  background-color: var(--background);
  min-height: 100vh;
  width: 100%;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  box-sizing: border-box;
}

/* ── GRADIENT HEADER ── */
.records-header {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 0 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px 24px;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 57, 166, 0.25);
}

.records-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  flex: 1;
}

.records-back-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── FILTER PILLS ── */
.records-filter-row {
  display: flex;
  gap: 10px;
  padding: 16px;
  background: var(--background);
  box-sizing: border-box;
}

.records-filter-pill {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 30px;
  padding: 11px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(20,21,26,0.03);
}

.records-filter-pill.active {
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 14px rgba(0, 57, 166, 0.3);
}

/* ── CONTENT ── */
.records-content-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 4px 14px 100px 14px;
  box-sizing: border-box;
}

#recordsContainer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── RECORD CARD ── */
.record-card {
  width: 100%;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 20px rgba(20, 21, 26, 0.04);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.record-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.record-icon-wrap.debit {
  background: var(--blue-tint);
}

.record-icon {
  color: var(--blue);
  font-size: 15px;
  flex-shrink: 0;
}

.record-icon-wrap.debit .record-icon {
  color: var(--blue);
}

.record-text-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.record-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
}

.record-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.record-amount-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.record-amount-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.record-amount-value.debit-amount   { color: var(--black); }
.record-amount-value.pending-amount { color: var(--text-gray); }
.record-amount-value.failed-amount {
  color: var(--text-gray);
  text-decoration: line-through;
}

.card-mid-row {
  margin-top: 10px;
  padding-left: 58px;
}

.record-type-label {
  font-size: 11.5px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ── STATUS BADGE ── */
.record-status-badge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  text-transform: lowercase;
}
.status-approved {
  background: #E5F7F0;
  color: #1BA97F;
}
.status-pending {
  background: var(--blue-tint);
  color: var(--blue);
}
.status-failed {
  background: var(--light-gray);
  color: var(--text-gray);
}



/* ================= MODAL OVERLAY ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

/* ================= MODAL CARD ================= */
.modal-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

/* ================= HEADER ================= */
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sheet-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
}

.close-sheet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

/* ================= INNER CARD ================= */
.slim-card {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ================= PRODUCT ROW ================= */
.product-main-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon-container {
  width: 48px;
  height: 48px;
  background: #2D6BEF;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= PRODUCT DETAILS ================= */
.product-details strong {
  font-size: 17px;
  font-weight: 700;
  display: block;
  color: #111;
}

.product-details p {
  font-size: 14px;
  color: #444;
  margin-top: 3px;
}

/* ================= DIVIDER ================= */
.divider-line {
  height: 1px;
  background: #e5e5e5;
  margin: 14px 0;
}

/* ================= BALANCE ================= */
.account-balance-row {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* ================= PURCHASE BUTTON ================= */
.purchase-btn {
  background: #2D6BEF;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  margin: auto;
  box-shadow: 0 6px 15px rgba(47,72,236,0.4);
  transition: transform 0.15s ease;
}

.purchase-btn:active {
  transform: scale(0.95);
}

/* ================= MOBILE ================= */
@media (max-width:480px){

.modal-card{
padding:20px;
}

.sheet-title{
font-size:20px;
}

.product-details strong{
font-size:16px;
}

.product-details p,
.account-balance-row{
font-size:13px;
}

.purchase-btn{
font-size:14px;
padding:10px 22px;
}

}


:root {
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --text-dark: #14151A;
  --text-muted: #64748b;
  --border-soft: #eef1f6;
}

.investment-page {
  background: #f6f7f9;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.investment-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  z-index: 10000;
  box-shadow: 0 4px 14px rgba(0, 57, 166, 0.2);
  box-sizing: border-box;
}

.investment-header h2 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.investment-back-btn {
  position: absolute;
  left: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-wrapper {
  flex: 1;
  padding: calc(56px + env(safe-area-inset-top, 0px) + 32px) 14px 100px 14px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Empty state */
.inv-empty-state {
  text-align: center;
  max-width: 320px;
  margin: 60px auto 0 auto;
}

.inv-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-tint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 24px;
  color: var(--blue);
}

.inv-empty-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px 0;
}

.inv-empty-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 22px 0;
  line-height: 1.5;
}



.inv-browse-btn {
  background: #ffffff;
  color: var(--blue);
  border: 1.5px solid var(--blue-tint);
  padding: 6px 6px 6px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(0, 57, 166, 0.1);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.inv-browse-btn:active {
  box-shadow: 0 2px 8px rgba(0, 57, 166, 0.08);
  border-color: var(--light-blue);
}

.inv-browse-btn-text {
  white-space: nowrap;
}

.inv-browse-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 57, 166, 0.3);
  transition: transform 0.2s ease;
}

.inv-browse-btn:active .inv-browse-btn-icon {
  transform: translateX(3px);
}

#investmentCardsList {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* PRODUCT CARD */
.premium-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 20px rgba(20, 21, 26, 0.05);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.premium-card:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(20, 21, 26, 0.07),
              0 16px 28px rgba(0, 57, 166, 0.14);
}

/* BANNER */
.inv-banner {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
}

.inv-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inv-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #1BA97F;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inv-status-badge i { font-size: 10px; }

.inv-status-badge.expired {
  color: #E5484D;
}

.inv-roi-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.inv-roi-badge i { font-size: 10px; }

.inv-card-body {
  padding: 16px 16px 18px;
}

/* TOP ROW — rating + min investment */
.inv-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.inv-rating {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.inv-rating i { color: #F5A623; font-size: 13px; }

.inv-min-invest {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.inv-min-label {
  font-size: 11px;
  color: var(--text-muted);
}

.inv-min-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
}

/* STATS GRID */
.inv-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.inv-stat-box {
  background: var(--blue-tint);
  border-radius: 12px;
  padding: 12px 10px;
}

.inv-stat-key {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.inv-stat-key i { font-size: 10px; color: var(--blue); }

.inv-stat-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

.inv-stat-val small {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.inv-stat-val.income {
  color: var(--blue);
}

/* PROGRESS */
.inv-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.inv-progress-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.inv-progress-pct {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
}

.inv-progress-track {
  width: 100%;
  height: 6px;
  background: var(--border-soft);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 16px;
}

.inv-progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  border-radius: 30px;
  transition: width 0.3s ease;
}

/* TOTAL RETURN HIGHLIGHT */
.inv-total-return-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue-tint);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 16px;
}

.inv-total-return-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inv-total-return-left i {
  font-size: 15px;
  color: var(--blue);
}

.inv-total-return-title {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.inv-total-return-sub {
  display: block;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 700;
}

.inv-total-return-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue);
}

/* COUNTDOWN LINE */
.inv-countdown-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inv-countdown-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.inv-countdown-value {
  color: var(--blue);
  font-weight: 800;
}

.inv-info-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  flex-shrink: 0;
}

.inv-info-btn:active {
  background: var(--blue-tint);
  color: var(--blue);
}

/* STARTED PILL — kept for compatibility if used elsewhere */
.inv-started-pill {
  text-align: center;
  background: var(--blue-tint);
  border: 1px dashed #b8d0f0;
  border-radius: 10px;
  padding: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

.inv-started-pill strong {
  color: var(--text-dark);
  font-weight: 700;
}



.gle-swal-popup {
  border-radius: 20px !important;
  padding: 28px 22px !important;
  box-shadow: 0 20px 50px rgba(2, 65, 184, 0.15) !important;
}

.gle-swal-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #0b1220 !important;
}

.gle-swal-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  color: #64748b !important;
}

.gle-swal-confirm {
  background: #0241b8 !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(2, 65, 184, 0.25) !important;
}

.gle-swal-confirm:hover {
  background: #022e8a !important;
}

.gle-swal-icon {
  border-color: #eaf0fe !important;
}



.gle-whatsapp-fab {
  position: fixed;
  bottom: 180px;
  right: 18px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.gle-whatsapp-fab:active {
  transform: scale(0.92);
}



:root{
  --blue: #0039A6;
  --dark-blue: #002966;
  --light-blue: #3E6FD9;
  --blue-tint: #EAF1FB;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

/* Section header */
.mx-section-header {
  padding: 16px 16px 12px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-section-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.2px;
}

.mx-myproducts-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.mx-myproducts-link i { font-size: 9px; }
.mx-myproducts-link:active { opacity: 0.7; }

/* Product list — single column, full width cards stacked */
#dynamicProductList {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  padding: 10px 12px 40px 12px !important;
}

/* Product Card */
.mx-product-card {
  background: var(--white) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 6px 14px rgba(20, 21, 26, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mx-product-card:active {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(20, 21, 26, 0.07),
              0 16px 28px rgba(0, 57, 166, 0.2);
}

/* Blue banner — top section with name + price */
.mx-banner-wrap {
  position: relative;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
  padding: 18px 16px 20px;
}

.mx-banner-logo {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
  background: var(--white);
}

.mx-plan-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px 0;
  letter-spacing: -0.2px;
}


.mx-banner-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
}

/* Card body — info rows + button */
.mx-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
}

.mx-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-gray);
}

.mx-info-row:last-of-type {
  border-bottom: none;
}

.mx-info-label {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
}

.mx-info-value {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--black);
}

.mx-info-value.highlight {
  color: var(--blue);
  font-weight: 800;
}

/* Buy Now button — full width gradient pill */
.mx-add-to-portfolio-btn {
  width: 100% !important;
  background: linear-gradient(135deg, var(--light-blue), var(--dark-blue)) !important;
  color: var(--white) !important;
  padding: 12px !important;
  border: none !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 57, 166, 0.28);
  transition: transform 0.15s !important, box-shadow 0.2s !important;
  margin-top: 12px;
}

.mx-add-to-portfolio-btn:hover {
  box-shadow: 0 8px 18px rgba(0, 57, 166, 0.35) !important;
}

.mx-add-to-portfolio-btn:active {
  transform: scale(0.97);
}

.mx-loader, .mx-error {
  text-align: center;
  padding: 30px;
  color: var(--text-gray);
  font-size: 13px;
  grid-column: 1 / -1;
}



/* No hover state defined, so it will remain static */

/* This targets the <a> tag wrapping your settings item */
a.settings-link-wrapper {
    text-decoration: none !important; /* Forces the underline to disappear */
    color: inherit !important;        /* Forces the text to stay your app's color */
    display: block;                   /* Makes the whole row clickable */
    -webkit-tap-highlight-color: transparent; /* Removes the gray box on mobile tap */
}

/* Optional: Add a slight hover or active effect so the user knows it's a button */
a.settings-link-wrapper:active {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* ================= CUSTOM ALERT ================= */
.custom-alert {
  position: fixed !important;

  top: 50% !important;
  left: 50% !important;

  transform: translate(-50%, -50%) !important;

  background: rgba(0, 0, 0, 0.85);
  color: #fff;

  padding: 14px 24px;
  border-radius: 12px;

  font-size: 15px;
  text-align: center;

  max-width: 90%;
  width: max-content;

  box-shadow: 0 8px 20px rgba(0,0,0,0.5);

  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;

  z-index: 999999; /* higher than EVERYTHING */
}

.custom-alert.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) !important;
}
.custom-alert {
  right: auto;
  margin: 0;
}

.custom-alert.show {
  animation: alertPop 0.3s ease;
}

@keyframes alertPop {
  0% {
    transform: translate(-50%, -60%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}


/* ================= EMPTY STATE UI (PRODUCT STYLE) ================= */
.empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  padding: 40px 20px; 
  margin: 15px;
  text-align: center;
  
  /* Card Design: Stretch like an ATM card */
  background: #ffffff;
  border-radius: 16px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  
  width: auto; 
  max-width: 100%; 
  box-sizing: border-box;
}

.empty-icon-circle {
  width: 70px; /* Slightly larger for product focus */
  height: 70px;
  background: #f8f9fa; /* Clean grey/white tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.empty-icon-circle i {
  font-size: 28px;
  color: #121b1e; /* Bold dark icon */
}

.empty-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Poppins', sans-serif;
}

.empty-subtitle {
  margin: 8px 0 25px 0;
  font-size: 14px;
  color: #777;
  font-weight: 400;
  line-height: 1.5;
  max-width: 280px; /* Keeps text centered and readable */
}

/* THE BUTTON - Full width button */
.browse-plans-btn {
  background: #4b0082; 
  color: #ffffff;
  border: none;
  width: 100%; 
  max-width: 300px; /* Adjusted for better card balance */
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.browse-plans-btn:active {
  transform: scale(0.97);
}



/* ==========================================
   FINNISH BLUE & WHITE PAGE LOADER
   Colors: Finnish Blue (#002F6C) | Soft Ice (#E8EEF5)
   ========================================== */

#pageLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  will-change: opacity;
}

#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Glass & Shadow Card Container */
.pw-card {
  background: #ffffff;
  padding: 40px 32px 32px;
  border-radius: 24px;
  border: 1px solid #E8EEF5;
  box-shadow: 0 20px 45px rgba(0, 47, 108, 0.08), 
              0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 260px;
}

/* ORBIT SPINNER WITH LOCK */
.pw-orbit-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

/* Outer Spinning Glow Ring */
.pw-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #E8EEF5;
  border-top-color: #002F6C;
  animation: pwSpin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

/* Inner Counter-Rotating Gradient Ring */
.pw-ring-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: rgba(0, 47, 108, 0.4);
  animation: pwSpinReverse 1.6s linear infinite;
}

/* Center Lock Badge */
.pw-lock-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 47, 108, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: pwPulseLock 2s ease-in-out infinite;
}

.pw-lock-badge i {
  color: #002F6C;
  font-size: 14px;
}

/* TYPOGRAPHY */
.pw-brand-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.pw-brand-blue {
  color: #002F6C; /* Finnish Blue */
}

.pw-brand-ink {
  color: #1E232A;
}

.pw-status-text {
  color: #64748B;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin: -8px 0 0 0;
  display: flex;
  align-items: center;
}

/* Animated Ellipsis */
.pw-dots span {
  animation: pwDotBlink 1.4s infinite;
  opacity: 0;
}

.pw-dots span:nth-child(1) { animation-delay: 0s; }
.pw-dots span:nth-child(2) { animation-delay: 0.2s; }
.pw-dots span:nth-child(3) { animation-delay: 0.4s; }

/* PROGRESS BAR */
.pw-meter {
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: #E8EEF5;
  overflow: hidden;
  margin-top: 6px;
}

.pw-meter-fill {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #002F6C, #2A65B5);
  border-radius: 99px;
  animation: pwMeterSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* KEYFRAME ANIMATIONS */
@keyframes pwSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pwSpinReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pwPulseLock {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.92); }
}

@keyframes pwDotBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes pwMeterSlide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    width: 60%;
  }
  100% {
    transform: translateX(260%);
    width: 30%;
  }
}



/* Header Image */
.product-header-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}


.debit-amount  { color: #ef4444; font-weight: 700; }
.pending-amount { color: #f59e0b; font-weight: 700; }
.failed-amount  { color: #94a3b8; font-weight: 700; text-decoration: line-through; }
.record-amount-value { color: #16a34a; font-weight: 700; }

/* Reviews Ticker Wrapper - fills remaining viewport height */
.reviews-ticker-wrapper {
  width: 100%;
  height: calc(100vh - 250px); /* adjust based on your header/image height */
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff; /* blue background */
  padding: 10px;
  box-sizing: border-box;
}

/* Ticker container */
.reviews-ticker {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: scrollReviews 300s linear infinite; /* very slow scroll */
}

/* Each review item */
.review-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #ffffff; /* white card background */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-height: 80px; /* make each review taller */
}

/* User logo / icon */
.review-item .user-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0; /* keeps image from shrinking */
}

/* Review text */
.review-item .review-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #79a2e5; /* blue text */
}

/* Smooth scroll animation */
@keyframes scrollReviews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}



/* Full-width black box around dashboard image */
.dashboard-image-box-full {
    width: 100%;                 /* full width of parent container */
    background-color: #000000;   /* black box (you can change to green) */
    padding: 15px;               /* space inside box for image */
    border-radius: 16px;         /* rounded corners */
    box-sizing: border-box;
    text-align: center;          /* center image */
    margin: 20px 0;              /* vertical spacing only, no horizontal shift */
    overflow: hidden;            /* prevent any overflow */
}

/* Dashboard image inside the box */
.dashboard-image {
    max-width: 100%;             /* fit inside green box */
    height: auto;
    border-radius: 12px;         /* slightly rounded corners */
    display: inline-block;       /* center properly */
}




/* ===== PAYMENT TYPE ===== */
.payment-type {
  margin: 15px 0;
  text-align: left;
  width: 100%;
  position: relative;
  font-family: sans-serif;
}

.payment-type label {
  display: block;
  margin-bottom: 6px;
  color: #f4b400; /* green label */
  font-weight: 600;
  font-size: 14px;
}

/* The clickable box */
.payment-box {
  width: 100%;
  background: #ffffff;          /* white box */
  color: #000000;               /* green text */
  border: 1px solid #c0c0c0;   /* silver edge */
  border-radius: 12px;
  padding: 12px 15px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.payment-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-box .arrow {
  font-size: 14px;
}



/* Options list hidden by default */
.payment-options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 48px; /* below the box */
  width: 100%;
  background: #ffffff;
  border: 1px solid #c0c0c0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none; /* hidden initially */
  z-index: 100;
}

.payment-options li {
  padding: 10px 15px;
  cursor: pointer;
  color: #000000;
  font-weight: 500;
  transition: background 0.2s;
}

.payment-options li:hover {
  background: rgba(15,157,88,0.1); /* light green hover */
}


/* Selected Amount Display */
.selected-amount {
  font-weight: bold;
  color: #000000;   /* black */
  font-size: 20px;
  margin-top: 8px;
  text-align: center;
}



#paymentCountdown {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #ff0707; /* green */
}


#paymentStatusMessage {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  display: none;
}


.status-pending {
  background: #f0fff6;
  color: #d29922;
}

.status-approved {
  background: #e6fff1;
  color: #1faa59;
}

.status-declined {
  background: #ffecec;
  color: #d62828;
}

.status-timeout {
  background: #fff6e5;
  color: #c77700;
}




/* ================= FLOATING TELEGRAM (PROFILE PAGE) ================= */
.profile-page .telegram-float-profile {
  position: fixed;
  bottom: 90px;              /* above bottom nav */
  right: 16px;               /* move to right */
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #0088cc;       /* Telegram blue */
  color: #ffffff;            /* white icon/text */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,136,204,0.35);  /* subtle blue shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover / tap */
.profile-page .telegram-float-profile:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,136,204,0.45); /* stronger blue shadow */
}

/* Mobile safe */
@media (max-width: 480px) {
  .profile-page .telegram-float-profile {
    bottom: 100px;
    right: 12px;            /* adjust right for mobile */
  }
}



#toast-overlay {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -30px);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  width: 100%;
  max-width: 360px;
  padding: 0 16px;
  box-sizing: border-box;
}

#toast-overlay.toast-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Bubble notification card */
.toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #14151A;
  padding: 14px 16px;
  border-radius: 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 57, 166, 0.16),
              0 2px 6px rgba(20, 21, 26, 0.08);
  border: 1px solid #EAF1FB;
  width: 100%;
}

/* Icon badge — rounded blue-tint circle */
.toast-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EAF1FB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-type-icon {
  font-size: 17px;
}

.toast-success .toast-icon-badge { background: linear-gradient(135deg, #3E6FD9, #002966); }
.toast-success .toast-type-icon  { color: #ffffff; }

.toast-info .toast-icon-badge { background: #EAF1FB; }
.toast-info .toast-type-icon  { color: #0039A6; }

.toast-error .toast-icon-badge { background: #FDECEC; }
.toast-error .toast-type-icon  { color: #E5484D; }

.toast-warning .toast-icon-badge { background: #FEF3C7; }
.toast-warning .toast-type-icon  { color: #E0A800; }

/* Message text */
.toast-msg {
  line-height: 1.4;
  color: #14151A;
  flex: 1;
}



.record-status-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.status-approved {
  background: #dcfce7;
  color: #16a34a;
}
.status-pending {
  background: #fef9c3;
  color: #ca8a04;
}
.status-failed {
  background: #fee2e2;
  color: #dc2626;
}






:root {
  --red: #D60000;
  --dark-red: #B30000;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #E8E8E8;
  --background: #FAFAFA;
}

#tasksPage {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.abt-wrapper {
  background: var(--background);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  padding-bottom: 60px;
}

/* ── HEADER ── */
.abt-header {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-gray);
  box-sizing: border-box;
  position: relative;
}

.abt-back-btn {
  position: absolute;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
}

.abt-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

/* ── SCROLL FADE-IN ── */
.abt-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.abt-fade.abt-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */
.abt-hero {
  padding: 30px 20px 10px;
  text-align: center;
}

.abt-hero-badge {
  display: inline-block;
  background: #FBEAEA;
  color: var(--dark-red);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.abt-hero-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.abt-red {
  color: var(--red);
}

.abt-hero-sub {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* ── IMAGE SLOT ── */
.abt-img-slot {
  margin: 20px 16px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  background: linear-gradient(135deg, #f8eaea, #fbf3f3);
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 10px 24px rgba(20, 21, 26, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abt-img-slot:active,
.abt-img-slot:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(20, 21, 26, 0.06),
              0 18px 34px rgba(214, 0, 0, 0.14);
}

.abt-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.abt-img-slot:hover .abt-img {
  transform: scale(1.05);
}

.abt-img-placeholder-text {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: var(--text-gray);
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
}

.abt-img-empty .abt-img-placeholder-text {
  display: flex;
}

/* ── SECTION ── */
.abt-section {
  background: var(--white);
  margin: 16px 16px;
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-gray);
  box-shadow: 0 2px 4px rgba(20, 21, 26, 0.03),
              0 8px 20px rgba(20, 21, 26, 0.04);
}

.abt-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #FBEAEA;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 12px;
}

.abt-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 8px;
}

.abt-section-text {
  font-size: 12.5px;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

/* ── FEATURE GRID ── */
.abt-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.abt-feature-card {
  background: var(--background);
  border: 1px solid var(--border-gray);
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.abt-feature-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(214, 0, 0, 0.1);
}

.abt-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 4px;
}

.abt-feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.abt-feature-text {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* ── CLOSING ── */
.abt-closing {
  text-align: center;
  padding: 30px 24px 10px;
}

.abt-closing-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 8px;
}

.abt-closing-text {
  font-size: 12.5px;
  color: var(--text-gray);
  font-weight: 500;
  line-height: 1.6;
}