/* ══════════════════════════════════════════════════════════════════════
   EasyTools Design System v1 — one source of truth for fonts & colours.
   Every wallet page (dashboard, profile, premium tools, admin) reads from
   these variables. Change a value here → whole site updates.
   ══════════════════════════════════════════════════════════════════════ */
:root {
  /* ── Fonts ─────────────────────────────────────────────────────── */
  --et-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                  Roboto, "Helvetica Neue", Arial, sans-serif;
  --et-font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Font size scale (uniform across every card, form, section) */
  --et-fs-xs:  11px;
  --et-fs-sm:  12px;
  --et-fs-md:  13px;   /* default body text */
  --et-fs-lg:  15px;
  --et-fs-xl:  18px;   /* section headings */
  --et-fs-2xl: 22px;   /* page titles */
  --et-fs-3xl: 28px;   /* hero headlines */

  /* Font weights (only two — regular & bold) */
  --et-fw-regular: 500;
  --et-fw-bold:    800;

  /* Line heights */
  --et-lh-tight: 1.25;
  --et-lh-body:  1.55;

  /* ── Brand colours ─────────────────────────────────────────────── */
  --et-primary:      #087fba;   /* blue — main buttons */
  --et-primary-hover:#0d6ea3;
  --et-teal:         #0d9488;   /* teal — secondary/accent */
  --et-teal-hover:   #0b7d72;
  --et-navy:         #0d2340;   /* dark navy — headings, text */
  --et-amber:        #d97706;   /* orange — warnings, CTAs */
  --et-purple:       #8b3ec7;   /* purple — booking */
  --et-green:        #16a34a;   /* green — free/success */
  --et-danger:       #dc2626;   /* red — errors */
  --et-beta:         linear-gradient(135deg,#f59e0b,#f97316);

  /* ── Text ──────────────────────────────────────────────────────── */
  --et-text:          #0d2340;
  --et-text-muted:    #62758a;
  --et-text-subtle:   #8fa3b8;
  --et-text-on-dark:  #ffffff;

  /* ── Surfaces & borders ───────────────────────────────────────── */
  --et-bg:            #ffffff;
  --et-bg-soft:       #f7fbfd;
  --et-bg-tint:       #eaf1f6;
  --et-border:        #dbe6ef;
  --et-border-strong: #b8dfed;

  /* ── Layout ────────────────────────────────────────────────────── */
  --et-radius:      10px;
  --et-radius-lg:   14px;
  --et-radius-pill: 999px;
  --et-shadow-sm:   0 4px 12px rgba(13,35,64,.06);
  --et-shadow-md:   0 8px 24px rgba(13,35,64,.08);
  --et-shadow-lg:   0 16px 40px rgba(13,35,64,.12);
  --et-gap-sm:      8px;
  --et-gap-md:      14px;
  --et-gap-lg:      22px;
}

/* ── Global font enforcement across every wallet-owned surface ──── */
.etmw-wrap, .etmw-wrap *,
.etmw-shell, .etmw-shell *,
.etmw-account-layout, .etmw-account-layout *,
.etmw-account-sidebar, .etmw-account-sidebar *,
.etmw-account-main, .etmw-account-main *,
.etmw-profile-form, .etmw-profile-form *,
.etmw-mig-panel, .etmw-mig-panel *,
.etmw-mig-section, .etmw-mig-section *,
.etpt-wrap, .etpt-wrap *,
.etmw-qrgen-member-panel,
.etmw-feedback-fab {
  font-family: var(--et-font-sans) !important;
}

/* ── Uniform headings ─────────────────────────────────────────── */
.etmw-shell h1, .etmw-shell h2, .etmw-shell h3, .etmw-shell h4,
.etpt-wrap h1, .etpt-wrap h2, .etpt-wrap h3, .etpt-wrap h4,
.etmw-mig-section h3, .etmw-mig-section h4 {
  color: var(--et-navy);
  font-weight: var(--et-fw-bold);
  line-height: var(--et-lh-tight);
}

/* ── Uniform links inside wallet content ─────────────────────── */
.etmw-shell a:not(.etmw-button):not(.etmw-account-nav-link):not(.etmw-product-tab):not(.etmw-qr-act):not(.etmw-mig-action-link),
.etpt-wrap a:not(.etpt-btn):not(.etpt-cat-link):not(.etpt-footer-link) {
  color: var(--et-primary);
  text-decoration: none;
  transition: color .15s;
}
.etmw-shell a:hover:not(.etmw-button):not(.etmw-account-nav-link):not(.etmw-product-tab),
.etpt-wrap a:hover:not(.etpt-btn):not(.etpt-cat-link) {
  color: var(--et-teal);
}

/* ── Uniform status pills (used across dashboard, qr codes, etc.) ── */
.etmw-status, .etmw-admin .etmw-status {
  font-family: var(--et-font-sans);
  font-size: var(--et-fs-xs);
  font-weight: var(--et-fw-bold);
  border-radius: var(--et-radius-pill);
  padding: 3px 10px;
  letter-spacing: .3px;
}

.etmw-wrap{width:min(1250px,calc(100% - 36px));margin:12px auto 56px;color:#162b47;font-family:inherit}
.etmw-shell{background:#fff;border:1px solid #dce7ef;border-radius:14px;padding:26px;box-shadow:0 14px 38px rgba(13,35,64,.08)}
.etmw-head{padding:24px 22px;margin:-6px -6px 22px;border:1px solid #dce7ef;border-radius:12px;background:linear-gradient(135deg,#fff,#eef8fd)}
.etmw-head span{display:block;color:#08a9e0;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.etmw-head h2{margin:4px 0 0;color:#0b2a50;font-size:clamp(28px,4vw,42px);line-height:1.15;letter-spacing:0}
.etmw-nav{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:22px}
.etmw-nav a{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:9px 13px;border:1px solid #dce7ef;border-radius:8px;background:#f3f8fc;color:#0b2a50;text-decoration:none;font-size:13px;font-weight:800}
.etmw-nav a:hover{border-color:#9bdcf3;background:#e8f8fd}
.etmw-form{display:grid;gap:15px;max-width:760px}
.etmw-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.etmw-form label{display:grid;gap:6px;color:#0b2a50;font-size:13px;font-weight:850}
.etmw-form label span{color:#667b8f;font-weight:600}
.etmw-form input,.etmw-form select,.etmw-form textarea,.etmw-table-head input,.etmw-table-head select,.etmw-mini-form input{width:100%;min-height:46px;border:1px solid #dce7ef;border-radius:8px;padding:10px 12px;background:#fff;color:#162b47;font:inherit}
.etmw-form textarea{resize:vertical}
.etmw-button{display:inline-flex;align-items:center;justify-content:center;width:max-content;min-height:43px;padding:11px 17px;border:0;border-radius:8px;background:#08a9e0;color:#fff!important;text-decoration:none;font-weight:900;cursor:pointer}
.etmw-button:hover{background:#0b2a50}
.etmw-button-light{background:#eef8fd;color:#0b2a50!important;border:1px solid #cfe8f5}
/* The generic .etmw-button:hover sets background:#0b2a50, which is the same
   colour as this button's text — the label vanished on hover. Keep it light. */
.etmw-button-light:hover{background:#d8ecf9!important;color:#0b2a50!important;border-color:#a9d8ef}
.etmw-button-disabled:hover{background:#8aa0b3!important}
/* Server requirements table on the Site Migrator product page */
.etmw-req-box{margin:26px 0;padding:22px 26px;border:1px solid #f0d9a8;border-radius:14px;background:#fffdf6}
.etmw-req-box h3{margin:0 0 6px;color:#0d2340;font-size:19px}
.etmw-req-box p{color:#62758a;font-size:14px;margin:0 0 14px}
.etmw-req-table{width:100%;border-collapse:collapse;font-size:14px}
.etmw-req-table th{text-align:left;color:#0d2340;padding:8px 10px;border-bottom:2px solid #f0d9a8}
.etmw-req-table td{color:#40515c;padding:8px 10px;border-bottom:1px solid #f4e8cf;vertical-align:top}
.etmw-req-table tr:last-child td{border-bottom:0}
.etmw-req-foot{margin:14px 0 0!important;font-size:14px}
@media(max-width:640px){.etmw-req-table,.etmw-req-table tbody,.etmw-req-table tr,.etmw-req-table td{display:block;width:100%}.etmw-req-table thead{display:none}.etmw-req-table td{border-bottom:0;padding:4px 0}.etmw-req-table tr{border-bottom:1px solid #f4e8cf;padding:10px 0}}
.etmw-small{margin:0;color:#667b8f;font-size:13px}
.etmw-notice{padding:12px 14px;border-radius:8px;margin-bottom:16px;font-weight:750}
.etmw-success{background:#ecfdf3;color:#17613a;border:1px solid #b7efcd}
.etmw-error{background:#fff1f1;color:#9b1c1c;border:1px solid #ffd0d0}
.etmw-panel,.etmw-qr-card,.etmw-price-card,.etmw-metric{border:1px solid #dce7ef;border-radius:12px;background:#fff;padding:18px;box-shadow:0 10px 28px rgba(13,35,64,.06)}
.etmw-panel{background:#f9fcff}
.etmw-panel h3,.etmw-qr-card h3,.etmw-price-card h3{margin:0 0 12px;color:#0b2a50;font-size:19px;line-height:1.2}
.etmw-panel p{margin:5px 0;color:#667b8f}
.etmw-product-hero{display:grid;align-items:end;min-height:340px;margin-bottom:18px;padding:34px;border-radius:12px;background:linear-gradient(135deg,#0b2a50,#0f766e);color:#fff}
.etmw-product-hero span{display:block;color:#b8f3e6;font-size:12px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.etmw-product-hero h1{margin:6px 0 10px;color:#fff;font-size:clamp(34px,5vw,60px);line-height:1.05;letter-spacing:0}
.etmw-product-hero p{max-width:760px;margin:0;color:#e9fbf7;font-size:17px;line-height:1.55}
.etmw-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:18px}
.etmw-metric{display:grid;gap:8px;min-height:118px;align-content:center}
.etmw-metric span,.etmw-plan-current span,.etmw-price-card>span{color:#667b8f;font-size:12px;text-transform:uppercase;font-weight:900;letter-spacing:.4px}
.etmw-metric strong{color:#0b2a50;font-size:28px;line-height:1.1;letter-spacing:0}
.etmw-dashboard-actions{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.etmw-two-col{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.etmw-plan-current{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:18px;padding:22px;border-radius:12px;background:linear-gradient(135deg,#0b2a50,#104a7d);color:#fff}
.etmw-plan-current strong{display:block;font-size:38px;line-height:1;color:#fff}
.etmw-plan-current p,.etmw-plan-current span{color:#cfe8f5}
.etmw-pricing{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:18px}
.etmw-price-card{position:relative;display:grid;gap:10px;align-content:start}
.etmw-price-card.is-popular{border-color:#08a9e0;box-shadow:0 0 0 3px rgba(8,169,224,.14),0 10px 28px rgba(13,35,64,.06)}
.etmw-price{margin:0;color:#0b2a50;font-size:30px;font-weight:950;line-height:1}
.etmw-price small{font-size:13px;color:#667b8f}
.etmw-price-card ul{margin:0 0 4px 18px;padding:0;color:#354b62;font-size:14px}
.etmw-payment-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:18px}
.etmw-qr-card p{margin:12px 0 0;color:#667b8f;font-size:13px}
.etmw-qr-box{position:relative;display:grid;place-items:center;overflow:hidden;border:1px solid #dce7ef;border-radius:10px;background:#fff;padding:10px}
.etmw-qr-box img{display:block;width:100%;max-width:430px;height:auto}
.etmw-name-mask{position:absolute;left:50%;top:29.4%;width:min(54%,250px);height:4.4%;transform:translateX(-50%);background:#fff;border-radius:3px;box-shadow:0 0 0 2px #fff;pointer-events:none}
.etmw-empty-qr,.etmw-empty-state{display:grid;place-items:center;min-height:120px;border:1px dashed #b9cee2;border-radius:10px;background:#f3f8fc;color:#667b8f;text-align:center;padding:18px}
.etmw-table{width:100%;border-collapse:collapse;font-size:14px}
.etmw-table th,.etmw-table td{padding:11px 10px;border-bottom:1px solid #dce7ef;text-align:left;vertical-align:top}
.etmw-table th{color:#0b2a50;font-size:12px;text-transform:uppercase;letter-spacing:.4px}
.etmw-status{display:inline-flex;align-items:center;border-radius:999px;padding:5px 9px;font-size:12px;font-weight:900}
.etmw-status-pending{background:#fff7df;color:#8b5a00}
.etmw-status-approved,.etmw-status-paid,.etmw-status-active{background:#e8fbf0;color:#17613a}
.etmw-status-rejected,.etmw-status-expired{background:#fff1f1;color:#9b1c1c}
.etmw-status-paused,.etmw-status-disabled{background:#edf2f7;color:#475569}
.etmw-qr-layout{display:grid;grid-template-columns:230px minmax(0,1fr);gap:18px}
.etmw-qr-sidebar{align-self:start;display:grid;gap:8px;border:1px solid #dce7ef;border-radius:12px;background:#f3f8fc;padding:14px}
.etmw-qr-sidebar a,.etmw-qr-sidebar span{display:block;padding:9px 10px;border-radius:8px;background:#fff;color:#0b2a50;text-decoration:none;font-weight:800;font-size:13px}
.etmw-qr-sidebar strong{margin-top:8px;color:#0b2a50;font-size:12px;text-transform:uppercase}
.etmw-mini-form{display:grid;grid-template-columns:1fr auto;gap:6px}
.etmw-mini-form button,.etmw-actions button,.etmw-actions a{min-height:34px;border:1px solid #cfe0eb;border-radius:7px;background:#fff;color:#0b2a50;text-decoration:none;padding:7px 9px;font-size:12px;font-weight:800;cursor:pointer}
.etmw-table-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:10px}
.etmw-table-head form{display:grid;grid-template-columns:minmax(160px,1fr) 130px auto;gap:8px}
.etmw-qr-preview{width:54px;height:54px;border:1px solid #dce7ef;border-radius:7px;background:#fff}
.etmw-break{word-break:break-word}
.etmw-actions{display:flex;flex-wrap:wrap;gap:6px}
.etmw-inline-action{display:inline}
.etmw-actions .etmw-danger{color:#9b1c1c;border-color:#ffd0d0}
.etmw-analytics{display:grid;gap:14px;padding:14px;border-radius:12px;background:#fff}
.etmw-bars{display:grid;gap:9px}
.etmw-bars div{display:grid;grid-template-columns:120px 1fr 40px;gap:8px;align-items:center}
.etmw-bars b{display:block;height:10px;border-radius:999px;background:#08a9e0}
.etmw-bars span,.etmw-bars strong{font-size:13px;color:#0b2a50}
.etmw-unlock,.etmw-download{display:grid;gap:12px;justify-items:start}
.etmw-credit-field{display:none}
.etmw-product-field{display:none}
.etmw-expiry-panel{border-color:#f2cf82;background:#fffaf0}.etmw-expiry-list{display:grid;gap:10px}.etmw-expiry-list>div{display:grid;grid-template-columns:auto minmax(150px,1fr) auto auto;gap:10px;align-items:center;padding:12px;border:1px solid #efdba8;border-radius:9px;background:#fff}.etmw-upgrade-link{background:#0b2a50!important;color:#fff!important;font-weight:900}
@media(max-width:1050px){.etmw-pricing{grid-template-columns:repeat(2,minmax(0,1fr))}.etmw-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.etmw-qr-layout{grid-template-columns:1fr}.etmw-qr-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:800px){.etmw-two-col,.etmw-payment-grid,.etmw-plan-current{grid-template-columns:1fr}.etmw-table-head{display:grid}.etmw-table-head form{grid-template-columns:1fr}.etmw-table{display:block;overflow-x:auto;white-space:nowrap}.etmw-expiry-list>div{grid-template-columns:1fr}.etmw-expiry-list .etmw-button{width:100%}}
@media(max-width:560px){.etmw-wrap{width:min(1250px,calc(100% - 24px));margin-top:4px;margin-bottom:45px}.etmw-shell{padding:18px;border-radius:12px}.etmw-head{padding:20px 16px}.etmw-form-grid,.etmw-metrics,.etmw-pricing,.etmw-qr-sidebar{grid-template-columns:1fr}.etmw-button{width:100%}.etmw-table{white-space:normal}.etmw-bars div{grid-template-columns:1fr 1fr 32px}}

/* ===== Premium Touch 'n Go payment card ===== */
.etmw-tng-pay{max-width:420px;margin:0 auto 24px;background:linear-gradient(145deg,#ffe59a 0%,#f6c453 48%,#e7a823 100%);border:1px solid #d89a16;border-radius:18px;padding:24px;color:#17263a;box-shadow:0 18px 40px rgba(196,135,16,.28);text-align:center}
.etmw-tng-head .etmw-tng-badge{display:inline-block;background:rgba(255,255,255,.48);border:1px solid rgba(112,74,0,.24);padding:5px 14px;border-radius:999px;color:#523600!important;font-size:12px;font-weight:800;letter-spacing:.3px;backdrop-filter:blur(6px)}
.etmw-tng-head h3{margin:12px 0 2px;font-size:24px;font-weight:800;color:#17263a!important}
.etmw-tng-head p{margin:0 0 16px;color:#3f3420!important;opacity:1;font-size:13px}
.etmw-tng-qr{background:#fff;border-radius:14px;padding:16px;display:inline-block;box-shadow:0 8px 20px rgba(0,0,0,.18)}
.etmw-tng-qr img{display:block;width:220px;height:220px;object-fit:contain;border-radius:6px}
.etmw-empty-qr{width:220px;height:220px;display:flex;align-items:center;justify-content:center;color:#64748b;font-size:13px;text-align:center;padding:16px}
.etmw-tng-foot{margin-top:16px;display:flex;flex-direction:column;gap:2px}
.etmw-tng-foot span{color:#5b451a!important;font-size:11px;text-transform:uppercase;letter-spacing:.06em;opacity:1}
.etmw-tng-foot strong{font-size:16px;color:#17263a!important}
.etmw-tng-note{margin:14px 0 0;color:#493a1c!important;font-size:12px;opacity:1;line-height:1.5}
@media(max-width:480px){.etmw-tng-qr img,.etmw-empty-qr{width:180px;height:180px}}

/* Social login (Nextend) buttons on custom login/register forms */
.etmw-social{margin:0 0 6px}
.etmw-social .nsl-container{margin:0 0 4px!important}
.etmw-or{display:flex;align-items:center;text-align:center;color:#8595a7;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;margin:14px 0}
.etmw-or:before,.etmw-or:after{content:"";flex:1;height:1px;background:#e2eaf2}
.etmw-or span{padding:0 12px}

/* Live "Amount to pay" box on the Touch & Go payment form */
.etmw-amount-box{display:grid;gap:4px;margin:6px 0 4px;padding:18px 20px;border:2px solid #08a9e0;border-radius:14px;background:linear-gradient(135deg,#f2fbff,#eafaf4);box-shadow:0 10px 26px rgba(8,169,224,.14)}
.etmw-amount-box span{color:#087fba;font-size:12px;font-weight:900;letter-spacing:.8px;text-transform:uppercase}
.etmw-amount-box strong{color:#0b2a50;font-size:34px;line-height:1.05;font-weight:900}
.etmw-amount-box em{color:#526a80;font-size:12.5px;font-style:normal}


/* ===== 1.7.7 — compact, professional auth screens (login / register / reset) ===== */

/* The theme prints a large page banner; on an auth screen it duplicates the
   card heading and pushes the form below the fold. Stand it down here. */
body.etmw-auth-page .et-page-header,
body.etmw-auth-page .et-page > .et-container > .et-page-header{display:none}
body.etmw-auth-page .et-page{padding:38px 0 64px;background:linear-gradient(180deg,#f4f9fc,#fff 60%)}
body.etmw-auth-page .etmw-wrap{max-width:none}

.etmw-shell-auth{
  width:100%;max-width:420px;margin:0 auto;padding:30px 30px 26px;
  background:#fff;border:1px solid #e3edf4;border-radius:16px;
  box-shadow:0 18px 48px rgba(13,35,64,.10)
}
.etmw-shell-auth .etmw-head{text-align:center;margin:0 0 20px;padding:0;border:0}
.etmw-shell-auth .etmw-head span{
  display:block;font-size:11px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase;
  color:#08a9e1;margin-bottom:6px
}
.etmw-shell-auth .etmw-head h2{margin:0;font-size:23px;line-height:1.25;color:#0b2a50}

.etmw-shell-auth .etmw-form{display:grid;gap:14px;margin:0}
.etmw-shell-auth .etmw-form label{display:block;font-size:13px;font-weight:700;color:#334e68}
.etmw-shell-auth .etmw-form input{
  width:100%;box-sizing:border-box;margin-top:6px;padding:11px 13px;min-height:44px;
  border:1px solid #cfdde8;border-radius:10px;font-size:15px;font-family:inherit;color:#0b2a50;background:#fff
}
.etmw-shell-auth .etmw-form input:focus{outline:0;border-color:#8fd0e8;box-shadow:0 0 0 4px rgba(8,169,225,.14)}
.etmw-shell-auth .etmw-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.etmw-shell-auth .etmw-button{width:100%;min-height:46px;font-size:15px;margin-top:2px}
.etmw-shell-auth .etmw-small{margin:14px 0 0;text-align:center;font-size:13px;color:#62758a}
.etmw-shell-auth .etmw-small a{font-weight:700;text-decoration:none}
.etmw-shell-auth .etmw-small a:hover{text-decoration:underline}

/* Social sign-in sits above the form, with a labelled divider */
.etmw-shell-auth .etmw-social{margin:0 0 18px}
.etmw-shell-auth .etmw-social .nsl-container{margin:0!important}
.etmw-shell-auth .etmw-social .nsl-container-buttons a,
.etmw-shell-auth .etmw-social .nsl-button{width:100%!important;border-radius:10px!important;min-height:46px!important}
.etmw-shell-auth .etmw-or{position:relative;text-align:center;margin:16px 0 2px}
.etmw-shell-auth .etmw-or:before{content:"";position:absolute;left:0;right:0;top:50%;height:1px;background:#e3edf4}
.etmw-shell-auth .etmw-or span{
  position:relative;background:#fff;padding:0 12px;color:#8a9bab;font-size:12px;font-weight:700;
  text-transform:uppercase;letter-spacing:.6px
}

@media(max-width:480px){
  .etmw-shell-auth{padding:24px 20px 22px;border-radius:14px}
  .etmw-shell-auth .etmw-form-grid{grid-template-columns:1fr}
  body.etmw-auth-page .et-page{padding:24px 0 44px}
}


/* 1.7.8 — social sign-in sits centred below the form */
.etmw-shell-auth .etmw-social-bottom{margin:18px 0 0;text-align:center}
.etmw-shell-auth .etmw-social-bottom .etmw-or{margin:0 0 16px}
.etmw-shell-auth .etmw-social-bottom .nsl-container{margin:0 auto!important;display:block}
.etmw-shell-auth .etmw-social-bottom .nsl-container-buttons{display:flex;justify-content:center}
.etmw-shell-auth .etmw-social-bottom .nsl-container-buttons a,
.etmw-shell-auth .etmw-social-bottom .nsl-button{width:100%!important;max-width:100%!important;justify-content:center!important}
.etmw-shell-auth .etmw-small{margin:14px 0 0}


/* ===== 1.7.9 — premium account dashboard ===== */
.etmw-wrap .etmw-shell{border-radius:16px}

/* Navigation pills */
.etmw-nav{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 22px;padding:0 0 18px;border-bottom:1px solid #e7eff5}
.etmw-nav a{
  padding:9px 15px;border-radius:9px;background:#f4f9fc;border:1px solid #e0ecf4;
  color:#334e68;font-size:14px;font-weight:700;text-decoration:none;transition:.15s
}
.etmw-nav a:hover{background:#e8f4fb;border-color:#bfdcee;color:#0b2a50}
.etmw-nav a.is-active{background:#0b2a50;border-color:#0b2a50;color:#fff}

/* Stat cards */
.etmw-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px;margin:0 0 22px}
.etmw-stat{
  position:relative;background:#fff;border:1px solid #e3edf4;border-radius:14px;padding:18px 20px;
  box-shadow:0 6px 18px rgba(13,35,64,.05);transition:.18s;overflow:hidden
}
.etmw-stat:before{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,#08a9e1,#11b7a5);opacity:.85}
.etmw-stat:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(13,35,64,.09);border-color:#cfe4f1}
.etmw-stat span,.etmw-stat .etmw-stat-label{
  display:block;color:#6b8199;font-size:11px;font-weight:800;letter-spacing:.7px;text-transform:uppercase;margin-bottom:7px
}
.etmw-stat strong,.etmw-stat b,.etmw-stat .etmw-stat-value{
  display:block;color:#0b2a50;font-size:27px;line-height:1.15;font-weight:800;letter-spacing:-.4px
}
.etmw-stat small{display:block;margin-top:6px;color:#8a9bab;font-size:12px;font-weight:600}

/* Section blocks */
.etmw-panel{border:1px solid #e3edf4;border-radius:14px;padding:20px 22px;background:#fff;box-shadow:0 6px 18px rgba(13,35,64,.04);margin:0 0 18px}
.etmw-panel h3{margin:0 0 14px;font-size:17px;color:#0b2a50;letter-spacing:-.2px}

/* Tables */
.etmw-table{width:100%;border-collapse:collapse;font-size:14px}
.etmw-table th{
  text-align:left;padding:10px 12px;border-bottom:2px solid #e7eff5;
  color:#6b8199;font-size:11px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;white-space:nowrap
}
.etmw-table td{padding:12px;border-bottom:1px solid #eef4f8;color:#334e68;vertical-align:middle}
.etmw-table tr:last-child td{border-bottom:0}
.etmw-table tbody tr:hover{background:#fafdff}

/* Status pills */
.etmw-pill,.etmw-status{
  display:inline-block;padding:3px 11px;border-radius:99px;font-size:11px;font-weight:800;
  letter-spacing:.4px;text-transform:capitalize
}
.etmw-status-active,.etmw-pill-active{background:#e7f6ee;color:#0a7d33}
.etmw-status-pending,.etmw-pill-pending{background:#fff4e5;color:#8a5300}
.etmw-status-expired,.etmw-status-rejected,.etmw-pill-expired{background:#fdecec;color:#b32d2e}

/* Plan badge in the header */
.etmw-plan-badge{
  display:inline-flex;align-items:center;gap:6px;padding:5px 13px;border-radius:99px;
  background:linear-gradient(135deg,#e8f6fd,#eefaf8);border:1px solid #cfe8f5;
  color:#0b7285;font-size:12px;font-weight:800;letter-spacing:.3px
}

@media(max-width:640px){
  .etmw-stats{grid-template-columns:1fr 1fr;gap:10px}
  .etmw-stat{padding:14px 15px}
  .etmw-stat strong,.etmw-stat b,.etmw-stat .etmw-stat-value{font-size:22px}
  .etmw-panel{padding:16px}
  .etmw-table{font-size:13px}
  .etmw-table th,.etmw-table td{padding:9px 8px}
}
@media(max-width:420px){.etmw-stats{grid-template-columns:1fr}}


/* ===== 1.9.0 — My Products ===== */
.etmw-renew-alert{
  padding:13px 16px;margin:0 0 18px;border-radius:12px;background:#fff8ec;border:1px solid #f3dcae;
  color:#8a5300;font-size:14px
}
.etmw-renew-alert a{color:#8a5300;font-weight:800;text-decoration:underline;margin-left:4px}

.etmw-products{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:16px}
.etmw-product-card{
  background:#fff;border:1px solid #e3edf4;border-radius:14px;padding:20px;
  box-shadow:0 6px 18px rgba(13,35,64,.05);display:flex;flex-direction:column;gap:14px
}
.etmw-product-card.etmw-is-soon{border-color:#f3dcae;background:linear-gradient(180deg,#fffdf7,#fff)}
.etmw-product-card.etmw-is-expired,.etmw-product-card.etmw-is-revoked{border-color:#f0cfcf;background:linear-gradient(180deg,#fffafa,#fff)}

.etmw-product-top{display:flex;justify-content:space-between;align-items:flex-start;gap:12px}
.etmw-product-top h3{margin:0 0 4px;font-size:17px;color:#0b2a50;line-height:1.3}
.etmw-tier{font-size:11px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;color:#0b7285}
.etmw-state{
  flex-shrink:0;padding:4px 11px;border-radius:99px;font-size:11px;font-weight:800;
  letter-spacing:.3px;white-space:nowrap
}
.etmw-state-active{background:#e7f6ee;color:#0a7d33}
.etmw-state-soon{background:#fff4e5;color:#8a5300}
.etmw-state-expired,.etmw-state-revoked{background:#fdecec;color:#b32d2e}

.etmw-key{display:flex;align-items:center;gap:8px;flex-wrap:wrap;background:#f6fafd;border:1px solid #e3edf4;border-radius:10px;padding:10px 12px}
.etmw-key span{width:100%;font-size:11px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;color:#6b8199}
.etmw-key code{flex:1;font-size:14px;font-weight:700;color:#0b2a50;letter-spacing:.5px;word-break:break-all;background:none;padding:0}
.etmw-copy{
  border:1px solid #cfe0ee;background:#fff;color:#0b7285;border-radius:8px;padding:5px 11px;
  font-size:12px;font-weight:800;cursor:pointer;font-family:inherit
}
.etmw-copy:hover{background:#eef8fd}

.etmw-product-meta{display:flex;flex-wrap:wrap;gap:16px;margin:0}
.etmw-product-meta div{margin:0}
.etmw-product-meta dt{font-size:11px;font-weight:800;letter-spacing:.5px;text-transform:uppercase;color:#6b8199;margin:0 0 3px}
.etmw-product-meta dd{margin:0;font-size:14px;font-weight:700;color:#0b2a50}

.etmw-product-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto;padding-top:4px}
.etmw-product-actions .etmw-button{min-height:38px;padding:9px 14px;font-size:13px}

.etmw-empty{text-align:center;padding:34px 24px}
.etmw-empty h3{margin:0 0 8px;color:#0b2a50}
.etmw-empty p{color:#62758a;margin:0 0 16px}

@media(max-width:560px){.etmw-products{grid-template-columns:1fr}}


/* 1.9.2 — link out to the backup size guide */
.etmw-guide-link{font-size:14px;min-height:40px;padding:10px 16px}

/* Downloads: grouped rows + collapsed history */
.etmw-muted{color:#5d6b7a;font-size:13px}
.etmw-history{background:#f7fafc;padding:6px 14px}
.etmw-history summary{cursor:pointer;color:#0b2a50;font-size:13px}
.etmw-history ul{margin:8px 0 4px 18px;color:#5d6b7a;font-size:13px}

/* Static vs Dynamic explainer */
.etmw-explain{background:#f4f9fd;border:1px solid #d6e9f7;border-radius:10px;padding:14px 16px;margin:4px 0 14px}
.etmw-explain-row{display:flex;gap:12px;margin-bottom:8px;font-size:14px;line-height:1.55}
.etmw-explain-row:last-of-type{margin-bottom:0}
.etmw-explain-row strong{flex:0 0 82px;color:#0b2a50}
.etmw-explain-row span{color:#41525f}
.etmw-explain-more{margin-top:10px;border-top:1px solid #d6e9f7;padding-top:8px}
.etmw-explain-more summary{cursor:pointer;color:#0b6ba8;font-size:14px;font-weight:600}
.etmw-explain-more p{margin:8px 0 0;font-size:14px;color:#41525f;line-height:1.55}
@media(max-width:600px){.etmw-explain-row{flex-direction:column;gap:2px}.etmw-explain-row strong{flex:none}}

/* EasyTools authentication branding */
.etmw-auth-logo{display:block;text-align:center;margin:0 auto 8px;text-decoration:none}
.etmw-auth-logo img{display:inline-block;width:min(220px,72%);height:auto;max-height:78px;object-fit:contain}
.etmw-shell-auth .etmw-head{padding-top:4px}

/* ===== 1.10.0 — Member Product Center ===== */
.etmw-dashboard-welcome,.etmw-product-center-intro{
  display:flex;align-items:center;justify-content:space-between;gap:24px;margin:0 0 22px;
  padding:24px;border:1px solid #dce8f1;border-radius:16px;background:linear-gradient(135deg,#f7fcff,#eefaf7);
}
.etmw-dashboard-welcome span,.etmw-product-center-intro span,.etmw-product-section-head span{
  display:block;color:#0b8fb9;font-size:11px;font-weight:900;letter-spacing:.9px;text-transform:uppercase
}
.etmw-dashboard-welcome h3,.etmw-product-center-intro h3{margin:4px 0 6px;color:#0b2a50;font-size:28px;line-height:1.15}
.etmw-dashboard-welcome p,.etmw-product-center-intro p{margin:0;color:#5d7186;line-height:1.6}
.etmw-product-section-head{display:flex;align-items:end;justify-content:space-between;gap:16px;margin:30px 0 14px}
.etmw-product-section-head h3{margin:4px 0 0;color:#0b2a50;font-size:22px}
.etmw-product-section-head small,.etmw-product-section-head>a{color:#6b8199;font-size:13px;font-weight:700;text-decoration:none}
.etmw-product-section-head>a:hover{color:#08a9e0}
.etmw-product-center-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.etmw-family-card{
  min-width:0;display:flex;flex-direction:column;gap:10px;padding:20px;border:1px solid #dfeaf2;border-radius:15px;
  background:#fff;box-shadow:0 8px 24px rgba(13,35,64,.05);transition:transform .16s,box-shadow .16s,border-color .16s
}
.etmw-family-card:hover{transform:translateY(-2px);border-color:#b9dceb;box-shadow:0 15px 32px rgba(13,35,64,.09)}
.etmw-family-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.etmw-family-icon{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,#e5f8fd,#eaf8f3);color:#087f91;font-size:22px;font-weight:900}
.etmw-family-status{display:inline-flex;padding:5px 10px;border-radius:999px;font-size:10px;font-weight:900;letter-spacing:.5px;text-transform:uppercase;background:#eef4f7;color:#5c7185}
.etmw-family-status-active{background:#e7f6ee;color:#0a7d33}
.etmw-family-status-soon{background:#fff4e5;color:#8a5300}
.etmw-family-status-expired,.etmw-family-status-revoked{background:#fdecec;color:#b32d2e}
.etmw-family-status-available{background:#eef7ff;color:#0b6ba8}
.etmw-family-card h3{margin:2px 0 0;color:#0b2a50;font-size:18px}
.etmw-family-card p{margin:0;color:#61758a;font-size:13px;line-height:1.55;min-height:41px}
.etmw-family-plan{padding-top:9px;border-top:1px solid #edf3f7;color:#0b7285;font-size:12px;font-weight:850}
.etmw-family-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:auto;padding-top:4px}
.etmw-family-actions .etmw-button{min-height:38px;padding:9px 12px;font-size:12px}
.etmw-product-center-grid.is-compact .etmw-family-card{padding:16px;gap:8px}
.etmw-product-center-grid.is-compact .etmw-family-card p{display:none}
.etmw-product-center-grid.is-compact .etmw-family-plan{font-size:11px}
.etmw-product-center-grid.is-compact .etmw-family-actions .etmw-button:not(:first-child){display:none}
.etmw-product-center-grid.is-compact .etmw-family-icon{width:38px;height:38px;font-size:19px}
@media(max-width:1050px){.etmw-product-center-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){
  .etmw-dashboard-welcome,.etmw-product-center-intro{align-items:flex-start;flex-direction:column;padding:20px}
  .etmw-dashboard-welcome .etmw-button,.etmw-product-center-intro .etmw-button{width:100%}
  .etmw-product-center-grid{grid-template-columns:1fr}
  .etmw-product-section-head{align-items:flex-start;flex-direction:column;gap:5px}
}

/* ===== 1.10.1 — Tabbed Product Center ===== */
.etmw-product-tabs{
  display:flex;gap:8px;overflow-x:auto;margin:0 0 22px;padding:6px;border:1px solid #dce8f1;
  border-radius:14px;background:#f7fbfd;scrollbar-width:thin;-webkit-overflow-scrolling:touch
}
.etmw-product-tab{
  flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:9px 16px;
  border-radius:10px;color:#425b72;font-size:13px;font-weight:850;text-decoration:none;white-space:nowrap
}
.etmw-product-tab:hover{background:#eaf6fb;color:#087f91}
.etmw-product-tab.is-active{background:#0b7285;color:#fff;box-shadow:0 7px 16px rgba(11,114,133,.2)}
.etmw-product-view{min-height:260px}
.etmw-product-summary-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:0 0 18px}
.etmw-product-summary-strip>div{padding:16px 18px;border:1px solid #dfeaf2;border-radius:13px;background:#fff}
.etmw-product-summary-strip strong{display:block;color:#0b2a50;font-size:24px;line-height:1}
.etmw-product-summary-strip span{display:block;margin-top:6px;color:#687e93;font-size:12px;font-weight:750}
.etmw-empty-state{padding:28px;border:1px dashed #c8dce8;border-radius:15px;background:#fbfdff;text-align:center}
.etmw-empty-state h3{margin:0 0 6px;color:#0b2a50}.etmw-empty-state p{margin:0 0 16px;color:#61758a}
.etmw-license-groups{display:grid;gap:14px}
.etmw-license-group{border:1px solid #dfeaf2;border-radius:15px;background:#fff;overflow:hidden;box-shadow:0 8px 24px rgba(13,35,64,.04)}
.etmw-license-group>summary{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:18px 20px;cursor:pointer;list-style:none}
.etmw-license-group>summary::-webkit-details-marker{display:none}
.etmw-license-group>summary strong{display:block;color:#0b2a50;font-size:17px}
.etmw-license-group>summary small{display:block;margin-top:4px;color:#6c8196;font-size:12px;font-weight:700}
.etmw-license-chevron{color:#0b7285;font-size:22px;transition:transform .18s}
.etmw-license-group[open] .etmw-license-chevron{transform:rotate(180deg)}
.etmw-license-table-wrap{overflow-x:auto;border-top:1px solid #e8f0f5}
.etmw-license-table{width:100%;min-width:940px;border-collapse:collapse}
.etmw-license-table th,.etmw-license-table td{padding:13px 14px;border-bottom:1px solid #edf3f7;text-align:left;vertical-align:middle;font-size:12px}
.etmw-license-table th{background:#f8fbfd;color:#61778c;font-size:10px;letter-spacing:.5px;text-transform:uppercase}
.etmw-license-table code{font-size:12px;white-space:nowrap}
.etmw-copy{padding:6px 10px;border:1px solid #c7dce8;border-radius:8px;background:#fff;color:#087f91;font-weight:800;cursor:pointer}
.etmw-copy:hover{background:#eaf8fb}
.etmw-inline-link{margin-left:8px;color:#0b7285;font-weight:800;text-decoration:none}
.etmw-license-group-actions{padding:14px 18px;background:#fbfdff}
.etmw-download-center-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.etmw-download-center-card{display:flex;gap:16px;padding:22px;border:1px solid #dfeaf2;border-radius:15px;background:#fff;box-shadow:0 8px 24px rgba(13,35,64,.05)}
.etmw-download-center-card h3{margin:0 0 6px;color:#0b2a50}.etmw-download-center-card p{margin:0 0 14px;color:#61758a;line-height:1.55}
.etmw-download-history-link{margin-top:16px;text-align:center}
@media(max-width:780px){
  .etmw-product-tabs{margin-left:-2px;margin-right:-2px}
  .etmw-product-summary-strip{grid-template-columns:1fr}
  .etmw-download-center-grid{grid-template-columns:1fr}
  .etmw-download-center-card{padding:18px}
}


/* ===== 1.10.2 — Direct product download destinations ===== */
.etmw-download-center-card[id]{scroll-margin-top:140px;}
.etmw-download-center-card:target{outline:3px solid rgba(15,118,110,.22);box-shadow:0 16px 38px rgba(15,118,110,.14);}

/* ===== 1.11.0 — Member Center dashboard with scalable left navigation ===== */
body.etmw-account-page .et-page-header,
body.etmw-account-page .et-page > .et-container > .et-page-header{display:none!important}
body.etmw-account-page .et-page{padding:34px 0 68px;background:linear-gradient(180deg,#f3f8fc 0,#f8fbfd 42%,#fff 100%)}
body.etmw-account-page .etmw-wrap{width:min(1460px,calc(100% - 32px));margin:0 auto 56px}
body.etmw-account-page .etmw-shell-account{padding:0;border:1px solid #d7e4ed;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 22px 55px rgba(13,35,64,.11)}

.etmw-account-layout{display:grid;grid-template-columns:270px minmax(0,1fr);min-height:760px;background:#fff}
.etmw-account-sidebar{position:relative;display:flex;flex-direction:column;min-width:0;padding:24px 16px 18px;background:linear-gradient(180deg,#0a2848 0%,#0b3158 62%,#0b2a50 100%);color:#fff}
.etmw-sidebar-brand{display:flex;align-items:center;gap:11px;margin:0 6px 22px;color:#fff!important;text-decoration:none}
.etmw-sidebar-brand-mark{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,#11b7a5,#08a9e0);box-shadow:0 9px 22px rgba(8,169,224,.25);font-size:13px;font-weight:950;letter-spacing:.5px}
.etmw-sidebar-brand strong{display:block;color:#fff;font-size:18px;line-height:1.1;letter-spacing:-.2px}
.etmw-sidebar-brand small{display:block;margin-top:3px;color:#9fc0dc;font-size:11px;font-weight:750;letter-spacing:.3px}

.etmw-sidebar-user{display:grid;grid-template-columns:54px minmax(0,1fr);gap:11px;align-items:center;margin:0 0 20px;padding:14px 12px;border:1px solid rgba(255,255,255,.11);border-radius:13px;background:rgba(255,255,255,.06)}
.etmw-sidebar-avatar,.etmw-sidebar-user img{width:54px!important;height:54px!important;border-radius:50%!important;object-fit:cover;border:2px solid rgba(255,255,255,.35)}
.etmw-sidebar-user strong{display:block;overflow:hidden;color:#fff;font-size:14px;line-height:1.25;text-overflow:ellipsis;white-space:nowrap}
.etmw-sidebar-user span{display:block;overflow:hidden;margin-top:3px;color:#b8d0e3;font-size:11px;text-overflow:ellipsis;white-space:nowrap}
.etmw-sidebar-user small{display:inline-flex;margin-top:7px;padding:3px 8px;border-radius:999px;background:rgba(17,183,165,.18);color:#8ff1df;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.35px}

.etmw-account-nav-details{display:block}
.etmw-account-nav-details>summary{display:none}
.etmw-account-nav{display:grid;gap:17px}
.etmw-account-nav-group{display:grid;gap:5px}
.etmw-account-nav-label{display:block;padding:0 12px 4px;color:#789bb9;font-size:10px;font-weight:900;letter-spacing:1px;text-transform:uppercase}
.etmw-account-nav-link{display:flex;align-items:center;gap:11px;min-height:43px;padding:10px 12px;border:1px solid transparent;border-radius:9px;color:#c9dbea!important;text-decoration:none!important;font-size:13px;font-weight:800;transition:background .15s,border-color .15s,color .15s,transform .15s}
.etmw-account-nav-link:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.08);color:#fff!important;transform:translateX(2px)}
.etmw-account-nav-link.is-active{background:linear-gradient(135deg,#0fa8c7,#0d8fb6);border-color:rgba(255,255,255,.16);color:#fff!important;box-shadow:0 9px 20px rgba(4,144,183,.25)}
.etmw-nav-icon{flex:0 0 19px;width:19px;height:19px;fill:currentColor}
.etmw-account-logout{margin-top:2px;color:#ffccd0!important}
.etmw-account-logout:hover{background:rgba(255,105,118,.12);color:#fff!important}

.etmw-sidebar-help{margin-top:auto;padding:15px 14px;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:rgba(255,255,255,.06)}
.etmw-sidebar-help strong{display:block;color:#fff;font-size:13px}
.etmw-sidebar-help p{margin:6px 0 10px;color:#a9c4d9;font-size:11px;line-height:1.5}
.etmw-sidebar-help a{display:inline-flex;color:#8ff1df!important;font-size:11px;font-weight:850;text-decoration:none}
.etmw-sidebar-help a:hover{text-decoration:underline}

.etmw-account-main{min-width:0;padding:28px 30px 34px;background:#fff}
.etmw-account-heading{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 0 24px;padding:0 0 20px;border-bottom:1px solid #e5edf3}
.etmw-account-heading span{display:block;color:#08a9e0;font-size:10px;font-weight:950;letter-spacing:1.1px;text-transform:uppercase}
.etmw-account-heading h2{margin:5px 0 0;color:#0b2a50;font-size:clamp(26px,3vw,38px);line-height:1.1;letter-spacing:-.5px}
.etmw-account-browse{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:9px 14px;border:1px solid #cfe0eb;border-radius:9px;background:#f5fafc;color:#0b2a50!important;text-decoration:none;font-size:12px;font-weight:850;white-space:nowrap}
.etmw-account-browse:hover{border-color:#9bdcf3;background:#eaf8fd}

/* Keep account content spacious inside the new right-hand workspace. */
.etmw-shell-account .etmw-form{max-width:none}
.etmw-shell-account .etmw-panel{background:#fff}
.etmw-shell-account .etmw-dashboard-welcome,
.etmw-shell-account .etmw-product-center-intro{border:1px solid #dce8f0;background:linear-gradient(135deg,#f7fbfd,#eef8fc)}
.etmw-shell-account .etmw-metrics{grid-template-columns:repeat(4,minmax(0,1fr))}
.etmw-shell-account .etmw-metric{min-height:105px;padding:17px}

/* Profile page: break a long form into easy-to-scan sections. */
.etmw-profile-overview{display:flex;align-items:center;gap:16px;margin:0 0 20px;padding:18px 20px;border:1px solid #dce8f0;border-radius:14px;background:linear-gradient(135deg,#f7fbfd,#eef8fc)}
.etmw-profile-avatar img{display:block;width:78px!important;height:78px!important;border-radius:50%!important;border:4px solid #fff;box-shadow:0 8px 22px rgba(13,35,64,.12)}
.etmw-profile-overview>div:nth-child(2){min-width:0;flex:1}
.etmw-profile-overview span{display:block;color:#08a9e0;font-size:10px;font-weight:950;letter-spacing:1px;text-transform:uppercase}
.etmw-profile-overview h3{margin:4px 0 3px;color:#0b2a50;font-size:24px;line-height:1.15}
.etmw-profile-overview p{overflow:hidden;margin:0;color:#63788d;font-size:13px;text-overflow:ellipsis;white-space:nowrap}
.etmw-profile-form{display:grid;gap:16px}
.etmw-profile-section{display:grid;grid-template-columns:minmax(180px,240px) minmax(0,1fr);gap:24px;padding:22px;border:1px solid #e0eaf1;border-radius:14px;background:#fff;box-shadow:0 8px 24px rgba(13,35,64,.04)}
.etmw-profile-section-head{display:flex;align-items:flex-start;gap:12px}
.etmw-profile-section-head>span{display:grid;place-items:center;flex:0 0 34px;width:34px;height:34px;border-radius:10px;background:#eaf8fd;color:#078bb9;font-size:11px;font-weight:950}
.etmw-profile-section-head h3{margin:1px 0 5px;color:#0b2a50;font-size:16px}
.etmw-profile-section-head p{margin:0;color:#71869a;font-size:12px;line-height:1.55}
.etmw-profile-fields{display:grid;gap:15px;min-width:0}
.etmw-profile-actions{display:flex;align-items:center;gap:9px;justify-content:flex-end;padding-top:2px}

@media(max-width:1180px){
  .etmw-account-layout{grid-template-columns:240px minmax(0,1fr)}
  .etmw-account-main{padding:25px 24px 30px}
  .etmw-shell-account .etmw-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:900px){
  body.etmw-account-page .et-page{padding-top:18px}
  body.etmw-account-page .etmw-wrap{width:min(100% - 20px,1460px)}
  .etmw-account-layout{grid-template-columns:1fr;min-height:0}
  .etmw-account-sidebar{padding:15px 16px;background:linear-gradient(135deg,#0a2848,#0b3a65)}
  .etmw-sidebar-brand{margin:0 0 13px}
  .etmw-sidebar-user{margin:0 0 12px;padding:11px}
  .etmw-sidebar-help{display:none}
  .etmw-account-nav-details{border-top:1px solid rgba(255,255,255,.1);padding-top:10px}
  .etmw-account-nav-details>summary{display:flex;align-items:center;justify-content:space-between;min-height:42px;padding:8px 10px;border-radius:9px;background:rgba(255,255,255,.07);color:#fff;cursor:pointer;font-size:13px;font-weight:850;list-style:none}
  .etmw-account-nav-details>summary::-webkit-details-marker{display:none}
  .etmw-account-nav-details:not([open]) .etmw-account-nav{display:none}
  .etmw-account-nav-details[open] .etmw-summary-arrow{transform:rotate(180deg)}
  .etmw-summary-arrow{font-size:18px;transition:transform .15s}
  .etmw-account-nav{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:10px}
  .etmw-account-nav-group{display:contents}
  .etmw-account-nav-label{display:none}
  .etmw-account-nav-link{min-height:42px;background:rgba(255,255,255,.045)}
  .etmw-account-logout{margin-top:0}
  .etmw-account-main{padding:22px 20px 28px}
  .etmw-account-heading{margin-bottom:20px}
  .etmw-profile-section{grid-template-columns:1fr;gap:17px}
}

@media(max-width:620px){
  body.etmw-account-page .etmw-wrap{width:calc(100% - 12px)}
  body.etmw-account-page .etmw-shell-account{border-radius:13px}
  .etmw-account-sidebar{padding:13px 12px}
  .etmw-sidebar-brand-mark{width:38px;height:38px}
  .etmw-sidebar-user{grid-template-columns:45px minmax(0,1fr)}
  .etmw-sidebar-avatar,.etmw-sidebar-user img{width:45px!important;height:45px!important}
  .etmw-account-nav{grid-template-columns:1fr}
  .etmw-account-main{padding:18px 14px 24px}
  .etmw-account-heading{align-items:flex-start}
  .etmw-account-heading h2{font-size:27px}
  .etmw-account-browse{display:none}
  .etmw-shell-account .etmw-metrics{grid-template-columns:1fr 1fr;gap:9px}
  .etmw-shell-account .etmw-metric{min-height:88px;padding:13px}
  .etmw-shell-account .etmw-metric strong{font-size:22px}
  .etmw-profile-overview{align-items:flex-start;flex-wrap:wrap;padding:15px}
  .etmw-profile-avatar img{width:62px!important;height:62px!important}
  .etmw-profile-overview .etmw-button{width:100%}
  .etmw-profile-section{padding:17px 14px}
  .etmw-profile-actions{display:grid;grid-template-columns:1fr}
  .etmw-profile-actions .etmw-button{width:100%}
}

@media(max-width:390px){
  .etmw-shell-account .etmw-metrics{grid-template-columns:1fr}
}

/* Support Ticket Center v1.11.1 */
.etmw-ticket-intro{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:20px;padding:24px;border:1px solid #d8e7f0;border-radius:15px;background:linear-gradient(135deg,#f4fbfe,#eef8fc)}
.etmw-ticket-intro span,.etmw-ticket-panel-head span{display:block;color:#0aa7c5;font-size:10px;font-weight:950;letter-spacing:1.05px;text-transform:uppercase}
.etmw-ticket-intro h3,.etmw-ticket-panel-head h3{margin:5px 0 7px;color:#0b2a50;font-size:24px;line-height:1.2}
.etmw-ticket-intro p{max-width:760px;margin:0;color:#5f7387;font-size:14px;line-height:1.65}
.etmw-ticket-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-bottom:20px}
.etmw-ticket-metrics>div{padding:18px;border:1px solid #dce8ef;border-radius:13px;background:#fff;box-shadow:0 8px 24px rgba(13,35,64,.055)}
.etmw-ticket-metrics span{display:block;color:#6a7e91;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.45px}
.etmw-ticket-metrics strong{display:block;margin-top:6px;color:#0b2a50;font-size:30px;line-height:1}
.etmw-ticket-list-panel,.etmw-ticket-new,.etmw-ticket-summary,.etmw-ticket-reply-form{margin-bottom:20px;padding:22px;border:1px solid #dce8ef;border-radius:15px;background:#fff}
.etmw-ticket-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:16px}
.etmw-ticket-panel-head small{max-width:360px;color:#718397;font-size:12px;line-height:1.5;text-align:right}
.etmw-ticket-list{display:grid;border:1px solid #e0eaf0;border-radius:12px;overflow:hidden}
.etmw-ticket-row{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 18px;border-bottom:1px solid #e7eef3;color:#0b2a50!important;text-decoration:none!important;transition:background .15s}
.etmw-ticket-row:last-child{border-bottom:0}
.etmw-ticket-row:hover{background:#f5fbfe}
.etmw-ticket-row-main{display:grid;gap:4px;min-width:0}
.etmw-ticket-row-main span{color:#0a9fbd;font-size:10px;font-weight:900;letter-spacing:.4px;text-transform:uppercase}
.etmw-ticket-row-main strong{overflow:hidden;font-size:14px;text-overflow:ellipsis;white-space:nowrap}
.etmw-ticket-row-main small{color:#75889b;font-size:11px}
.etmw-ticket-status{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:5px 10px;border-radius:999px;background:#eef3f6;color:#466075;font-size:10px;font-weight:900;white-space:nowrap;text-transform:uppercase;letter-spacing:.25px}
.etmw-ticket-status.is-awaiting_staff,.etmw-ticket-status.is-open{background:#fff2d8;color:#8a5a00}
.etmw-ticket-status.is-awaiting_member{background:#e6f4ff;color:#0c6097}
.etmw-ticket-status.is-resolved{background:#e3f8ee;color:#08764d}
.etmw-ticket-status.is-closed{background:#edf0f3;color:#63707d}
.etmw-ticket-create-form label>small{color:#768a9d;font-size:11px;font-weight:600}
.etmw-ticket-detail-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px}
.etmw-ticket-detail-head>a{color:#0a93bd!important;font-size:12px;font-weight:850;text-decoration:none}
.etmw-ticket-summary{display:flex;align-items:flex-start;justify-content:space-between;gap:22px;background:linear-gradient(135deg,#f7fbfd,#eef8fc)}
.etmw-ticket-summary>div>span{color:#0aa7c5;font-size:11px;font-weight:950;letter-spacing:.7px;text-transform:uppercase}
.etmw-ticket-summary h3{margin:5px 0 0;color:#0b2a50;font-size:25px;line-height:1.25}
.etmw-ticket-summary dl{display:grid;grid-template-columns:repeat(3,minmax(110px,1fr));gap:10px;margin:0}
.etmw-ticket-summary dl div{padding:10px 12px;border:1px solid #dce8ef;border-radius:10px;background:#fff}
.etmw-ticket-summary dt{color:#718397;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.4px}
.etmw-ticket-summary dd{margin:5px 0 0;color:#0b2a50;font-size:12px;font-weight:850}
.etmw-ticket-thread{display:grid;gap:14px;margin-bottom:20px}
.etmw-ticket-message{max-width:86%;padding:16px 18px;border:1px solid #dce8ef;border-radius:14px;background:#fff;box-shadow:0 8px 24px rgba(13,35,64,.04)}
.etmw-ticket-message-member{justify-self:end;background:#f4fbfe;border-color:#cceaf4}
.etmw-ticket-message-staff{justify-self:start;border-left:4px solid #10b5a7}
.etmw-ticket-message header{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.etmw-ticket-message header img{width:42px!important;height:42px!important;border-radius:50%!important}
.etmw-ticket-message header strong{display:block;color:#0b2a50;font-size:13px}
.etmw-ticket-message header span{display:block;margin-top:2px;color:#7a8c9e;font-size:10px}
.etmw-ticket-message-body{color:#344e68;font-size:13px;line-height:1.65}
.etmw-ticket-message-body p:first-child{margin-top:0}.etmw-ticket-message-body p:last-child{margin-bottom:0}
.etmw-ticket-attachment{display:inline-flex;margin-top:10px;padding:8px 10px;border:1px solid #cfe2ec;border-radius:8px;background:#fff;color:#0a88ad!important;font-size:11px;font-weight:850;text-decoration:none!important}
.etmw-ticket-context{display:grid;gap:7px;padding:14px 16px;border:1px dashed #bed8e5;border-radius:12px;background:#f9fcfe;color:#567084;font-size:12px}
.etmw-ticket-context strong{color:#0b2a50}.etmw-ticket-context span{display:block}
.etmw-ticket-reply-form{display:grid;gap:14px}
.etmw-ticket-reply-form h3{margin:0;color:#0b2a50;font-size:18px}
.etmw-ticket-reply-form label{display:grid;gap:7px;color:#0b2a50;font-size:12px;font-weight:850}
.etmw-ticket-reply-form label span{color:#718397;font-weight:600}
.etmw-ticket-reply-form textarea,.etmw-ticket-reply-form input[type=file]{width:100%;border:1px solid #dce7ef;border-radius:9px;padding:11px;background:#fff;color:#162b47;font:inherit}
.etmw-ticket-close-form{text-align:right}
.etmw-ticket-close-form button{border:0;background:transparent;color:#9b4b52;font-size:11px;font-weight:800;cursor:pointer;text-decoration:underline}
@media(max-width:860px){.etmw-ticket-intro,.etmw-ticket-summary{align-items:flex-start;flex-direction:column}.etmw-ticket-summary dl{width:100%}.etmw-ticket-message{max-width:94%}}
@media(max-width:620px){.etmw-ticket-intro{padding:18px}.etmw-ticket-intro .etmw-button{width:100%}.etmw-ticket-metrics{grid-template-columns:1fr}.etmw-ticket-panel-head{display:block}.etmw-ticket-panel-head small{display:block;margin-top:6px;text-align:left}.etmw-ticket-row{align-items:flex-start;flex-direction:column;gap:10px}.etmw-ticket-summary dl{grid-template-columns:1fr}.etmw-ticket-message{max-width:100%}.etmw-ticket-list-panel,.etmw-ticket-new,.etmw-ticket-summary,.etmw-ticket-reply-form{padding:16px}}

/* ===== 1.11.2 — scalable product centers and separated account categories ===== */
.etmw-center-hero{
  display:flex;align-items:center;justify-content:space-between;gap:24px;margin:0 0 22px;padding:24px;
  border:1px solid #d9e7ef;border-radius:16px;background:linear-gradient(135deg,#f7fcff,#eef9fc);box-shadow:0 8px 24px rgba(13,35,64,.04)
}
.etmw-center-hero>div:first-child{min-width:0;max-width:820px}
.etmw-center-hero span:not(.etmw-state-pill),.etmw-center-hero>div:first-child>span{
  display:block;color:#079cc4;font-size:10px;font-weight:950;letter-spacing:1.05px;text-transform:uppercase
}
.etmw-center-hero h3{margin:5px 0 7px;color:#0b2a50;font-size:clamp(23px,2.4vw,31px);line-height:1.15}
.etmw-center-hero p{margin:0;color:#60768b;font-size:14px;line-height:1.65}
.etmw-center-plan,.etmw-credit-balance{
  flex:0 0 auto;min-width:170px;padding:15px 17px;border:1px solid #d7e6ee;border-radius:13px;background:#fff;text-align:left
}
.etmw-center-plan small,.etmw-credit-balance small{display:block;color:#708397;font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.55px}
.etmw-center-plan strong,.etmw-credit-balance strong{display:block;margin-top:4px;color:#0b2a50;font-size:23px;line-height:1.1}
.etmw-center-plan span{display:block;margin-top:5px;color:#6d8296;font-size:11px;text-transform:none;letter-spacing:0}
.etmw-credit-balance a{display:inline-flex;margin-top:8px;color:#078bb9!important;font-size:12px;font-weight:850;text-decoration:none}
.etmw-state-pill{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;padding:8px 12px;border-radius:999px;background:#e8f7ef;color:#087b3d;font-size:11px;font-weight:900;letter-spacing:.35px;text-transform:uppercase}

.etmw-subnav{
  display:flex;gap:7px;overflow-x:auto;margin:0 0 20px;padding:6px;border:1px solid #dce8f0;border-radius:13px;background:#f8fbfd;
  scrollbar-width:thin;-webkit-overflow-scrolling:touch
}
.etmw-subnav a{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:8px 14px;border-radius:9px;color:#496176!important;font-size:12px;font-weight:850;text-decoration:none!important;white-space:nowrap}
.etmw-subnav a:hover{background:#eaf7fb;color:#087f91!important}
.etmw-subnav a.is-active{background:#0b7285;color:#fff!important;box-shadow:0 7px 16px rgba(11,114,133,.19)}

.etmw-center-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px;margin:0 0 22px}
.etmw-center-card{min-width:0;display:flex;flex-direction:column;min-height:205px;padding:19px;border:1px solid #dfeaf1;border-radius:15px;background:#fff;box-shadow:0 9px 25px rgba(13,35,64,.05);transition:transform .16s,border-color .16s,box-shadow .16s}
.etmw-center-card:hover{transform:translateY(-2px);border-color:#b9ddea;box-shadow:0 15px 34px rgba(13,35,64,.09)}
.etmw-center-card.is-disabled{background:#f8fafb;box-shadow:none;opacity:.78}
.etmw-center-card.is-disabled:hover{transform:none;border-color:#dfeaf1}
.etmw-center-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:13px}
.etmw-center-card-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,#e4f7fd,#eaf8f2);color:#07879b;font-size:21px;font-weight:950}
.etmw-center-badge{display:inline-flex;padding:5px 9px;border-radius:999px;background:#edf6fa;color:#537187;font-size:9px;font-weight:950;letter-spacing:.5px;text-transform:uppercase}
.etmw-center-card h3{margin:0 0 7px;color:#0b2a50;font-size:17px}
.etmw-center-card p{margin:0;color:#62778c;font-size:13px;line-height:1.58}
.etmw-center-card-link{display:inline-flex;align-items:center;gap:6px;margin-top:auto;padding-top:15px;color:#078bb9!important;font-size:12px;font-weight:900;text-decoration:none!important}
.etmw-center-card-link:hover{color:#055f82!important}
.etmw-center-card-link.is-muted{color:#8293a3!important}
.etmw-center-note{margin:18px 0 22px;padding:17px 19px;border:1px solid #d7e7ef;border-left:4px solid #11a6c5;border-radius:12px;background:#f7fbfd}
.etmw-center-note strong{display:block;color:#0b2a50;font-size:14px}
.etmw-center-note p{margin:5px 0 0;color:#60758a;font-size:13px;line-height:1.6}
.etmw-feature-chips{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:22px}
.etmw-feature-chips span{display:inline-flex;align-items:center;min-height:38px;padding:8px 12px;border:1px solid #dbe8ef;border-radius:10px;background:#fff;color:#405a70;font-size:12px;font-weight:800}

.etmw-tool-finder{display:grid;gap:13px;margin:0 0 18px;padding:17px;border:1px solid #dce8ef;border-radius:14px;background:#f8fbfd}
.etmw-tool-finder input{width:100%;min-height:48px;padding:11px 14px;border:1px solid #ccdce6;border-radius:10px;background:#fff;color:#16324f;font-size:14px;outline:none}
.etmw-tool-finder input:focus{border-color:#08a9e0;box-shadow:0 0 0 3px rgba(8,169,224,.12)}
.etmw-tool-filters{display:flex;gap:7px;overflow-x:auto;padding-bottom:2px;scrollbar-width:thin}
.etmw-tool-filters button{flex:0 0 auto;min-height:35px;padding:7px 11px;border:1px solid #cfdee8;border-radius:9px;background:#fff;color:#516a7f;font-size:11px;font-weight:850;cursor:pointer}
.etmw-tool-filters button:hover,.etmw-tool-filters button.is-active{border-color:#0b8fad;background:#0b7285;color:#fff}
.etmw-all-tools-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:15px}
.etmw-all-tool-card{position:relative;min-width:0;display:flex;flex-direction:column;gap:9px;padding:19px;border:1px solid #dfeaf1;border-radius:15px;background:#fff;box-shadow:0 9px 25px rgba(13,35,64,.05)}
.etmw-all-tool-card[hidden]{display:none!important}
.etmw-all-tool-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
.etmw-favourite-tool{display:grid;place-items:center;width:37px;height:37px;border:1px solid #d4e3eb;border-radius:10px;background:#fff;color:#e5a100;font-size:21px;line-height:1;cursor:pointer}
.etmw-favourite-tool:hover{background:#fff8e6;border-color:#f0cf74}
.etmw-all-tool-card h3{margin:0;color:#0b2a50;font-size:18px}
.etmw-all-tool-card p{margin:0;color:#61768a;font-size:13px;line-height:1.55;min-height:60px}
.etmw-all-tool-card small{display:block;margin-top:auto;padding-top:10px;border-top:1px solid #edf3f6;color:#71879a;font-size:11px;font-weight:750}
.etmw-all-tool-card .etmw-button{align-self:flex-start;margin-top:2px;min-height:38px;padding:9px 13px;font-size:12px}
.etmw-tool-no-results{margin-top:18px}
.etmw-download-history-panel{margin-top:24px}

@media(max-width:1100px){
  .etmw-center-grid,.etmw-all-tools-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:720px){
  .etmw-center-hero{align-items:flex-start;flex-direction:column;padding:20px}
  .etmw-center-plan,.etmw-credit-balance,.etmw-center-hero>.etmw-button,.etmw-center-hero>.etmw-state-pill{width:100%}
  .etmw-state-pill{box-sizing:border-box}
  .etmw-center-grid,.etmw-all-tools-grid{grid-template-columns:1fr}
  .etmw-center-card{min-height:0}
  .etmw-all-tool-card p{min-height:0}
  .etmw-subnav{margin-left:-1px;margin-right:-1px}
}
@media(max-width:440px){
  .etmw-center-hero{padding:17px 15px}
  .etmw-center-card,.etmw-all-tool-card{padding:16px}
  .etmw-tool-finder{padding:13px}
}

/* Dashboard test payment card */
.etmw-test-payment-card{overflow:hidden}
.etmw-test-payment-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:14px}
.etmw-test-payment-head>div>span{display:block;margin-bottom:5px;color:#008fa6;font-size:11px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase}
.etmw-test-payment-head h3{margin-bottom:7px}
.etmw-test-payment-head p{margin:0;line-height:1.6}
.etmw-test-badge{flex:0 0 auto;border-radius:999px;background:#fff3cd;color:#7a5700;padding:6px 10px;font-size:11px;font-weight:800;letter-spacing:1px}
.etmw-test-payment-image{display:flex;align-items:center;justify-content:center;border:1px solid #dce7ef;border-radius:14px;background:#eef5fb;padding:14px;min-height:260px}
.etmw-test-payment-image img{display:block;width:auto;max-width:100%;max-height:430px;border-radius:10px;object-fit:contain}
.etmw-test-payment-note{margin:12px 0 0!important;color:#536b80!important;font-size:13px;line-height:1.55}
@media(max-width:800px){.etmw-test-payment-head{align-items:flex-start}.etmw-test-payment-image{min-height:220px;padding:10px}.etmw-test-payment-image img{max-height:380px}}

/* ===== 1.11.6 — uploaded Touch n Go QR + removable download history ===== */
.etmw-test-payment-full{margin-top:16px}
.etmw-test-payment-empty{display:grid;place-items:center;gap:8px;min-height:250px;padding:28px;border:1px dashed #b9d2df;border-radius:14px;background:#f6fbfd;text-align:center}
.etmw-test-payment-empty strong{color:#0b2a50;font-size:18px}
.etmw-test-payment-empty p{max-width:560px;margin:0;color:#60768b;line-height:1.6}
.etmw-test-payment-admin{margin:10px 0 0!important;text-align:center}
.etmw-test-payment-admin a{color:#078bb9!important;font-size:12px;font-weight:850;text-decoration:none}
.etmw-dashboard-download-list{display:grid;gap:10px;margin:12px 0 16px}
.etmw-dashboard-download-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px;border:1px solid #e0eaf0;border-radius:11px;background:#f9fcfe}
.etmw-dashboard-download-row>div:first-child{display:grid;gap:4px;min-width:0}
.etmw-dashboard-download-row strong{overflow:hidden;color:#0b2a50;font-size:13px;text-overflow:ellipsis;white-space:nowrap}
.etmw-dashboard-download-row small{color:#71869a;font-size:11px}
.etmw-download-actions{display:flex;align-items:center;flex-wrap:wrap;gap:8px}
.etmw-download-actions .etmw-button{width:auto!important;min-height:34px;padding:7px 10px;font-size:11px}
.etmw-delete-history{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:7px 10px;border:1px solid #efc6c9;border-radius:8px;background:#fff7f7;color:#a73c45!important;font-size:11px;font-weight:850;text-decoration:none!important;white-space:nowrap}
.etmw-delete-history:hover{border-color:#dc9fa4;background:#fff0f1;color:#8e2731!important}
@media(max-width:620px){
  .etmw-dashboard-download-row{align-items:flex-start;flex-direction:column}
  .etmw-dashboard-download-row .etmw-download-actions{width:100%}
  .etmw-dashboard-download-row .etmw-download-actions>*{flex:1}
  .etmw-download-history-panel .etmw-download-actions{min-width:150px;flex-direction:column;align-items:stretch}
  .etmw-download-history-panel .etmw-delete-history{width:100%;box-sizing:border-box}
}

/* Central-price payment QR */
.etmw-tng-qr canvas,.etmw-tng-qr img,.etmw-tng-qr svg{display:block;width:220px!important;height:220px!important;max-width:100%;object-fit:contain;border-radius:6px}
.etmw-locked-qr-loading,.etmw-locked-qr-error{display:flex;align-items:center;justify-content:center;width:220px;height:220px;max-width:100%;padding:20px;box-sizing:border-box;color:#526a80;font-size:13px;line-height:1.45;text-align:center;background:#f5f8fb;border-radius:8px}
.etmw-locked-qr-error{color:#9b1c1c;background:#fff2f2;border:1px solid #f0b8b8}
.etmw-tng-foot b{display:block;margin-top:8px;color:#17263a!important;font-size:18px}
#etmw_payment_submit:disabled{opacity:.58;cursor:not-allowed}

/* Dedicated QR product profile — v1.13.1 */
.etmw-qr-portal-layout{grid-template-columns:280px minmax(0,1fr)}
.etmw-qr-sidebar{background:#f8faf9;color:#27332f;border-right:1px solid #e1e8e4;box-shadow:none}
.etmw-qr-sidebar .etmw-sidebar-brand{color:#143f34}.etmw-qr-sidebar .etmw-sidebar-brand-mark{background:#2f7d69;color:#fff}
.etmw-qr-sidebar .etmw-sidebar-user{background:#fff;border:1px solid #e2e9e5;color:#25332e}.etmw-qr-sidebar .etmw-sidebar-user span,.etmw-qr-sidebar .etmw-sidebar-user small{color:#68766f}
.etmw-qr-sidebar .etmw-account-nav-label{color:#829089}.etmw-qr-sidebar .etmw-account-nav-link{color:#4e5d56}.etmw-qr-sidebar .etmw-account-nav-link:hover,.etmw-qr-sidebar .etmw-account-nav-link.is-active{background:#eaf2e9;color:#236b55}.etmw-qr-sidebar .etmw-account-nav-link.is-active{border-left:4px solid #5aa63a}
.etmw-qr-nav-count{margin-left:auto;min-width:24px;padding:2px 7px;border-radius:12px;background:#e5eee9;text-align:center}.etmw-qr-back-link{margin-top:16px;border-top:1px solid #e1e8e4;padding-top:16px}
.etmw-qr-sidebar-usage{margin:18px;padding:18px;border:1px solid #dce7e1;background:#fff;border-radius:12px;display:grid;gap:5px}.etmw-qr-sidebar-usage strong{font-size:20px;color:#225f4d}.etmw-qr-sidebar-usage a{color:#2f7d69;font-weight:700}
.etmw-qr-portal-main{padding:34px;background:#fff}.etmw-qr-page-header{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:28px;padding-bottom:22px;border-bottom:1px solid #e5ebe8}.etmw-qr-page-header h1{margin:10px 0 5px;font-size:32px;color:#23312c}.etmw-qr-page-header p{margin:0;color:#68766f}.etmw-qr-page-header div>a{color:#2f7d69;font-weight:700}.etmw-qr-page-header div>span{padding:0 8px;color:#9ba7a1}
.etmw-qr-dashboard-hero{background:linear-gradient(135deg,#eef7f1,#f8fbf9);border:1px solid #dce9e1;color:#21342d}.etmw-qr-panel{border:1px solid #e0e7e3;border-radius:14px;padding:26px;background:#fff;box-shadow:0 8px 24px rgba(27,65,51,.06)}
.etmw-qr-panel-head{display:flex;justify-content:space-between;gap:20px;align-items:center;margin-bottom:24px}.etmw-qr-panel-head h2{margin:4px 0 0}.etmw-qr-panel-head small{color:#74817b;text-transform:uppercase;letter-spacing:.08em;font-weight:700}
.etmw-qr-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.etmw-qr-detail-grid>div{padding:18px;border:1px solid #e6ece9;border-radius:10px;display:grid;gap:7px}.etmw-qr-detail-grid small{color:#738078}.etmw-qr-actions{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}
.etmw-qr-settings-form{display:grid;gap:20px;max-width:760px}.etmw-qr-settings-form>label{display:grid;gap:8px;font-weight:700}.etmw-qr-settings-form select{min-height:48px;border:1px solid #d6dfda;border-radius:8px;padding:0 12px;background:#fff}.etmw-check-row{grid-template-columns:auto 1fr!important;align-items:flex-start}.etmw-check-row small{display:block;color:#74817b;font-weight:400;margin-top:3px}
.etmw-qr-team-row{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:14px;padding:18px 0;border-top:1px solid #e6ece9;border-bottom:1px solid #e6ece9;margin-bottom:20px}.etmw-qr-team-row img{border-radius:50%}.etmw-qr-team-row div{display:grid}.etmw-qr-team-row span{color:#74817b}
.etmw-qr-pricing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.etmw-qr-price-card{border:1px solid #dfe7e3;border-radius:14px;padding:26px;display:grid;gap:20px}.etmw-qr-price-card.is-current{border-color:#5aa63a;box-shadow:0 0 0 3px rgba(90,166,58,.12)}.etmw-qr-price-card h2{margin:4px 0}.etmw-qr-price{font-size:32px;font-weight:800;color:#236b55}.etmw-qr-price small{font-size:14px;color:#74817b}.etmw-qr-price-card ul{list-style:none;padding:0;margin:0;display:grid;gap:9px;color:#4d5c55}
.etmw-empty-state{text-align:center;padding:54px 20px;color:#69766f}.etmw-empty-state strong{display:block;font-size:22px;color:#2a3732}.etmw-empty-state p{max-width:560px;margin:10px auto 20px}.etmw-qr-analytics-list{display:grid}.etmw-qr-analytics-list a{display:flex;justify-content:space-between;align-items:center;padding:16px 4px;border-top:1px solid #e6ece9;color:#293832}.etmw-qr-analytics-list a span{display:grid}.etmw-qr-analytics-list small{color:#74817b}
@media(max-width:900px){.etmw-qr-portal-layout{grid-template-columns:1fr}.etmw-qr-sidebar{border-right:0}.etmw-qr-portal-main{padding:20px}.etmw-qr-detail-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.etmw-qr-pricing-grid{grid-template-columns:1fr}}
@media(max-width:560px){.etmw-qr-page-header{display:grid}.etmw-qr-detail-grid{grid-template-columns:1fr}.etmw-qr-portal-main{padding:14px}.etmw-qr-page-header h1{font-size:27px}}

@media(max-width:480px){.etmw-tng-qr svg{width:180px!important;height:180px!important}}

/* v1.13.5 — editable QR folders */
.etmw-folder-row{display:grid;gap:6px;padding:8px;border:1px solid #dce7ef;border-radius:9px;background:#fff}
.etmw-folder-row input{width:100%;min-height:36px;border:1px solid #dce7ef;border-radius:7px;padding:7px 9px;background:#fff;color:#162b47;font:inherit;font-size:12px;font-weight:750}
.etmw-folder-actions{display:grid;grid-template-columns:1fr 1fr;gap:6px}
.etmw-folder-actions button{min-height:31px;border:1px solid #cfe0eb;border-radius:7px;background:#fff;color:#0b2a50;padding:5px 7px;font-size:11px;font-weight:850;cursor:pointer}
.etmw-folder-actions .etmw-folder-delete{border-color:#f3c3c7;color:#b4232c;background:#fff7f7}


/* v1.13.26: standardized exact-price QR plan payment panel. */
.etmw-qr-exact-payment{padding:24px!important}
.etmw-qr-payment-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:20px}
.etmw-qr-payment-option{display:flex;flex-direction:column;min-height:210px;padding:22px;border:1px solid #cfdee9;border-radius:16px;background:linear-gradient(180deg,#fff,#f8fbfd);color:#0d2742!important;text-decoration:none!important;box-shadow:0 12px 30px rgba(13,39,66,.06);transition:.18s}
.etmw-qr-payment-option:hover{transform:translateY(-2px);border-color:#159d91;box-shadow:0 18px 38px rgba(13,148,136,.13)}
.etmw-qr-payment-option.is-featured{border:1.5px solid #159d91;background:linear-gradient(145deg,#effcf8,#f7fffd)}
.etmw-qr-payment-option small{color:#147c73;font-size:12px;font-weight:900;letter-spacing:.7px;text-transform:uppercase}
.etmw-qr-payment-option strong{display:block;margin:12px 0 8px;color:#0b2540;font-size:34px;line-height:1;font-weight:900;letter-spacing:-1px}
.etmw-qr-payment-option strong span{margin-left:5px;color:#61758a;font-size:14px;letter-spacing:0}
.etmw-qr-payment-option em{flex:1;color:#5d7186;font-size:14px;line-height:1.55;font-style:normal}
.etmw-qr-payment-option b{display:block;margin-top:18px;padding:13px 15px;border-radius:10px;background:#177f75;color:#fff;text-align:center;font-size:14px}
.etmw-qr-payment-steps{margin-top:18px}
.etmw-qr-exact-actions{display:flex;gap:10px;flex-wrap:wrap}
@media(max-width:700px){.etmw-qr-payment-options{grid-template-columns:1fr}.etmw-qr-exact-actions .etmw-button{width:100%}}


/* v1.13.27 — EasyTools slate brand surfaces (#4B627F).
   Dark/black interface surfaces are standardized without changing plan logic,
   pricing, QR generation, licences, payments or download permissions. */
:root{--et-brand-slate:#4B627F}

/* Member/profile dashboards and product-center dark panels. */
.etmw-product-hero,
.etmw-plan-current,
.etmw-account-sidebar,
.etmw-upgrade-link{
  background:#4B627F!important;
  border-color:#4B627F!important;
}
@media(max-width:900px){
  .etmw-account-sidebar{background:#4B627F!important}
}

/* The dedicated QR member sidebar previously overrode the account sidebar with white. */
.etmw-qr-sidebar{
  background:#4B627F!important;
  color:#fff!important;
  border-color:rgba(255,255,255,.16)!important;
}
.etmw-qr-sidebar .etmw-sidebar-brand,
.etmw-qr-sidebar .etmw-sidebar-brand strong,
.etmw-qr-sidebar .etmw-sidebar-user,
.etmw-qr-sidebar .etmw-sidebar-user strong,
.etmw-qr-sidebar .etmw-account-nav-label,
.etmw-qr-sidebar .etmw-account-nav-link,
.etmw-qr-sidebar .etmw-qr-back-link{
  color:#fff!important;
}
.etmw-qr-sidebar .etmw-sidebar-brand small,
.etmw-qr-sidebar .etmw-sidebar-user span,
.etmw-qr-sidebar .etmw-sidebar-user small{
  color:#e3eaf2!important;
}
.etmw-qr-sidebar .etmw-sidebar-user,
.etmw-qr-sidebar .etmw-sidebar-usage{
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.22)!important;
}
.etmw-qr-sidebar .etmw-account-nav-link:hover,
.etmw-qr-sidebar .etmw-account-nav-link.is-active{
  background:rgba(255,255,255,.16)!important;
  border-color:rgba(255,255,255,.22)!important;
  color:#fff!important;
}
.etmw-qr-sidebar .etmw-qr-nav-count{
  background:rgba(255,255,255,.16)!important;
  color:#fff!important;
}

/* Exact-price Touch 'n Go / DuitNow checkout card. */
.etmw-tng-pay{
  background:#4B627F!important;
  border-color:#4B627F!important;
  color:#fff!important;
  box-shadow:0 18px 40px rgba(75,98,127,.28)!important;
}
.etmw-tng-head .etmw-tng-badge{
  background:rgba(255,255,255,.16)!important;
  border-color:rgba(255,255,255,.30)!important;
  color:#fff!important;
}
.etmw-tng-head h3,
.etmw-tng-head p,
.etmw-tng-foot span,
.etmw-tng-foot strong,
.etmw-tng-foot b,
.etmw-tng-note{
  color:#fff!important;
}
.etmw-tng-head p,
.etmw-tng-foot span,
.etmw-tng-note{opacity:.9!important}
.etmw-tng-qr{box-shadow:0 10px 25px rgba(20,32,48,.24)!important}

/* Remaining reusable dark buttons/pills. */
.etmw-nav a.is-active,
.etmw-button:hover{
  background:#4B627F!important;
  border-color:#4B627F!important;
}


/* v1.13.28 — restore readable profile/member navigation after slate branding. */
.etmw-account-sidebar,
.etmw-qr-sidebar{
  color:#fff!important;
}
.etmw-account-sidebar .etmw-sidebar-brand,
.etmw-account-sidebar .etmw-sidebar-brand strong,
.etmw-account-sidebar .etmw-sidebar-brand small,
.etmw-account-sidebar .etmw-account-nav-label,
.etmw-account-sidebar .etmw-account-nav-details>summary,
.etmw-account-sidebar .etmw-summary-arrow,
.etmw-account-sidebar .etmw-sidebar-help,
.etmw-account-sidebar .etmw-sidebar-help strong,
.etmw-account-sidebar .etmw-sidebar-help p,
.etmw-qr-sidebar .etmw-sidebar-brand,
.etmw-qr-sidebar .etmw-sidebar-brand strong,
.etmw-qr-sidebar .etmw-sidebar-brand small,
.etmw-qr-sidebar .etmw-account-nav-label,
.etmw-qr-sidebar .etmw-account-nav-details>summary,
.etmw-qr-sidebar .etmw-summary-arrow{
  color:#fff!important;
}
.etmw-account-sidebar .etmw-sidebar-brand small,
.etmw-account-sidebar .etmw-account-nav-label,
.etmw-account-sidebar .etmw-sidebar-help p,
.etmw-qr-sidebar .etmw-sidebar-brand small,
.etmw-qr-sidebar .etmw-account-nav-label{
  color:#e6edf5!important;
}
.etmw-account-sidebar .etmw-sidebar-user,
.etmw-qr-sidebar .etmw-sidebar-user{
  background:rgba(255,255,255,.10)!important;
  border-color:rgba(255,255,255,.22)!important;
  color:#fff!important;
}
.etmw-account-sidebar .etmw-sidebar-user>div,
.etmw-account-sidebar .etmw-sidebar-user strong,
.etmw-account-sidebar .etmw-sidebar-user span,
.etmw-account-sidebar .etmw-sidebar-user small,
.etmw-qr-sidebar .etmw-sidebar-user>div,
.etmw-qr-sidebar .etmw-sidebar-user strong,
.etmw-qr-sidebar .etmw-sidebar-user span,
.etmw-qr-sidebar .etmw-sidebar-user small{
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
}
.etmw-account-sidebar .etmw-sidebar-user strong,
.etmw-qr-sidebar .etmw-sidebar-user strong{
  color:#fff!important;
}
.etmw-account-sidebar .etmw-sidebar-user span,
.etmw-qr-sidebar .etmw-sidebar-user span{
  color:#edf3f8!important;
  padding:0!important;
}
.etmw-account-sidebar .etmw-sidebar-user small,
.etmw-qr-sidebar .etmw-sidebar-user small{
  background:rgba(21,157,145,.32)!important;
  color:#fff!important;
  padding:4px 9px!important;
}
.etmw-account-sidebar .etmw-account-nav-link,
.etmw-qr-sidebar .etmw-account-nav-link{
  background:rgba(255,255,255,.08)!important;
  border:1px solid rgba(255,255,255,.12)!important;
  color:#fff!important;
  box-shadow:none!important;
}
.etmw-account-sidebar .etmw-account-nav-link span,
.etmw-qr-sidebar .etmw-account-nav-link span,
.etmw-account-sidebar .etmw-account-nav-link svg,
.etmw-qr-sidebar .etmw-account-nav-link svg{
  color:inherit!important;
  fill:currentColor!important;
}
.etmw-account-sidebar .etmw-account-nav-link:hover,
.etmw-account-sidebar .etmw-account-nav-link:focus-visible,
.etmw-qr-sidebar .etmw-account-nav-link:hover,
.etmw-qr-sidebar .etmw-account-nav-link:focus-visible{
  background:#fff!important;
  border-color:#fff!important;
  color:#29425d!important;
  transform:translateX(2px);
}
.etmw-account-sidebar .etmw-account-nav-link.is-active,
.etmw-account-sidebar .etmw-account-nav-link[aria-current="page"],
.etmw-qr-sidebar .etmw-account-nav-link.is-active,
.etmw-qr-sidebar .etmw-account-nav-link[aria-current="page"]{
  background:#0d9488!important;
  border-color:#27b7aa!important;
  color:#fff!important;
  box-shadow:0 10px 24px rgba(13,148,136,.28)!important;
}
.etmw-account-sidebar .etmw-sidebar-help{
  background:rgba(255,255,255,.08)!important;
  border-color:rgba(255,255,255,.14)!important;
}
.etmw-account-sidebar .etmw-sidebar-help a{
  background:#fff!important;
  color:#29425d!important;
  border-color:#fff!important;
}
.etmw-account-sidebar .etmw-sidebar-help a:hover{
  background:#dff6f1!important;
  color:#1b5f59!important;
}
.etmw-account-main .etmw-button,
.etmw-qr-portal-main .etmw-button{
  color:#fff!important;
}
.etmw-account-main .etmw-button-light,
.etmw-qr-portal-main .etmw-button-light{
  background:#fff!important;
  border-color:#c9d8e4!important;
  color:#203a56!important;
}
.etmw-account-main .etmw-button:hover,
.etmw-account-main .etmw-button:focus-visible,
.etmw-qr-portal-main .etmw-button:hover,
.etmw-qr-portal-main .etmw-button:focus-visible{
  background:#4B627F!important;
  border-color:#4B627F!important;
  color:#fff!important;
}
.etmw-account-main .etmw-button-light:hover,
.etmw-account-main .etmw-button-light:focus-visible,
.etmw-qr-portal-main .etmw-button-light:hover,
.etmw-qr-portal-main .etmw-button-light:focus-visible{
  background:#eef4f8!important;
  border-color:#9fb4c6!important;
  color:#203a56!important;
}


/* ===== v1.13.31 — My Account premium shop refresh ===== */
.etmw-account-shop{scroll-margin-top:120px;margin:34px 0 24px}
.etmw-account-pay-intro{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(420px,.92fr);gap:30px;align-items:center;padding:30px;border:1px solid #cfe0eb;border-radius:22px;background:linear-gradient(135deg,#f7fbfc 0%,#eef6f8 52%,#edf7f3 100%);box-shadow:0 16px 40px rgba(13,35,64,.06)}
.etmw-account-pay-intro>div>span,.etmw-panel-title-row span{display:block;color:#0b8f85;font-size:10px;font-weight:950;letter-spacing:1.05px;text-transform:uppercase}
.etmw-account-pay-intro h3{margin:6px 0 10px;color:#0b2a50;font-size:clamp(23px,2.35vw,31px);line-height:1.16;letter-spacing:-.45px;max-width:13ch}
.etmw-account-pay-intro p{margin:0;max-width:62ch;color:#60758a;font-size:14px;line-height:1.68}
.etmw-account-pay-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.etmw-account-pay-step{display:flex;align-items:center;gap:14px;min-width:0;min-height:120px;padding:18px 16px;border:1px solid #d7e6ed;border-radius:18px;background:#fff;color:#3d546a;box-shadow:0 10px 26px rgba(13,35,64,.04)}
.etmw-account-pay-step b{display:grid;place-items:center;flex:0 0 46px;width:46px;height:46px;border-radius:50%;background:#5a718e;color:#fff;font-size:22px;font-weight:900;line-height:1}
.etmw-account-pay-step strong{display:block;color:#4a5f76;font-size:15px;font-weight:900;line-height:1.28;letter-spacing:-.2px}
.etmw-account-shop-filters{display:flex;gap:8px;overflow-x:auto;margin:20px 0 16px;padding:6px;border:1px solid #dbe7ef;border-radius:15px;background:#f7fafc;scrollbar-width:thin;-webkit-overflow-scrolling:touch}
.etmw-account-shop-filter{flex:0 0 auto;min-height:42px;padding:9px 15px;border:0;border-radius:10px;background:transparent;color:#50677d;font:inherit;font-size:12px;font-weight:850;cursor:pointer;white-space:nowrap;transition:.15s}
.etmw-account-shop-filter:hover{background:#e8f3f7;color:#0b6572}
.etmw-account-shop-filter.is-active{background:#4B627F;color:#fff;box-shadow:0 7px 16px rgba(75,98,127,.22)}
.etmw-account-shop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.etmw-account-shop-card{position:relative;display:flex;flex-direction:column;min-width:0;padding:22px;border:1px solid #dae6ee;border-radius:18px;background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);box-shadow:0 10px 28px rgba(13,35,64,.05);transition:transform .16s,box-shadow .16s,border-color .16s}
.etmw-account-shop-card:hover{transform:translateY(-2px);border-color:#b4d8e2;box-shadow:0 16px 38px rgba(13,35,64,.09)}
.etmw-account-shop-card.is-featured{border-color:#9ccfc8;background:linear-gradient(180deg,#f6fffc 0%,#ffffff 100%);box-shadow:0 14px 32px rgba(13,148,136,.08)}
.etmw-account-shop-card.is-featured:before{content:"";position:absolute;inset:0 0 auto 0;height:4px;border-radius:18px 18px 0 0;background:linear-gradient(90deg,#0d9488,#4B627F)}
.etmw-account-shop-card[hidden]{display:none!important}
.etmw-account-shop-card-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:14px}
.etmw-account-shop-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#e8f2f7;color:#36526f;font-size:15px;font-weight:950}
.etmw-account-shop-card.is-featured .etmw-account-shop-icon{background:#dff7f1;color:#0c786c}
.etmw-account-shop-status{display:inline-flex;align-items:center;min-height:25px;padding:5px 9px;border-radius:999px;background:#eef3f6;color:#577084;font-size:9px;font-weight:950;letter-spacing:.35px;text-transform:uppercase;white-space:nowrap}
.etmw-account-shop-status.is-current,.etmw-account-shop-status.is-owned{background:#e4f7ed;color:#08784b}
.etmw-account-shop-status.is-included{background:#e5f3fb;color:#0b6999}
.etmw-account-shop-status.is-upgrade{background:#fff2d8;color:#8b5b00}
.etmw-account-shop-status.is-pending{background:#fff0d9;color:#955900}
.etmw-account-shop-card>small{color:#0b8794;font-size:10px;font-weight:950;letter-spacing:.7px;text-transform:uppercase}
.etmw-account-shop-card h3{margin:7px 0 2px;color:#0b2a50;font-size:16px;line-height:1.28;letter-spacing:-.2px}
.etmw-account-shop-price{display:flex;align-items:flex-end;gap:4px;flex-wrap:wrap;margin:4px 0 10px;color:#0b2a50;line-height:1}
.etmw-account-shop-price .etmw-price-amount{font-size:18px;font-weight:950;letter-spacing:-.35px}
.etmw-account-shop-price .etmw-price-suffix{font-size:11px;font-weight:800;color:#617488;line-height:1.2;transform:translateY(-1px)}
.etmw-account-shop-price .etmw-price-custom{font-size:15px;font-weight:900;color:#0b2a50;letter-spacing:-.1px}
.etmw-account-shop-card>p{min-height:58px;margin:0;color:#60758a;font-size:13px;line-height:1.56}
.etmw-account-shop-card ul{display:grid;gap:7px;flex:1;margin:14px 0 18px;padding:0;list-style:none}
.etmw-account-shop-card li{position:relative;padding-left:20px;color:#465f75;font-size:12px;line-height:1.45}
.etmw-account-shop-card li:before{content:"✓";position:absolute;left:0;color:#0c897c;font-weight:950}
.etmw-account-shop-action{display:flex;align-items:center;justify-content:center;min-height:46px;margin-top:auto;padding:10px 14px;border:1px solid #4B627F;border-radius:12px;background:#4B627F;color:#fff!important;font-size:12px;font-weight:900;text-align:center;text-decoration:none!important;box-shadow:0 8px 18px rgba(75,98,127,.17);transition:.15s}
.etmw-account-shop-action:hover{border-color:#0d9488;background:#0d9488;transform:translateY(-1px)}
.etmw-account-shop-action.is-disabled{border-color:#d6e0e7;background:#edf2f5;color:#7d8e9d!important;box-shadow:none;cursor:not-allowed}
.etmw-account-history-grid{margin-top:24px}
.etmw-panel-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:15px;margin-bottom:14px}
.etmw-panel-title-row h3{margin:4px 0 0;color:#0b2a50;font-size:19px}
.etmw-panel-title-row>a{color:#0b7888!important;font-size:12px;font-weight:850;text-decoration:none}
.etmw-empty-state.is-small{padding:20px}
.etmw-empty-state.is-small h3{font-size:16px}
.etmw-empty-state.is-small p{margin-bottom:0;font-size:13px}
@media(max-width:1180px){.etmw-account-shop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.etmw-account-pay-intro{grid-template-columns:1fr}.etmw-account-pay-intro h3{max-width:none}.etmw-account-pay-steps{max-width:none}}
@media(max-width:780px){.etmw-account-shop-grid{grid-template-columns:1fr}.etmw-account-pay-intro{padding:21px 18px;gap:18px}.etmw-account-pay-steps{grid-template-columns:1fr;gap:12px}.etmw-account-pay-step{min-height:0;padding:14px 14px;border-radius:16px}.etmw-account-pay-step b{flex-basis:40px;width:40px;height:40px;font-size:20px}.etmw-account-pay-step strong{font-size:14px}.etmw-account-shop-card{padding:18px}.etmw-account-shop-card>p{min-height:0}.etmw-panel-title-row{align-items:flex-start}}


/* ===== v1.13.32 — hover/readability fix for My Products and QR member navigation ===== */
.etmw-product-tab,
.etmw-product-tab:visited{
  color:#3f7dbc!important;
  background:transparent!important;
  border:1px solid transparent;
}
.etmw-product-tab:hover,
.etmw-product-tab:focus-visible{
  color:#ffffff!important;
  background:#4B627F!important;
  border-color:#4B627F!important;
  box-shadow:0 9px 18px rgba(75,98,127,.18)!important;
  outline:none;
}
.etmw-product-tab.is-active,
.etmw-product-tab.is-active:hover,
.etmw-product-tab.is-active:focus-visible,
.etmw-product-tab[aria-current="page"]{
  color:#ffffff!important;
  background:#3a7c8e!important;
  border-color:#3a7c8e!important;
  box-shadow:0 10px 22px rgba(58,124,142,.22)!important;
}

.etmw-account-sidebar .etmw-account-nav-link,
.etmw-qr-sidebar .etmw-account-nav-link{
  text-decoration:none!important;
}
.etmw-account-sidebar .etmw-account-nav-link span,
.etmw-account-sidebar .etmw-account-nav-link strong,
.etmw-account-sidebar .etmw-account-nav-link small,
.etmw-account-sidebar .etmw-account-nav-link b,
.etmw-account-sidebar .etmw-account-nav-link em,
.etmw-account-sidebar .etmw-account-nav-link i,
.etmw-qr-sidebar .etmw-account-nav-link span,
.etmw-qr-sidebar .etmw-account-nav-link strong,
.etmw-qr-sidebar .etmw-account-nav-link small,
.etmw-qr-sidebar .etmw-account-nav-link b,
.etmw-qr-sidebar .etmw-account-nav-link em,
.etmw-qr-sidebar .etmw-account-nav-link i{
  color:inherit!important;
  background:transparent!important;
  -webkit-text-fill-color:currentColor!important;
  opacity:1!important;
}
.etmw-account-sidebar .etmw-account-nav-link:hover,
.etmw-account-sidebar .etmw-account-nav-link:focus-visible,
.etmw-qr-sidebar .etmw-account-nav-link:hover,
.etmw-qr-sidebar .etmw-account-nav-link:focus-visible{
  background:#f7fbff!important;
  border-color:#d7e5f0!important;
  color:#29425d!important;
}
.etmw-account-sidebar .etmw-account-nav-link.is-active,
.etmw-account-sidebar .etmw-account-nav-link[aria-current="page"],
.etmw-qr-sidebar .etmw-account-nav-link.is-active,
.etmw-qr-sidebar .etmw-account-nav-link[aria-current="page"]{
  background:#0d9488!important;
  border-color:#27b7aa!important;
  color:#ffffff!important;
}
.etmw-qr-sidebar .etmw-account-nav-link .etmw-qr-nav-count,
.etmw-account-sidebar .etmw-account-nav-link .etmw-qr-nav-count{
  background:rgba(255,255,255,.16)!important;
  color:inherit!important;
  border:1px solid rgba(255,255,255,.08);
}
.etmw-qr-sidebar .etmw-account-nav-link:hover .etmw-qr-nav-count,
.etmw-account-sidebar .etmw-account-nav-link:hover .etmw-qr-nav-count,
.etmw-qr-sidebar .etmw-account-nav-link:focus-visible .etmw-qr-nav-count,
.etmw-account-sidebar .etmw-account-nav-link:focus-visible .etmw-qr-nav-count{
  background:#e6eef5!important;
  color:#29425d!important;
  border-color:#d7e5f0!important;
}
.etmw-qr-sidebar .etmw-account-nav-link.is-active .etmw-qr-nav-count,
.etmw-account-sidebar .etmw-account-nav-link.is-active .etmw-qr-nav-count,
.etmw-qr-sidebar .etmw-account-nav-link[aria-current="page"] .etmw-qr-nav-count,
.etmw-account-sidebar .etmw-account-nav-link[aria-current="page"] .etmw-qr-nav-count{
  background:rgba(255,255,255,.2)!important;
  color:#ffffff!important;
  border-color:rgba(255,255,255,.24)!important;
}


/* ===== v1.13.33 — My Account premium step cards ===== */
.etmw-account-pay-intro{
  grid-template-columns:minmax(0,1.05fr) minmax(520px,.95fr);
  gap:32px;
}
.etmw-account-pay-steps{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.etmw-account-pay-step{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  gap:14px;
  min-height:168px;
  padding:22px 20px;
  border:1px solid #d5e3ea;
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%);
  color:#3d546a;
  box-shadow:0 14px 34px rgba(13,35,64,.06);
}
.etmw-account-pay-step b{
  display:grid;
  place-items:center;
  flex:0 0 auto;
  width:58px;
  height:58px;
  border-radius:999px;
  background:linear-gradient(180deg,#627a99 0%,#4B627F 100%);
  color:#fff;
  font-size:28px;
  font-weight:950;
  line-height:1;
  box-shadow:0 10px 22px rgba(75,98,127,.22);
}
.etmw-account-pay-step > div{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:0;
}
.etmw-account-pay-step strong{
  display:block;
  color:#233f5d;
  font-size:20px;
  font-weight:900;
  line-height:1.18;
  letter-spacing:-.35px;
}
.etmw-account-pay-step small{
  display:block;
  color:#667b90;
  font-size:13px;
  font-weight:700;
  line-height:1.55;
}
@media(max-width:1260px){
  .etmw-account-pay-intro{grid-template-columns:1fr}
}
@media(max-width:780px){
  .etmw-account-pay-intro{padding:21px 18px;gap:18px}
  .etmw-account-pay-steps{grid-template-columns:1fr;gap:12px}
  .etmw-account-pay-step{
    flex-direction:row;
    align-items:center;
    min-height:0;
    padding:16px 16px;
    border-radius:18px;
    gap:14px;
  }
  .etmw-account-pay-step b{
    width:46px;
    height:46px;
    font-size:22px;
    box-shadow:none;
  }
  .etmw-account-pay-step strong{font-size:16px;line-height:1.24}
  .etmw-account-pay-step small{font-size:12px;line-height:1.45}
}


/* v1.13.34: shared Touch n Go image branding without changing the QR code itself. */
.etmw-tng-qr.is-shared-payment-image{
  position:relative;
  overflow:hidden;
}
.etmw-tng-qr.is-shared-payment-image .etmw-shared-payment-brand{
  position:absolute;
  top:57px;
  left:50%;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:128px;
  min-height:30px;
  padding:3px 8px;
  transform:translateX(-50%);
  border-radius:4px;
  background:#fff;
  color:#15304d;
  font-size:14px;
  font-weight:900;
  line-height:1;
  letter-spacing:.2px;
  box-shadow:0 0 0 2px #fff;
  pointer-events:none;
}
@media(max-width:480px){
  .etmw-tng-qr.is-shared-payment-image .etmw-shared-payment-brand{
    top:46px;
    width:105px;
    min-height:24px;
    font-size:12px;
  }
}


/* v1.13.36 — profile access to the canonical Site Migrator package. */
.etmw-profile-overview-actions{display:flex;align-items:center;flex-wrap:wrap;justify-content:flex-end;gap:8px}
.etmw-profile-overview-actions .etmw-button{width:auto}
@media(max-width:700px){
  .etmw-profile-overview-actions{width:100%;justify-content:stretch}
  .etmw-profile-overview-actions .etmw-button{width:100%}
}


/* v1.13.38: show the exact uploaded payment QR image without overlays or distortion. */
.etmw-tng-qr.is-shared-payment-image{
  width:min(100%,340px);
  padding:14px;
  background:#fff;
}
.etmw-tng-qr.is-shared-payment-image img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  max-width:320px!important;
  max-height:none!important;
  object-fit:contain!important;
  border-radius:8px;
}
.etmw-tng-qr.is-shared-payment-image .etmw-shared-payment-brand{display:none!important}
@media(max-width:480px){
  .etmw-tng-qr.is-shared-payment-image{width:min(100%,290px)}
  .etmw-tng-qr.is-shared-payment-image img{max-width:270px!important;height:auto!important}
}


/* v1.13.45 — compact QR navigation and payment-style QR pricing. */
.etmw-qr-portal-layout{
  grid-template-columns:240px minmax(0,1fr)!important;
}
.etmw-qr-sidebar .etmw-account-nav{
  gap:8px!important;
}
.etmw-qr-sidebar .etmw-account-nav-group{
  gap:7px!important;
}
.etmw-qr-sidebar .etmw-account-nav-link{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:11px!important;
  min-height:48px!important;
  padding:10px 13px!important;
  border-radius:10px!important;
  text-align:left!important;
  white-space:nowrap!important;
}
.etmw-qr-sidebar .etmw-account-nav-link svg{
  flex:0 0 19px!important;
  width:19px!important;
  height:19px!important;
  margin:0!important;
}
.etmw-qr-sidebar .etmw-account-nav-link>span{
  display:block!important;
  flex:1 1 auto!important;
  min-width:0!important;
  margin:0!important;
  line-height:1.2!important;
  font-size:14px!important;
  font-weight:800!important;
}
.etmw-qr-sidebar .etmw-qr-nav-count{
  flex:0 0 auto!important;
  margin-left:auto!important;
}
.etmw-qr-sidebar .etmw-account-nav-label{
  margin:14px 2px 4px!important;
  padding:0!important;
  font-size:11px!important;
  letter-spacing:.08em!important;
}
.etmw-qr-sidebar .etmw-qr-back-link{
  margin-top:10px!important;
  padding-top:10px!important;
}

.etmw-qr-plan-showcase{
  padding:8px 0 4px;
}
.etmw-qr-plan-intro{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  margin-bottom:34px;
}
.etmw-qr-plan-intro small{
  display:block;
  margin-bottom:12px;
  color:#078aa0;
  font-size:13px;
  font-weight:900;
  letter-spacing:.13em;
}
.etmw-qr-plan-intro h1{
  margin:0 0 12px;
  color:#0b2847;
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
}
.etmw-qr-plan-intro p{
  max-width:920px;
  margin:0;
  color:#29415e;
  font-size:18px;
  line-height:1.6;
}
.etmw-qr-plan-badge{
  flex:0 0 auto;
  padding:15px 22px;
  border-radius:999px;
  background:#fff1c6;
  color:#75520c;
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
}
.etmw-qr-pricing-grid{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:24px!important;
}
.etmw-qr-price-card{
  min-height:390px!important;
  padding:42px 38px!important;
  border:1.5px solid #cbddea!important;
  border-radius:24px!important;
  background:#fff!important;
  box-shadow:none!important;
  display:flex!important;
  flex-direction:column!important;
  gap:0!important;
}
.etmw-qr-price-card.is-featured{
  border:2px solid #109d91!important;
  background:linear-gradient(145deg,#effbf8,#f9fffd)!important;
}
.etmw-qr-price-card.is-current{
  box-shadow:0 0 0 4px rgba(16,157,145,.12)!important;
}
.etmw-qr-price-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.etmw-qr-price-card-head h2{
  margin:0!important;
  color:#147a73!important;
  font-size:19px!important;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.etmw-qr-price-card-head span{
  padding:6px 10px;
  border-radius:999px;
  background:#dff5f1;
  color:#137a72;
  font-size:11px;
  font-weight:900;
}
.etmw-qr-price{
  margin:30px 0 16px!important;
  color:#082847!important;
  font-size:clamp(46px,5vw,64px)!important;
  font-weight:900!important;
  line-height:1!important;
  letter-spacing:-.04em;
}
.etmw-qr-price small{
  margin-left:7px;
  color:#5b7088!important;
  font-size:22px!important;
  letter-spacing:0;
}
.etmw-qr-price-card>p{
  flex:1 1 auto;
  margin:0 0 30px;
  color:#5a7088;
  font-size:18px;
  line-height:1.55;
}
.etmw-qr-plan-pay{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:64px;
  padding:16px 22px;
  border-radius:14px;
  background:#19887e;
  color:#fff!important;
  text-decoration:none!important;
  font-size:18px;
  font-weight:900;
  transition:transform .15s,background .15s;
}
.etmw-qr-plan-pay:hover{
  background:#11776e;
  color:#fff!important;
  transform:translateY(-1px);
}
.etmw-qr-plan-pay span{
  margin-left:8px;
  font-size:26px;
}
.etmw-qr-plan-steps{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}
.etmw-qr-plan-steps>div{
  display:flex;
  align-items:center;
  gap:15px;
  min-height:90px;
  padding:18px 24px;
  border:1px solid #cbddea;
  border-radius:16px;
  background:#fff;
}
.etmw-qr-plan-steps b{
  display:grid;
  place-items:center;
  flex:0 0 42px;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#0da9dc;
  color:#fff;
  font-size:18px;
}
.etmw-qr-plan-steps strong{
  color:#314962;
  font-size:16px;
}

@media(max-width:900px){
  .etmw-qr-portal-layout{grid-template-columns:1fr!important}
  .etmw-qr-pricing-grid{grid-template-columns:1fr!important}
  .etmw-qr-sidebar .etmw-account-nav-link{white-space:normal!important}
}
@media(max-width:680px){
  .etmw-qr-plan-intro{display:block}
  .etmw-qr-plan-badge{display:inline-block;margin-top:18px}
  .etmw-qr-price-card{min-height:0!important;padding:28px 22px!important}
  .etmw-qr-plan-steps{grid-template-columns:1fr}
}


/* My QR Codes — simplified member experience */
.etmw-myqr{display:grid;gap:22px}
.etmw-myqr-header{display:flex;align-items:center;justify-content:space-between;gap:20px}
.etmw-myqr-header h2{margin:0 0 6px;font-size:30px;line-height:1.15}
.etmw-myqr-header p{margin:0;color:#5f7288}
.etmw-myqr-create{white-space:nowrap}
.etmw-myqr-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.etmw-myqr-stat{padding:18px 20px;border:1px solid #d9e5ef;border-radius:16px;background:#fff;box-shadow:0 8px 20px rgba(11,42,80,.04)}
.etmw-myqr-stat span{display:block;color:#60758d;font-size:13px;font-weight:700;margin-bottom:8px}
.etmw-myqr-stat strong{display:block;color:#0b2a50;font-size:28px;line-height:1}
.etmw-myqr-welcome{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px;padding:24px;border:1px solid #cfe0ec;border-radius:18px;background:linear-gradient(135deg,#f6fbff,#eefaf8)}
.etmw-myqr-welcome h3{margin:0 0 6px}
.etmw-myqr-welcome p{margin:0;color:#5f7288;max-width:720px}
.etmw-myqr-welcome-icon,.etmw-myqr-empty-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:15px;background:#149b90;color:#fff;font-weight:800;letter-spacing:.06em}
.etmw-myqr-list{padding:0;overflow:visible}
.etmw-myqr-tabs{display:flex;gap:8px;padding:18px 20px 0;border-bottom:1px solid #e4edf4;overflow-x:auto}
.etmw-myqr-tabs a{display:flex;align-items:center;gap:7px;padding:12px 14px;border-radius:10px 10px 0 0;color:#46627f;text-decoration:none;font-weight:700;white-space:nowrap}
.etmw-myqr-tabs a span{display:inline-grid;place-items:center;min-width:24px;height:24px;padding:0 7px;border-radius:999px;background:#edf3f8;font-size:12px}
.etmw-myqr-tabs a.is-active{background:#0f8fa8;color:#fff}
.etmw-myqr-tabs a.is-active span{background:rgba(255,255,255,.2)}
.etmw-myqr-toolbar{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;padding:18px 20px}
.etmw-myqr-toolbar>form{display:grid;grid-template-columns:minmax(220px,1fr) 150px auto;gap:10px;flex:1}
.etmw-myqr-toolbar input,.etmw-myqr-toolbar select{min-height:44px}
.etmw-folder-manager{position:relative}
.etmw-folder-manager>summary{list-style:none;cursor:pointer;padding:11px 14px;border:1px solid #cfdde8;border-radius:10px;background:#fff;color:#294967;font-weight:700;white-space:nowrap}
.etmw-folder-manager>summary::-webkit-details-marker{display:none}
.etmw-folder-manager-body{position:absolute;right:0;z-index:20;width:min(380px,90vw);margin-top:8px;padding:14px;border:1px solid #d7e3ec;border-radius:14px;background:#fff;box-shadow:0 16px 38px rgba(11,42,80,.16)}
.etmw-myqr-cards{display:grid;gap:14px;padding:0 20px 20px}
.etmw-myqr-card{display:grid;grid-template-columns:112px minmax(0,1fr);gap:18px;padding:18px;border:1px solid #dce7ef;border-radius:16px;background:#fff;transition:border-color .2s ease,box-shadow .2s ease}
.etmw-myqr-card:hover{border-color:#9fd3d1;box-shadow:0 10px 24px rgba(11,42,80,.07)}
.etmw-myqr-preview-wrap{display:flex;align-items:flex-start;justify-content:center}
.etmw-myqr-card .etmw-qr-preview{width:100px;height:100px;border:1px solid #e0e8ef;border-radius:10px;background:#fff;padding:5px}
.etmw-myqr-card-main{min-width:0}
.etmw-myqr-card-title{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.etmw-myqr-card-title h3{margin:0 0 5px;font-size:19px}
.etmw-myqr-card-title p{margin:0;color:#5f7288}
.etmw-myqr-meta{display:flex;flex-wrap:wrap;gap:12px 26px;margin-top:16px}
.etmw-myqr-meta span{display:grid;gap:3px}
.etmw-myqr-meta small{color:#7890a6;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.etmw-myqr-meta strong{color:#294967;font-size:13px}
.etmw-myqr-actions{display:flex;align-items:center;gap:9px;margin-top:17px;flex-wrap:wrap}
.etmw-button-small{padding:9px 13px!important;min-height:auto!important;font-size:13px!important}
.etmw-myqr-more{position:relative}
.etmw-myqr-more>summary{list-style:none;cursor:pointer;padding:9px 13px;border:1px solid #cfdde8;border-radius:9px;color:#294967;background:#fff;font-size:13px;font-weight:700}
.etmw-myqr-more>summary::-webkit-details-marker{display:none}
.etmw-myqr-more>div{position:absolute;left:0;z-index:30;display:grid;min-width:190px;margin-top:7px;padding:8px;border:1px solid #d7e3ec;border-radius:12px;background:#fff;box-shadow:0 14px 34px rgba(11,42,80,.18)}
.etmw-myqr-more a,.etmw-myqr-more button{display:block;width:100%;padding:9px 10px!important;border:0!important;border-radius:8px!important;background:transparent!important;color:#294967!important;text-align:left!important;text-decoration:none!important;font-size:13px!important;font-weight:600!important}
.etmw-myqr-more a:hover,.etmw-myqr-more button:hover{background:#eef6f8!important}
.etmw-myqr-more .etmw-inline-action{display:block;margin:0}
.etmw-myqr-more .etmw-danger{color:#b42318!important}
.etmw-myqr-analytics{margin-top:18px;padding-top:18px;border-top:1px solid #e2eaf0}
.etmw-myqr-empty{text-align:center;padding:58px 24px}
.etmw-myqr-empty-icon{margin:0 auto 15px}
.etmw-myqr-empty h3{margin:0 0 6px}
.etmw-myqr-empty p{margin:0 0 18px;color:#687d91}

@media (max-width:900px){
  .etmw-myqr-summary{grid-template-columns:repeat(2,minmax(0,1fr))}
  .etmw-myqr-welcome{grid-template-columns:auto 1fr}
  .etmw-myqr-welcome .etmw-button{grid-column:1/-1;justify-self:start}
  .etmw-myqr-toolbar{display:grid}
  .etmw-folder-manager{justify-self:start}
}
@media (max-width:640px){
  .etmw-myqr-header{align-items:flex-start;flex-direction:column}
  .etmw-myqr-create{width:100%;text-align:center}
  .etmw-myqr-summary{grid-template-columns:repeat(2,minmax(0,1fr))}
  .etmw-myqr-stat{padding:15px}
  .etmw-myqr-stat strong{font-size:24px}
  .etmw-myqr-toolbar>form{grid-template-columns:1fr}
  .etmw-myqr-card{grid-template-columns:76px minmax(0,1fr);gap:13px;padding:14px}
  .etmw-myqr-card .etmw-qr-preview{width:70px;height:70px}
  .etmw-myqr-card-title{display:grid}
  .etmw-myqr-card-title .etmw-status{justify-self:start}
  .etmw-myqr-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .etmw-myqr-actions{grid-column:1/-1}
  .etmw-myqr-actions>.etmw-button{flex:1;text-align:center}
  .etmw-myqr-welcome{grid-template-columns:1fr;text-align:center}
  .etmw-myqr-welcome-icon{margin:auto}
  .etmw-myqr-welcome .etmw-button{justify-self:stretch}
}


/* v1.13.47 — QR filter contrast */
.etmw-myqr-tabs a:hover,
.etmw-myqr-tabs a:focus-visible,
.etmw-myqr-tabs a.is-active,
.etmw-myqr-tabs a[aria-current="page"]{
  background:#0f91a8 !important;
  color:#fff !important;
  text-decoration:none !important;
}
.etmw-myqr-tabs a:hover *,
.etmw-myqr-tabs a:focus-visible *,
.etmw-myqr-tabs a.is-active *,
.etmw-myqr-tabs a[aria-current="page"] *{
  color:#fff !important;
  text-decoration:none !important;
}
.etmw-myqr-tabs a:hover span,
.etmw-myqr-tabs a:focus-visible span,
.etmw-myqr-tabs a.is-active span,
.etmw-myqr-tabs a[aria-current="page"] span{
  background:rgba(255,255,255,.22) !important;
  color:#fff !important;
}


/* Premium My Account dashboard — v1.13.48 */
.etmw-premium-account {
    --etmw-account-navy: #0b2746;
    --etmw-account-teal: #0f91a8;
    --etmw-account-aqua: #16b8ad;
    --etmw-account-soft: #f3f8fb;
    --etmw-account-border: #dbe8f0;
    display: grid;
    gap: 24px;
}
.etmw-account-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 18%, rgba(35,214,196,.24), transparent 28%),
        linear-gradient(135deg, #0b2746 0%, #16476e 60%, #0d7f92 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(11,39,70,.18);
}
.etmw-account-hero::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -88px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
}
.etmw-account-hero-profile {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}
.etmw-account-avatar {
    flex: 0 0 auto;
    width: 88px !important;
    height: 88px !important;
    border: 4px solid rgba(255,255,255,.9);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.etmw-account-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #b8f4ee;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.etmw-account-hero h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
}
.etmw-account-hero p {
    max-width: 660px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 16px;
}
.etmw-account-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.etmw-account-hero-badges span {
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}
.etmw-account-hero-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}
.etmw-account-hero .etmw-button {
    min-height: 46px;
    border-radius: 12px;
}
.etmw-account-primary-action {
    background: #fff !important;
    color: #0b2746 !important;
}
.etmw-account-hero .etmw-button-light {
    border-color: rgba(255,255,255,.34) !important;
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
}
.etmw-account-quick-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.etmw-account-quick-nav > a {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--etmw-account-border);
    border-radius: 17px;
    background: #fff;
    color: var(--etmw-account-navy);
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(11,39,70,.06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.etmw-account-quick-nav > a:hover,
.etmw-account-quick-nav > a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15,145,168,.55);
    box-shadow: 0 14px 32px rgba(11,39,70,.1);
}
.etmw-account-quick-nav > a > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #e6f8f7, #eaf3fb);
    color: var(--etmw-account-teal);
    font-size: 15px;
    font-weight: 900;
}
.etmw-account-quick-nav strong,
.etmw-account-quick-nav small {
    display: block;
}
.etmw-account-quick-nav strong {
    color: var(--etmw-account-navy);
    font-size: 14px;
}
.etmw-account-quick-nav small {
    margin-top: 3px;
    color: #688098;
    font-size: 11px;
}
.etmw-account-metrics {
    gap: 14px;
}
.etmw-account-metrics .etmw-metric {
    min-height: 122px;
    padding: 20px;
    border: 1px solid var(--etmw-account-border);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8fbfd);
    box-shadow: 0 8px 24px rgba(11,39,70,.055);
}
.etmw-account-metrics .etmw-metric strong {
    color: var(--etmw-account-navy);
    font-size: 28px;
}
.etmw-account-section {
    padding: 24px;
    border: 1px solid var(--etmw-account-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(11,39,70,.06);
}
.etmw-account-section .etmw-product-section-head {
    margin-top: 0;
}
.etmw-account-section .etmw-product-section-head h3 {
    color: var(--etmw-account-navy);
}
.etmw-account-shop.etmw-account-section {
    padding: 0;
    overflow: hidden;
}
.etmw-account-pay-intro {
    border-radius: 0;
    background:
        radial-gradient(circle at 92% 0, rgba(22,184,173,.13), transparent 30%),
        linear-gradient(180deg, #f8fcfd, #eef7fa);
}
.etmw-account-shop-filters {
    padding-inline: 24px;
}
.etmw-account-shop-grid {
    padding: 0 24px 24px;
}
.etmw-account-shop-card {
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(11,39,70,.055);
}
.etmw-account-shop-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15,145,168,.42);
    box-shadow: 0 18px 38px rgba(11,39,70,.11);
}
.etmw-account-history-grid {
    margin-top: 0;
}
.etmw-account-activity > .etmw-product-section-head {
    margin-bottom: 18px;
}
.etmw-account-activity .etmw-panel {
    border: 1px solid var(--etmw-account-border);
    border-radius: 18px;
    box-shadow: none;
}
@media (max-width: 980px) {
    .etmw-account-hero {
        align-items: flex-start;
        flex-direction: column;
    }
    .etmw-account-quick-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .etmw-premium-account {
        gap: 16px;
    }
    .etmw-account-hero {
        padding: 22px;
        border-radius: 19px;
    }
    .etmw-account-hero-profile {
        align-items: flex-start;
        flex-direction: column;
    }
    .etmw-account-avatar {
        width: 70px !important;
        height: 70px !important;
        border-radius: 18px;
    }
    .etmw-account-hero-actions {
        width: 100%;
    }
    .etmw-account-hero-actions .etmw-button {
        flex: 1 1 0;
        text-align: center;
    }
    .etmw-account-quick-nav {
        grid-template-columns: 1fr;
    }
    .etmw-account-section {
        padding: 18px;
        border-radius: 18px;
    }
    .etmw-account-shop-filters {
        padding-inline: 18px;
    }
    .etmw-account-shop-grid {
        padding: 0 18px 18px;
    }
}


/* ===== v1.13.49 — responsive My Account Shop & Pay layout ===== */
.etmw-premium-account,
.etmw-account-section,
.etmw-account-shop,
.etmw-account-pay-intro,
.etmw-account-pay-intro > *,
.etmw-account-pay-steps,
.etmw-account-pay-step{
  box-sizing:border-box;
  min-width:0;
  max-width:100%;
}

.etmw-account-shop{
  overflow:hidden;
}

.etmw-account-pay-intro{
  width:100%;
  grid-template-columns:minmax(250px,.78fr) minmax(0,1.22fr);
}

.etmw-account-pay-steps{
  width:100%;
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.etmw-account-pay-step{
  width:100%;
  overflow:hidden;
}

.etmw-account-pay-step > div{
  min-width:0;
}

.etmw-account-pay-step strong,
.etmw-account-pay-step small{
  overflow-wrap:anywhere;
  word-break:normal;
}

.etmw-account-pay-step small{
  display:block;
  margin-top:6px;
  color:#6b7f92;
  font-size:12px;
  line-height:1.45;
}

/* A member sidebar reduces the real content width even on large screens. */
@media (max-width:1600px){
  .etmw-account-pay-intro{
    grid-template-columns:1fr;
    align-items:start;
  }

  .etmw-account-pay-intro h3{
    max-width:22ch;
  }
}

@media (max-width:980px){
  .etmw-account-pay-intro{
    padding:24px;
    gap:22px;
  }

  .etmw-account-pay-steps{
    grid-template-columns:1fr;
  }

  .etmw-account-pay-step{
    min-height:0;
  }
}

@media (max-width:640px){
  .etmw-account-pay-intro{
    padding:18px 15px;
    border-radius:18px;
  }

  .etmw-account-pay-intro h3{
    max-width:none;
    font-size:24px;
    line-height:1.2;
  }

  .etmw-account-pay-intro p{
    font-size:14px;
    line-height:1.6;
  }

  .etmw-account-pay-step{
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    align-items:start;
    gap:12px;
    padding:14px;
  }

  .etmw-account-pay-step b{
    width:42px;
    height:42px;
    flex-basis:42px;
    font-size:19px;
  }

  .etmw-account-pay-step strong{
    font-size:15px;
  }

  .etmw-account-shop-filters{
    margin-inline:-2px;
  }
}


/* ===== v1.13.50 — responsive account activity layout ===== */
.etmw-account-history-grid{
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.75fr);
  gap:16px;
  width:100%;
  max-width:100%;
  align-items:stretch;
}

.etmw-account-history-grid > .etmw-panel{
  min-width:0;
  max-width:100%;
  overflow:hidden;
}

.etmw-account-history-grid > .etmw-panel:first-child{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.etmw-account-history-grid .etmw-table{
  width:100%;
  min-width:620px;
}

.etmw-dashboard-downloads,
.etmw-dashboard-download-list,
.etmw-dashboard-download-row,
.etmw-dashboard-download-row > div{
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
}

.etmw-dashboard-downloads .etmw-panel-title-row{
  align-items:flex-start;
  flex-wrap:wrap;
  gap:10px;
}

.etmw-dashboard-downloads .etmw-panel-title-row > div{
  min-width:0;
  flex:1 1 150px;
}

.etmw-dashboard-downloads .etmw-panel-title-row > a{
  flex:0 0 auto;
  white-space:nowrap;
}

.etmw-dashboard-download-row{
  align-items:flex-start;
  flex-direction:column;
}

.etmw-dashboard-download-row strong{
  display:block;
  white-space:normal;
  overflow-wrap:anywhere;
}

.etmw-dashboard-download-row .etmw-download-actions{
  width:100%;
}

.etmw-dashboard-download-row .etmw-download-actions > *{
  flex:1 1 auto;
  text-align:center;
}

@media (max-width:1280px){
  .etmw-account-history-grid{
    grid-template-columns:1fr;
  }

  .etmw-account-history-grid .etmw-table{
    min-width:680px;
  }
}

@media (max-width:640px){
  .etmw-account-activity{
    padding:16px;
  }

  .etmw-account-history-grid{
    gap:14px;
  }

  .etmw-account-history-grid > .etmw-panel{
    padding:15px;
  }

  .etmw-account-history-grid .etmw-table{
    min-width:620px;
  }

  .etmw-dashboard-downloads .etmw-panel-title-row > a{
    width:100%;
    text-align:left;
  }

  .etmw-dashboard-download-row .etmw-download-actions{
    display:grid;
    grid-template-columns:1fr;
  }
}


/* QR Tools premium featured + list workspace (v1.13.51) */
.etmw-qr-featured-section,
.etmw-qr-tools-list-section{
    margin:0 0 24px;
}
.etmw-qr-section-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin:0 0 16px;
}
.etmw-qr-section-heading>div{
    min-width:0;
}
.etmw-qr-section-heading span{
    display:block;
    margin-bottom:4px;
    color:#07879b;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.etmw-qr-section-heading h2{
    margin:0;
    color:#0b2a50;
    font-size:clamp(22px,2.1vw,30px);
    line-height:1.15;
}
.etmw-qr-section-heading p{
    max-width:420px;
    margin:0;
    color:#667b8f;
    font-size:14px;
    line-height:1.55;
    text-align:right;
}
.etmw-qr-featured-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}
.etmw-qr-featured-card{
    min-width:0;
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:
        "icon copy"
        "icon action";
    column-gap:15px;
    row-gap:14px;
    min-height:178px;
    padding:20px;
    border:1px solid #dbe9f1;
    border-radius:18px;
    background:linear-gradient(145deg,#fff,#f7fbfd);
    color:#0b2a50;
    text-decoration:none!important;
    box-shadow:0 12px 34px rgba(13,35,64,.07);
    transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.etmw-qr-featured-card:hover,
.etmw-qr-featured-card:focus-visible{
    transform:translateY(-3px);
    border-color:#9fd8e3;
    color:#0b2a50;
    box-shadow:0 18px 42px rgba(13,35,64,.12);
    outline:none;
}
.etmw-qr-featured-card.is-primary{
    background:linear-gradient(145deg,#0b334f,#106b78);
    border-color:#176f7e;
    color:#fff;
}
.etmw-qr-featured-icon{
    grid-area:icon;
    display:grid;
    place-items:center;
    width:48px;
    height:48px;
    border-radius:14px;
    background:#e5f8f7;
    color:#07879b;
    font-size:22px;
    font-weight:950;
}
.etmw-qr-featured-card.is-primary .etmw-qr-featured-icon{
    background:rgba(255,255,255,.15);
    color:#fff;
}
.etmw-qr-featured-copy{
    grid-area:copy;
    min-width:0;
    display:block;
}
.etmw-qr-featured-copy small{
    display:block;
    margin-bottom:5px;
    color:#0a8ca0;
    font-size:10px;
    font-weight:950;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.etmw-qr-featured-card.is-primary .etmw-qr-featured-copy small{
    color:#bff5ef;
}
.etmw-qr-featured-copy strong{
    display:block;
    color:inherit;
    font-size:19px;
    line-height:1.25;
}
.etmw-qr-featured-copy em{
    display:block;
    margin-top:7px;
    color:#657b90;
    font-size:13px;
    font-style:normal;
    line-height:1.55;
}
.etmw-qr-featured-card.is-primary .etmw-qr-featured-copy em{
    color:#dceef1;
}
.etmw-qr-featured-card>b{
    grid-area:action;
    align-self:end;
    color:#07879b;
    font-size:13px;
}
.etmw-qr-featured-card.is-primary>b{
    color:#fff;
}
.etmw-qr-tools-list-section{
    padding:22px;
    border:1px solid #dfeaf1;
    border-radius:20px;
    background:#f8fbfd;
}
.etmw-qr-tool-group{
    margin-top:20px;
}
.etmw-qr-tool-group:first-of-type{
    margin-top:0;
}
.etmw-qr-tool-group>h3{
    margin:0 0 9px;
    color:#526d83;
    font-size:11px;
    font-weight:950;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.etmw-qr-tool-list{
    display:grid;
    gap:9px;
}
.etmw-qr-tool-row{
    min-width:0;
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:15px;
    padding:14px 15px;
    border:1px solid #dde9f0;
    border-radius:14px;
    background:#fff;
    color:#0b2a50;
    text-decoration:none!important;
    box-shadow:0 5px 16px rgba(13,35,64,.035);
    transition:transform .16s ease,border-color .16s ease,box-shadow .16s ease;
}
.etmw-qr-tool-row:hover,
.etmw-qr-tool-row:focus-visible{
    transform:translateX(3px);
    border-color:#9fd8e3;
    color:#0b2a50;
    box-shadow:0 10px 24px rgba(13,35,64,.08);
    outline:none;
}
.etmw-qr-tool-row.is-disabled{
    background:#f3f6f8;
    opacity:.68;
    box-shadow:none;
}
.etmw-qr-tool-row.is-disabled:hover{
    transform:none;
    border-color:#dde9f0;
}
.etmw-qr-tool-icon{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,#e4f7fd,#eaf8f2);
    color:#07879b;
    font-size:17px;
    font-weight:950;
}
.etmw-qr-tool-copy{
    min-width:0;
}
.etmw-qr-tool-copy strong{
    display:block;
    color:#0b2a50;
    font-size:15px;
    line-height:1.25;
}
.etmw-qr-tool-copy em{
    display:block;
    margin-top:4px;
    overflow-wrap:anywhere;
    color:#667b8f;
    font-size:12.5px;
    font-style:normal;
    line-height:1.45;
}
.etmw-qr-tool-meta{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    white-space:nowrap;
}
.etmw-qr-tool-meta small{
    display:inline-flex;
    padding:5px 9px;
    border-radius:999px;
    background:#edf6fa;
    color:#537187;
    font-size:9px;
    font-weight:950;
    letter-spacing:.05em;
    text-transform:uppercase;
}
.etmw-qr-tool-meta b{
    min-width:88px;
    color:#07879b;
    font-size:12.5px;
    text-align:right;
}
@media (max-width:980px){
    .etmw-qr-featured-grid{
        grid-template-columns:1fr;
    }
    .etmw-qr-featured-card{
        min-height:0;
    }
}
@media (max-width:720px){
    .etmw-qr-section-heading{
        display:block;
    }
    .etmw-qr-section-heading p{
        margin-top:7px;
        max-width:none;
        text-align:left;
    }
    .etmw-qr-tools-list-section{
        padding:16px;
        border-radius:16px;
    }
    .etmw-qr-tool-row{
        grid-template-columns:auto minmax(0,1fr);
        align-items:start;
    }
    .etmw-qr-tool-meta{
        grid-column:2;
        justify-content:space-between;
        white-space:normal;
    }
    .etmw-qr-tool-meta b{
        min-width:0;
    }
}
@media (max-width:480px){
    .etmw-qr-featured-card{
        padding:16px;
        border-radius:15px;
    }
    .etmw-qr-featured-icon,
    .etmw-qr-tool-icon{
        width:40px;
        height:40px;
    }
    .etmw-qr-tool-row{
        gap:11px;
        padding:13px;
    }
    .etmw-qr-tool-meta{
        align-items:flex-start;
        flex-direction:column;
        gap:6px;
    }
    .etmw-qr-tool-meta b{
        text-align:left;
    }
}


/* Bulk QR Generator */
.etmw-bulk-hero{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:30px;border:1px solid #d8e6ef;border-radius:22px;background:linear-gradient(135deg,#f7fcff,#eefaf8);margin-bottom:22px}
.etmw-bulk-hero small{font-weight:900;letter-spacing:.12em;color:#0d9488}
.etmw-bulk-hero h1{margin:6px 0 8px;color:#0b2746;font-size:clamp(28px,4vw,44px)}
.etmw-bulk-hero p{margin:0;color:#52677d;max-width:700px}
.etmw-bulk-limit{min-width:170px;padding:20px;border-radius:18px;background:#0b2746;color:#fff;text-align:center;box-shadow:0 14px 32px rgba(11,39,70,.16)}
.etmw-bulk-limit strong{display:block;font-size:36px;line-height:1}
.etmw-bulk-limit span,.etmw-bulk-limit small{display:block;margin-top:7px}
.etmw-bulk-limit small{opacity:.72}
.etmw-bulk-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:20px;margin-bottom:20px}
.etmw-bulk-drop{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:190px;padding:28px;border:2px dashed #b8d4e3;border-radius:18px;background:#f8fcfe;text-align:center;cursor:pointer}
.etmw-bulk-drop:hover{border-color:#0f91a8;background:#f0fbfd}
.etmw-bulk-drop input{max-width:100%}
.etmw-bulk-drop span{font-weight:900;color:#0b2746;margin-top:14px}
.etmw-bulk-drop small{color:#66798c;margin-top:6px}
.etmw-bulk-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.etmw-bulk-help ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.etmw-bulk-help li{display:flex;align-items:flex-start;gap:12px;padding:12px;border:1px solid #e0ebf2;border-radius:12px}
.etmw-bulk-help li strong{min-width:62px;color:#0f91a8}
.etmw-bulk-help li span{color:#52677d;overflow-wrap:anywhere}
.etmw-bulk-results{margin-top:20px}
.etmw-bulk-downloadbar{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px;border-radius:16px;background:#eef8fb;margin-bottom:18px}
.etmw-bulk-downloadbar strong,.etmw-bulk-downloadbar span{display:block}
.etmw-bulk-downloadbar span{color:#5d7185;margin-top:4px}
.etmw-bulk-preview-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px}
.etmw-bulk-preview{display:grid;grid-template-columns:92px minmax(0,1fr);gap:14px;align-items:center;padding:14px;border:1px solid #dde9f0;border-radius:16px;background:#fff}
.etmw-bulk-canvas{width:92px;height:92px;display:grid;place-items:center;background:#fff;border-radius:10px;overflow:hidden}
.etmw-bulk-canvas svg,.etmw-bulk-canvas img{width:100%;height:100%}
.etmw-bulk-preview strong,.etmw-bulk-preview span,.etmw-bulk-preview small{display:block}
.etmw-bulk-preview span{color:#0f91a8;font-weight:800;font-size:12px;margin:4px 0}
.etmw-bulk-preview small{color:#65798d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.etmw-bulk-errors{margin:0 0 16px;padding:12px 14px;border-radius:12px;background:#fff8e7;border:1px solid #f1d698}
.etmw-bulk-errors summary{cursor:pointer;font-weight:800;color:#805d13}
@media(max-width:900px){.etmw-bulk-grid{grid-template-columns:1fr}.etmw-bulk-hero{align-items:flex-start}.etmw-bulk-limit{min-width:140px}}
@media(max-width:640px){.etmw-bulk-hero{flex-direction:column;padding:22px}.etmw-bulk-limit{width:100%}.etmw-bulk-downloadbar{align-items:stretch;flex-direction:column}.etmw-bulk-downloadbar .etmw-button{width:100%}.etmw-bulk-preview-list{grid-template-columns:1fr}.etmw-bulk-actions{flex-direction:column}.etmw-bulk-actions .etmw-button{width:100%;text-align:center}}


/* Product feedback premium layout v1.13.53 */
.etmw-feedback-hero{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:34px;border:1px solid #d7e5ef;border-radius:24px;background:linear-gradient(135deg,#f7fbfd 0%,#eef8f8 100%);margin-bottom:24px}
.etmw-feedback-hero>div{max-width:760px}.etmw-feedback-hero span,.etmw-feedback-card-head>span{display:block;color:#0d8f8a;font-weight:800;letter-spacing:.12em;text-transform:uppercase;font-size:12px;margin-bottom:8px}
.etmw-feedback-hero h1{margin:0 0 10px;color:#0b2746;font-size:clamp(30px,4vw,46px);line-height:1.08}.etmw-feedback-hero p{margin:0;color:#52677e;font-size:17px;line-height:1.7}
.etmw-feedback-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:24px;align-items:start}
.etmw-feedback-card,.etmw-feedback-side>div{background:#fff;border:1px solid #d8e5ef;border-radius:20px;box-shadow:0 16px 40px rgba(24,57,86,.08)}
.etmw-feedback-card{padding:30px}.etmw-feedback-card-head h2{margin:0 0 8px;color:#0b2746;font-size:28px}.etmw-feedback-card-head p{margin:0 0 24px;color:#61758c}
.etmw-feedback-form{display:grid;gap:18px}.etmw-feedback-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.etmw-feedback-form label>span{display:block;font-weight:750;color:#183653;margin-bottom:7px}
.etmw-feedback-form input,.etmw-feedback-form select,.etmw-feedback-form textarea{width:100%;box-sizing:border-box;border:1px solid #cddce8;border-radius:12px;padding:13px 14px;background:#fbfdff;color:#0b2746;font:inherit}
.etmw-feedback-form textarea{resize:vertical;min-height:170px}.etmw-feedback-form input:focus,.etmw-feedback-form select:focus,.etmw-feedback-form textarea:focus{outline:none;border-color:#149aa5;box-shadow:0 0 0 3px rgba(20,154,165,.14);background:#fff}
.etmw-feedback-account{display:grid;grid-template-columns:auto 1fr;gap:2px 12px;align-items:center;padding:14px 16px;border-radius:14px;background:#f2f8fb}.etmw-feedback-account span{grid-row:1/3;color:#5f748b;font-size:12px;text-transform:uppercase;font-weight:800;letter-spacing:.08em}.etmw-feedback-account strong{color:#0b2746}.etmw-feedback-account small{color:#6d7f93}
.etmw-feedback-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.etmw-feedback-actions span{color:#6b7f93;font-size:13px}.etmw-feedback-honeypot{position:absolute!important;left:-9999px!important}
.etmw-feedback-side{display:grid;gap:18px}.etmw-feedback-side>div{padding:24px}.etmw-feedback-side .dashicons{width:46px;height:46px;display:grid;place-items:center;border-radius:14px;background:#e9f8f7;color:#0e938f;font-size:23px}
.etmw-feedback-side h3{margin:16px 0 10px;color:#0b2746}.etmw-feedback-side p,.etmw-feedback-side li{color:#60758c;line-height:1.6}.etmw-feedback-side ul{padding-left:20px;margin:0}.etmw-feedback-side a{color:#0788ac;font-weight:800;text-decoration:none}
.etmw-feedback-success{display:flex;flex-direction:column;gap:3px;padding:16px 18px;border:1px solid #a9dfcf;border-radius:14px;background:#effbf6;color:#176b55;margin-bottom:20px}
@media(max-width:980px){.etmw-feedback-layout{grid-template-columns:1fr}.etmw-feedback-side{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.etmw-feedback-hero{align-items:flex-start;flex-direction:column;padding:24px}.etmw-feedback-card{padding:22px}.etmw-feedback-grid,.etmw-feedback-side{grid-template-columns:1fr}.etmw-feedback-actions{align-items:stretch;flex-direction:column}.etmw-feedback-actions .etmw-button{width:100%;text-align:center}}


/* ===== v1.13.56 — QR Tools and My Account contrast hardening ===== */

/* Keep the QR sidebar brand readable even when the active theme applies
   global card, heading or link colours. */
.etmw-qr-sidebar .etmw-sidebar-brand,
.etmw-qr-sidebar .etmw-sidebar-brand:hover,
.etmw-qr-sidebar .etmw-sidebar-brand:focus,
.etmw-qr-sidebar .etmw-sidebar-brand:visited {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 6px 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
.etmw-qr-sidebar .etmw-sidebar-brand-mark {
    display: grid !important;
    width: 52px !important;
    height: 52px !important;
    flex: 0 0 52px !important;
    place-items: center !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #2f8c78, #12a8c6) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(6, 37, 68, .24) !important;
}
.etmw-qr-sidebar .etmw-sidebar-brand > span:last-child {
    display: block !important;
    min-width: 0 !important;
}
.etmw-qr-sidebar .etmw-sidebar-brand strong,
.etmw-qr-sidebar .etmw-sidebar-brand small {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
}
.etmw-qr-sidebar .etmw-sidebar-brand strong {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}
.etmw-qr-sidebar .etmw-sidebar-brand small {
    margin-top: 4px !important;
    color: #d6e7f4 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: .02em !important;
}

/* Theme-proof the premium My Account hero. */
.etmw-premium-account .etmw-account-hero,
.etmw-premium-account .etmw-account-hero * {
    text-shadow: none !important;
}
.etmw-premium-account .etmw-account-hero .etmw-account-eyebrow {
    color: #baf6ee !important;
    opacity: 1 !important;
}
.etmw-premium-account .etmw-account-hero h2,
.etmw-premium-account .etmw-account-hero h2 *,
.etmw-premium-account .etmw-account-hero p,
.etmw-premium-account .etmw-account-hero-profile > div > p {
    color: #ffffff !important;
    opacity: 1 !important;
}
.etmw-premium-account .etmw-account-hero p {
    color: rgba(255,255,255,.88) !important;
}
.etmw-premium-account .etmw-account-hero-badges span {
    color: #ffffff !important;
}
.etmw-premium-account .etmw-account-hero .etmw-account-primary-action,
.etmw-premium-account .etmw-account-hero .etmw-account-primary-action:hover,
.etmw-premium-account .etmw-account-hero .etmw-account-primary-action:focus,
.etmw-premium-account .etmw-account-hero .etmw-account-primary-action:visited {
    border: 1px solid rgba(255,255,255,.9) !important;
    background: #ffffff !important;
    color: #0b2746 !important;
    opacity: 1 !important;
}
.etmw-premium-account .etmw-account-hero .etmw-button-light,
.etmw-premium-account .etmw-account-hero .etmw-button-light:hover,
.etmw-premium-account .etmw-account-hero .etmw-button-light:focus,
.etmw-premium-account .etmw-account-hero .etmw-button-light:visited {
    border-color: rgba(255,255,255,.46) !important;
    background: rgba(255,255,255,.12) !important;
    color: #ffffff !important;
    opacity: 1 !important;
}
.etmw-premium-account .etmw-account-hero a {
    text-decoration: none !important;
}

/* Keep the hero balanced at desktop and mobile sizes. */
@media (max-width: 980px) {
    .etmw-premium-account .etmw-account-hero {
        align-items: flex-start !important;
    }
    .etmw-premium-account .etmw-account-hero-actions {
        width: 100% !important;
    }
    .etmw-premium-account .etmw-account-hero-actions .etmw-button {
        flex: 1 1 0 !important;
        justify-content: center !important;
    }
}
@media (max-width: 640px) {
    .etmw-qr-sidebar .etmw-sidebar-brand {
        margin-bottom: 14px !important;
    }
    .etmw-qr-sidebar .etmw-sidebar-brand-mark {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }
    .etmw-premium-account .etmw-account-hero {
        padding: 24px 20px !important;
    }
    .etmw-premium-account .etmw-account-hero-profile {
        align-items: flex-start !important;
        gap: 14px !important;
    }
    .etmw-premium-account .etmw-account-avatar {
        width: 68px !important;
        height: 68px !important;
        border-radius: 18px !important;
    }
    .etmw-premium-account .etmw-account-hero h2 {
        font-size: 27px !important;
    }
    .etmw-premium-account .etmw-account-hero-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}


/* v1.13.57 profile navigation and billing address */
.etmw-profile-details { overflow: hidden; }
.etmw-profile-details > summary { cursor: pointer; list-style: none; }
.etmw-profile-details > summary::-webkit-details-marker { display: none; }
.etmw-profile-details > summary b { margin-left: auto; font-size: 22px; line-height: 1; transition: transform .2s ease; }
.etmw-profile-details[open] > summary b { transform: rotate(180deg); }
.etmw-profile-details:not([open]) > .etmw-profile-fields { display: none; }
.etmw-profile-details > summary:focus-visible { outline: 3px solid rgba(15,145,168,.3); outline-offset: 3px; }
@media (max-width: 720px) {
  .etmw-profile-details > summary b { align-self: center; }
}
