/* SEA eSIM customer PWA UI — intentionally scoped away from /admin */
:root{
  --app-bg:#07111f;
  --app-surface:#0c192b;
  --app-surface-2:#112239;
  --app-surface-soft:rgba(15,31,52,.78);
  --app-line:rgba(151,180,214,.14);
  --app-line-strong:rgba(151,180,214,.24);
  --app-text:#f4f8ff;
  --app-muted:#91a6c3;
  --app-primary:#32d6c4;
  --app-primary-2:#43a4ff;
  --app-accent:#a78bfa;
  --app-success:#3ddc97;
  --app-warning:#ffbd59;
  --app-danger:#ff6b7d;
  --app-radius:24px;
  --app-radius-sm:17px;
  --app-shadow:0 14px 38px rgba(0,0,0,.24);
  --safe-top:env(safe-area-inset-top,0px);
  --safe-bottom:env(safe-area-inset-bottom,0px);
}

html{background:var(--app-bg)}
body.customer-app-shell,
body.auth-shell{
  color:var(--app-text);
  background:
    radial-gradient(circle at 8% -6%,rgba(67,164,255,.18),transparent 30rem),
    radial-gradient(circle at 100% 12%,rgba(50,214,196,.12),transparent 27rem),
    linear-gradient(180deg,#07111f 0%,#081522 55%,#06101d 100%);
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Tahoma,Arial,sans-serif;
}
body.customer-app-shell::before,
body.auth-shell::before{display:none!important}

/* Customer application shell */
.customer-app{
  min-height:100vh;
  min-height:100dvh;
  padding-bottom:calc(92px + var(--safe-bottom));
  position:relative;
}
.customer-appbar{
  position:sticky;
  z-index:90;
  top:0;
  min-height:76px;
  padding:calc(10px + var(--safe-top)) clamp(14px,3vw,34px) 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:linear-gradient(180deg,rgba(7,17,31,.99),rgba(7,17,31,.97));
  border-bottom:1px solid var(--app-line);
}
.customer-brand{display:flex;align-items:center;gap:11px;min-width:0}
.customer-brand img{
  width:46px!important;height:46px!important;min-width:46px;
  border-radius:15px;object-fit:contain;
  background:rgba(255,255,255,.05);border:1px solid var(--app-line);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}
.customer-brand span{display:grid;min-width:0;line-height:1.2}
.customer-brand small{color:var(--app-muted);font-size:11px;margin-bottom:3px}
.customer-brand strong{font-size:15px;max-width:210px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.customer-appbar-actions{display:flex;align-items:center;gap:8px}
.wallet-chip{
  min-height:46px;padding:7px 12px;display:flex;align-items:center;gap:9px;
  color:#dffef9;border:1px solid rgba(50,214,196,.2);border-radius:16px;
  background:linear-gradient(135deg,rgba(50,214,196,.13),rgba(67,164,255,.09));
}
.wallet-chip .nav-icon{width:19px;height:19px;color:var(--app-primary)}
.wallet-chip>span:last-child{display:grid;line-height:1.1;text-align:start}
.wallet-chip small{font-size:10px;color:#9ab9c8;margin-bottom:4px}
.wallet-chip bdi{font-size:13px;font-weight:900;white-space:nowrap}
.app-icon-button{
  width:44px;height:44px;padding:0;border-radius:15px;display:grid;place-items:center;
  color:#d7e6f8;border:1px solid var(--app-line);background:rgba(255,255,255,.045);cursor:pointer;
}
.app-icon-button:hover{border-color:rgba(50,214,196,.35);color:#fff;background:rgba(50,214,196,.09)}
.app-icon-button .nav-icon{width:20px;height:20px}
.pwa-install-trigger{color:var(--app-primary)}

.profile-menu{position:relative}
.profile-menu summary{list-style:none;cursor:pointer;width:46px;height:46px;border-radius:16px;border:1px solid var(--app-line);padding:2px;background:rgba(255,255,255,.05)}
.profile-menu summary::-webkit-details-marker{display:none}
.profile-menu summary img{width:100%!important;height:100%!important;display:block;object-fit:cover;border-radius:13px}
.profile-menu-panel{
  position:absolute;top:56px;inset-inline-end:0;width:min(290px,calc(100vw - 28px));
  padding:12px;border-radius:21px;border:1px solid var(--app-line-strong);
  background:#0a1829;box-shadow:0 22px 55px rgba(0,0,0,.38)
}
.profile-menu-head{display:flex;align-items:center;gap:10px;padding:6px 6px 11px;border-bottom:1px solid var(--app-line)}
.profile-menu-head img{width:43px!important;height:43px!important;object-fit:cover;border-radius:14px}
.profile-menu-head span{display:grid;min-width:0}
.profile-menu-head strong,.profile-menu-head small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.profile-menu-head small{color:var(--app-muted);margin-top:3px}
.profile-menu-email{padding:10px 8px;color:var(--app-muted);font-size:12px;direction:ltr;text-align:right;overflow:hidden;text-overflow:ellipsis}
.profile-menu-panel>a{display:flex;align-items:center;gap:10px;padding:11px;border-radius:13px;color:#dce9f8;font-weight:750;font-size:13px}
.profile-menu-panel>a:hover{background:rgba(255,255,255,.055)}
.profile-menu-panel .profile-logout{color:#ffc0c8}
.connection-banner{position:sticky;top:76px;z-index:85;text-align:center;padding:9px 14px;background:#6e341c;color:#fff4e8;font-size:12px;border-bottom:1px solid rgba(255,189,89,.3)}

.customer-main{
  width:min(1380px,100%);
  margin:0 auto;
  padding:clamp(18px,3vw,34px)!important;
  min-width:0;
}
.customer-main>.topbar{margin-bottom:22px;align-items:center}
.customer-main>.topbar h1{font-size:clamp(25px,4vw,36px);font-weight:900;letter-spacing:-.045em}
.customer-main>.topbar p{max-width:760px;color:var(--app-muted);font-size:14px}
.customer-main .card{
  border-radius:var(--app-radius);
  border-color:var(--app-line);
  background:linear-gradient(155deg,rgba(18,39,65,.92),rgba(9,24,42,.88));
  box-shadow:var(--app-shadow);
}
.customer-main .card:hover{border-color:rgba(151,180,214,.21)}
.customer-main .btn{
  min-height:46px;border-radius:15px;padding:11px 16px;
  background:linear-gradient(135deg,#1db8ab,#368ff0);box-shadow:0 14px 30px rgba(25,161,176,.18)
}
.customer-main .btn.secondary{background:rgba(255,255,255,.055);border:1px solid var(--app-line);box-shadow:none}
.customer-main .btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
.customer-main .input,.customer-main .select,.customer-main textarea{
  min-height:49px;border-radius:15px;padding:13px 14px;background:rgba(4,15,28,.72);border-color:var(--app-line-strong)
}
.customer-main .input:focus,.customer-main .select:focus,.customer-main textarea:focus{border-color:rgba(50,214,196,.55);box-shadow:0 0 0 4px rgba(50,214,196,.1)}
.customer-main .pill{background:rgba(255,255,255,.055);border-color:var(--app-line);color:#c9daed}
.customer-main .muted{color:var(--app-muted)}

/* Fixed app navigation */
.customer-bottom-nav{
  position:fixed;z-index:100;left:50%;bottom:calc(10px + var(--safe-bottom));transform:translateX(-50%);
  width:min(670px,calc(100% - 20px));height:70px;padding:7px;
  display:grid;grid-template-columns:repeat(5,1fr);gap:4px;
  border:1px solid rgba(151,180,214,.2);border-radius:23px;
  background:#0a1c30;box-shadow:0 14px 38px rgba(0,0,0,.40);
}
.customer-bottom-nav a{
  position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  border-radius:17px;color:#8198b5;font-size:10px;font-weight:800;transition:.18s ease
}
.customer-bottom-nav a .nav-icon{width:21px;height:21px}
.customer-bottom-nav a.active{color:#eafffc;background:linear-gradient(135deg,rgba(50,214,196,.17),rgba(67,164,255,.13))}
.customer-bottom-nav a.active::after{content:"";position:absolute;top:4px;width:22px;height:2px;border-radius:99px;background:var(--app-primary);box-shadow:0 0 12px var(--app-primary)}
.customer-bottom-nav a:active{transform:scale(.96)}

/* Home and wallet */
.customer-main .credit-hero{
  border:0;
  padding:clamp(20px,4vw,32px);
  background:
    radial-gradient(circle at 8% 5%,rgba(167,139,250,.25),transparent 35%),
    radial-gradient(circle at 95% 95%,rgba(50,214,196,.20),transparent 38%),
    linear-gradient(135deg,#142b4a,#0c2038 58%,#0a2940);
  overflow:hidden;
}
.customer-main .credit-hero::after{content:"";position:absolute;width:190px;height:190px;border:1px solid rgba(255,255,255,.07);border-radius:50%;inset:auto -60px -90px auto}
.customer-main .credit-kicker{background:rgba(50,214,196,.1);border-color:rgba(50,214,196,.2);color:#bffff7}
.customer-main .credit-hero h2{font-size:clamp(31px,6vw,48px);font-weight:950;color:#fff}
.customer-main .credit-hero p{color:#abc0d6}
.customer-main .credit-side-stack{display:grid;gap:12px}
.customer-main .credit-price-grid>div{
  border:1px solid rgba(255,255,255,.1);background:rgba(3,14,27,.58);border-radius:19px
}
.customer-main .v11-customer-stats{grid-template-columns:repeat(2,1fr)}
.customer-main .v11-customer-stats>div{padding:17px;text-align:start}
.customer-main .v11-customer-stats small{display:block;color:#96abc2;margin-bottom:7px}
.customer-main .v11-customer-stats strong{font-size:clamp(20px,4vw,28px);color:#fff}
.customer-home-layout{gap:20px}
.customer-main .product-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:16px}
.customer-main .product-card{
  display:flex;flex-direction:column;min-height:100%;padding:18px;text-align:start;
  transition:transform .18s ease,border-color .18s ease
}
.customer-main .product-card:hover{transform:translateY(-3px);border-color:rgba(50,214,196,.28)}
.customer-main .product-card::before{background:rgba(50,214,196,.09)}
.customer-main .product-img{height:155px!important;max-width:100%!important;padding:14px;border-radius:20px;background:rgba(255,255,255,.035)}
.customer-main .product-card h2{font-size:19px}
.customer-main .product-card p{flex:1}
.customer-main .price-badge{align-self:flex-start;margin:10px 0 14px;background:rgba(61,220,151,.1);border-color:rgba(61,220,151,.23);color:#baffdf}
.customer-main .featured-internet-card{position:sticky;top:105px;align-self:start}
.customer-main .featured-offer-row{border-radius:17px;background:rgba(255,255,255,.035);border:1px solid var(--app-line)}

/* Internet plans */
.customer-main .internet-grid{grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:17px}
.customer-main .internet-plan-card{padding:20px;transition:transform .18s ease}
.customer-main .internet-plan-card:hover{transform:translateY(-3px)}
.customer-main .internet-plan-head{align-items:flex-start}
.customer-main .internet-plan-head h2{font-size:20px;margin-bottom:6px}
.customer-main .plan-stats{gap:8px}
.customer-main .plan-stats>div{border-radius:16px;background:rgba(255,255,255,.045);border:1px solid var(--app-line);padding:12px}
.customer-main .plan-stats small{color:var(--app-muted)}
.customer-main .country-details{border-radius:16px;border-color:var(--app-line);background:rgba(0,0,0,.1)}
.customer-main .customer-name-field{margin-top:14px}

/* Tables and history as app surfaces */
.customer-main .table-wrap{border-color:var(--app-line);background:rgba(4,15,28,.4);border-radius:18px}
.customer-main table{background:transparent}
.customer-main th{background:rgba(255,255,255,.035);color:#9db2ca}
.customer-main td{color:#e6eff9}
.customer-main .filter-card{border-radius:18px;background:rgba(255,255,255,.03);border-color:var(--app-line)}
.customer-main .mobile-card{border-radius:18px;background:rgba(255,255,255,.035);border-color:var(--app-line);padding:15px}
.customer-main .stat{background:linear-gradient(145deg,rgba(18,39,65,.94),rgba(9,25,43,.9))}
.customer-main .stat strong{color:#f4ffff}
.customer-main .badge.available,.customer-main .badge.approved{background:rgba(61,220,151,.1);border-color:rgba(61,220,151,.22);color:#b6ffdc}
.customer-main .badge.sold,.customer-main .badge.rejected{background:rgba(255,107,125,.1);border-color:rgba(255,107,125,.24);color:#ffc0c8}
.customer-main .badge.pending{background:rgba(255,189,89,.1);border-color:rgba(255,189,89,.22);color:#ffe0a3}

/* QR details */
.customer-main .purchase-detail-layout{gap:18px}
.customer-main .qr-focus-card{background:linear-gradient(160deg,rgba(16,42,67,.98),rgba(8,23,39,.94))}
.customer-main .qr-frame{background:#fff;border-radius:24px;padding:18px;box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}
.customer-main .qr-frame img{display:block;margin:auto}
.customer-main .purchase-info-card{padding:22px}
.customer-main .detail-grid>div{border-radius:17px;background:rgba(255,255,255,.038);border-color:var(--app-line)}
.customer-main .usage-box{border-radius:17px;border-color:var(--app-line);background:rgba(255,255,255,.035)}
.customer-main .usage-bar{background:rgba(255,255,255,.08)}
.customer-main .usage-bar span{background:linear-gradient(90deg,var(--app-primary),var(--app-primary-2))}

/* Account */
.customer-main .settings-layout{align-items:start}
.customer-main .account-summary-card{background:linear-gradient(155deg,rgba(28,57,91,.96),rgba(10,29,49,.92))}
.customer-main .account-avatar-large{border:3px solid rgba(50,214,196,.28);box-shadow:0 16px 35px rgba(0,0,0,.28)}
.customer-main .detail-grid.single-col>div{padding:14px 15px}
.customer-main input[type=file]::file-selector-button{border:0;border-radius:10px;padding:8px 10px;margin-inline-end:10px;background:rgba(50,214,196,.13);color:#cffff9;font-weight:800}
.customer-main .quick-links-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.customer-main .mini-action-card{border-color:var(--app-line);background:rgba(255,255,255,.035);border-radius:17px}
.customer-main .mini-action-card:hover{border-color:rgba(50,214,196,.26);background:rgba(50,214,196,.06)}

/* Toast and modal */
.customer-app-shell .flash-stack{right:auto;left:50%;transform:translateX(-50%);top:calc(84px + var(--safe-top));width:min(460px,calc(100vw - 26px))}
.customer-app-shell .flash.toast{border-color:var(--app-line-strong);background:rgba(12,30,50,.97);border-radius:17px}
.customer-app-shell .modal-backdrop{background:rgba(2,10,19,.76)}
.customer-app-shell .modal-card{border-color:var(--app-line-strong);background:linear-gradient(165deg,#122b48,#091a2d);border-radius:26px}
.customer-app-shell .modal-icon{background:linear-gradient(135deg,var(--app-primary),var(--app-primary-2));color:#06231f}

/* PWA iOS help sheet */
.pwa-help-sheet{position:fixed;z-index:1500;inset:0;padding:18px;display:grid;place-items:end center;background:rgba(1,8,16,.84)}
.pwa-help-sheet[hidden]{display:none}
.pwa-help-card{position:relative;width:min(440px,100%);padding:25px;border-radius:29px 29px 23px 23px;text-align:center;background:#10243c;border:1px solid var(--app-line-strong);box-shadow:0 30px 90px rgba(0,0,0,.55)}
.sheet-close{position:absolute;top:12px;inset-inline-end:12px;width:36px;height:36px;border:0;border-radius:12px;background:rgba(255,255,255,.07);color:#fff;font-size:24px;cursor:pointer}
.sheet-app-icon{width:72px;height:72px;margin:0 auto 13px;padding:4px;border-radius:22px;background:rgba(255,255,255,.06);border:1px solid var(--app-line)}
.sheet-app-icon img{width:100%!important;height:100%!important;border-radius:18px;object-fit:contain}
.pwa-help-card h2{margin:0 0 9px}.pwa-help-card p{color:var(--app-muted);line-height:1.75;margin:0 0 17px}

/* Authentication surfaces */
body.auth-shell{min-height:100vh;min-height:100dvh;margin:0;padding:calc(20px + var(--safe-top)) 20px calc(20px + var(--safe-bottom));display:grid;place-items:center}
.auth-app{position:relative;z-index:1;width:min(1040px,100%);display:grid;grid-template-columns:minmax(0,.95fr) minmax(390px,.75fr);direction:ltr;overflow:hidden;border:1px solid var(--app-line);border-radius:32px;background:#081728;box-shadow:0 28px 75px rgba(0,0,0,.40)}
.auth-visual{direction:rtl;position:relative;min-height:650px;padding:42px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;background:radial-gradient(circle at 15% 5%,rgba(167,139,250,.25),transparent 35%),radial-gradient(circle at 90% 90%,rgba(50,214,196,.22),transparent 38%),linear-gradient(145deg,#173453,#0a263f 62%,#092034)}
.auth-visual::after{content:"";position:absolute;width:320px;height:320px;border-radius:50%;border:1px solid rgba(255,255,255,.08);inset:auto -120px -150px auto;box-shadow:0 0 0 50px rgba(255,255,255,.018),0 0 0 100px rgba(255,255,255,.012)}
.auth-brand{position:relative;z-index:1;display:flex;align-items:center;gap:13px}
.auth-brand img{width:58px!important;height:58px!important;object-fit:contain;border-radius:18px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1)}
.auth-brand span{display:grid}.auth-brand strong{font-size:20px}.auth-brand small{color:#a9bfd4;margin-top:4px}
.auth-visual-content{position:relative;z-index:1;max-width:500px}
.auth-visual-content .eyebrow{display:inline-flex;padding:7px 11px;border-radius:999px;background:rgba(50,214,196,.1);border:1px solid rgba(50,214,196,.18);color:#bffff7;font-size:12px;font-weight:850}
.auth-visual-content h1{font-size:clamp(35px,5vw,57px);line-height:1.06;letter-spacing:-.055em;margin:18px 0 14px}
.auth-visual-content p{color:#adc1d5;line-height:1.8;margin:0;font-size:15px}
.auth-points{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:9px}
.auth-point{padding:13px;border-radius:17px;background:rgba(3,15,27,.28);border:1px solid rgba(255,255,255,.08)}
.auth-point .nav-icon{display:block;color:var(--app-primary);margin-bottom:8px}.auth-point b{display:block;font-size:12px}.auth-point small{display:block;color:#96acc1;font-size:10px;margin-top:4px}
.auth-panel{direction:rtl;padding:clamp(26px,5vw,52px);align-self:center}
.auth-panel-head{margin-bottom:24px}.auth-panel-head h2{font-size:30px;letter-spacing:-.04em;margin:0 0 8px}.auth-panel-head p{margin:0;color:var(--app-muted);line-height:1.6}
.auth-panel .form{gap:15px}
.auth-panel .field label{font-size:12px;color:#b8cbe0;margin-bottom:7px}
.auth-input-wrap{position:relative}
.auth-panel .input{height:52px;padding:13px 15px;border-radius:16px;background:rgba(3,14,26,.72);border:1px solid var(--app-line-strong);color:#fff}
.auth-panel .input:focus{border-color:rgba(50,214,196,.55);box-shadow:0 0 0 4px rgba(50,214,196,.1)}
.password-toggle{position:absolute;inset-inline-end:8px;top:50%;transform:translateY(-50%);border:0;border-radius:10px;padding:7px 9px;background:rgba(255,255,255,.055);color:#aec2d8;cursor:pointer;font-size:11px}
.auth-input-wrap .input{padding-inline-end:72px}
.auth-panel .btn{min-height:50px;border-radius:16px;background:linear-gradient(135deg,#1db8ab,#368ff0);box-shadow:0 14px 32px rgba(25,161,176,.2)}
.auth-panel .btn.secondary{background:rgba(255,255,255,.045);border:1px solid var(--app-line);box-shadow:none}
.auth-panel .btn.whatsapp-btn{background:rgba(61,220,151,.1);border:1px solid rgba(61,220,151,.23);color:#c7ffe4;box-shadow:none}
.auth-panel .terms-box{border-color:var(--app-line);background:rgba(255,255,255,.035);border-radius:15px;color:#bacce0}
.auth-panel .remember-box{padding:0;background:transparent;border:0}
.auth-panel input[type=checkbox]{accent-color:var(--app-primary)}
.auth-panel .flash{border-radius:15px;margin:0 0 17px;background:rgba(255,107,125,.09);border-color:rgba(255,107,125,.25);color:#ffc4cc}
.auth-install-card{display:none;align-items:center;gap:11px;margin-bottom:17px;padding:11px;border-radius:17px;border:1px solid rgba(50,214,196,.2);background:rgba(50,214,196,.07)}
.auth-install-card.show{display:flex}.auth-install-card img{width:42px!important;height:42px!important;border-radius:12px;object-fit:contain}.auth-install-card span{display:grid;flex:1}.auth-install-card b{font-size:12px}.auth-install-card small{font-size:10px;color:var(--app-muted);margin-top:3px}.auth-install-card button{border:0;border-radius:11px;padding:8px 11px;background:var(--app-primary);color:#06231f;font-weight:900;cursor:pointer}
.auth-status-overlay{position:fixed;z-index:1300;inset:0;padding:18px;display:grid;place-items:center;background:rgba(2,9,17,.88)}
.auth-status-card{position:relative;width:min(470px,100%);padding:28px;text-align:center;border-radius:27px;background:linear-gradient(160deg,#142e4c,#091d32);border:1px solid var(--app-line-strong);box-shadow:0 30px 90px rgba(0,0,0,.55)}
.auth-status-icon{width:70px;height:70px;margin:0 auto 15px;border-radius:23px;display:grid;place-items:center;font-size:31px;background:rgba(50,214,196,.1);border:1px solid rgba(50,214,196,.2)}
.auth-status-card h3{font-size:24px;margin:0 0 10px}.auth-status-card p{color:#aec2d7;line-height:1.75;margin:0 0 18px}.auth-status-actions{display:grid;gap:9px}.auth-status-actions .btn{min-height:48px}
.hp-field{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.auth-panel input[type=file]::file-selector-button{border:0;border-radius:9px;padding:7px 9px;margin-inline-end:8px;background:rgba(50,214,196,.13);color:#cffff9;font-weight:800}

/* Offline page */
.offline-shell{min-height:100vh;display:grid;place-items:center;padding:24px;background:var(--app-bg);color:var(--app-text);font-family:system-ui,-apple-system,"Segoe UI",Tahoma,sans-serif;text-align:center}
.offline-card{width:min(430px,100%);padding:30px;border:1px solid var(--app-line);border-radius:28px;background:var(--app-surface);box-shadow:var(--app-shadow)}

@media (max-width:1050px){
  .auth-app{grid-template-columns:1fr minmax(370px,.85fr)}
  .auth-visual{padding:32px}
}
@media (max-width:860px){
  .customer-main{padding:20px 16px 28px!important}
  .customer-main>.topbar{align-items:flex-start}
  .customer-main .credit-hero{grid-template-columns:1fr}
  .customer-main .featured-internet-card{position:relative;top:auto}
  .auth-app{grid-template-columns:1fr;width:min(540px,100%)}
  .auth-visual{display:none}
  .auth-panel{padding:30px}
}
@media (max-width:680px){
  .customer-appbar{min-height:69px;padding:calc(8px + var(--safe-top)) 12px 8px}
  .customer-brand img{width:43px!important;height:43px!important;min-width:43px}
  .customer-brand small{display:none}
  .customer-brand strong{max-width:110px;font-size:13px}
  .wallet-chip{min-height:42px;padding:6px 9px}
  .wallet-chip .nav-icon,.wallet-chip small{display:none}
  .wallet-chip bdi{font-size:12px}
  .app-icon-button{width:42px;height:42px}
  .profile-menu summary{width:42px;height:42px}
  .customer-appbar-actions{gap:5px}
  .customer-main>.topbar{display:grid;gap:12px}
  .customer-main>.topbar .split{width:100%}
  .customer-main>.topbar .split .btn,.customer-main>.topbar>a.btn{flex:1}
  .customer-main .product-grid,.customer-main .internet-grid{grid-template-columns:1fr}
  .customer-main .grid.cols-2,.customer-main .grid.cols-3,.customer-main .grid.cols-4{grid-template-columns:1fr}
  .customer-main .quick-links-grid{grid-template-columns:1fr 1fr}
  .customer-main .purchase-detail-layout{grid-template-columns:1fr}
  .customer-main .qr-focus-card{position:relative;top:auto}
  .customer-main .filter-grid{grid-template-columns:1fr}
  .customer-main .table-wrap{border:0;background:transparent;overflow:visible}
  .page-internet-history .table-wrap table,.page-internet-history .table-wrap thead,.page-internet-history .table-wrap tbody,.page-internet-history .table-wrap tr,.page-internet-history .table-wrap td{display:block;min-width:0;width:100%}
  .page-internet-history .table-wrap thead{display:none}
  .page-internet-history .table-wrap tbody{display:grid;gap:12px}
  .page-internet-history .table-wrap tr{padding:13px 14px;border:1px solid var(--app-line);border-radius:18px;background:rgba(255,255,255,.035)}
  .page-internet-history .table-wrap td{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;text-align:left;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.055)}
  .page-internet-history .table-wrap td:last-child{border-bottom:0;padding-bottom:0}
  .page-internet-history .table-wrap td::before{content:attr(data-label);color:var(--app-muted);font-size:11px;font-weight:800;text-align:right}
  .page-internet-history .table-wrap td>*{max-width:65%}
  .customer-bottom-nav{bottom:calc(7px + var(--safe-bottom));width:calc(100% - 14px);height:66px;border-radius:21px}
  .customer-bottom-nav a{font-size:9px;gap:4px}.customer-bottom-nav a .nav-icon{width:20px;height:20px}
  .customer-app{padding-bottom:calc(82px + var(--safe-bottom))}
  .customer-app-shell .flash-stack{top:calc(73px + var(--safe-top))}
  .modal-actions{grid-template-columns:1fr}
}
@media (max-width:430px){
  body.auth-shell{padding:0;background:#07111f;display:block}
  .auth-app{min-height:100vh;min-height:100dvh;border:0;border-radius:0;background:transparent;box-shadow:none;display:block}
  .auth-panel{padding:calc(24px + var(--safe-top)) 20px calc(25px + var(--safe-bottom));min-height:100vh;display:flex;flex-direction:column;justify-content:center}
  .auth-panel-head h2{font-size:27px}
  .customer-brand strong{max-width:86px}
  .app-icon-button.pwa-install-trigger{display:none!important}
  .customer-main{padding-inline:12px!important}
  .customer-main .credit-hero{padding:19px}
  .customer-main .credit-hero h2{font-size:30px}
  .customer-main .v11-customer-stats{grid-template-columns:1fr 1fr}
  .customer-main .quick-links-grid{grid-template-columns:1fr}
}
@media (display-mode:standalone){
  .pwa-install-trigger,[data-auth-install]{display:none!important}
  .customer-appbar{padding-top:calc(7px + var(--safe-top))}
}
@media (prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* Small reusable customer UI accents */
.page-eyebrow{display:inline-flex;margin-bottom:8px;color:var(--app-primary);font-size:11px;font-weight:900;letter-spacing:.04em}
.section-heading{display:flex;align-items:end;justify-content:space-between;gap:14px;margin:0 0 14px}
.section-heading h2{margin:0;font-size:clamp(22px,3vw,29px);letter-spacing:-.035em}
.customer-quick-actions{grid-template-columns:repeat(4,minmax(0,1fr))!important}
.customer-quick-actions .mini-action-card{min-height:108px;align-items:flex-start;text-align:start;padding:16px}
.customer-quick-actions .section-icon{width:38px;height:38px;border-radius:13px;background:rgba(50,214,196,.1);color:var(--app-primary)}
.customer-quick-actions .mini-action-card b{margin-top:10px}
.product-stock{position:absolute;z-index:2;top:13px;inset-inline-start:13px;padding:6px 9px;border-radius:999px;font-size:10px;font-weight:900}
.product-stock.in-stock{color:#baffdf;background:rgba(14,74,54,.82);border:1px solid rgba(61,220,151,.25)}
.product-stock.out-stock{color:#ffc0c8;background:rgba(90,28,41,.82);border:1px solid rgba(255,107,125,.25)}
@media(max-width:860px){.customer-quick-actions{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:430px){.customer-quick-actions{grid-template-columns:repeat(2,minmax(0,1fr))!important}.customer-quick-actions .mini-action-card{min-height:104px;padding:13px}.customer-quick-actions .mini-action-card small{font-size:10px}}
.profile-menu-panel>button.profile-menu-install{width:100%;display:flex;align-items:center;gap:10px;padding:11px;border:0;border-radius:13px;color:#cffff9;background:transparent;font-weight:750;font-size:13px;cursor:pointer;text-align:right}
.profile-menu-panel>button.profile-menu-install:hover{background:rgba(50,214,196,.07)}
.profile-menu-panel>button.profile-menu-install[hidden]{display:none}

/* Performance pass: icons are embedded, static layers avoid GPU-heavy blur, and touch devices skip hover animation. */
:root{
  --app-icon-bell:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xOCA4YTYgNiAwIDAgMC0xMiAwYzAgNy0zIDctMyA5aDE4YzAtMi0zLTItMy05Ii8+PHBhdGggZD0iTTEzLjczIDIxYTIgMiAwIDAgMS0zLjQ2IDAiLz4KPC9zdmc+Cg==");
  --app-icon-cart:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxjaXJjbGUgY3g9IjkiIGN5PSIyMSIgcj0iMSIvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjEiIHI9IjEiLz48cGF0aCBkPSJNMSAxaDRsMi43IDEzLjRhMiAyIDAgMCAwIDIgMS42aDguOGEyIDIgMCAwIDAgMi0xLjZMMjMgNkg2Ii8+Cjwvc3ZnPgo=");
  --app-icon-chart:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0zIDN2MThoMTgiLz48cGF0aCBkPSJNNyAxNGwzLTMgMyAyIDUtNyIvPgo8L3N2Zz4K");
  --app-icon-copy:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0iTTkgOS43NUM5IDguNzggOS43OCA4IDEwLjc1IDhoNi41QzE4LjIyIDggMTkgOC43OCAxOSA5Ljc1djguNWMwIC45Ny0uNzggMS43NS0xLjc1IDEuNzVoLTYuNUM5Ljc4IDIwIDkgMTkuMjIgOSAxOC4yNXYtOC41WiIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMS44Ii8+CiAgPHBhdGggZD0iTTYuNzUgMTZINmExLjc1IDEuNzUgMCAwIDEtMS43NS0xLjc1di04LjVDNC4yNSA0Ljc4IDUuMDMgNCA2IDRoNi41Yy45NyAwIDEuNzUuNzggMS43NSAxLjc1VjYuNSIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS13aWR0aD0iMS44IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+");
  --app-icon-globe:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0iTTIgMTJoMjAiLz48cGF0aCBkPSJNMTIgMmExNS4zIDE1LjMgMCAwIDEgNCAxMCAxNS4zIDE1LjMgMCAwIDEtNCAxMCAxNS4zIDE1LjMgMCAwIDEtNC0xMCAxNS4zIDE1LjMgMCAwIDEgNC0xMHoiLz4KPC9zdmc+Cg==");
  --app-icon-history:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0zIDEyYTkgOSAwIDEgMCAzLTYuNyIvPjxwYXRoIGQ9Ik0zIDN2Nmg2Ii8+PHBhdGggZD0iTTEyIDd2NWwzIDIiLz4KPC9zdmc+Cg==");
  --app-icon-home:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0zIDExLjUgMTIgNGw5IDcuNSIvPjxwYXRoIGQ9Ik01IDEwLjVWMjBoMTR2LTkuNSIvPjxwYXRoIGQ9Ik05IDIwdi02aDZ2NiIvPgo8L3N2Zz4K");
  --app-icon-lock:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxyZWN0IHg9IjUiIHk9IjExIiB3aWR0aD0iMTQiIGhlaWdodD0iMTAiIHJ4PSIyIi8+PHBhdGggZD0iTTggMTFWN2E0IDQgMCAwIDEgOCAwdjQiLz4KPC9zdmc+Cg==");
  --app-icon-logout:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik05IDIxSDVhMiAyIDAgMCAxLTItMlY1YTIgMiAwIDAgMSAyLTJoNCIvPjxwYXRoIGQ9Ik0xNiAxN2w1LTUtNS01Ii8+PHBhdGggZD0iTTIxIDEySDkiLz4KPC9zdmc+Cg==");
  --app-icon-package:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Im0yMSAxNi05IDUtOS01VjhsOS01IDkgNXY4eiIvPjxwYXRoIGQ9Im0zLjMgNy41IDguNyA1IDguNy01Ii8+PHBhdGggZD0iTTEyIDIyVjEyIi8+Cjwvc3ZnPgo=");
  --app-icon-plus:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xMiA1djE0Ii8+PHBhdGggZD0iTTUgMTJoMTQiLz4KPC9zdmc+Cg==");
  --app-icon-provider:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xMiAydjIwIi8+PHBhdGggZD0iTTE3IDVIOS41YTMuNSAzLjUgMCAwIDAgMCA3SDE0YTMuNSAzLjUgMCAwIDEgMCA3SDYiLz48cGF0aCBkPSJNMjAgN2wtMy0zLTMgMyIvPgo8L3N2Zz4K");
  --app-icon-qr:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik00IDRoNnY2SDR6Ii8+PHBhdGggZD0iTTE0IDRoNnY2aC02eiIvPjxwYXRoIGQ9Ik00IDE0aDZ2Nkg0eiIvPjxwYXRoIGQ9Ik0xNCAxNGgydjJoLTJ6Ii8+PHBhdGggZD0iTTE4IDE0aDJ2NmgtNHYtMmgyeiIvPjxwYXRoIGQ9Ik0xNCAxOGgydjJoLTJ6Ii8+Cjwvc3ZnPgo=");
  --app-icon-request:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xNCAySDZhMiAyIDAgMCAwLTIgMnYxNmEyIDIgMCAwIDAgMiAyaDEyYTIgMiAwIDAgMCAyLTJWOHoiLz48cGF0aCBkPSJNMTQgMnY2aDYiLz48cGF0aCBkPSJNOSAxNGg2Ii8+PHBhdGggZD0iTTkgMThoNiIvPjxwYXRoIGQ9Ik05IDEwaDEiLz4KPC9zdmc+Cg==");
  --app-icon-settings:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjMiLz48cGF0aCBkPSJNMTkuNCAxNWExLjY1IDEuNjUgMCAwIDAgLjMzIDEuODJsLjA2LjA2YTIgMiAwIDEgMS0yLjgzIDIuODNsLS4wNi0uMDZBMS42NSAxLjY1IDAgMCAwIDE1IDE5LjRhMS42NSAxLjY1IDAgMCAwLTEgLjYgMS42NSAxLjY1IDAgMCAwLS4zOCAxLjAyVjIxYTIgMiAwIDEgMS00IDB2LS4wOUExLjY1IDEuNjUgMCAwIDAgOC42IDE5LjRhMS42NSAxLjY1IDAgMCAwLTEuODIuMzNsLS4wNi4wNmEyIDIgMCAxIDEtMi44My0yLjgzbC4wNi0uMDZBMS42NSAxLjY1IDAgMCAwIDQuNiAxNWExLjY1IDEuNjUgMCAwIDAtMS4wMi0xSDMuNWEyIDIgMCAxIDEgMC00aC4wOUExLjY1IDEuNjUgMCAwIDAgNC42IDguNmExLjY1IDEuNjUgMCAwIDAtLjMzLTEuODJsLS4wNi0uMDZhMiAyIDAgMSAxIDIuODMtMi44M2wuMDYuMDZBMS42NSAxLjY1IDAgMCAwIDkgNC42YTEuNjUgMS42NSAwIDAgMCAxLS42QTEuNjUgMS42NSAwIDAgMCAxMC4zOCAzVjNhMiAyIDAgMSAxIDQgMHYuMDlBMS42NSAxLjY1IDAgMCAwIDE1LjQgNC42YTEuNjUgMS42NSAwIDAgMCAxLjgyLS4zM2wuMDYtLjA2YTIgMiAwIDEgMSAyLjgzIDIuODNsLS4wNi4wNkExLjY1IDEuNjUgMCAwIDAgMTkuNCA5Yy40NC4xNi44LjUyIDEuMDIgMWguMDlhMiAyIDAgMSAxIDAgNGgtLjA5QTEuNjUgMS42NSAwIDAgMCAxOS40IDE1eiIvPgo8L3N2Zz4K");
  --app-icon-shield:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xMiAyMnM4LTQgOC0xMFY1bC04LTMtOCAzdjdjMCA2IDggMTAgOCAxMHoiLz48cGF0aCBkPSJtOSAxMiAyIDIgNC01Ii8+Cjwvc3ZnPgo=");
  --app-icon-sim:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik03IDJoN2w1IDV2MTVIN2EyIDIgMCAwIDEtMi0yVjRhMiAyIDAgMCAxIDItMnoiLz48cGF0aCBkPSJNMTQgMnY2aDUiLz48cmVjdCB4PSI4IiB5PSIxMSIgd2lkdGg9IjgiIGhlaWdodD0iNyIgcng9IjEiLz48cGF0aCBkPSJNMTAgMTF2N00xNCAxMXY3TTggMTQuNWg4Ii8+Cjwvc3ZnPgo=");
  --app-icon-spark:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xMyAyIDMgMTRoOGwtMSA4IDExLTE0aC04bDAtNnoiLz4KPC9zdmc+Cg==");
  --app-icon-users:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0xNiAyMXYtMmE0IDQgMCAwIDAtNC00SDdhNCA0IDAgMCAwLTQgNHYyIi8+PGNpcmNsZSBjeD0iOS41IiBjeT0iNyIgcj0iNCIvPjxwYXRoIGQ9Ik0yMiAyMXYtMmE0IDQgMCAwIDAtMy0zLjg3Ii8+PHBhdGggZD0iTTE2IDMuMTNhNCA0IDAgMCAxIDAgNy43NSIvPgo8L3N2Zz4K");
  --app-icon-wallet:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik0yMCA3SDVhMiAyIDAgMCAxIDAtNGgxMnY0Ii8+PHBhdGggZD0iTTMgNXYxNGEyIDIgMCAwIDAgMiAyaDE1YTEgMSAwIDAgMCAxLTFWOGExIDEgMCAwIDAtMS0xIi8+PHBhdGggZD0iTTE2IDE0aDQiLz4KPC9zdmc+Cg==");
  --app-icon-whatsapp:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CjxwYXRoIGZpbGw9ImN1cnJlbnRDb2xvciIgZD0iTTE5LjA1IDQuOTFBOS44MiA5LjgyIDAgMCAwIDEyLjA0IDJDNi41OCAyIDIuMTMgNi40NSAyLjEzIDExLjkxYzAgMS43NS40NiAzLjQ1IDEuMzIgNC45NUwyIDIybDUuMjgtMS4zOGE5LjkgOS45IDAgMCAwIDQuNzYgMS4yMWguMDFjNS40NiAwIDkuOTEtNC40NSA5LjkxLTkuOTFhOS44NiA5Ljg2IDAgMCAwLTIuOTEtNy4wMU0xMi4wNSAyMC4xNWgtLjAxYTguMiA4LjIgMCAwIDEtNC4xOC0xLjE0bC0uMy0uMTgtMy4xMy44Mi44NC0zLjA1LS4yLS4zMWE4LjIgOC4yIDAgMCAxLTEuMjYtNC4zOGMwLTQuNTQgMy42OS04LjIzIDguMjQtOC4yM2E4LjE4IDguMTggMCAwIDEgNS44MiAyLjQxIDguMTggOC4xOCAwIDAgMSAyLjQxIDUuODJjMCA0LjU0LTMuNyA4LjI0LTguMjMgOC4yNG00LjUxLTYuMTZjLS4yNS0uMTItMS40Ny0uNzItMS42OS0uOC0uMjMtLjA4LS4zOS0uMTItLjU2LjEyLS4xNi4yNS0uNjQuOC0uNzguOTctLjE0LjE2LS4yOS4xOC0uNTQuMDYtLjI1LS4xMi0xLjA0LS4zOC0xLjk4LTEuMjItLjczLS42NS0xLjIyLTEuNDUtMS4zNi0xLjctLjE0LS4yNS0uMDItLjM4LjExLS41LjExLS4xMS4yNS0uMjkuMzctLjQzLjEyLS4xNC4xNi0uMjUuMjUtLjQxLjA4LS4xNi4wNC0uMzEtLjAyLS40My0uMDYtLjEyLS41Ni0xLjM0LS43Ni0xLjg0LS4yLS40OC0uNDEtLjQyLS41Ni0uNDNoLS40OGMtLjE2IDAtLjQzLjA2LS42Ni4zMS0uMjMuMjUtLjg2Ljg0LS44NiAyLjA0cy44OCAyLjM3IDEgMi41M2MuMTIuMTYgMS43MyAyLjY0IDQuMTkgMy43LjU5LjI1IDEuMDQuNCAxLjQuNTEuNTkuMTkgMS4xMi4xNiAxLjU0LjEuNDctLjA3IDEuNDctLjYgMS42Ny0xLjE4LjIxLS41OC4yMS0xLjA4LjE0LTEuMTgtLjA2LS4xLS4yMi0uMTYtLjQ3LS4yOSIvPgo8L3N2Zz4=");
  --app-icon-wifi:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CjxwYXRoIGQ9Ik01IDEzYTEwIDEwIDAgMCAxIDE0IDAiLz48cGF0aCBkPSJNOC41IDE2LjVhNSA1IDAgMCAxIDcgMCIvPjxwYXRoIGQ9Ik0xMiAyMGguMDEiLz48cGF0aCBkPSJNMiA5YTE1IDE1IDAgMCAxIDIwIDAiLz4KPC9zdmc+Cg==");
}

.nav-icon-bell{--icon:var(--app-icon-bell)}
.nav-icon-cart{--icon:var(--app-icon-cart)}
.nav-icon-chart{--icon:var(--app-icon-chart)}
.nav-icon-copy{--icon:var(--app-icon-copy)}
.nav-icon-globe{--icon:var(--app-icon-globe)}
.nav-icon-history{--icon:var(--app-icon-history)}
.nav-icon-home{--icon:var(--app-icon-home)}
.nav-icon-lock{--icon:var(--app-icon-lock)}
.nav-icon-logout{--icon:var(--app-icon-logout)}
.nav-icon-package{--icon:var(--app-icon-package)}
.nav-icon-plus{--icon:var(--app-icon-plus)}
.nav-icon-provider{--icon:var(--app-icon-provider)}
.nav-icon-qr{--icon:var(--app-icon-qr)}
.nav-icon-request{--icon:var(--app-icon-request)}
.nav-icon-settings{--icon:var(--app-icon-settings)}
.nav-icon-shield{--icon:var(--app-icon-shield)}
.nav-icon-sim{--icon:var(--app-icon-sim)}
.nav-icon-spark{--icon:var(--app-icon-spark)}
.nav-icon-users{--icon:var(--app-icon-users)}
.nav-icon-wallet{--icon:var(--app-icon-wallet)}
.nav-icon-whatsapp{--icon:var(--app-icon-whatsapp)}
.nav-icon-wifi{--icon:var(--app-icon-wifi)}
.section-icon-wifi{--section-icon:var(--app-icon-wifi)}
.section-icon-qr{--section-icon:var(--app-icon-qr)}
.section-icon-sim{--section-icon:var(--app-icon-sim)}
.section-icon-cart{--section-icon:var(--app-icon-cart)}
.section-icon-wallet{--section-icon:var(--app-icon-wallet)}
.section-icon-spark{--section-icon:var(--app-icon-spark)}
.globe-icon,.flag-globe-icon{--icon:var(--app-icon-globe)}
body.customer-app-shell{--page-icon:var(--app-icon-spark)}
body.page-customer{--page-icon:var(--app-icon-qr)}
body.page-internet-plans{--page-icon:var(--app-icon-wifi)}
body.page-internet-history{--page-icon:var(--app-icon-request)}
body.page-my-purchases,body.page-purchase{--page-icon:var(--app-icon-history)}
body.page-login{--page-icon:var(--app-icon-lock)}
.discount-only-box{display:flex;justify-content:flex-start;margin-top:12px}
.customer-app-shell .nav-icon,
.customer-app-shell .section-icon::before,
.auth-shell .nav-icon,
.auth-shell .section-icon::before{transform:none;filter:none;backface-visibility:hidden}
.customer-main .product-grid,
.customer-main .internet-grid{align-items:stretch}
@media (hover:none){
  .customer-main .btn,.customer-main .card,.customer-main .product-card,.customer-main .internet-plan-card,
  .customer-bottom-nav a,.customer-main .mini-action-card{transition:none!important}
  .customer-main .btn:hover,.customer-main .product-card:hover,.customer-main .internet-plan-card:hover,
  .customer-main .mini-action-card:hover{transform:none!important;filter:none!important}
}

/* V14: immediate navigation feedback without blur or expensive visual filters. */
.app-page-loader[hidden]{display:none!important}
.app-page-loader{
  position:fixed;z-index:140;inset:0;display:grid;place-items:center;
  padding:24px;background:rgba(4,13,24,.78);opacity:0;pointer-events:none;
  transition:opacity .1s linear
}
.app-page-loader.is-visible{opacity:1;pointer-events:auto}
/* Bottom navigation uses only a non-blocking progress strip. It never covers
   the tapped link, so native WebView/PWA navigation cannot be trapped. */
.app-page-loader.is-compact{display:block;padding:0;background:transparent;pointer-events:none}
.app-page-loader.is-compact .app-page-loader-card{display:none}
.app-page-loader.is-compact .app-page-loader-progress{top:max(0px,env(safe-area-inset-top));height:3px;background:rgba(5,17,31,.55)}
.app-page-loader-progress{
  position:absolute;top:0;inset-inline:0;height:3px;overflow:hidden;background:rgba(255,255,255,.07)
}
.app-page-loader-progress::after{
  content:"";display:block;width:42%;height:100%;border-radius:999px;
  background:linear-gradient(90deg,var(--app-primary),var(--app-primary-2));
  animation:app-loader-progress 1s ease-in-out infinite
}
.app-page-loader-card{
  width:min(330px,calc(100vw - 38px));min-height:92px;padding:18px 20px;
  display:flex;align-items:center;justify-content:center;gap:15px;
  border:1px solid var(--app-line-strong);border-radius:22px;
  background:#0a1b2d;box-shadow:0 18px 48px rgba(0,0,0,.34)
}
.app-page-loader-spinner{
  width:32px;height:32px;min-width:32px;border-radius:50%;
  border:3px solid rgba(255,255,255,.13);border-top-color:var(--app-primary);
  animation:app-loader-spin .72s linear infinite
}
.app-page-loader-copy{display:grid;gap:5px;text-align:start}
.app-page-loader-copy strong{font-size:14px;color:#f4fbff}
.app-page-loader-copy small{font-size:11px;color:var(--app-muted);line-height:1.5}
body.app-is-navigating{overflow:hidden;touch-action:none}
.customer-bottom-nav a.is-loading{color:#eafffc;background:rgba(50,214,196,.12)}
[data-qr-sync].is-syncing{cursor:wait;opacity:.78}
[data-qr-sync].is-syncing::before{
  content:"";width:15px;height:15px;display:inline-block;vertical-align:-3px;margin-inline-end:8px;
  border:2px solid rgba(255,255,255,.28);border-top-color:currentColor;border-radius:50%;
  animation:app-loader-spin .72s linear infinite
}
@keyframes app-loader-spin{to{transform:rotate(360deg)}}
@keyframes app-loader-progress{
  0%{transform:translateX(150%)}
  50%{transform:translateX(0)}
  100%{transform:translateX(-250%)}
}
@media (prefers-reduced-motion:reduce){
  .app-page-loader{transition:none}
  .app-page-loader-spinner,[data-qr-sync].is-syncing::before{animation-duration:1.4s!important}
  .app-page-loader-progress::after{animation:none;width:100%}
}

/* V15: robust mobile order history cards. The selectors do not depend on the install folder path. */
.internet-history-table .history-cell-value{display:inline-flex;align-items:center;gap:7px;min-width:0}
.internet-history-table .history-coverage-value{flex-wrap:wrap}
@media (max-width:760px){
  .internet-history-table-wrap{border:0!important;background:transparent!important;overflow:visible!important;width:100%;max-width:100%}
  .internet-history-table,.internet-history-table thead,.internet-history-table tbody,.internet-history-table tr,.internet-history-table td{display:block!important;width:100%!important;min-width:0!important;max-width:100%!important}
  .internet-history-table{border:0!important;background:transparent!important;table-layout:auto!important}
  .internet-history-table thead{display:none!important}
  .internet-history-table tbody{display:grid!important;gap:13px}
  .internet-history-table tbody tr{overflow:hidden;padding:7px 14px;border:1px solid var(--app-line);border-radius:18px;background:rgba(255,255,255,.035);box-shadow:0 8px 24px rgba(0,0,0,.08)}
  .internet-history-table tbody td{display:grid!important;grid-template-columns:minmax(82px,31%) minmax(0,1fr);align-items:start;gap:12px;padding:10px 0!important;border:0!important;border-bottom:1px solid rgba(255,255,255,.06)!important;text-align:start!important;white-space:normal!important;overflow:visible!important}
  .internet-history-table tbody td:last-child{border-bottom:0!important}
  .internet-history-table tbody td::before{content:attr(data-label);display:block;color:var(--app-muted);font-size:11px;font-weight:800;line-height:1.6;text-align:start}
  .internet-history-table .history-cell-value{display:flex;justify-content:flex-start;align-items:flex-start;gap:7px;width:100%;max-width:100%;min-width:0;color:var(--app-text);font-size:13px;line-height:1.7;text-align:start;overflow-wrap:anywhere;word-break:normal}
  .internet-history-table .history-cell-value[dir="ltr"]{direction:ltr;text-align:left;justify-content:flex-end}
  .internet-history-table .history-coverage-value{flex-direction:column;align-items:flex-start}
  .internet-history-table .history-coverage-value .detail-flags,.internet-history-table .history-coverage-value .flag-strip{max-width:100%;flex-wrap:wrap}
  .internet-history-table .history-cell-value .btn{width:100%;justify-content:center}
}
@media (max-width:390px){
  .internet-history-table tbody td{grid-template-columns:76px minmax(0,1fr);gap:9px}
}

/* V15: customer-wide announcement dialog. */
.customer-announcement-overlay[hidden]{display:none!important}
.customer-announcement-overlay{position:fixed;z-index:155;inset:0;display:grid;place-items:center;padding:calc(18px + var(--safe-top)) 16px calc(18px + var(--safe-bottom));background:rgba(2,10,20,.88);opacity:0;pointer-events:none;transition:opacity .14s linear}
.customer-announcement-overlay.is-visible{opacity:1;pointer-events:auto}
.customer-announcement-card{width:min(480px,100%);max-height:calc(100dvh - 36px - var(--safe-top) - var(--safe-bottom));overflow:auto;border:1px solid var(--app-line-strong);border-radius:27px;background:#0b1d31;box-shadow:0 24px 75px rgba(0,0,0,.55)}
.customer-announcement-badge{position:sticky;z-index:2;top:0;display:flex;align-items:center;gap:8px;padding:13px 18px;color:#bffdf5;font-size:11px;font-weight:900;background:#0b1d31;border-bottom:1px solid rgba(255,255,255,.07)}
.customer-announcement-badge .nav-icon{width:18px;height:18px}
.customer-announcement-image-wrap{width:100%;max-height:38vh;overflow:hidden;background:#061320}
.customer-announcement-image-wrap img{display:block;width:100%;height:auto;max-height:38vh;object-fit:contain}
.customer-announcement-content{padding:21px}
.customer-announcement-content h2{margin:0 0 12px;color:#f4fbff;font-size:23px;line-height:1.45;overflow-wrap:anywhere}
.customer-announcement-body{color:#c5d6e7;font-size:14px;line-height:1.9;white-space:pre-line;overflow-wrap:anywhere}
.customer-announcement-content form{margin-top:20px}
.customer-announcement-button{min-height:50px}
.customer-announcement-button.is-loading{opacity:.72;cursor:wait}
html.customer-announcement-open,html.customer-announcement-open body{overflow:hidden!important;overscroll-behavior:none}
@media (max-width:430px){
  .customer-announcement-overlay{padding-inline:11px}
  .customer-announcement-card{border-radius:23px}
  .customer-announcement-content{padding:18px}
  .customer-announcement-content h2{font-size:21px}
}
@media (prefers-reduced-motion:reduce){.customer-announcement-overlay{transition:none}}
@media (max-width:760px){
  .internet-history-table .history-empty-row{padding:0!important}
  .internet-history-table .history-empty-row td{display:block!important;padding:22px 14px!important;text-align:center!important;border:0!important}
  .internet-history-table .history-empty-row td::before{display:none!important}
}


/* V17: refined product spacing */
.customer-main .product-card .product-copy{display:flex;flex-direction:column;gap:10px;flex:1;min-height:0}
.customer-main .product-card .product-copy p{margin:0;min-height:0;flex:1}
.customer-main .product-card .product-purchase-stack{margin-top:auto;display:grid;gap:10px}
.customer-main .product-card .product-price-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.customer-main .product-card .price-badge{margin:0;display:inline-flex;align-items:center;min-height:44px;padding:0 16px;border-radius:999px;font-size:24px;font-weight:900}
.customer-main .product-card .discount-note{margin:0;padding:7px 12px;border-radius:999px;background:rgba(255,189,89,.12);border:1px solid rgba(255,189,89,.24);color:#ffe3a9;font-size:12px;font-weight:800}
.customer-main .product-card .btn,
.customer-main .product-card button[type=submit]{width:100%}

/* V17: cleaner internet plan specs */
.customer-main .plan-overview-box,
.customer-main .plan-meta-box{border:1px solid var(--app-line);border-radius:18px;background:rgba(255,255,255,.04);padding:14px 15px}
.customer-main .plan-overview-box{margin-top:10px}
.customer-main .plan-key-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.customer-main .plan-key-stat{display:grid;gap:4px;text-align:center;padding:6px 4px}
.customer-main .plan-key-stat + .plan-key-stat{border-inline-start:1px solid var(--app-line)}
.customer-main .plan-key-stat small{color:var(--app-muted);font-size:12px}
.customer-main .plan-key-stat b{font-size:20px;line-height:1.25;color:var(--app-text)}
.customer-main .plan-meta-box{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}
.customer-main .plan-provider-pair{display:grid;gap:4px;padding:4px 2px}
.customer-main .plan-provider-pair small{color:var(--app-muted);font-size:12px}
.customer-main .plan-provider-pair b{font-size:16px;color:var(--app-text);word-break:break-word}
.customer-main .plan-description{margin:8px 0 0}
.customer-main .coverage-line{display:block;margin-top:2px}

/* V17: theme controls */
.app-theme-switcher{display:grid;gap:14px}
.theme-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.theme-choice-btn{border:1px solid var(--app-line);border-radius:18px;padding:16px 14px;background:rgba(255,255,255,.04);color:var(--app-text);text-align:start;display:grid;gap:10px;cursor:pointer;transition:.18s ease}
.theme-choice-btn:hover{transform:translateY(-1px);border-color:rgba(50,214,196,.34)}
.theme-choice-btn.is-active{border-color:rgba(50,214,196,.55);box-shadow:0 0 0 3px rgba(50,214,196,.12);background:linear-gradient(135deg,rgba(50,214,196,.12),rgba(67,164,255,.08))}
.theme-choice-preview{height:74px;border-radius:16px;border:1px solid var(--app-line);position:relative;overflow:hidden}
.theme-choice-preview::before,.theme-choice-preview::after{content:"";position:absolute;border-radius:999px}
.theme-choice-preview::before{inset:12px auto auto 12px;width:52px;height:10px;background:rgba(255,255,255,.38)}
.theme-choice-preview::after{inset:auto 12px 12px 12px;height:20px;background:rgba(255,255,255,.22)}
.theme-choice-preview.light{background:linear-gradient(180deg,#ffffff,#eef5fb)}
.theme-choice-preview.light::before{background:rgba(17,36,60,.22)}
.theme-choice-preview.light::after{background:rgba(17,36,60,.10)}
.theme-choice-preview.dark{background:linear-gradient(180deg,#0f1e32,#081320)}
.theme-choice-label{display:grid;gap:4px}
.theme-choice-label b{font-size:15px}
.theme-choice-label small{color:var(--app-muted);line-height:1.6}
.profile-menu-panel>button.profile-menu-theme-toggle .nav-icon{color:var(--app-primary)}

/* V17: light theme (default) */
html[data-customer-theme="light"]{
  --app-bg:#f3f7fc;
  --app-surface:#ffffff;
  --app-surface-2:#f6f9fd;
  --app-surface-soft:rgba(255,255,255,.96);
  --app-line:rgba(21,66,110,.12);
  --app-line-strong:rgba(21,66,110,.18);
  --app-text:#13263d;
  --app-muted:#5e7390;
  --app-shadow:0 18px 38px rgba(16,40,65,.09);
}
html[data-customer-theme="light"] body.customer-app-shell,
html[data-customer-theme="light"] body.auth-shell{
  color:var(--app-text);
  background:
    radial-gradient(circle at 8% -10%,rgba(67,164,255,.14),transparent 28rem),
    radial-gradient(circle at 100% 8%,rgba(50,214,196,.10),transparent 25rem),
    linear-gradient(180deg,#f6fbff 0%,#eef5fb 45%,#edf3f9 100%);
}
html[data-customer-theme="light"] .customer-appbar{background:rgba(250,253,255,.97);border-bottom-color:var(--app-line);box-shadow:0 10px 24px rgba(17,36,60,.05)}
html[data-customer-theme="light"] .customer-brand img,
html[data-customer-theme="light"] .profile-menu summary{background:#fff;border-color:var(--app-line);box-shadow:0 8px 18px rgba(16,40,65,.08)}
html[data-customer-theme="light"] .customer-brand small,
html[data-customer-theme="light"] .wallet-chip small{color:#6d7f98}
html[data-customer-theme="light"] .wallet-chip{color:#123a36;background:linear-gradient(135deg,rgba(50,214,196,.14),rgba(67,164,255,.10));border-color:rgba(50,214,196,.20)}
html[data-customer-theme="light"] .app-icon-button{background:#fff;color:#45617f;border-color:var(--app-line)}
html[data-customer-theme="light"] .app-icon-button:hover{background:rgba(50,214,196,.08);color:#0f253d}
html[data-customer-theme="light"] .profile-menu-panel,
html[data-customer-theme="light"] .app-page-loader-card,
html[data-customer-theme="light"] .customer-announcement-card,
html[data-customer-theme="light"] .pwa-help-card,
html[data-customer-theme="light"] .auth-panel,
html[data-customer-theme="light"] .auth-status-card{background:linear-gradient(180deg,#ffffff,#f6f9fd);border-color:var(--app-line-strong);box-shadow:0 20px 44px rgba(16,40,65,.12)}
html[data-customer-theme="light"] .profile-menu-panel>a{color:#173252}
html[data-customer-theme="light"] .profile-menu-panel>a:hover,
html[data-customer-theme="light"] .profile-menu-panel>button.profile-menu-install:hover{background:rgba(67,164,255,.08)}
html[data-customer-theme="light"] .customer-main .card,
html[data-customer-theme="light"] .customer-main .stat,
html[data-customer-theme="light"] .auth-visual,
html[data-customer-theme="light"] .auth-point,
html[data-customer-theme="light"] .auth-install-card,
html[data-customer-theme="light"] .customer-main .table-wrap,
html[data-customer-theme="light"] .customer-main .filter-card,
html[data-customer-theme="light"] .customer-main .mobile-card,
html[data-customer-theme="light"] .customer-main .detail-grid>div,
html[data-customer-theme="light"] .customer-main .usage-box,
html[data-customer-theme="light"] .customer-main .mini-action-card,
html[data-customer-theme="light"] .customer-main .featured-offer-row,
html[data-customer-theme="light"] .customer-main .country-details,
html[data-customer-theme="light"] .customer-main .plan-stats>div,
html[data-customer-theme="light"] .customer-main .plan-overview-box,
html[data-customer-theme="light"] .customer-main .plan-meta-box,
html[data-customer-theme="light"] .theme-choice-btn{background:linear-gradient(180deg,#ffffff,#f8fbff);border-color:var(--app-line);box-shadow:var(--app-shadow)}
html[data-customer-theme="light"] .customer-main .card:hover{border-color:rgba(67,164,255,.24)}
html[data-customer-theme="light"] .customer-main .credit-hero,
html[data-customer-theme="light"] .customer-main .account-summary-card,
html[data-customer-theme="light"] .customer-main .qr-focus-card,
html[data-customer-theme="light"] .customer-main .modal-card,
html[data-customer-theme="light"] .auth-visual{background:linear-gradient(135deg,#f8fcff,#eaf3fb 55%,#e5f1ff)}
html[data-customer-theme="light"] .customer-main .credit-hero h2,
html[data-customer-theme="light"] .customer-main .v11-customer-stats strong,
html[data-customer-theme="light"] .customer-main .stat strong,
html[data-customer-theme="light"] .auth-panel h2,
html[data-customer-theme="light"] .auth-visual h1{color:#13263d}
html[data-customer-theme="light"] .customer-main .credit-hero p,
html[data-customer-theme="light"] .customer-main .credit-hero .credit-kicker,
html[data-customer-theme="light"] .auth-visual p,
html[data-customer-theme="light"] .auth-point small{color:#5f7390}
html[data-customer-theme="light"] .customer-main .credit-price-grid>div,
html[data-customer-theme="light"] .auth-input-wrap .input,
html[data-customer-theme="light"] .customer-main .input,
html[data-customer-theme="light"] .customer-main .select,
html[data-customer-theme="light"] .customer-main textarea,
html[data-customer-theme="light"] .auth-panel .input,
html[data-customer-theme="light"] .auth-panel textarea{background:#fff;border-color:var(--app-line-strong);color:var(--app-text)}
html[data-customer-theme="light"] .customer-main .pill{background:#f1f6fb;color:#39506b}
html[data-customer-theme="light"] .customer-main th{background:#f3f7fc;color:#51677f}
html[data-customer-theme="light"] .customer-main td,
html[data-customer-theme="light"] .customer-main .plan-provider-pair b,
html[data-customer-theme="light"] .customer-main .plan-key-stat b,
html[data-customer-theme="light"] .app-page-loader-copy strong,
html[data-customer-theme="light"] .customer-announcement-content h2{color:#13263d}
html[data-customer-theme="light"] .customer-main .muted,
html[data-customer-theme="light"] .customer-main .plan-key-stat small,
html[data-customer-theme="light"] .customer-main .plan-provider-pair small,
html[data-customer-theme="light"] .app-page-loader-copy small,
html[data-customer-theme="light"] .customer-announcement-body{color:#5e7390}
html[data-customer-theme="light"] .customer-main .btn.secondary,
html[data-customer-theme="light"] .auth-panel .btn.secondary{background:#fff;border-color:var(--app-line)}
html[data-customer-theme="light"] .customer-main .product-img{background:#f1f6fb}
html[data-customer-theme="light"] .customer-main .price-badge{background:rgba(61,220,151,.12);border-color:rgba(61,220,151,.28);color:#117249}
html[data-customer-theme="light"] .customer-main .discount-note{color:#8a5a00;background:rgba(255,189,89,.16);border-color:rgba(255,189,89,.28)}
html[data-customer-theme="light"] .customer-bottom-nav{background:rgba(255,255,255,.96);border-color:rgba(21,66,110,.14);box-shadow:0 18px 35px rgba(16,40,65,.12)}
html[data-customer-theme="light"] .customer-bottom-nav a{color:#70839a}
html[data-customer-theme="light"] .customer-bottom-nav a.active{color:#133a5b;background:linear-gradient(135deg,rgba(50,214,196,.16),rgba(67,164,255,.10))}
html[data-customer-theme="light"] .customer-bottom-nav a.is-loading{background:rgba(67,164,255,.08);color:#173252}
html[data-customer-theme="light"] .app-page-loader{background:rgba(244,248,252,.76)}
html[data-customer-theme="light"] .app-page-loader.is-compact .app-page-loader-progress{background:rgba(67,164,255,.10)}
html[data-customer-theme="light"] .customer-app-shell .flash.toast{background:rgba(255,255,255,.98);color:#16314d}
html[data-customer-theme="light"] .connection-banner{background:#ffe7bf;color:#6b4304;border-bottom-color:rgba(255,189,89,.35)}
html[data-customer-theme="light"] .purchase-info-card .usage-box,
html[data-customer-theme="light"] .customer-main .usage-bar{background:#edf3f9}
html[data-customer-theme="light"] .customer-main input[type=file]::file-selector-button{background:rgba(67,164,255,.10);color:#214568}
html[data-customer-theme="light"] body.auth-shell .auth-app{color:var(--app-text)}
html[data-customer-theme="light"] body.auth-shell .eyebrow{color:#1c6fb9}
html[data-customer-theme="light"] body.auth-shell .password-toggle{background:#f1f6fb;color:#38516d}
html[data-customer-theme="light"] body.auth-shell .terms-box{background:#f7fbff;border-color:var(--app-line)}

@media (max-width: 760px){
  .customer-main .plan-key-stats{grid-template-columns:1fr}
  .customer-main .plan-key-stat + .plan-key-stat{border-inline-start:0;border-top:1px solid var(--app-line);padding-top:12px}
  .customer-main .plan-meta-box{grid-template-columns:1fr}
  .theme-choice-grid{grid-template-columns:1fr}
}

/* V17 final polish: compact product purchase area with no artificial gap */
.customer-main .product-grid{align-items:start}
.customer-main .product-card{min-height:0;height:auto}
.customer-main .product-card .product-copy{flex:0 0 auto}
.customer-main .product-card .product-copy p{flex:none}
.customer-main .product-card .product-purchase-stack{margin-top:14px}
.customer-main .product-card .product-price-row{padding:0 1px}
.customer-main .product-card .product-purchase-stack form{margin:0}
.customer-main .product-card .discount-note{white-space:nowrap}

/* Keep the three plan values inside one professional compact box on phones too. */
.customer-main .plan-overview-box{padding:10px 8px}
.customer-main .plan-key-stats{grid-template-columns:repeat(3,minmax(0,1fr));gap:0}
.customer-main .plan-key-stat{min-width:0;padding:8px 7px}
.customer-main .plan-key-stat + .plan-key-stat{border-inline-start:1px solid var(--app-line);border-top:0}
.customer-main .plan-key-stat small{font-size:11px;white-space:nowrap}
.customer-main .plan-key-stat b{font-size:clamp(15px,4.5vw,20px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.customer-main .plan-meta-box{grid-template-columns:repeat(2,minmax(0,1fr));gap:0;padding:10px 8px}
.customer-main .plan-provider-pair{min-width:0;padding:8px 10px}
.customer-main .plan-provider-pair + .plan-provider-pair{border-inline-start:1px solid var(--app-line)}
.customer-main .plan-provider-pair b{font-size:15px;white-space:normal;overflow-wrap:anywhere}

/* Theme control on login and registration pages. */
.auth-theme-toggle{
  position:fixed;z-index:30;top:calc(14px + var(--safe-top));inset-inline-end:14px;
  min-height:42px;padding:9px 12px;border:1px solid var(--app-line-strong);border-radius:14px;
  display:flex;align-items:center;gap:8px;background:var(--app-surface-soft);color:var(--app-text);
  box-shadow:0 10px 26px rgba(16,40,65,.10);font:inherit;font-size:12px;font-weight:800;cursor:pointer
}
.auth-theme-toggle .nav-icon{width:18px;height:18px;color:var(--app-primary)}

html[data-customer-theme="light"] .customer-main .topbar h1,
html[data-customer-theme="light"] .customer-main .section-heading h2,
html[data-customer-theme="light"] .customer-main .product-card h2,
html[data-customer-theme="light"] .customer-main .internet-plan-head h2,
html[data-customer-theme="light"] .customer-main h2,
html[data-customer-theme="light"] .customer-main strong,
html[data-customer-theme="light"] .customer-main b{color:var(--app-text)}
html[data-customer-theme="light"] .customer-main .btn,
html[data-customer-theme="light"] .auth-panel .btn:not(.secondary):not(.whatsapp-btn){color:#fff}
html[data-customer-theme="light"] .profile-menu-panel>button.profile-menu-install{color:#173252}
html[data-customer-theme="light"] .customer-main .country-details summary{color:#214b6b}
html[data-customer-theme="light"] .customer-main .plan-overview-box,
html[data-customer-theme="light"] .customer-main .plan-meta-box{background:#f7fbff}
html[data-customer-theme="light"] .auth-theme-toggle{background:rgba(255,255,255,.96);color:#173252}

@media (max-width:760px){
  .customer-main .plan-key-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
  .customer-main .plan-key-stat + .plan-key-stat{border-inline-start:1px solid var(--app-line);border-top:0;padding-top:8px}
  .customer-main .plan-meta-box{grid-template-columns:repeat(2,minmax(0,1fr))}
  .customer-main .plan-provider-pair + .plan-provider-pair{border-inline-start:1px solid var(--app-line);border-top:0}
  .auth-theme-toggle span:last-child{display:none}
  .auth-theme-toggle{width:42px;padding:0;justify-content:center}
}
html[data-customer-theme="light"] .customer-app-shell .modal-card{background:linear-gradient(180deg,#ffffff,#f6f9fd);border-color:var(--app-line-strong);box-shadow:0 20px 44px rgba(16,40,65,.15);color:var(--app-text)}
html[data-customer-theme="light"] .customer-app-shell .modal-card h2,
html[data-customer-theme="light"] .customer-app-shell .modal-price{color:var(--app-text)}
html[data-customer-theme="light"] .customer-app-shell .modal-card p{color:var(--app-muted)}
html[data-customer-theme="light"] .customer-app-shell .modal-backdrop{background:rgba(31,55,80,.34)}

/* V18: stronger contrast for the light theme only. The dark theme above is untouched. */
html[data-customer-theme="light"]{
  /* Mirror the customer palette into the legacy variables used by style.css. */
  --bg:#f3f7fc;
  --bg2:#edf4fa;
  --panel:#ffffff;
  --panel2:#f6f9fd;
  --line:rgba(21,66,110,.15);
  --line2:rgba(21,66,110,.24);
  --text:#10243b;
  --muted:#526982;
}

/* General text and links */
html[data-customer-theme="light"] body.customer-app-shell,
html[data-customer-theme="light"] body.auth-shell{color:#10243b}
html[data-customer-theme="light"] .customer-main p,
html[data-customer-theme="light"] .customer-main .hint,
html[data-customer-theme="light"] .customer-main .muted,
html[data-customer-theme="light"] .auth-panel-head p,
html[data-customer-theme="light"] .auth-visual-content p,
html[data-customer-theme="light"] .auth-install-card small,
html[data-customer-theme="light"] .auth-status-card p,
html[data-customer-theme="light"] .pwa-help-card p{color:#526982}
html[data-customer-theme="light"] .customer-main a.strong-link,
html[data-customer-theme="light"] .customer-main td a:not(.btn),
html[data-customer-theme="light"] .customer-main .mobile-card>a:not(.btn){color:#153e63}
html[data-customer-theme="light"] .customer-main a.strong-link:hover,
html[data-customer-theme="light"] .customer-main td a:not(.btn):hover{color:#0878bd}

/* Form labels, values and placeholders */
html[data-customer-theme="light"] .customer-main .field label,
html[data-customer-theme="light"] .auth-panel .field label,
html[data-customer-theme="light"] .auth-panel .terms-box,
html[data-customer-theme="light"] .table-control-bar label{color:#344f6d}
html[data-customer-theme="light"] .customer-main input::placeholder,
html[data-customer-theme="light"] .customer-main textarea::placeholder,
html[data-customer-theme="light"] .auth-panel input::placeholder,
html[data-customer-theme="light"] .auth-panel textarea::placeholder{color:#60768e;opacity:1}
html[data-customer-theme="light"] .customer-main .input,
html[data-customer-theme="light"] .customer-main .select,
html[data-customer-theme="light"] .customer-main textarea,
html[data-customer-theme="light"] .auth-panel .input,
html[data-customer-theme="light"] .auth-panel textarea{caret-color:#126aa6}
html[data-customer-theme="light"] .customer-main select option,
html[data-customer-theme="light"] .auth-panel select option{background:#fff;color:#10243b}
html[data-customer-theme="light"] .auth-panel .terms-box input{accent-color:#13a99b}

/* Secondary and WhatsApp actions were too pale on white surfaces. */
html[data-customer-theme="light"] .customer-main .btn.secondary,
html[data-customer-theme="light"] .auth-panel .btn.secondary,
html[data-customer-theme="light"] .auth-status-actions .btn.secondary,
html[data-customer-theme="light"] .pwa-help-card .btn.secondary{
  color:#173b5e!important;
  background:#ffffff!important;
  border-color:rgba(21,66,110,.24)!important;
  box-shadow:0 8px 20px rgba(16,40,65,.06)!important;
}
html[data-customer-theme="light"] .customer-main .btn.secondary:hover,
html[data-customer-theme="light"] .auth-panel .btn.secondary:hover,
html[data-customer-theme="light"] .auth-status-actions .btn.secondary:hover{
  color:#0f3151!important;
  background:#edf6ff!important;
  border-color:rgba(22,119,184,.38)!important;
}
html[data-customer-theme="light"] .whatsapp-cta,
html[data-customer-theme="light"] .whatsapp-btn,
html[data-customer-theme="light"] .auth-panel .btn.whatsapp-btn,
html[data-customer-theme="light"] .auth-status-actions .btn.whatsapp-btn{
  color:#08643a!important;
  background:linear-gradient(135deg,#e5f9ee,#e4f8f5)!important;
  border-color:#8dd9b1!important;
  box-shadow:0 8px 20px rgba(14,116,72,.08)!important;
}
html[data-customer-theme="light"] .whatsapp-cta:hover,
html[data-customer-theme="light"] .whatsapp-btn:hover,
html[data-customer-theme="light"] .auth-panel .btn.whatsapp-btn:hover{
  color:#054c2b!important;
  background:linear-gradient(135deg,#d6f5e4,#d7f4ef)!important;
  border-color:#58bf8b!important;
}
html[data-customer-theme="light"] .btn:disabled,
html[data-customer-theme="light"] button:disabled{opacity:.62}

/* Authentication pages */
html[data-customer-theme="light"] .auth-brand strong,
html[data-customer-theme="light"] .auth-point b,
html[data-customer-theme="light"] .auth-install-card b,
html[data-customer-theme="light"] .auth-status-card h3,
html[data-customer-theme="light"] .pwa-help-card h2{color:#10243b}
html[data-customer-theme="light"] .auth-brand small,
html[data-customer-theme="light"] .auth-point small{color:#566e88}
html[data-customer-theme="light"] .auth-point{border-color:rgba(21,66,110,.15);background:rgba(255,255,255,.86)}
html[data-customer-theme="light"] .auth-install-card{border-color:rgba(16,164,147,.25);background:linear-gradient(135deg,#f0fffb,#eef8ff)}
html[data-customer-theme="light"] .auth-panel .flash.error{
  color:#a52235;
  background:#fff1f3;
  border-color:#f2aeb8;
}
html[data-customer-theme="light"] .auth-panel .flash.success{
  color:#09643e;
  background:#ebfaf2;
  border-color:#9bdfbc;
}
html[data-customer-theme="light"] .sheet-close{color:#294763;background:#eef3f8;border:1px solid rgba(21,66,110,.12)}
html[data-customer-theme="light"] .auth-status-overlay{background:rgba(25,48,73,.42)}

/* Internet cards and featured plans */
html[data-customer-theme="light"] .customer-main .coverage-line,
html[data-customer-theme="light"] .customer-main .mini-coverage,
html[data-customer-theme="light"] .customer-main .featured-offer-row .mini-offer-main span{
  color:#176fa9!important;
}
html[data-customer-theme="light"] .customer-main .plan-description,
html[data-customer-theme="light"] .customer-main .countries-columns p{color:#4f6781}
html[data-customer-theme="light"] .customer-main .featured-offer-row b{color:#10243b!important}
html[data-customer-theme="light"] .customer-main .featured-offer-row strong{
  color:#08704a!important;
  background:#e8f9f1!important;
  border-color:#91dbba!important;
}
html[data-customer-theme="light"] .customer-main .mini-offer-stats span,
html[data-customer-theme="light"] .customer-main .compact-stats span{
  color:#173653!important;
  background:#f3f8fd!important;
  border-color:rgba(21,66,110,.16)!important;
}
html[data-customer-theme="light"] .customer-main .mini-offer-stats small,
html[data-customer-theme="light"] .customer-main .compact-stats small{color:#5b7189!important}
html[data-customer-theme="light"] .customer-main .plan-overview-box,
html[data-customer-theme="light"] .customer-main .plan-meta-box{border-color:rgba(21,66,110,.18)}
html[data-customer-theme="light"] .customer-main .plan-key-stat small,
html[data-customer-theme="light"] .customer-main .plan-provider-pair small{color:#526982}
html[data-customer-theme="light"] .customer-main .country-details summary{color:#175f8e}

/* Tables, pagination and status chips */
html[data-customer-theme="light"] .customer-main table{background:#fff}
html[data-customer-theme="light"] .customer-main th{color:#3f5872;background:#eef4fa;border-bottom-color:rgba(21,66,110,.14)}
html[data-customer-theme="light"] .customer-main td{color:#18314c;border-bottom-color:rgba(21,66,110,.11)}
html[data-customer-theme="light"] .customer-main tr:hover td{background:rgba(67,164,255,.035)}
html[data-customer-theme="light"] .customer-main .page-link{
  color:#294a6b;
  background:#fff;
  border-color:rgba(21,66,110,.20);
}
html[data-customer-theme="light"] .customer-main .page-link:hover,
html[data-customer-theme="light"] .customer-main .page-link.active{color:#fff;background:linear-gradient(135deg,#16ae9e,#2f8eea);border-color:transparent}
html[data-customer-theme="light"] .customer-main .badge{color:#294762;background:#eef4fa;border-color:rgba(21,66,110,.18)}
html[data-customer-theme="light"] .customer-main .badge.available,
html[data-customer-theme="light"] .customer-main .badge.approved{
  color:#08724a;
  background:#e8faf1;
  border-color:#91dfba;
}
html[data-customer-theme="light"] .customer-main .badge.pending{
  color:#815300;
  background:#fff7df;
  border-color:#edcf83;
}
html[data-customer-theme="light"] .customer-main .badge.sold,
html[data-customer-theme="light"] .customer-main .badge.rejected{
  color:#a92538;
  background:#fff0f2;
  border-color:#f0b0b9;
}
html[data-customer-theme="light"] .customer-main .badge.disabled{color:#53677d;background:#edf1f5;border-color:#cbd5df}

/* Miscellaneous customer surfaces */
html[data-customer-theme="light"] .customer-main .mini-action-card b{color:#10243b}
html[data-customer-theme="light"] .customer-main .mini-action-card small{color:#526982}
html[data-customer-theme="light"] .customer-main .stat span{color:#526982}
html[data-customer-theme="light"] .customer-main .product-stock.in-stock{color:#08724a;background:#e4f8ee;border-color:#8ed8b3}
html[data-customer-theme="light"] .customer-main .product-stock.out-stock{color:#a92538;background:#fff0f2;border-color:#f0b0b9}
html[data-customer-theme="light"] .customer-main .copy-box{color:#173653;background:#f5f9fd;border-color:rgba(21,66,110,.24)}
html[data-customer-theme="light"] .customer-main .mobile-card{color:#18314c}
html[data-customer-theme="light"] .customer-announcement-badge{color:#155f58;background:#e9faf6;border-color:#9bded3}

/* Keep contrast stable on hover/focus and on small screens. */
html[data-customer-theme="light"] .customer-main .input:focus,
html[data-customer-theme="light"] .customer-main .select:focus,
html[data-customer-theme="light"] .customer-main textarea:focus,
html[data-customer-theme="light"] .auth-panel .input:focus{border-color:#37a4ca;box-shadow:0 0 0 4px rgba(55,164,202,.14)}

/* V19 — compact internet history cards and live eSIM usage dialog. */
.internet-history-mobile-list{display:none}
.history-actions{gap:7px;flex-wrap:wrap}
.internet-usage-button{white-space:nowrap}
.internet-usage-modal[hidden]{display:none!important}
.internet-usage-modal{
  position:fixed;z-index:220;inset:0;padding:20px;display:grid;place-items:center;
  background:rgba(2,10,19,.76)
}
.internet-usage-card{
  width:min(660px,100%);max-height:min(760px,calc(100dvh - 30px));overflow:auto;
  padding:22px;border:1px solid var(--app-line-strong);border-radius:26px;
  background:linear-gradient(165deg,#122b48,#091a2d);box-shadow:0 24px 70px rgba(0,0,0,.42)
}
.internet-usage-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:18px}
.internet-usage-head h2{margin:5px 0 0}
.usage-modal-close{width:40px;height:40px;border-radius:13px;border:1px solid var(--app-line);background:rgba(255,255,255,.05);color:var(--app-text);font-size:27px;line-height:1;cursor:pointer}
.internet-usage-loading{min-height:230px;display:grid;place-items:center;align-content:center;gap:12px;text-align:center;color:var(--app-text)}
.internet-usage-loading small{color:var(--app-muted)}
.internet-usage-error{padding:18px;border:1px solid rgba(255,107,125,.26);border-radius:18px;background:rgba(255,107,125,.09);color:#ffd1d7;line-height:1.8}
.usage-status-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.usage-status-pair{display:flex;gap:8px;flex-wrap:wrap}
.usage-warning{margin:0 0 14px;padding:10px 12px;border:1px solid rgba(255,189,89,.25);border-radius:14px;background:rgba(255,189,89,.09);color:#ffe2ad;font-size:12px}
.usage-gauges{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.usage-gauge-box{padding:16px;border:1px solid var(--app-line);border-radius:18px;background:rgba(255,255,255,.035)}
.usage-gauge-copy{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:11px}
.usage-gauge-copy span{color:var(--app-muted);font-size:12px}
.usage-gauge-copy b{font-size:17px}
.usage-progress{height:9px;border-radius:999px;overflow:hidden;background:rgba(255,255,255,.09)}
.usage-progress>span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--app-primary),var(--app-primary-2))}
.usage-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:12px}
.usage-metrics>div{padding:13px;border:1px solid var(--app-line);border-radius:16px;background:rgba(255,255,255,.03);display:grid;gap:5px}
.usage-metrics small{color:var(--app-muted);font-size:11px}
.usage-metrics b{font-size:13px;overflow-wrap:anywhere}
.usage-identifiers{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-top:12px}
.usage-identifiers>div{padding:11px 12px;border:1px dashed var(--app-line-strong);border-radius:14px;display:grid;gap:4px}
.usage-identifiers small{color:var(--app-muted)}
.usage-identifiers b{font-size:12px;direction:ltr;text-align:left}
body.usage-modal-open{overflow:hidden}

html[data-customer-theme="light"] .internet-usage-modal{background:rgba(31,55,80,.34)}
html[data-customer-theme="light"] .internet-usage-card{background:linear-gradient(180deg,#fff,#f6f9fd);border-color:var(--app-line-strong);box-shadow:0 24px 60px rgba(16,40,65,.18)}
html[data-customer-theme="light"] .usage-modal-close{background:#fff;color:#173252}
html[data-customer-theme="light"] .internet-usage-error{background:#fff1f3;color:#8b2635;border-color:#ffc5cc}
html[data-customer-theme="light"] .usage-warning{background:#fff8e9;color:#7a4d00;border-color:#f4d490}
html[data-customer-theme="light"] .usage-gauge-box,
html[data-customer-theme="light"] .usage-metrics>div{background:#f7fbff}
html[data-customer-theme="light"] .usage-progress{background:#dce8f2}

@media (max-width:760px){
  .page-internet-history .internet-history-table-wrap{display:none!important}
  .internet-history-mobile-list{display:grid;gap:10px;margin-top:12px}
  .internet-history-mobile-card{padding:13px;border:1px solid var(--app-line);border-radius:18px;background:rgba(255,255,255,.035);box-shadow:0 8px 20px rgba(0,0,0,.07)}
  .internet-mobile-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
  .internet-mobile-card-head>div{min-width:0}
  .internet-mobile-card-head small{display:block;color:var(--app-muted);font-size:10px;margin-bottom:4px;direction:ltr;text-align:right}
  .internet-mobile-card-head h3{margin:0;font-size:15px;line-height:1.45;overflow-wrap:anywhere}
  .internet-mobile-card-head .badge{flex:0 0 auto}
  .internet-mobile-card-client{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:10px 0 9px;padding:8px 10px;border-radius:12px;background:rgba(255,255,255,.035)}
  .internet-mobile-card-client span,.internet-mobile-card-facts small{color:var(--app-muted);font-size:10px}
  .internet-mobile-card-client b{font-size:12px}
  .internet-mobile-card-facts{display:grid;grid-template-columns:1.35fr .65fr;gap:7px}
  .internet-mobile-card-facts>div{min-width:0;padding:9px 10px;border:1px solid var(--app-line);border-radius:12px;display:grid;gap:4px}
  .internet-mobile-card-facts b{font-size:12px;line-height:1.5;overflow-wrap:anywhere}
  .internet-mobile-card-facts .coverage-fact{grid-column:1/-1}
  .coverage-fact>span{display:flex;align-items:center;justify-content:space-between;gap:8px;min-width:0}
  .coverage-fact .flag-strip{flex:0 0 auto}
  .internet-mobile-card-actions{display:flex;align-items:center;gap:8px;margin-top:10px}
  .internet-mobile-card-actions .btn{flex:1;min-height:40px}
  .usage-missing-note{font-size:10px;color:var(--app-muted);margin-inline-start:auto}
  .internet-usage-modal{padding:8px;align-items:end}
  .internet-usage-card{width:100%;max-height:92dvh;border-radius:24px 24px 16px 16px;padding:18px}
  .usage-gauges{grid-template-columns:1fr}
  .usage-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .usage-identifiers{grid-template-columns:1fr}
}

html[data-customer-theme="light"] .internet-history-mobile-card,
html[data-customer-theme="light"] .internet-mobile-card-client,
html[data-customer-theme="light"] .internet-mobile-card-facts>div{background:#f8fbff;border-color:var(--app-line)}

.usage-delay-note{margin-top:12px;padding:10px 12px;border-radius:13px;background:rgba(67,164,255,.08);color:var(--app-muted);font-size:11px;line-height:1.7}
html[data-customer-theme="light"] .usage-delay-note{background:#eef6fd;color:#405f7d}
