/* ==========================================================================
   GPDStore — My Account + Login (dark lime/teal reskin)
   Overlay on gpd-tokens.css + gpd-theme.css. Ported from the Claude Design
   project "GPDStore New design" (account.css: lg- login + acc- account).
   Everything is scoped under body.woocommerce-account so it cannot leak.
   Reuses shared chrome from gpd-theme.css: .gs-btn*, .gs-wrap, .gs-eyebrow,
   .gs-sechead, .gs-viewall.
   ========================================================================== */

/* ── WooCommerce wrapper glue ───────────────────────────────────────────── */
/* The light legacy account styling lives in functions.php inline CSS; here we
   re-home the WC content/nav wrappers into the design's hero + grid. */
/* The dark page background + .gs-* primitives are defined PER-SURFACE in the
   theme (e.g. body.gpd-contact …). Define the account surface here, otherwise
   the page sits on white and .gs-btn buttons fall back to plain links. */
body.woocommerce-account{background:var(--bg-2)}
body.woocommerce-account #content,
body.woocommerce-account #content.site-content{background:var(--bg-2) !important}
body.woocommerce-account #content > .shoptimizer-archive,
body.woocommerce-account .shoptimizer-archive,
body.woocommerce-account #content > .col-full,
body.woocommerce-account .shoptimizer-archive > .col-full{background:transparent}

/* gs-wrap is defined per-surface in the theme — define it for the account page. */
body.woocommerce-account .gs-wrap{max-width:1240px;margin:0 auto;padding:0 36px}

/* shared gs-* primitives (design theme.css; account-scoped) */
body.woocommerce-account .gs-eyebrow{display:inline-block;font-weight:700;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--lime-500)}
body.woocommerce-account .gs-sechead{display:flex;justify-content:space-between;align-items:flex-end;gap:24px}
body.woocommerce-account .gs-sechead h2{margin:0;color:#fff;font-weight:800;letter-spacing:-.4px}
body.woocommerce-account .gs-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-weight:700;font-size:15px;
  border-radius:var(--r-md);padding:13px 22px;line-height:1;white-space:nowrap;border:0;cursor:pointer;text-decoration:none;
  transition:transform .15s,box-shadow .22s,background .22s,color .22s}
