/**
 * DEV Mason RAW II — TruGuard account shell (dashboard + endpoint pages)
 * Source: dws-better-account-page.html + dws-account-remaining-pages.zip
 */

.dws-gen2.dws-page-account,
.dws-gen2.dws-page-vault {
  background: linear-gradient(180deg, #fff, #f7f8fa 56%, #fff);
}

/* Account bar */
.dws-gen2.dws-page-account .account-bar,
.dws-gen2.dws-page-vault .account-bar {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border, #e4e7ec);
}

.dws-gen2.dws-page-account .account-inner,
.dws-gen2.dws-page-vault .account-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}

.dws-gen2.dws-page-account .account-title,
.dws-gen2.dws-page-vault .account-title {
  font-family: var(--brand);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink, #111827);
  flex-shrink: 0;
}

.dws-gen2.dws-page-account .account-nav,
.dws-gen2.dws-page-vault .account-nav {
  display: flex;
  gap: 18px;
  overflow: auto;
  white-space: nowrap;
  color: #667085;
  font-size: 14px;
}

.dws-gen2.dws-page-account .account-nav a,
.dws-gen2.dws-page-vault .account-nav a {
  padding: 20px 0;
  border-bottom: 2px solid transparent;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.dws-gen2.dws-page-account .account-nav a.active,
.dws-gen2.dws-page-vault .account-nav a.active {
  color: var(--blue, #008ed6);
  border-color: var(--blue, #008ed6);
  font-weight: 800;
}

.dws-gen2.dws-page-account .account-nav a:hover,
.dws-gen2.dws-page-vault .account-nav a:hover {
  color: var(--blue, #008ed6);
}

/* Dashboard hero */
.dws-gen2.dws-page-account .account-hero {
  padding: 54px 0 28px;
}

.dws-gen2.dws-page-account .account-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}

.dws-gen2.dws-page-account .account-hero-main {
  background: linear-gradient(135deg, #0d1117, #071b2b 62%, #008ed6);
  color: #fff;
  border-radius: 34px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}

.dws-gen2.dws-page-account .account-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9d1d9;
  font-weight: 900;
}

.dws-gen2.dws-page-account .account-hero-main h1 {
  font-family: var(--brand);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 16px 0 14px;
}

.dws-gen2.dws-page-account .account-hero-main p {
  color: #c9d1d9;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 690px;
}

.dws-gen2.dws-page-account .account-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.dws-gen2.dws-page-account .account-hero-actions .btn.primary {
  background: #fff;
  color: #0d1117 !important;
}

.dws-gen2.dws-page-account .account-hero-actions .btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff !important;
  background: transparent;
}

.dws-gen2.dws-page-account .account-membership {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow, 0 18px 50px rgba(17, 24, 39, 0.08));
}

.dws-gen2.dws-page-account .account-membership .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue, #008ed6);
  font-weight: 900;
}

.dws-gen2.dws-page-account .account-membership h2 {
  font-family: var(--brand);
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 12px 0 8px;
}

.dws-gen2.dws-page-account .account-membership > p {
  margin: 0;
  color: #667085;
  line-height: 1.55;
}

.dws-gen2.dws-page-account .account-membership .status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eef0f3;
  margin-top: 18px;
  padding-top: 16px;
}

.dws-gen2.dws-page-account .account-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dafbe1;
  color: #1a7f37;
  font-size: 12px;
  font-weight: 900;
}

.dws-gen2.dws-page-account .account-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1a7f37;
}

.dws-gen2.dws-page-account .account-pill.inactive {
  background: #f2f4f7;
  color: #475467;
}

.dws-gen2.dws-page-account .account-pill.inactive::before {
  background: #98a2b3;
}

.dws-gen2.dws-page-account .account-member-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.dws-gen2.dws-page-account .account-meta {
  background: #f7f8fa;
  border-radius: 18px;
  padding: 14px;
}

.dws-gen2.dws-page-account .account-meta span {
  display: block;
  color: #667085;
  font-size: 12px;
}

.dws-gen2.dws-page-account .account-meta strong {
  display: block;
  margin-top: 4px;
}

/* Dashboard body */
.dws-gen2.dws-page-account .account-dashboard {
  padding: 20px 0 72px;
}

.dws-gen2.dws-page-account .account-dashboard .wrap {
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}

.dws-gen2.dws-page-account .account-section-head {
  margin: 18px 0;
}

