/* =========================================================
   STRATEGEM CLUB — Member Account page
   Own markup (sma- prefix) for header/tabs/cards/orders.
   WooCommerce's own core account-form templates are embedded
   as-is for anything that saves data — styled here via WC's
   real, long-stable core classes (woocommerce-EditAccountForm,
   form-row, woocommerce-Input, etc.), not guessed.
   ========================================================= */

.sma-wrap{
  --sc-dark:        #122A22;
  --sc-dark-alt:    #244C3E;
  --sc-gold:        #C99B3E;
  --sc-gold-hover:  #B98B2E;
  --sc-maroon:      #661E1A;
  --sc-maroon-hover:#54130F;
  --sc-cream:       #F2E9D4;
  --sc-cream-light: #FBF7EE;
  --sc-text-body:   #6B6B6B;
  --sc-border:      #E1D6BC;

  font-family: inherit;
  max-width: 1160px;
  margin: 40px auto;
  padding: 0 24px;
}

.sma-empty{
  color: var(--sc-text-body) !important;
  font-size: 14px;
}

/* ---------- Profile header ---------- */
.sma-header{
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sc-dark);
  border-radius: 13px;
  padding: 28px 30px;
  margin-bottom: 24px;
}

.sma-header-info{
  flex: 1 1 auto;
}

.sma-header-actions{
  align-self: flex-start;
}

.sma-logout{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.sma-logout:hover{
  color: #ffffff !important;
}

.sma-avatar img{
  border-radius: 50%;
  display: block;
}

.sma-tier-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sc-gold) !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.sma-tier-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-gold);
}

.sma-name{
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 24px;
}

.sma-email{
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px;
  margin-top: 2px;
}

.sma-meta{
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px;
  margin-top: 4px;
}

/* ---------- Tabs ---------- */
.sma-tabs{
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--sc-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sma-tab{
  background: none !important;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 4px;
  margin-right: 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--sc-text-body) !important;
  cursor: pointer;
}

.sma-tab:hover{
  background: none !important;
  color: var(--sc-dark) !important;
}

.sma-tab:focus,
.sma-tab:active{
  background: none !important;
  outline: none;
  box-shadow: none !important;
}

.sma-tab.active{
  background: none !important;
  color: var(--sc-dark) !important;
  border-bottom-color: var(--sc-gold) !important;
}

/* ---------- Generic content card ---------- */
.sma-card{
  background: var(--sc-cream-light);
  border: 1px solid var(--sc-border);
  border-radius: 13px;
  padding: 26px 28px;
  margin-bottom: 20px;
}

.sma-card-title{
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--sc-dark) !important;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}

.sma-overview-text{
  color: var(--sc-dark) !important;
  font-size: 15px;
  margin: 0 0 16px;
}

.sma-overview-links{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sma-tab-link{
  color: var(--sc-gold-hover) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.sma-tab-link:hover{
  text-decoration: underline;
}

/* ---------- Membership tier cards (same visuals as the
   standalone strategem-membership-cards plugin) ---------- */
.sma-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 1100px){
  .sma-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .sma-grid{ grid-template-columns: 1fr; }
}

.sma-tcard{
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  padding: 28px 24px 24px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.sma-tcard--dark{ background: var(--sc-dark); }
.sma-tcard--cream{ background: var(--sc-cream); }
.sma-tcard--dimmed{ opacity: 0.8; }

.sma-tcard--active{
  opacity: 1;
  transform: scale(1.035);
  box-shadow: 0 0 0 2px var(--sc-gold), 0 16px 32px rgba(18, 42, 34, 0.25);
  z-index: 2;
}

@media (max-width: 1100px){
  .sma-tcard--active{ transform: none; }
}

.sma-badge{
  display: inline-block;
  align-self: flex-start;
  background: var(--sc-cream);
  color: var(--sc-dark) !important;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.sma-tcard--cream .sma-badge{
  background: rgba(102, 30, 26, 0.1);
  color: var(--sc-maroon) !important;
}

.sma-badge--current{
  background: var(--sc-gold);
  color: var(--sc-dark) !important;
}

.sma-tname{
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 18px;
  color: #ffffff !important;
}

.sma-tcard--cream .sma-tname{ color: var(--sc-dark) !important; }

.sma-tprice-row{ margin-bottom: 20px; }

.sma-tprice{
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--sc-gold) !important;
  line-height: 1.1;
}

.sma-tcard--cream .sma-tprice{ color: var(--sc-maroon) !important; }

.sma-tsub{
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6) !important;
}

.sma-tcard--cream .sma-tsub{ color: var(--sc-text-body) !important; }

.sma-tbullets{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1 1 auto;
}

.sma-tbullets li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: #ffffff !important;
  line-height: 1.4;
}