body.woocommerce-account .gs-btn svg{width:18px;height:18px}
body.woocommerce-account .gs-btn-primary{background:var(--lime-500);color:#0A0D0F}
body.woocommerce-account .gs-btn-primary:hover{box-shadow:var(--shadow-glow);transform:translateY(-2px);color:#0A0D0F}
body.woocommerce-account .gs-btn-primary:active{background:var(--lime-600);transform:translateY(0)}
body.woocommerce-account .gs-btn-secondary{background:rgba(255,255,255,.10);color:#fff}
body.woocommerce-account .gs-btn-secondary:hover{background:rgba(255,255,255,.17);transform:translateY(-2px);color:#fff}
body.woocommerce-account .gs-btn-ghost{background:transparent;color:var(--fg-1)}
body.woocommerce-account .gs-btn-ghost:hover{background:rgba(255,255,255,.06);color:#fff}
body.woocommerce-account .gs-btn-lg{font-size:16px;padding:16px 26px}
body.woocommerce-account .gs-btn-block{width:100%}
/* Let the account container go full-width so .gs-wrap does the centering. */
body.woocommerce-account.page-account #content,
body.woocommerce-account #primary,
body.woocommerce-account #content .woocommerce{width:100%;max-width:none;margin:0;padding-left:0;padding-right:0;float:none}
body.woocommerce-account .page-account #content .woocommerce,
body.woocommerce-account #content .woocommerce { max-width: none; }
/* Hide the theme page-title header + the theme/Rank Math breadcrumb — the
   design uses its own breadcrumb + hero. */
body.woocommerce-account .page-account > .entry-header,
body.woocommerce-account .col-full > .entry-header { display: none; }
body.woocommerce-account #content .woocommerce-breadcrumb,
body.woocommerce-account #content .rankmath.woocommerce-breadcrumb,
body.woocommerce-account .shoptimizer-breadcrumb { display: none; }
/* Legacy float/width on the WC nav + content collapses the grid — reset them. */
body.woocommerce-account .woocommerce-MyAccount-navigation { float: none; width: auto; margin: 0; }
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-content.full { max-width: none; width: auto; float: none; margin: 0; }
body.woocommerce-account .woocommerce-MyAccount-content { color: var(--fg-1); }
body.woocommerce-account .woocommerce-MyAccount-content h2 {
  max-width: none; border: 0; padding: 0; margin: 0;
}
/* deposits plugin order-grouping toggle (cwdp) */
body.woocommerce-account .cwdp-orders-grouping-toggle { margin-bottom: 14px; }
body.woocommerce-account .cwdp-toggle-grouping-btn { display:inline-flex;align-items:center;gap:8px;background:var(--surface-glass);
  border:1px solid var(--line-1);border-radius:var(--r-full);padding:8px 14px;color:var(--fg-1);font-size:13px;font-weight:600;cursor:pointer }
body.woocommerce-account .cwdp-toggle-grouping-btn:hover { color:#fff;border-color:rgba(255,255,255,.2) }

/* shared page hero (breadcrumb + title band) ─────────────────────────────── */
body.woocommerce-account .acc-pagehero { padding: 30px 0 0; }
body.woocommerce-account .acc-crumb { display:flex;align-items:center;gap:8px;font-size:13px;color:var(--fg-tertiary);margin-bottom:20px }
body.woocommerce-account .acc-crumb a { transition:color var(--dur-fast) var(--ease);color:var(--fg-tertiary) }
body.woocommerce-account .acc-crumb a:hover { color:var(--fg-1) }
body.woocommerce-account .acc-crumb svg { width:15px;height:15px;opacity:.5 }
body.woocommerce-account .acc-crumb .here { color:var(--fg-1) }

/* ══════════════════════════════════════════════════════════════════════════
   LOGIN  (lg-)
   ══════════════════════════════════════════════════════════════════════════ */
body.woocommerce-account .lg-shell{display:grid;grid-template-columns:1fr 1fr;gap:0;border:1px solid var(--line-1);
  border-radius:var(--r-2xl);overflow:hidden;background:var(--surface-elev);box-shadow:var(--shadow-lg);margin:12px 0 0}
body.woocommerce-account .lg-shell.solo{grid-template-columns:minmax(0,520px);justify-content:center;background:transparent;border:0;box-shadow:none}

/* brand panel (left) */
body.woocommerce-account .lg-brand{position:relative;padding:44px 44px 38px;overflow:hidden;min-width:0;
  background:
    radial-gradient(680px 420px at 16% -6%, rgba(35,221,190,.16), transparent 62%),
    radial-gradient(560px 420px at 100% 108%, rgba(254,90,240,.14), transparent 60%),
    linear-gradient(160deg,#10161a,#0b0f12);
  border-right:1px solid var(--line-1);display:flex;flex-direction:column}
body.woocommerce-account .lg-brand .gs-eyebrow{color:var(--teal-500)}
/* color !important: the high-specificity #content.site-content h1–h6 dark-reset
   otherwise wins and hides the base ("Your handhelds,") text. Teal base + lime em. */
body.woocommerce-account #content.site-content .lg-brand h2{margin:14px 0 12px;font-size:36px;font-weight:800;letter-spacing:-1px;line-height:1.04;color:var(--teal-500) !important;max-width:13ch}
body.woocommerce-account #content.site-content .lg-brand h2 em{font-style:normal;color:var(--lime-500) !important}
body.woocommerce-account .lg-brand .lead{margin:0;font-size:15px;line-height:1.6;color:var(--fg-secondary);max-width:42ch}
body.woocommerce-account .lg-perks{display:flex;flex-direction:column;gap:14px;margin:30px 0 0}
body.woocommerce-account .lg-perk{display:flex;align-items:flex-start;gap:13px}
body.woocommerce-account .lg-perk .ic{width:40px;height:40px;border-radius:11px;background:rgba(211,255,95,.10);color:var(--lime-500);
  display:flex;align-items:center;justify-content:center;flex:0 0 auto}
body.woocommerce-account .lg-perk .ic svg{width:20px;height:20px}
body.woocommerce-account .lg-perk .t{font-size:14.5px;font-weight:700;color:#fff}
body.woocommerce-account .lg-perk .s{font-size:13px;color:var(--fg-secondary);margin-top:2px;line-height:1.45}
body.woocommerce-account .lg-brand-foot{margin-top:auto;padding-top:30px;display:flex;align-items:center;gap:14px}
body.woocommerce-account .lg-tp{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:var(--fg-secondary)}
body.woocommerce-account .lg-tp .pill{display:inline-flex;align-items:center;gap:5px;background:#00B67A;color:#fff;font-weight:800;
  font-size:12px;border-radius:6px;padding:4px 9px}
body.woocommerce-account .lg-tp .pill svg{width:13px;height:13px;fill:currentColor}
body.woocommerce-account .lg-tp b{color:#fff}

/* form panel (right) */
body.woocommerce-account .lg-form{padding:40px 44px 38px;background:var(--surface-elev);display:flex;flex-direction:column;min-width:0}
body.woocommerce-account .lg-shell.solo .lg-form{border:1px solid var(--line-1);border-radius:var(--r-2xl);box-shadow:var(--shadow-lg)}
body.woocommerce-account .lg-formhead h1{margin:0 0 6px;font-size:25px;font-weight:800;letter-spacing:-.5px;color:#fff}
body.woocommerce-account .lg-formhead p{margin:0 0 22px;font-size:14px;color:var(--fg-secondary);line-height:1.5}

body.woocommerce-account .lg-field{margin-bottom:16px}
body.woocommerce-account .lg-field label{display:block;font-size:13px;font-weight:600;color:var(--fg-1);margin-bottom:8px}
body.woocommerce-account .lg-field label .required,
body.woocommerce-account .lg-field label .req{color:var(--lime-500);margin-left:2px;border:0}
body.woocommerce-account .lg-inwrap{position:relative;display:flex;align-items:center}
body.woocommerce-account .lg-inwrap > svg{position:absolute;left:14px;width:18px;height:18px;color:var(--fg-tertiary);pointer-events:none}
body.woocommerce-account .lg-input,
body.woocommerce-account .lg-form input[type="email"].input-text{width:100%;background:var(--surface-glass);border:1px solid var(--line-1);border-radius:var(--r-sm);
  padding:13px 14px 13px 42px;color:#fff;font-size:14.5px;font-family:var(--font-sans);outline:none;
  transition:border-color var(--dur-normal) var(--ease),background var(--dur-normal) var(--ease)}
body.woocommerce-account .lg-input::placeholder{color:var(--fg-tertiary)}
body.woocommerce-account .lg-input:focus,
body.woocommerce-account .lg-form input[type="email"].input-text:focus{border-color:var(--lime-500);background:rgba(255,255,255,.05)}

body.woocommerce-account .lg-submit{width:100%;margin-top:2px}
body.woocommerce-account .lg-guest{margin-top:18px;display:flex;align-items:center;justify-content:center;gap:8px;font-size:13.5px;
  color:var(--fg-secondary);white-space:nowrap}
body.woocommerce-account .lg-guest a{color:var(--lime-500);font-weight:700}
body.woocommerce-account .lg-guest a:hover{color:#fff}
body.woocommerce-account .lg-legal{margin:18px 0 0;font-size:12px;color:var(--fg-tertiary);line-height:1.55;text-align:center}
body.woocommerce-account .lg-legal a{color:var(--fg-secondary);text-decoration:underline;text-underline-offset:2px}
body.woocommerce-account .lg-legal a:hover{color:#fff}

/* passwordless / OTP */
body.woocommerce-account .lg-badge{display:inline-flex;align-items:center;gap:7px;align-self:flex-start;font-size:12px;font-weight:700;white-space:nowrap;
  letter-spacing:.02em;color:var(--teal-500);background:rgba(35,221,190,.10);border:1px solid rgba(35,221,190,.22);
  border-radius:var(--r-full);padding:6px 12px;margin-bottom:18px}
body.woocommerce-account .lg-badge svg{width:14px;height:14px}
body.woocommerce-account .lg-otp{display:flex;gap:10px;margin:6px 0 22px}
body.woocommerce-account .lg-otpbox{flex:1;min-width:0;height:60px;text-align:center;font-size:26px;font-weight:800;color:#fff;
  font-family:var(--font-mono);background:var(--surface-glass);border:1.5px solid var(--line-1);border-radius:var(--r-md);
  outline:none;transition:border-color var(--dur-fast) var(--ease),background var(--dur-fast) var(--ease),box-shadow var(--dur-fast) var(--ease)}
body.woocommerce-account .lg-otpbox:focus{border-color:var(--lime-500);background:rgba(255,255,255,.05);box-shadow:0 0 0 3px rgba(211,255,95,.16)}
body.woocommerce-account .lg-otpbox.filled{border-color:rgba(211,255,95,.45);color:var(--lime-500)}
body.woocommerce-account .lg-submit:disabled{opacity:.45;pointer-events:none}
body.woocommerce-account .lg-resend{text-align:center;margin-top:16px;font-size:13.5px;color:var(--fg-secondary)}
body.woocommerce-account .lg-resend b{color:#fff;font-variant-numeric:tabular-nums}
body.woocommerce-account .lg-textlink{display:inline-flex;align-items:center;gap:6px;background:none;border:0;font-family:var(--font-sans);
  font-size:13.5px;font-weight:700;color:var(--lime-500);cursor:pointer;margin:0 auto;transition:color var(--dur-fast) var(--ease)}
body.woocommerce-account .lg-textlink:hover{color:#fff}
body.woocommerce-account .lg-textlink svg{width:15px;height:15px}
body.woocommerce-account .lg-back{display:flex;margin-top:20px;padding-top:18px;border-top:1px solid var(--line-2);width:100%;justify-content:center}
body.woocommerce-account .lg-inlinelink{background:none;border:0;color:var(--lime-500);font-family:var(--font-sans);font-size:inherit;font-weight:700;
  cursor:pointer;padding:0}
body.woocommerce-account .lg-inlinelink:hover{color:#fff}

/* OTP soft error (reuses the OTP plugin's wpcf7-not-valid markup) */
body.woocommerce-account .lg-form .wpcf7-not-valid{border-color:var(--orange-500) !important}
body.woocommerce-account .lg-form .wpcf7-not-valid-tip{display:block;margin-top:8px;font-size:12.5px;color:var(--orange-500)}
body.woocommerce-account .lg-form .woocommerce-error{margin:0 0 16px;border-radius:var(--r-sm);background:rgba(255,107,53,.10);
  border:1px solid rgba(255,107,53,.3);color:#ffd9c7;list-style:none;padding:12px 14px}

/* signed-in success state */
body.woocommerce-account .lg-success{display:flex;flex-direction:column;align-items:center;text-align:center;padding:18px 0 8px}
body.woocommerce-account .lg-success .badge{width:64px;height:64px;border-radius:50%;background:var(--lime-500);color:#0A0D0F;display:flex;
  align-items:center;justify-content:center;margin-bottom:18px;box-shadow:var(--shadow-glow)}
body.woocommerce-account .lg-success .badge svg{width:30px;height:30px}
body.woocommerce-account .lg-success h1{margin:0 0 8px;font-size:24px;font-weight:800;color:#fff;letter-spacing:-.4px}
body.woocommerce-account .lg-success p{margin:0 0 24px;font-size:14px;color:var(--fg-secondary)}
body.woocommerce-account .lg-success .gs-btn{margin-bottom:14px}

/* page-loader (kept from OTP system) */
body.woocommerce-account #page-loader{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;background:rgba(10,13,15,.6)}
body.woocommerce-account #page-loader .loader-icon{width:42px;height:42px;border-radius:50%;border:3px solid var(--line-1);border-top-color:var(--lime-500);animation:acc-spin .8s linear infinite}
@keyframes acc-spin{to{transform:rotate(360deg)}}

/* ══════════════════════════════════════════════════════════════════════════
   MY ACCOUNT  (acc-)
   ══════════════════════════════════════════════════════════════════════════ */
body.woocommerce-account .acc-hero{padding:8px 0 0}
body.woocommerce-account .acc-greet{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
body.woocommerce-account .acc-avatar{width:64px;height:64px;border-radius:50%;flex:0 0 auto;display:flex;align-items:center;justify-content:center;
  font-size:24px;font-weight:800;color:#0A0D0F;background:linear-gradient(150deg,var(--lime-500),var(--teal-500));
  box-shadow:0 8px 22px rgba(35,221,190,.28)}
body.woocommerce-account .acc-greet .gt h1{margin:0;font-size:30px;font-weight:800;letter-spacing:-.6px;color:#fff}
body.woocommerce-account .acc-greet .gt p{margin:5px 0 0;font-size:14px;color:var(--fg-secondary)}
body.woocommerce-account .acc-greet .gt p b{color:var(--lime-500)}
body.woocommerce-account .acc-tier{margin-left:auto;display:inline-flex;align-items:center;gap:9px;background:var(--surface-glass);white-space:nowrap;
  border:1px solid var(--line-1);border-radius:var(--r-full);padding:9px 16px;font-size:13px;font-weight:700;color:#fff}
body.woocommerce-account .acc-tier .ic{width:26px;height:26px;border-radius:50%;background:rgba(211,255,95,.12);color:var(--lime-500);
  display:flex;align-items:center;justify-content:center}
body.woocommerce-account .acc-tier .ic svg{width:15px;height:15px}

/* layout */
body.woocommerce-account .acc-layout{display:grid;grid-template-columns:248px 1fr;gap:30px;align-items:start;padding:28px 0 64px}

/* sidebar nav (overrides default WC nav wrapper) */
body.woocommerce-account .woocommerce-MyAccount-navigation{margin:0}
body.woocommerce-account .acc-nav{position:sticky;top:84px;background:var(--surface-elev);border:1px solid var(--line-1);
  border-radius:var(--r-lg);padding:10px;display:flex;flex-direction:column;gap:2px;box-shadow:var(--shadow-sm);list-style:none}
body.woocommerce-account .acc-nav li{margin:0;padding:0;list-style:none;border:0}
/* Kill the parent theme's faint mask-image nav icons (it adds a dark #111 icon
   via li a::before) — we render our own bright inline SVG per link. */
body.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before{content:none !important;display:none !important;-webkit-mask-image:none !important;mask-image:none !important;background:none !important}
body.woocommerce-account .acc-navlink{display:flex;align-items:center;gap:12px;padding:11px 13px;border-radius:var(--r-md);font-size:14px;
  font-weight:600;color:var(--fg-1);cursor:pointer;transition:background var(--dur-fast) var(--ease),color var(--dur-fast) var(--ease)}
body.woocommerce-account .acc-navlink svg{width:18px;height:18px;opacity:.65;flex:0 0 auto}
body.woocommerce-account .acc-navlink .cnt{margin-left:auto;font-size:11.5px;font-weight:700;background:var(--surface-glass);
  border:1px solid var(--line-1);border-radius:99px;padding:2px 8px;color:var(--fg-secondary)}
body.woocommerce-account .acc-navlink:hover{background:rgba(255,255,255,.06);color:#fff}
body.woocommerce-account .acc-navlink:hover svg{opacity:1}
body.woocommerce-account .acc-navlink.on{background:var(--lime-500);color:#0A0D0F}
body.woocommerce-account .acc-navlink.on svg{opacity:1}
body.woocommerce-account .acc-navlink.on .cnt{background:rgba(10,13,15,.18);border-color:transparent;color:#0A0D0F}
body.woocommerce-account .acc-navsep{height:1px;background:var(--line-2);margin:8px 6px}
body.woocommerce-account .acc-navlink.danger{color:var(--fg-secondary)}
body.woocommerce-account .acc-navlink.danger:hover{background:rgba(255,92,92,.12);color:var(--orange-500)}

/* content cards */
body.woocommerce-account .acc-card{background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm)}
body.woocommerce-account .acc-card-pad{padding:24px}
body.woocommerce-account .acc-cardhd{display:flex;align-items:center;gap:12px;padding:18px 22px;border-bottom:1px solid var(--line-2)}
body.woocommerce-account .acc-cardhd .ic{width:34px;height:34px;border-radius:9px;background:rgba(35,221,190,.10);color:var(--teal-500);
  display:flex;align-items:center;justify-content:center;flex:0 0 auto}
body.woocommerce-account .acc-cardhd .ic svg{width:18px;height:18px}
body.woocommerce-account .acc-cardhd h3{margin:0;font-size:16px;font-weight:700;color:#fff;letter-spacing:-.2px}
body.woocommerce-account .acc-cardhd .act{margin-left:auto;font-size:13px;font-weight:700;color:var(--lime-500);display:inline-flex;align-items:center;gap:5px}
body.woocommerce-account .acc-cardhd .act:hover{color:#fff}
body.woocommerce-account .acc-cardhd .act svg{width:15px;height:15px}

body.woocommerce-account .acc-stack{display:flex;flex-direction:column;gap:18px}

/* stat tiles */
body.woocommerce-account .acc-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
body.woocommerce-account .acc-stat{background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);padding:18px 20px;
  display:flex;flex-direction:column;gap:10px;box-shadow:var(--shadow-sm)}
body.woocommerce-account .acc-stat .ic{width:40px;height:40px;border-radius:11px;display:flex;align-items:center;justify-content:center}
body.woocommerce-account .acc-stat .ic svg{width:20px;height:20px}
body.woocommerce-account .acc-stat.lime .ic{background:rgba(211,255,95,.12);color:var(--lime-500)}
body.woocommerce-account .acc-stat.teal .ic{background:rgba(35,221,190,.12);color:var(--teal-500)}
body.woocommerce-account .acc-stat.mag  .ic{background:rgba(254,90,240,.12);color:var(--magenta-500)}
body.woocommerce-account .acc-stat .n{font-size:28px;font-weight:800;color:#fff;letter-spacing:-.6px;line-height:1}
body.woocommerce-account .acc-stat .l{font-size:13px;color:var(--fg-secondary)}

/* order card */
body.woocommerce-account .acc-order{padding:0}
body.woocommerce-account .acc-ordhd{display:flex;align-items:center;gap:14px;padding:18px 22px;border-bottom:1px solid var(--line-2);flex-wrap:wrap}
body.woocommerce-account .acc-ordhd .meta{display:flex;flex-direction:column;gap:3px}
body.woocommerce-account .acc-ordhd .meta .o{font-size:15px;font-weight:700;color:#fff}
body.woocommerce-account .acc-ordhd .meta .d{font-size:12.5px;color:var(--fg-tertiary)}
body.woocommerce-account .acc-ordhd .tot{margin-left:auto;text-align:right}
body.woocommerce-account .acc-ordhd .tot .v{font-size:18px;font-weight:800;color:var(--lime-500);letter-spacing:-.3px}
body.woocommerce-account .acc-ordhd .tot .l{font-size:11.5px;color:var(--fg-tertiary)}
body.woocommerce-account .acc-status{display:inline-flex;align-items:center;gap:7px;font-size:12px;font-weight:700;border-radius:var(--r-full);
  padding:5px 12px;white-space:nowrap}
body.woocommerce-account .acc-status svg{width:13px;height:13px}
body.woocommerce-account .acc-status.transit,
body.woocommerce-account .acc-status.intransit{background:rgba(35,221,190,.12);color:var(--teal-500)}
body.woocommerce-account .acc-status.delivered,
body.woocommerce-account .acc-status.completed{background:rgba(211,255,95,.14);color:var(--lime-500)}
body.woocommerce-account .acc-status.processing,
body.woocommerce-account .acc-status.on-hold,
body.woocommerce-account .acc-status.preorder,
body.woocommerce-account .acc-status.deposit,
body.woocommerce-account .acc-status.partially-paid,
body.woocommerce-account .acc-status.pending{background:rgba(255,107,53,.14);color:var(--orange-500)}
body.woocommerce-account .acc-status.cancelled,
body.woocommerce-account .acc-status.refunded,
body.woocommerce-account .acc-status.failed{background:rgba(153,161,175,.12);color:var(--fg-secondary)}

body.woocommerce-account .acc-orditems{display:flex;flex-direction:column}
body.woocommerce-account .acc-oitem{display:flex;align-items:center;gap:14px;padding:14px 22px;border-bottom:1px solid var(--line-2)}
body.woocommerce-account .acc-oitem:last-child{border-bottom:0}
body.woocommerce-account .acc-othumb{width:56px;height:56px;border-radius:10px;flex:0 0 auto;background:
    radial-gradient(120% 120% at 50% 18%, rgba(35,221,190,.10), transparent 55%),linear-gradient(180deg,#10161a,#0b0f12);
  border:1px solid var(--line-1);display:flex;align-items:center;justify-content:center;overflow:hidden}
body.woocommerce-account .acc-othumb img{width:80%;height:80%;object-fit:contain;filter:drop-shadow(0 8px 14px rgba(0,0,0,.5))}
body.woocommerce-account .acc-oitem .nm{font-size:14px;font-weight:600;color:#fff}
body.woocommerce-account .acc-oitem .mt{font-size:12.5px;color:var(--fg-tertiary);margin-top:2px}
body.woocommerce-account .acc-oitem .qp{margin-left:auto;text-align:right;font-size:14px;font-weight:700;color:#fff;white-space:nowrap}
body.woocommerce-account .acc-oitem .qp .q{display:block;font-size:12px;color:var(--fg-tertiary);font-weight:500}

/* tracking progress */
body.woocommerce-account .acc-track{padding:20px 22px;border-top:1px solid var(--line-2);background:var(--surface-glass-2)}
body.woocommerce-account .acc-track .acc-trackmeta{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
body.woocommerce-account .acc-track .acc-trackmeta .car{font-size:13px;font-weight:700;color:#fff;display:inline-flex;align-items:center;gap:6px}
body.woocommerce-account .acc-track .acc-trackmeta .car svg{width:15px;height:15px;color:var(--teal-500)}
body.woocommerce-account .acc-track .acc-trackmeta .car .num{font-family:var(--font-mono);color:var(--fg-secondary);font-weight:500}
body.woocommerce-account .acc-track .acc-trackmeta .eta{font-size:13px;color:var(--fg-secondary)}
body.woocommerce-account .acc-track .acc-trackmeta .eta b{color:var(--lime-500)}
body.woocommerce-account .acc-trackbar{display:flex;align-items:center;margin:14px 0 6px}
body.woocommerce-account .acc-tstep{flex:1;display:flex;flex-direction:column;align-items:center;gap:9px;position:relative}
body.woocommerce-account .acc-tstep .dot{width:30px;height:30px;border-radius:50%;background:var(--bg-1);border:2px solid var(--line-1);
  display:flex;align-items:center;justify-content:center;color:var(--fg-tertiary);z-index:2}
body.woocommerce-account .acc-tstep .dot svg{width:15px;height:15px}
body.woocommerce-account .acc-tstep .lab{font-size:11.5px;font-weight:600;color:var(--fg-tertiary);text-align:center}
body.woocommerce-account .acc-tstep::before{content:"";position:absolute;top:15px;left:-50%;width:100%;height:2px;background:var(--line-1);z-index:1}
body.woocommerce-account .acc-tstep:first-child::before{display:none}
body.woocommerce-account .acc-tstep.done .dot{background:var(--lime-500);border-color:var(--lime-500);color:#0A0D0F}
body.woocommerce-account .acc-tstep.done .lab{color:#fff}
body.woocommerce-account .acc-tstep.done::before{background:var(--lime-500)}
body.woocommerce-account .acc-tstep.curr .dot{background:var(--teal-500);border-color:var(--teal-500);color:#06160F;
  box-shadow:0 0 0 4px rgba(35,221,190,.18)}
body.woocommerce-account .acc-tstep.curr .lab{color:var(--teal-500)}
body.woocommerce-account .acc-tstep.curr::before{background:linear-gradient(90deg,var(--lime-500),var(--teal-500))}
body.woocommerce-account .acc-track.cancelled .acc-trackbar,
body.woocommerce-account .acc-track.refunded .acc-trackbar{filter:grayscale(1) brightness(.7)}

body.woocommerce-account .acc-ordfoot{display:flex;align-items:center;gap:10px;padding:16px 22px;flex-wrap:wrap}

/* quick links */
body.woocommerce-account .acc-quick{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
body.woocommerce-account .acc-qlink{display:flex;align-items:center;gap:13px;background:var(--surface-elev);border:1px solid var(--line-1);
  border-radius:var(--r-md);padding:15px 16px;cursor:pointer;text-decoration:none;transition:transform var(--dur-normal) var(--ease-out),border-color var(--dur-normal) var(--ease)}
body.woocommerce-account .acc-qlink:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.2)}
body.woocommerce-account .acc-qlink .ic{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.05);color:var(--lime-500);
  display:flex;align-items:center;justify-content:center;flex:0 0 auto}
body.woocommerce-account .acc-qlink .ic svg{width:19px;height:19px}
body.woocommerce-account .acc-qlink .t{font-size:14px;font-weight:700;color:#fff}
body.woocommerce-account .acc-qlink .s{font-size:12px;color:var(--fg-secondary);margin-top:1px}
body.woocommerce-account .acc-qlink .arr{margin-left:auto;color:var(--fg-tertiary)}
body.woocommerce-account .acc-qlink:hover .arr{color:#fff}
body.woocommerce-account .acc-qlink .arr svg{width:16px;height:16px}

/* orders table */
body.woocommerce-account .acc-otable{display:flex;flex-direction:column}
body.woocommerce-account .acc-orow{display:grid;grid-template-columns:0.95fr 0.85fr 0.8fr 0.7fr auto;gap:14px;align-items:center;
  padding:16px 22px;border-bottom:1px solid var(--line-2)}
body.woocommerce-account .acc-orow .oactions{display:flex;gap:8px;justify-content:flex-end;align-items:center}
body.woocommerce-account .acc-orow .oactions .gs-btn{white-space:nowrap}
body.woocommerce-account .acc-orow .oact-rma svg{width:15px;height:15px}
body.woocommerce-account .acc-orow.head{font-size:11.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--fg-tertiary);
  background:var(--surface-glass-2)}
body.woocommerce-account .acc-orow:last-child{border-bottom:0}
body.woocommerce-account .acc-orow .onum{font-weight:700;color:#fff;font-size:14px}
body.woocommerce-account .acc-orow .ometa{font-size:12.5px;color:var(--fg-tertiary)}
body.woocommerce-account .acc-orow .oval{font-size:14px;font-weight:700;color:#fff;font-variant-numeric:tabular-nums}
body.woocommerce-account .acc-orow .gs-btn{padding:9px 16px;font-size:13px}

/* address cards */
body.woocommerce-account .acc-addrgrid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
body.woocommerce-account .acc-addr{background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);padding:22px;
  position:relative}
body.woocommerce-account .acc-addr .tag{position:absolute;top:18px;right:18px;font-size:11px;font-weight:700;border-radius:99px;padding:4px 10px}
body.woocommerce-account .acc-addr .tag.def{background:rgba(211,255,95,.14);color:var(--lime-500)}
body.woocommerce-account .acc-addr h4{margin:0 0 4px;font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--fg-tertiary)}
body.woocommerce-account .acc-addr .nm{font-size:16px;font-weight:700;color:#fff;margin-bottom:8px}
body.woocommerce-account .acc-addr address,
body.woocommerce-account .acc-addr .ln{font-size:14px;color:var(--fg-1);line-height:1.6;font-style:normal}
body.woocommerce-account .acc-addr .edit{margin-top:16px;display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:700;color:var(--lime-500)}
body.woocommerce-account .acc-addr .edit:hover{color:#fff}
body.woocommerce-account .acc-addr .edit svg{width:14px;height:14px}

/* form (account details / edit address) */
body.woocommerce-account .acc-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
body.woocommerce-account .acc-form .full,
body.woocommerce-account .acc-form .form-row-wide{grid-column:1 / -1}
body.woocommerce-account .acc-form label,
body.woocommerce-account .acc-fld label{display:block;font-size:13px;font-weight:600;color:var(--fg-1);margin-bottom:7px}
body.woocommerce-account .acc-form label .required{color:var(--lime-500);border:0}
body.woocommerce-account .acc-form .input-text,
body.woocommerce-account .acc-form input[type="text"],
body.woocommerce-account .acc-form input[type="email"],
body.woocommerce-account .acc-form input[type="tel"],
body.woocommerce-account .acc-form input[type="password"],
body.woocommerce-account .acc-form select,
body.woocommerce-account .acc-fld .inp{width:100%;background:var(--surface-glass);border:1px solid var(--line-1);border-radius:var(--r-sm);
  padding:12px 14px;color:#fff;font-size:14px;font-family:var(--font-sans);outline:none;transition:border-color var(--dur-normal) var(--ease)}
body.woocommerce-account .acc-form .input-text:focus,
body.woocommerce-account .acc-form select:focus,
body.woocommerce-account .acc-fld .inp:focus{border-color:var(--lime-500);background:rgba(255,255,255,.05)}
body.woocommerce-account .acc-form span em{font-size:12px;color:var(--fg-tertiary);font-style:normal}
body.woocommerce-account .acc-fieldset{border-top:1px solid var(--line-2);margin-top:22px;padding-top:22px}
body.woocommerce-account .acc-fieldset .lab{font-size:13px;font-weight:700;color:#fff;margin-bottom:14px}

/* generic account forms not fully templated (edit-address, lost-password) ── */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm:not(.acc-card),
body.woocommerce-account .woocommerce-MyAccount-content form.edit-account:not(.acc-card),
body.woocommerce-account .woocommerce-MyAccount-content .lost_reset_password{
  background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);box-shadow:var(--shadow-sm);padding:24px}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper{
  display:grid;grid-template-columns:1fr 1fr;gap:16px}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-wide,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .notes{grid-column:1 / -1}
body.woocommerce-account .woocommerce-MyAccount-content form label{display:block;font-size:13px;font-weight:600;color:var(--fg-1);margin-bottom:7px}
body.woocommerce-account .woocommerce-MyAccount-content form .required{color:var(--lime-500);border:0}
body.woocommerce-account .woocommerce-MyAccount-content form .input-text,
body.woocommerce-account .woocommerce-MyAccount-content form input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content form input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content form select,
body.woocommerce-account .woocommerce-MyAccount-content form .select2-selection,
body.woocommerce-account .woocommerce-MyAccount-content form textarea{width:100%;background:var(--surface-glass) !important;border:1px solid var(--line-1) !important;border-radius:var(--r-sm);
  padding:12px 14px;color:#fff !important;font-size:14px;font-family:var(--font-sans);outline:none;transition:border-color var(--dur-normal) var(--ease)}
body.woocommerce-account .woocommerce-MyAccount-content form .input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content form select:focus,
body.woocommerce-account .woocommerce-MyAccount-content form textarea:focus{border-color:var(--lime-500) !important;background:rgba(255,255,255,.05) !important}
body.woocommerce-account .woocommerce-MyAccount-content .select2-selection__rendered{color:#fff !important;line-height:24px !important}
body.woocommerce-account .woocommerce-MyAccount-content .select2-selection--single{height:auto !important}
body.woocommerce-account .woocommerce-MyAccount-content form h3{color:#fff;font-size:18px;margin:0 0 14px}
/* primary buttons inside account forms (Save address etc.) */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
body.woocommerce-account .woocommerce-MyAccount-content button.button,
body.woocommerce-account .woocommerce-MyAccount-content input.button{display:inline-flex;align-items:center;gap:8px;background:var(--lime-500);color:#0A0D0F;
  border:0;border-radius:var(--r-md);padding:12px 20px;font-weight:700;font-size:14px;cursor:pointer;transition:box-shadow var(--dur-normal) var(--ease)}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover{box-shadow:var(--shadow-glow)}

/* Store Credit (wt-woocommerce-gift-cards) — override its inline light styles */
body.woocommerce-account .wt_gc_myaccount_available_balance{color:var(--fg-1)}
body.woocommerce-account .wt_gc_myaccount_available_balance_left{background:var(--surface-glass) !important;border:1px solid var(--line-1);border-right:0;color:#fff !important}
body.woocommerce-account .wt_gc_myaccount_available_balance_right{background:var(--surface-elev) !important;border:1px solid var(--line-1);color:var(--lime-500) !important;font-weight:700}
body.woocommerce-account .wt_gc_redeem_block,
body.woocommerce-account .wt_gc_redeem_block_hd{color:var(--fg-1) !important}
body.woocommerce-account .wt_gc_redeem_block_desc{color:var(--fg-secondary) !important}

/* generic account data tables (coupons, gift-card history, etc.) */
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
body.woocommerce-account .woocommerce-MyAccount-content .wt_gc_myaccount_store_credit table{
  background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);color:var(--fg-1);border-collapse:collapse;overflow:hidden;width:100%}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
body.woocommerce-account .woocommerce-MyAccount-content .wt_gc_myaccount_store_credit table th{color:var(--fg-secondary);background:var(--surface-glass-2);border-color:var(--line-2)}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
body.woocommerce-account .woocommerce-MyAccount-content .wt_gc_myaccount_store_credit table td{border-color:var(--line-2) !important;color:var(--fg-1)}
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table a{color:var(--lime-500)}

/* warranty / generic rows */
body.woocommerce-account .acc-warr{display:flex;align-items:center;gap:16px;padding:18px 22px;border-bottom:1px solid var(--line-2)}
body.woocommerce-account .acc-warr:last-child{border-bottom:0}
body.woocommerce-account .acc-warr .wthumb{width:52px;height:52px;border-radius:10px;flex:0 0 auto;background:
    radial-gradient(120% 120% at 50% 18%, rgba(35,221,190,.10), transparent 55%),linear-gradient(180deg,#10161a,#0b0f12);
  border:1px solid var(--line-1);display:flex;align-items:center;justify-content:center;overflow:hidden}
body.woocommerce-account .acc-warr .wthumb img{width:80%;height:80%;object-fit:contain}
body.woocommerce-account .acc-warr .wnm{font-size:14.5px;font-weight:700;color:#fff}
body.woocommerce-account .acc-warr .wmt{font-size:12.5px;color:var(--fg-tertiary);margin-top:2px}
body.woocommerce-account .acc-warr .wbadge{margin-left:auto;display:flex;flex-direction:column;align-items:flex-end;gap:6px}

body.woocommerce-account .acc-empty{display:flex;flex-direction:column;align-items:center;text-align:center;padding:48px 24px;gap:8px}
body.woocommerce-account .acc-empty .ic{width:64px;height:64px;border-radius:18px;background:var(--surface-glass);border:1px solid var(--line-1);
  display:flex;align-items:center;justify-content:center;color:var(--fg-tertiary);margin-bottom:8px}
body.woocommerce-account .acc-empty .ic svg{width:30px;height:30px}
body.woocommerce-account .acc-empty h3{margin:0;font-size:18px;font-weight:700;color:#fff}
body.woocommerce-account .acc-empty p{margin:0;font-size:14px;color:var(--fg-secondary);max-width:42ch}

/* recommended product row (self-contained, not dependent on archive CSS) */
body.woocommerce-account .acc-recgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
body.woocommerce-account .acc-reccard{display:flex;flex-direction:column;background:var(--surface-elev);border:1px solid var(--line-1);
  border-radius:var(--r-lg);overflow:hidden;transition:transform var(--dur-normal) var(--ease-out),border-color var(--dur-normal) var(--ease)}
body.woocommerce-account .acc-reccard:hover{transform:translateY(-3px);border-color:rgba(255,255,255,.2)}
body.woocommerce-account .acc-reccard .im{aspect-ratio:1/1;background:radial-gradient(120% 120% at 50% 12%, rgba(35,221,190,.10), transparent 55%),linear-gradient(180deg,#10161a,#0b0f12);
  display:flex;align-items:center;justify-content:center;padding:18px}
body.woocommerce-account .acc-reccard .im img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.5))}
body.woocommerce-account .acc-reccard .bd{padding:14px 16px 16px;display:flex;flex-direction:column;gap:8px}
body.woocommerce-account .acc-reccard .nm{font-size:14px;font-weight:700;color:#fff;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
body.woocommerce-account .acc-reccard .pr{font-size:15px;font-weight:800;color:var(--lime-500)}
body.woocommerce-account .acc-reccard .pr del{color:var(--fg-tertiary);font-weight:600;font-size:13px;margin-right:6px}
body.woocommerce-account .acc-reccard .gs-btn{margin-top:2px}

/* dashboard section heads reuse gs-sechead from gpd-theme.css */
body.woocommerce-account .acc-sub{font-size:18px;font-weight:700;color:#fff;margin:4px 0 14px;letter-spacing:-.2px}
body.woocommerce-account .gs-viewall{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;color:var(--lime-500)}
body.woocommerce-account .gs-viewall:hover{color:#fff}
body.woocommerce-account .gs-viewall svg{width:15px;height:15px}

/* WooCommerce notices — dark-themed for the account area */
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-notice,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error{background:var(--surface-elev) !important;border:1px solid var(--line-1) !important;border-left:3px solid var(--teal-500) !important;
  border-radius:var(--r-md);color:var(--fg-1) !important;box-shadow:var(--shadow-sm);padding:14px 18px;font-size:13.5px}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error::before{color:var(--teal-500)}
body.woocommerce-account .woocommerce-error{border-left-color:var(--orange-500)}
body.woocommerce-account .woocommerce-message a,
body.woocommerce-account .woocommerce-info a,
body.woocommerce-account .woocommerce-error a{color:var(--lime-500)}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width:980px){
  body.woocommerce-account .lg-shell{grid-template-columns:1fr}
  body.woocommerce-account .lg-brand{border-right:0;border-bottom:1px solid var(--line-1)}
  body.woocommerce-account .acc-layout{grid-template-columns:1fr}
  body.woocommerce-account .acc-nav{position:static;flex-direction:row;flex-wrap:wrap;overflow:auto}
  body.woocommerce-account .acc-navlink{flex:0 0 auto}
  body.woocommerce-account .acc-recgrid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  body.woocommerce-account .gs-wrap{padding:0 16px}
  body.woocommerce-account .acc-stats{grid-template-columns:1fr}
  body.woocommerce-account .acc-quick,
  body.woocommerce-account .acc-addrgrid,
  body.woocommerce-account .acc-form,
  body.woocommerce-account .acc-recgrid{grid-template-columns:1fr}
  body.woocommerce-account .lg-brand,
  body.woocommerce-account .lg-form{padding:30px 24px}
  body.woocommerce-account .acc-orow{grid-template-columns:1fr auto;gap:8px}
  body.woocommerce-account .acc-orow .ocell-date,
  body.woocommerce-account .acc-orow.head{display:none}
}

/* Request-a-repair order-select modal (warranty tab) */
body.woocommerce-account .gpd-modal{position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;padding:20px}
body.woocommerce-account .gpd-modal.is-open{display:flex}
body.woocommerce-account .gpd-modal-backdrop{position:absolute;inset:0;background:rgba(6,8,11,.72);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}
body.woocommerce-account .gpd-modal-box{position:relative;z-index:1;width:100%;max-width:440px;max-height:80vh;overflow:auto;background:var(--surface-elev);border:1px solid var(--line-1);border-radius:var(--r-lg);padding:22px;box-shadow:0 24px 60px rgba(0,0,0,.5)}
body.woocommerce-account .gpd-modal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:4px}
body.woocommerce-account #content.site-content .gpd-modal-head h3{margin:0;color:#fff !important;font-size:18px;font-weight:700}
body.woocommerce-account .gpd-modal-x{background:none;border:0;color:var(--fg-secondary);font-size:26px;line-height:1;cursor:pointer;padding:0 4px}
body.woocommerce-account .gpd-modal-x:hover{color:#fff}
body.woocommerce-account .gpd-modal-sub{color:var(--fg-secondary);font-size:13.5px;margin:0 0 14px}
body.woocommerce-account .gpd-modal-list{display:flex;flex-direction:column;gap:8px}
body.woocommerce-account .gpd-modal-order{display:flex;align-items:center;gap:10px;padding:12px 14px;border:1px solid var(--line-1);border-radius:var(--r-md);background:var(--surface-glass);text-decoration:none;transition:border-color .2s,background .2s}
body.woocommerce-account .gpd-modal-order:hover{border-color:var(--teal-500);background:rgba(35,221,190,.08)}
body.woocommerce-account .gpd-modal-order .ordno{font-weight:700;color:#fff;font-size:14px}
body.woocommerce-account .gpd-modal-order .orddate{color:var(--fg-tertiary);font-size:12.5px}
body.woocommerce-account .gpd-modal-order svg{margin-left:auto;width:16px;height:16px;color:var(--fg-secondary);flex:0 0 auto}
body.woocommerce-account .gpd-modal-empty{color:var(--fg-secondary);font-size:14px;text-align:center;padding:16px}

/* Login: heading visibility (beat the #content h1–h6 dark reset) + method tabs + password form */
body.woocommerce-account #content.site-content .lg-formhead h1{color:#fff !important}
body.woocommerce-account .lg-tabs{display:flex;gap:5px;margin:0 0 22px;background:var(--surface-glass);border:1px solid var(--line-1);border-radius:var(--r-md);padding:4px}
body.woocommerce-account .lg-tab{flex:1;padding:9px 12px;border:0;background:none;color:var(--fg-secondary);font-size:14px;font-weight:700;border-radius:8px;cursor:pointer;transition:background .2s,color .2s;font-family:inherit}
body.woocommerce-account .lg-tab:hover{color:#fff}
body.woocommerce-account .lg-tab.is-active{background:var(--lime-500);color:#0A0D0F}
body.woocommerce-account .lg-pane[hidden]{display:none}
body.woocommerce-account .lg-pwrow{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;margin:-2px 0 18px}
body.woocommerce-account .lg-remember{display:inline-flex;align-items:center;gap:8px;color:var(--fg-secondary);font-size:13.5px;cursor:pointer;margin:0}
body.woocommerce-account .lg-remember input{width:16px;height:16px;accent-color:var(--lime-500);margin:0}
body.woocommerce-account .lg-pwrow .lg-inlinelink{color:var(--teal-500);font-size:13.5px;font-weight:600;text-decoration:none;background:none;border:0;padding:0;cursor:pointer}
body.woocommerce-account .lg-pwrow .lg-inlinelink:hover{color:#fff}
body.woocommerce-account .pw-error{background:rgba(255,92,92,.12);border:1px solid rgba(255,92,92,.32);color:#ff9b9b;border-radius:var(--r-md);padding:11px 14px;font-size:13.5px;margin:0 0 16px}

/* Section headings visibility: the #content.site-content h1–h6 dark-reset hides
   .gs-sechead h2 / .acc-sub ("Latest order", "Quick actions", "Complete your setup"). */
body.woocommerce-account #content.site-content .gs-sechead h2,
body.woocommerce-account #content.site-content h2.acc-sub,
body.woocommerce-account #content.site-content .acc-sub{color:#fff !important}
/* Greeting name ("Hi, …"): same #content h1–h6 dark-reset hides it on the hero. */
body.woocommerce-account #content.site-content .acc-greet .gt h1{color:#fff !important}

/* ══════════════════════════════════════════════════════════════════════════
   MY COUPONS  (wt-smart-coupon-pro) — dark reskin
   The plugin renders section <h4>s (hidden by the #content h1–h6 dark-reset),
   a sort-by form, empty-state messages, and inline-styled ticket cards
   (.wt_sc_single_coupon carries a light inline style attr → override needs
   !important).
   ══════════════════════════════════════════════════════════════════════════ */
body.woocommerce-account #content.site-content .wt-mycoupons h4,
body.woocommerce-account #content.site-content .wt-used-coupons h4,
body.woocommerce-account #content.site-content .wt-expired-coupons h4{color:#fff !important;font-size:18px;font-weight:700;letter-spacing:-.2px;margin:0 0 16px}
body.woocommerce-account .wt-used-coupons,
body.woocommerce-account .wt-expired-coupons{margin-top:32px}
/* sort-by row */
body.woocommerce-account .wt_sc_available_coupon_sort_by{display:flex;align-items:center;justify-content:flex-end;gap:10px;margin:0 0 20px}
body.woocommerce-account .wt_sc_available_coupon_sort_by form{display:flex;align-items:center;gap:10px;margin:0}
body.woocommerce-account .wt_sc_available_coupon_sort_by span{color:var(--fg-secondary);font-size:13px;font-weight:600}
body.woocommerce-account .wt_sc_available_coupon_sort_by select{background:var(--surface-glass);border:1px solid var(--line-1);border-radius:var(--r-sm);color:#fff;
  padding:9px 12px;font-size:13px;font-family:var(--font-sans);outline:none;cursor:pointer}
/* empty-state messages */
body.woocommerce-account .wt_sc_myaccount_no_available_coupons,
body.woocommerce-account .wt_sc_myaccount_no_used_coupons,
body.woocommerce-account .wt_sc_myaccount_no_expired_coupons{color:var(--fg-secondary);font-size:14px;padding:6px 0 8px}
/* ticket cards — beat the plugin's inline style attribute (light bg/text/border) */
body.woocommerce-account .wt_coupon_wrapper{display:flex;flex-wrap:wrap;gap:16px;margin-top:4px}
body.woocommerce-account .wt_sc_single_coupon{width:300px;max-width:100%;background:var(--surface-elev) !important;color:#fff !important;
  border:2px dashed var(--line-1) !important;border-radius:var(--r-lg);box-shadow:none !important}
body.woocommerce-account .wt_sc_single_coupon.active-coupon{border-color:rgba(211,255,95,.45) !important}
body.woocommerce-account .wt_sc_single_coupon.used-coupon,
body.woocommerce-account .wt_sc_single_coupon.expired{opacity:.6}
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_amount{color:#fff}
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_type{color:var(--fg-secondary)}
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_code code{color:var(--lime-500);opacity:1}
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_start,
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_expiry{color:var(--fg-tertiary)}
body.woocommerce-account .wt_sc_single_coupon .wt_sc_coupon_desc_wrapper i.info{background:var(--lime-500);color:#0A0D0F;box-shadow:none}

/* ══════════════════════════════════════════════════════════════════════════
   STORE CREDIT (wt-woocommerce-gift-cards) — fields not covered above
   The plugin injects a light inline <style> (Redeem button #efefef, history
   table #fdfdfd cells); the Previous/Next pager uses theme .button (olive
   gradient). Override with !important to beat the inline block / theme button.
   ══════════════════════════════════════════════════════════════════════════ */
body.woocommerce-account .wt_gc_redeem_block_input_box button{background:var(--lime-500) !important;color:#0A0D0F !important;border:0 !important;
  border-radius:var(--r-md) !important;font-weight:700;cursor:pointer;transition:box-shadow var(--dur-normal) var(--ease)}
body.woocommerce-account .wt_gc_redeem_block_input_box button:hover{box-shadow:var(--shadow-glow)}
/* history table body cells (th chrome already handled by the generic table block) */
body.woocommerce-account .wt_gc_myaccount_credit_history_table td{background:var(--surface-elev) !important;color:var(--fg-1) !important;border-color:var(--line-2) !important}
body.woocommerce-account .wt_gc_myaccount_credit_history_table tbody tr:nth-child(2n) td{background:var(--surface-glass-2) !important}
body.woocommerce-account .wt_gc_myaccount_credit_history_msg_dv{color:var(--fg-secondary)}
/* Previous / Next pager */
body.woocommerce-account .wt_gc_wallet_history_pagination a.button{display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.10) !important;background-image:none !important;color:#fff !important;border:0 !important;border-radius:var(--r-md) !important;
  padding:11px 20px;font-weight:700;font-size:14px;text-shadow:none !important;transition:background var(--dur-normal) var(--ease)}
body.woocommerce-account .wt_gc_wallet_history_pagination a.button:hover{background:rgba(255,255,255,.17) !important}
body.woocommerce-account .wt_gc_wallet_history_pagination a.button.disabled{opacity:.4}