.dws-gen2.dws-page-account .account-section-head h2 {
  font-family: var(--brand);
  font-size: 34px;
  letter-spacing: -0.05em;
  margin: 0;
}

.dws-gen2.dws-page-account .account-section-head p {
  color: #667085;
  margin: 6px 0 0;
}

.dws-gen2.dws-page-account .account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dws-gen2.dws-page-account .account-stat {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.dws-gen2.dws-page-account .account-stat span {
  font-size: 12px;
  color: #667085;
}

.dws-gen2.dws-page-account .account-stat strong {
  display: block;
  font-family: var(--brand);
  font-size: 34px;
  margin-top: 8px;
}

.dws-gen2.dws-page-account .account-stat small {
  display: block;
  color: #8a94a6;
  margin-top: 6px;
}

.dws-gen2.dws-page-account .account-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 22px;
  margin-top: 22px;
}

.dws-gen2.dws-page-account .account-panel {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow, 0 18px 50px rgba(17, 24, 39, 0.08));
  overflow: hidden;
}

.dws-gen2.dws-page-account .account-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-panel-head h3 {
  margin: 0;
  font-size: 20px;
}

.dws-gen2.dws-page-account .account-panel-head a {
  color: var(--blue, #008ed6);
  font-size: 13px;
  font-weight: 800;
}

.dws-gen2.dws-page-account .account-vault-list {
  padding: 0 24px;
}

.dws-gen2.dws-page-account .account-vault-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-vault-item:last-child {
  border-bottom: 0;
}

.dws-gen2.dws-page-account .account-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf7fd, #fff);
  border: 1px solid #dbeef9;
  display: grid;
  place-items: center;
  color: var(--blue, #008ed6);
  font-weight: 900;
}

.dws-gen2.dws-page-account .account-vault-item h4 {
  margin: 0 0 5px;
}

.dws-gen2.dws-page-account .account-vault-item p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.dws-gen2.dws-page-account .account-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dws-gen2.dws-page-account .account-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.dws-gen2.dws-page-account .account-small.light {
  background: #f6f8fa;
  color: #111827;
  border: 1px solid #e4e7ec;
}

.dws-gen2.dws-page-account .account-side {
  display: grid;
  gap: 22px;
}

.dws-gen2.dws-page-account .account-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
}

.dws-gen2.dws-page-account .account-quick a {
  padding: 18px;
  border-radius: 20px;
  background: #f7f8fa;
  border: 1px solid #edf0f3;
  text-decoration: none;
}

.dws-gen2.dws-page-account .account-quick strong {
  display: block;
  font-size: 14px;
}

.dws-gen2.dws-page-account .account-quick span {
  display: block;
  color: #667085;
  font-size: 12px;
  margin-top: 5px;
}

.dws-gen2.dws-page-account .account-license-list {
  padding: 8px 24px 20px;
}

.dws-gen2.dws-page-account .account-license-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-license-row:last-child {
  border-bottom: 0;
}

.dws-gen2.dws-page-account .account-license-row span {
  color: #667085;
  font-size: 12px;
}

.dws-gen2.dws-page-account .account-license-row b {
  color: #1a7f37;
}

.dws-gen2.dws-page-account .account-orders-panel {
  margin-top: 22px;
}

.dws-gen2.dws-page-account .account-orders-panel table,
.dws-gen2.dws-page-account .account-data-table {
  width: 100%;
  border-collapse: collapse;
}

.dws-gen2.dws-page-account .account-orders-panel th,
.dws-gen2.dws-page-account .account-orders-panel td,
.dws-gen2.dws-page-account .account-data-table th,
.dws-gen2.dws-page-account .account-data-table td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid #eef0f3;
  font-size: 13px;
}

.dws-gen2.dws-page-account .account-orders-panel th,
.dws-gen2.dws-page-account .account-data-table th {
  color: #667085;
  background: #fafbfc;
}

.dws-gen2.dws-page-account .account-order-pill,
.dws-gen2.dws-page-account .account-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.dws-gen2.dws-page-account .account-tag.green,
.dws-gen2.dws-page-account .account-order-pill {
  background: #dafbe1;
  color: #1a7f37;
}

.dws-gen2.dws-page-account .account-tag.blue {
  background: #eaf7fd;
  color: #008ed6;
}

.dws-gen2.dws-page-account .account-tag.gray {
  background: #f2f4f7;
  color: #475467;
}

.dws-gen2.dws-page-account .account-tag.amber {
  background: #fff8c5;
  color: #9a6700;
}