.sma-tcard--cream .sma-tbullets li{
  border-bottom-color: var(--sc-border) !important;
  color: var(--sc-dark) !important;
}

.sma-tbullets li:last-child{ border-bottom: none; }

.sma-ring-icon{
  flex: 0 0 auto;
  color: var(--sc-gold) !important;
  margin-top: 2px;
}

.sma-tcard--cream .sma-ring-icon{ color: var(--sc-maroon) !important; }

.sma-tbtn{
  display: block;
  text-align: center;
  background: var(--sc-gold);
  color: var(--sc-dark) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.sma-tbtn:hover{ background: var(--sc-gold-hover); }

.sma-tcard--cream .sma-tbtn{
  background: var(--sc-maroon);
  color: #ffffff !important;
}

.sma-tcard--cream .sma-tbtn:hover{ background: var(--sc-maroon-hover); }

.sma-tbtn--current{
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  cursor: default;
}

.sma-tcard--cream .sma-tbtn--current{
  background: rgba(18, 42, 34, 0.1);
  color: var(--sc-dark) !important;
}

/* ---------- Orders table (our own markup, read-only) ---------- */
.sma-orders-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sma-orders-table th{
  text-align: left;
  color: var(--sc-text-body) !important;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0 18px 14px !important;
  border-bottom: 1px solid var(--sc-border);
}

.sma-orders-table th:first-child,
.sma-orders-table td:first-child{
  padding-left: 0 !important;
}

.sma-orders-table th:last-child,
.sma-orders-table td:last-child{
  padding-right: 0 !important;
}

.sma-orders-table td{
  padding: 18px !important;
  border-bottom: 1px solid var(--sc-border);
  color: var(--sc-dark) !important;
}

/* Neutralize the theme/WooCommerce default row-hover color
   entirely — no highlight on hover at all, as requested. */
.sma-orders-table tr:hover,
.sma-orders-table tbody tr:hover,
.sma-orders-table tr:hover td,
.sma-orders-table tr:hover th{
  background: transparent !important;
}

.sma-order-status{
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--sc-cream);
  color: var(--sc-dark) !important;
}

.sma-order-status--completed{ background: rgba(36, 76, 62, 0.15); color: var(--sc-dark-alt) !important; }
.sma-order-status--processing{ background: rgba(201, 155, 62, 0.18); color: var(--sc-gold-hover) !important; }
.sma-order-status--cancelled,
.sma-order-status--failed{ background: rgba(102, 30, 26, 0.12); color: var(--sc-maroon) !important; }

.sma-order-link{
  color: var(--sc-gold-hover) !important;
  font-weight: 600;
  text-decoration: none;
}

.sma-order-link:hover{ text-decoration: underline; }

/* ---------- WooCommerce's own account-details / address forms
   (myaccount/form-edit-account.php, myaccount/form-edit-address.php)
   restyled via WC core's real, long-stable classes. ---------- */
.sma-card .woocommerce-EditAccountForm .form-row,
.sma-card .woocommerce-address-fields .form-row{
  margin-bottom: 16px;
}

.sma-card .woocommerce-EditAccountForm label,
.sma-card .woocommerce-address-fields label{
  display: block;
  color: var(--sc-dark) !important;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}

.sma-card .woocommerce-EditAccountForm .input-text,
.sma-card .woocommerce-address-fields .input-text,
.sma-card .woocommerce-EditAccountForm select,
.sma-card .woocommerce-address-fields select{
  width: 100%;
  border: 1px solid var(--sc-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--sc-dark) !important;
  background: #ffffff;
}

.sma-card .woocommerce-EditAccountForm fieldset{
  border: none;
  padding: 0;
  margin: 20px 0 0;
}

.sma-card .woocommerce-EditAccountForm legend{
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--sc-dark) !important;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 0;
}

.sma-card .woocommerce-EditAccountForm button,
.sma-card .woocommerce-address-fields button,
.sma-card button[name="save_account_details"],
.sma-card button[name="save_address"]{
  background: var(--sc-gold) !important;
  color: var(--sc-dark) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 11px 22px !important;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
}

.sma-card .woocommerce-EditAccountForm button:hover,
.sma-card .woocommerce-address-fields button:hover{
  background: var(--sc-gold-hover) !important;
}

.sma-card .woocommerce-message,
.sma-card .woocommerce-error{
  background: var(--sc-cream);
  border-left: 3px solid var(--sc-gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--sc-dark) !important;
  margin-bottom: 16px;
  list-style: none;
}

.sma-card .woocommerce-error{
  border-left-color: var(--sc-maroon) !important;
}

/* =========================================================
   Logged-out state — WooCommerce's real login/register template
   (myaccount/form-login.php), styled to match. Confirmed
   structure: #customer_login wraps two columns (.u-column1 login,
   .u-column2 register), each with its own <form>.
   ========================================================= */