/* Sub-page shell */
.dws-gen2.dws-page-account .account-page-shell {
  padding: 54px 0 76px;
}

.dws-gen2.dws-page-account .account-page-shell > .wrap {
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}

.dws-gen2.dws-page-account .account-page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-bottom: 22px;
}

.dws-gen2.dws-page-account .account-page-hero-main {
  background: linear-gradient(135deg, #0d1117, #071b2b 62%, #008ed6);
  color: #fff;
  border-radius: 34px;
  padding: 36px;
}

.dws-gen2.dws-page-account .account-page-hero-main h1 {
  font-family: var(--brand);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 14px 0;
}

.dws-gen2.dws-page-account .account-page-hero-main p {
  color: #c9d1d9;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 660px;
}

.dws-gen2.dws-page-account .account-page-hero-side {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow, 0 18px 50px rgba(17, 24, 39, 0.08));
}

.dws-gen2.dws-page-account .account-page-hero-side h2 {
  font-family: var(--brand);
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 10px 0;
}

.dws-gen2.dws-page-account .account-page-hero-side p {
  color: #667085;
  line-height: 1.55;
  margin: 0;
}

.dws-gen2.dws-page-account .account-page-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 22px;
}

.dws-gen2.dws-page-account .account-page-stack {
  display: grid;
  gap: 22px;
}

.dws-gen2.dws-page-account .account-table-wrap {
  overflow: auto;
}

.dws-gen2.dws-page-account .account-kpi-list {
  padding: 8px 24px 20px;
}

.dws-gen2.dws-page-account .account-kpi {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-kpi:last-child {
  border-bottom: 0;
}

.dws-gen2.dws-page-account .account-kpi span {
  color: #667085;
  font-size: 13px;
}

.dws-gen2.dws-page-account .account-kpi strong {
  font-size: 13px;
}

.dws-gen2.dws-page-account .account-license-card-list {
  padding: 0 24px;
}

.dws-gen2.dws-page-account .account-license-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-license-card:last-child {
  border-bottom: 0;
}

.dws-gen2.dws-page-account .account-license-card h4 {
  margin: 0 0 6px;
}

.dws-gen2.dws-page-account .account-license-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

.dws-gen2.dws-page-account .account-meter {
  height: 8px;
  background: #eef0f3;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.dws-gen2.dws-page-account .account-meter span {
  display: block;
  height: 100%;
  background: #008ed6;
}

.dws-gen2.dws-page-account .account-notice-list {
  padding: 8px 24px 20px;
}

.dws-gen2.dws-page-account .account-notice-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eef0f3;
}

.dws-gen2.dws-page-account .account-notice-row:last-child {
  border-bottom: 0;
}

.dws-gen2.dws-page-account .account-panel-body {
  padding: 20px 24px;
}

.dws-gen2.dws-page-account .account-panel-body p {
  color: #667085;
  line-height: 1.6;
  margin: 0 0 16px;
}

.dws-gen2.dws-page-account .account-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff !important;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.dws-gen2.dws-page-account .account-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-weight: 900;
  border: 1px solid #d0d5dd;
  text-decoration: none;
}

.dws-gen2.dws-page-account .account-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 24px 24px;
}

/* WooCommerce shell */
.dws-gen2.dws-page-account .dws-woo-account-shell .woocommerce-MyAccount-navigation {
  display: none;
}

.dws-gen2.dws-page-account .dws-woo-account-shell .woocommerce-MyAccount-content {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.dws-gen2.dws-page-account .dws-woo-account-shell .woocommerce-MyAccount-content > p:first-child {
  display: none;
}

.dws-gen2.dws-page-account .woocommerce-orders-table,
.dws-gen2.dws-page-account .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.dws-gen2.dws-page-account .woocommerce-orders-table th,
.dws-gen2.dws-page-account .woocommerce-orders-table td,
.dws-gen2.dws-page-account .woocommerce-table--order-details th,
.dws-gen2.dws-page-account .woocommerce-table--order-details td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid #eef0f3;
  font-size: 13px;
}