.sma-auth-card{
  max-width: 900px;
  margin: 0 auto;
}

.sma-auth-card #customer_login{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sma-auth-card .u-column1,
.sma-auth-card .u-column2{
  flex: 1 1 320px;
  background: var(--sc-cream-light);
  border: 1px solid var(--sc-border);
  border-radius: 12px;
  padding: 28px;
}

.sma-auth-card h2{
  font-family: 'Bricolage Grotesque', sans-serif !important;
  color: var(--sc-dark) !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  border-bottom: 2px solid var(--sc-gold);
  padding-bottom: 12px;
  margin: 0 0 20px !important;
}

.sma-auth-card .form-row,
.sma-auth-card .woocommerce-form-row{
  margin: 0 0 16px !important;
}

.sma-auth-card label{
  display: inline-block;
  color: var(--sc-dark) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-bottom: 6px;
}

.sma-auth-card .required{
  color: var(--sc-maroon) !important;
}

.sma-auth-card input.input-text,
.sma-auth-card .woocommerce-Input{
  width: 100%;
  border: 1px solid var(--sc-border) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: var(--sc-dark) !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
}

.sma-auth-card input.input-text:focus,
.sma-auth-card .woocommerce-Input:focus{
  border-color: var(--sc-gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 155, 62, 0.15) !important;
}

.sma-auth-card .password-input{
  position: relative;
  display: block;
}

.sma-auth-card .woocommerce-form-login__rememberme{
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sc-text-body) !important;
  font-size: 13px;
  font-weight: 500 !important;
  margin: 0 0 16px !important;
}

.sma-auth-card button[type="submit"],
.sma-auth-card .woocommerce-button{
  background: var(--sc-gold) !important;
  color: var(--sc-dark) !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  padding: 11px 24px !important;
  cursor: pointer;
}

.sma-auth-card button[type="submit"]:hover,
.sma-auth-card .woocommerce-button:hover{
  background: var(--sc-gold-hover) !important;
}

.sma-auth-card .woocommerce-LostPassword{
  margin-top: 14px !important;
}

.sma-auth-card .woocommerce-LostPassword a{
  color: var(--sc-gold-hover) !important;
  font-size: 13px;
  text-decoration: underline;
}

.sma-auth-card p{
  color: var(--sc-text-body) !important;
  font-size: 13px;
}

.sma-auth-card p a{
  color: var(--sc-gold-hover) !important;
}

/* =========================================================
   Order detail view — rebuilt as our own markup (sma-order-*),
   reading order data directly via plain WC_Order methods instead
   of WooCommerce's page template, which was crashing in this
   custom context.
   ========================================================= */
.sma-back-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sc-gold-hover) !important;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 18px;
}

.sma-back-link:hover{
  text-decoration: underline;
}

.sma-order-detail-title{
  font-family: 'Bricolage Grotesque', sans-serif !important;
  color: var(--sc-dark) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  margin: 0 0 6px !important;
}

.sma-order-detail-meta{
  color: var(--sc-text-body) !important;
  font-size: 13px;
  margin: 0 0 22px !important;
}

.sma-order-detail-subtitle{
  font-family: 'Bricolage Grotesque', sans-serif !important;
  color: var(--sc-dark) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-bottom: 2px solid var(--sc-gold);
  padding-bottom: 8px;
  margin: 24px 0 14px !important;
}

.sma-order-items-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4px;
}

.sma-order-items-table th,
.sma-order-items-table td{
  padding: 12px !important;
  border-bottom: 1px solid var(--sc-border) !important;
  color: var(--sc-dark) !important;
  font-size: 14px;
  text-align: left;
}

.sma-order-items-table thead th{
  background: var(--sc-cream);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--sc-text-body) !important;
}

.sma-order-items-table tfoot th,
.sma-order-items-table tfoot td{
  font-weight: 700;
}

.sma-order-total-row th,
.sma-order-total-row td{
  color: var(--sc-maroon) !important;
  font-size: 16px;
}

.sma-order-note{
  background: var(--sc-cream-light);
  border-left: 3px solid var(--sc-gold);
  border-radius: 6px;
  padding: 12px 16px;
  margin: 16px 0;
  color: var(--sc-dark) !important;
  font-size: 14px;
}

.sma-order-address{
  font-style: normal;
  color: var(--sc-dark) !important;
  font-size: 14px;
  line-height: 1.6;
  background: var(--sc-cream-light);
  border: 1px solid var(--sc-border);
  border-radius: 8px;
  padding: 16px;
}

.scc-admin-debug{
  background: #fff8e5;
  border: 1px dashed #c99b3e;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 12px;
  color: #333 !important;
  margin-bottom: 16px;
  line-height: 1.6;
  word-break: break-word;
}

/* =========================================================
   Game Record — static preview stat tiles
   ========================================================= */
.sma-game-record{
  margin-top: 20px;
}

.sma-stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 600px){
  .sma-stat-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

.sma-stat-tile{
  background: var(--sc-cream-light);
  border: 1px solid var(--sc-border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}

.sma-stat-number{
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--sc-dark) !important;
  line-height: 1;
  margin-bottom: 6px;
}

.sma-stat-label{
  display: block;
  color: var(--sc-text-body) !important;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sma-stat-tile--win .sma-stat-number{
  color: var(--sc-gold-hover) !important;
}

.sma-stat-tile--loss .sma-stat-number{
  color: var(--sc-maroon) !important;
}

.sma-stat-tile--draw .sma-stat-number{
  color: var(--sc-dark-alt) !important;
}

/* =========================================================
   Registration — two-column auth layout (login left, new
   registration form right), plus the registration form itself
   ========================================================= */
.sma-auth-layout{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.sma-auth-card--login{
  flex: 1 1 320px;
  max-width: 400px;
}

.sma-auth-card--register{
  flex: 2 1 480px;
}

/* WooCommerce's login template bundles a register column we don't
   use anymore (replaced by our own form on the right) — hidden
   rather than fought with CSS overrides. */
.sma-auth-card--login .u-column2,
.sma-auth-card--login #customer_login .col-2{
  display: none !important;
}

.sma-auth-card--login .u-column1,
.sma-auth-card--login #customer_login .col-1{
  width: 100% !important;
  float: none !important;
}

.sma-register-title{
  font-family: 'Bricolage Grotesque', sans-serif !important;
  color: var(--sc-dark) !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  margin: 0 0 6px !important;
}

.sma-register-sub{
  color: var(--sc-text-body) !important;
  font-size: 14px;
  margin: 0 0 22px !important;
}

.sma-register-section-title{
  font-family: 'Bricolage Grotesque', sans-serif !important;
  color: var(--sc-dark) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-bottom: 2px solid var(--sc-gold);
  padding-bottom: 8px;
  margin: 28px 0 16px !important;
}

.sma-register-section-title:first-of-type{
  margin-top: 0 !important;
}

.sma-register-errors{
  background: var(--sc-cream);
  border-left: 3px solid var(--sc-maroon);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.sma-register-errors ul{
  margin: 0;
  padding-left: 18px;
}

.sma-register-errors li{
  color: var(--sc-maroon) !important;
  font-size: 13px;
  font-weight: 600;
}

.sma-register-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.sma-field{
  grid-column: span 2;
  margin-bottom: 16px;
}

.sma-field--half{
  grid-column: span 1;
}

@media (max-width: 560px){
  .sma-field--half{
    grid-column: span 2;
  }
}

.sma-field label{
  display: inline-block;
  color: var(--sc-dark) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-bottom: 6px;
}

.sma-req{
  color: var(--sc-maroon) !important;
}

.sma-field input[type="text"],
.sma-field input[type="email"],
.sma-field input[type="tel"],
.sma-field input[type="date"],
.sma-field input[type="number"],
.sma-field input[type="password"],
.sma-field select,
.sma-field textarea{
  width: 100%;
  border: 1px solid var(--sc-border) !important;
  border-radius: 6px !important;
  background: var(--sc-cream-light) !important;
  color: var(--sc-dark) !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: inherit;
}

.sma-field input:focus,
.sma-field select:focus,
.sma-field textarea:focus{
  border-color: var(--sc-gold) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 155, 62, 0.15) !important;
}

.sma-checkbox-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.sma-checkbox-row input{
  margin-top: 3px;
  accent-color: var(--sc-gold);
  flex: 0 0 auto;
}

.sma-checkbox-row span{
  color: var(--sc-text-body) !important;
  font-size: 13px;
  line-height: 1.5;
}

.sma-games-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 700px){
  .sma-games-grid{
    grid-template-columns: 1fr;
  }
}

.sma-game-choice{
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--sc-cream-light);
  border: 1px solid var(--sc-border);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
}

.sma-game-choice input{
  position: absolute;
  top: 14px;
  right: 14px;
  accent-color: var(--sc-gold);
}

.sma-game-choice-title{
  color: var(--sc-dark) !important;
  font-weight: 700;
  font-size: 14px;
}

.sma-game-choice-sub{
  color: var(--sc-text-body) !important;
  font-size: 12px;
}

.sma-register-submit{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sc-gold) !important;
  color: var(--sc-dark) !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  padding: 13px 26px !important;
  font-size: 14px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s ease;
}

.sma-register-submit:hover{
  background: var(--sc-gold-hover) !important;
}

.sma-profile-saved{
  background: var(--sc-cream);
  border-left: 3px solid var(--sc-gold);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--sc-dark) !important;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