.dws-gen2.dws-page-account .woocommerce-orders-table th,
.dws-gen2.dws-page-account .woocommerce-table--order-details th {
  color: #667085;
  background: #fafbfc;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm,
.dws-gen2.dws-page-account .woocommerce-Address {
  padding: 24px;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm .woocommerce-form-row {
  margin-bottom: 16px;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm label {
  font-size: 13px;
  font-weight: 800;
  color: #344054;
  display: block;
  margin-bottom: 8px;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm input.input-text,
.dws-gen2.dws-page-account .woocommerce-EditAccountForm select,
.dws-gen2.dws-page-account .woocommerce-EditAccountForm textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
  color: #111827;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm fieldset {
  border: 0;
  padding: 0;
  margin: 24px 0 0;
}

.dws-gen2.dws-page-account .woocommerce-EditAccountForm fieldset legend {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.dws-gen2.dws-page-account .woocommerce a.button,
.dws-gen2.dws-page-account .woocommerce button.button,
.dws-gen2.dws-page-account .woocommerce input.button {
  background: var(--dws-blue, #008ed6) !important;
  border-color: var(--dws-blue, #008ed6) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 900;
  min-height: 46px;
}

.dws-gen2.dws-page-account .woocommerce a.button.account-small,
.dws-gen2.dws-page-account .woocommerce a.button.account-small.light {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.dws-gen2.dws-page-account .woocommerce-orders-table__cell-order-status mark {
  background: #dafbe1;
  color: #1a7f37;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
}

/* Guest login / register — branded account page (not wp-login.php) */
.dws-gen2.dws-page-account .account-hero--login {
  padding: 54px 0 20px;
}

.dws-gen2.dws-page-account .account-hero-grid--login {
  width: min(var(--max), calc(100% - 34px));
  margin: auto;
}

.dws-gen2.dws-page-account .account-login-aside .account-dark-btn {
  margin-top: 16px;
}

.dws-gen2.dws-page-account .account-login {
  padding: 0 0 64px;
}

.dws-gen2.dws-page-account .account-login .dws-woo-account-shell {
  width: min(var(--max), calc(100% - 34px));
  margin: 0 auto;
}

.dws-gen2.dws-page-account #customer_login,
.dws-gen2.dws-page-account .woocommerce-form-login,
.dws-gen2.dws-page-account .woocommerce-form-register,
.dws-gen2.dws-page-account .woocommerce-ResetPassword,
.dws-gen2.dws-page-account .woocommerce-form.lost_reset_password {
  background: #fff;
  border: 1px solid var(--border, #e4e7ec);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(27, 31, 36, 0.06);
  padding: 28px;
  margin: 0 0 18px;
}

.dws-gen2.dws-page-account #customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dws-gen2.dws-page-account #customer_login .u-column1,
.dws-gen2.dws-page-account #customer_login .u-column2 {
  width: auto;
  float: none;
  margin: 0;
}

.dws-gen2.dws-page-account #customer_login .u-column1:only-child {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
}

.dws-gen2.dws-page-account .woocommerce-form-login h2,
.dws-gen2.dws-page-account .woocommerce-form-register h2,
.dws-gen2.dws-page-account .woocommerce-ResetPassword h2,
.dws-gen2.dws-page-account .woocommerce-form.lost_reset_password h2 {
  font-family: var(--brand);
  font-size: 24px;
  letter-spacing: -0.04em;
  margin: 0 0 8px;
  color: var(--ink, #111827);
}

.dws-gen2.dws-page-account .woocommerce-form-login p,
.dws-gen2.dws-page-account .woocommerce-form-register p,
.dws-gen2.dws-page-account .woocommerce-ResetPassword p,
.dws-gen2.dws-page-account .woocommerce-form.lost_reset_password p {
  color: #667085;
  line-height: 1.6;
  margin: 0 0 16px;
}

.dws-gen2.dws-page-account .woocommerce-form-row label,
.dws-gen2.dws-page-account .woocommerce-form-login label,
.dws-gen2.dws-page-account .woocommerce-form-register label {
  font-size: 13px;
  font-weight: 800;
  color: #344054;
  display: block;
  margin-bottom: 8px;
}

.dws-gen2.dws-page-account .woocommerce-form-row input.input-text,
.dws-gen2.dws-page-account .woocommerce-form-login input.input-text,
.dws-gen2.dws-page-account .woocommerce-form-register input.input-text,
.dws-gen2.dws-page-account .woocommerce-ResetPassword input.input-text,
.dws-gen2.dws-page-account .woocommerce-form.lost_reset_password input.input-text {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  padding: 0 14px;
  font: inherit;
  background: #fff;
  color: #111827;
  box-shadow: none;
}

.dws-gen2.dws-page-account .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  font-size: 14px;
  color: #344054;
}

.dws-gen2.dws-page-account .woocommerce-form-login .woocommerce-form-login__rememberme input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.dws-gen2.dws-page-account .woocommerce-LostPassword a,
.dws-gen2.dws-page-account .woocommerce-privacy-policy-text a,
.dws-gen2.dws-page-account .woocommerce-MyAccount-content a:not(.button):not(.account-small):not(.account-dark-btn):not(.account-light-btn) {
  color: var(--blue, #008ed6);
  font-weight: 700;
  text-decoration: none;
}

.dws-gen2.dws-page-account .woocommerce-LostPassword a:hover,
.dws-gen2.dws-page-account .woocommerce-MyAccount-content a:not(.button):hover {
  text-decoration: underline;
}

.dws-gen2.dws-page-account .woocommerce-form-login button.button,
.dws-gen2.dws-page-account .woocommerce-form-register button.button,
.dws-gen2.dws-page-account .woocommerce-ResetPassword button.button,
.dws-gen2.dws-page-account .woocommerce-form.lost_reset_password button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue, #008ed6) !important;
  border: 1px solid var(--blue, #008ed6) !important;
  color: #fff !important;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.dws-gen2.dws-page-account button.account-dark-btn {
  background: #111827 !important;
  border: 0 !important;
  color: #fff !important;
}

.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-message,
.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-info,
.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-error {
  border-radius: 20px;
  padding: 14px 18px;
  margin: 0 0 18px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #111827;
  list-style: none;
}

.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-message {
  border-color: rgba(0, 142, 214, 0.35);
  background: #e8f3fb;
}

.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-error {
  border-color: rgba(207, 46, 46, 0.35);
  background: #fff5f5;
}

.dws-gen2.dws-page-account .woocommerce-notices-wrapper .woocommerce-info {
  border-color: rgba(9, 105, 218, 0.25);
  background: #f6f8fa;
}

.dws-gen2.dws-page-account .woocommerce-pagination {
  margin-top: 18px;
}

.dws-gen2.dws-page-account .woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dws-gen2.dws-page-account .woocommerce-pagination ul li a,
.dws-gen2.dws-page-account .woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
  font-weight: 800;
  text-decoration: none;
}

.dws-gen2.dws-page-account .woocommerce-pagination ul li span.current {
  background: #ddf4ff;
  color: #008ed6;
  border-color: rgba(0, 142, 214, 0.35);
}

.dws-gen2.dws-page-account .woocommerce-orders-table__cell-order-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #111827 !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.dws-gen2.dws-page-account .woocommerce-Address-title .edit {
  color: var(--blue, #008ed6) !important;
  font-weight: 800;
}

.dws-gen2.dws-page-account .mason-dev-login-gate {
  background: #fff;
  border: 1px solid var(--border, #e4e7ec);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.dws-gen2.dws-page-account .mason-dev-login-gate .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue, #008ed6);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .dws-gen2.dws-page-account .account-hero-grid,
  .dws-gen2.dws-page-account .account-grid,
  .dws-gen2.dws-page-account .account-page-hero,
  .dws-gen2.dws-page-account .account-page-grid {
    grid-template-columns: 1fr;
  }

  .dws-gen2.dws-page-account .account-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dws-gen2.dws-page-account .account-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .dws-gen2.dws-page-account .account-nav {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .dws-gen2.dws-page-account .account-stats,
  .dws-gen2.dws-page-account .account-member-meta,
  .dws-gen2.dws-page-account .account-quick {
    grid-template-columns: 1fr;
  }

  .dws-gen2.dws-page-account .account-vault-item {
    grid-template-columns: 48px 1fr;
  }

  .dws-gen2.dws-page-account .account-item-actions {
    grid-column: 2;
  }

  .dws-gen2.dws-page-account .account-orders-panel,
  .dws-gen2.dws-page-account .account-table-wrap {
    overflow: auto;
  }

  .dws-gen2.dws-page-account .account-hero-main,
  .dws-gen2.dws-page-account .account-membership,
  .dws-gen2.dws-page-account .account-page-hero-main {
    padding: 24px;
  }

  .dws-gen2.dws-page-account .account-license-card {
    grid-template-columns: 1fr;
  }

  .dws-gen2.dws-page-account .account-notice-row {
    grid-template-columns: auto 1fr;
  }

  .dws-gen2.dws-page-account .account-notice-row .account-tag {
    grid-column: 2;
  }

  .dws-gen2.dws-page-account #customer_login {
    grid-template-columns: 1fr;
  }
}
