body.account-template {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 32% 10%, #fff9eb 0, #fbf4e5 42%, #f7eddb 100%);
  font-weight: 600;
  letter-spacing: 0;
}

body.account-template .page-shell {
  max-width: 1370px;
  margin: 0 auto;
  padding-left: 58px;
  padding-right: 58px;
}

body.account-template .hero-block {
  padding: 70px 0 24px;
}

body.account-template .hero-block h1 {
  font-size: 62px;
  line-height: .88;
  margin: 0 0 24px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 4px 0 rgba(33, 27, 49, .06);
}

body.account-template .eyebrow {
  margin: 0 0 13px;
  color: #ff5947;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
}

body.account-template .subtitle,
body.account-template .panel-intro {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

body.account-template .card-shell {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 252, 245, .62);
  box-shadow: 0 10px 34px rgba(44, 33, 24, .035);
}

body.account-template .account-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
}

body.account-template .account-layout .woocommerce-MyAccount-navigation,
body.account-template .account-layout .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}

body.account-template .account-layout>.woocommerce-MyAccount-navigation {
  grid-column: 1;
  grid-row: 1;
}

body.account-template .account-layout>.woocommerce-MyAccount-content {
  grid-column: 2;
  grid-row: 1;
}

body.account-template .woocommerce-MyAccount-navigation,
body.account-template .account-sidebar {
  padding: 28px 21px;
  min-height: 785px;
}

body.account-template .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.account-template .woocommerce-MyAccount-navigation li {
  margin: 0;
}

body.account-template .side-link {
  width: 100%;
  height: 58px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 0 23px;
  font-weight: 900;
  font-size: 15px;
  text-align: left;
  text-decoration: none;
}

body.account-template .side-link i {
  font-size: 23px;
}

body.account-template .woocommerce-MyAccount-navigation-link.is-active .side-link,
body.account-template .side-link.active {
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(255, 208, 57, .18);
}

body.account-template .side-link.logout {
  color: #ff372d;
}

body.account-template .side-divider {
  height: 1px;
  background: var(--line);
  margin: 25px 0;
}

body.account-template .account-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

body.account-template .account-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  gap: 30px;
  margin-bottom: 48px;
}

body.account-template .account-auth-grid.has-register {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.account-template .account-auth-hero {
  padding-bottom: 18px;
}

body.account-template .account-auth-stage {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  margin: 0 auto 56px;
}

body.account-template .auth-card {
  padding: 32px;
}

body.account-template .auth-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 33px;
  margin-bottom: 24px;
}

body.account-template .auth-card {
  min-width: 0;
  overflow: hidden;
}

body.account-template .auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  margin-bottom: 22px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

body.account-template .auth-tabs button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

body.account-template .auth-tabs button:hover,
body.account-template .auth-tabs button:focus,
body.account-template .auth-tabs button.is-active {
  background: var(--yellow);
}

body.account-template .account-auth-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body.account-template .account-auth-slider::-webkit-scrollbar {
  display: none;
}

body.account-template .auth-panel {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

body.account-template .auth-panel .section-head {
  margin-bottom: 18px;
}

body.account-template .auth-panel .section-head h3,
body.account-template .account-reset-card .section-head h3 {
  font-size: 28px;
}

body.account-template .auth-panel .section-head p,
body.account-template .account-reset-card .section-head p,
body.account-template .auth-help-text,
body.account-template .auth-confirmation-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

body.account-template .auth-form-row,
body.account-template .auth-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
}

body.account-template .auth-submit-row {
  padding-top: 4px;
}

body.account-template .auth-submit-row .dark-btn {
  min-width: 170px;
}

body.account-template .auth-inline-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.account-template .account-reset-wrap {
  width: min(100%, 680px);
  margin: 0 auto 58px;
}

body.account-template .account-reset-card {
  padding: 34px;
}

body.account-template .account-reset-card .auth-icon {
  background: #74dfc2;
  color: var(--ink);
}

body.account-template .profile-card {
  min-height: 234px;
  padding: 32px 35px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(180px, .85fr) minmax(150px, 180px);
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

body.account-template .account-form-card {
  display: block;
  min-height: 0;
}

body.account-template .account-form-card.profile-card {
  grid-template-columns: 1fr;
}

body.account-template .avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #caa2ff, #a56dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 900;
  color: var(--ink);
}

body.account-template .profile-copy h2 {
  font-size: 35px;
  line-height: 1;
  margin: 0 0 13px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

body.account-template .profile-copy p,
body.account-template .profile-copy span {
  margin: 0;
  color: #4d475a;
  font-size: 14px;
  font-weight: 800;
}

body.account-template .profile-copy span {
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

body.account-template .profile-score {
  border-left: 1.5px dashed var(--line);
  padding-left: 36px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 116px;
}

body.account-template .score-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff0c9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffaf23;
  font-size: 31px;
  flex: 0 0 auto;
}

body.account-template .profile-score strong {
  font-size: 16px;
  font-weight: 950;
}

body.account-template .profile-score p {
  color: #6b6474;
  font-size: 15px;
  font-weight: 500;
  margin: 5px 0 0;
  line-height: 1.35;
}

body.account-template .profile-card>.dark-btn {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

body.account-template .dark-btn,
body.account-template .woocommerce button.button,
body.account-template .woocommerce a.button {
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  min-height: 45px;
  padding: 0 24px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, .04);
}

body.account-template .orders-card,
body.account-template .addresses-card,
body.account-template .hair-card,
body.account-template .wishlist {
  padding: 28px;
}

body.account-template .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

body.account-template .section-head h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 0;
}

body.account-template .section-head a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

body.account-template .order-row {
  min-height: 135px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .34);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 180px;
  gap: 26px;
  align-items: center;
  padding: 24px 38px 24px 28px;
  margin-top: 10px;
}

body.account-template .product-tile {
  width: 145px;
  height: 113px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.account-template .product-tile img {
  max-height: 108px;
  max-width: 90%;
  object-fit: contain;
}

body.account-template .coral {
  background: linear-gradient(135deg, #ff6555, #ff8a70);
}

body.account-template .mint {
  background: linear-gradient(135deg, #84e7c9, #5bd7b3);
}

body.account-template .purple {
  background: linear-gradient(135deg, #b36fff, #d09aff);
}

body.account-template .blush {
  background: linear-gradient(135deg, #ffe1d8, #f4b2a3);
}

body.account-template .yellow {
  background: var(--yellow);
}

body.account-template .order-info h4 {
  font-size: 24px;
  font-weight: 950;
  margin: 0 0 15px;
}

body.account-template .order-info h4 a,
body.account-template .wish-copy h4 a {
  color: inherit;
  text-decoration: none;
}

body.account-template .order-info p {
  margin: 0;
  color: #696271;
  font-size: 15px;
  font-weight: 500;
}

body.account-template .order-info span {
  margin: 0 14px;
}

body.account-template .status {
  min-height: 31px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 950;
  padding: 0 12px;
}

body.account-template .delivered {
  background: #a7e89d;
}

body.account-template .shipped {
  background: #ffcf35;
}

body.account-template .muted {
  background: #ececf0;
}

body.account-template .outline-btn {
  min-height: 45px;
  border: 1.5px solid var(--ink-2);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--ink);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 18px;
}

body.account-template .two-col,
body.account-template .address-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  width: 100%;
}

body.account-template .woocommerce-Addresses.address-box-grid::before,
body.account-template .woocommerce-Addresses.address-box-grid::after {
  display: none;
  content: none;
}

body.account-template .address-box {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 23px 22px;
  background: rgba(255, 255, 255, .34);
  float: none !important;
  width: auto !important;
  max-width: none;
  margin: 0 !important;
  box-sizing: border-box;
}

body.account-template .address-item {
  display: grid;
  grid-template-columns: 88px 1fr 48px;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

body.account-template .address-item>div:not(.addr-icon) {
  min-width: 0;
}

body.account-template .addr-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(33, 27, 49, .15);
  font-size: 33px;
}

body.account-template .address-item h4 {
  font-size: 15px;
  margin: 4px 0;
  font-weight: 950;
}

body.account-template .address-item p,
body.account-template address {
  margin: 0;
  color: #403a48;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.account-template .tag-mint {
  color: #26c59a;
}

body.account-template .tag-yellow {
  color: #f0b800;
}

body.account-template .address-item a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

body.account-template .dash-line {
  height: 1px;
  border-top: 1.5px dashed var(--line);
  margin: 24px 0;
}

body.account-template .hair-card h5 {
  font-size: 13px;
  font-weight: 950;
  margin: 22px 0 11px;
}

body.account-template .chips {
  display: flex;
  gap: 31px;
  flex-wrap: wrap;
}

body.account-template .chip {
  min-width: 94px;
  border-radius: 999px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

body.account-template .routine {
  display: flex;
  align-items: center;
  gap: 9px;
}

body.account-template .routine-img {
  width: 76px;
  height: 105px;
  border: 1px solid var(--line);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.account-template .routine-img img {
  max-height: 94px;
  max-width: 88%;
}

body.account-template .routine-copy {
  margin-left: 18px;
}

body.account-template .routine-copy h4 {
  font-size: 16px;
  font-weight: 950;
  margin: 0 0 3px;
}

body.account-template .routine-copy p {
  font-size: 14px;
  color: #554d5f;
  font-weight: 500;
  margin: 0 0 18px;
  max-width: 210px;
}

body.account-template .routine-copy a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

body.account-template .wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
}

body.account-template .wish-card {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, .42);
  position: relative;
  min-width: 0;
  box-sizing: border-box;
}

body.account-template .wish-img {
  height: 185px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.account-template .wish-img img {
  max-height: 172px;
  max-width: 90%;
  object-fit: contain;
}

body.account-template .wish-copy {
  position: relative;
  padding: 14px 0 4px;
  min-width: 0;
}

body.account-template .heart {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 29px;
}

body.account-template .wish-copy h4 {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.05;
  margin: 13px 36px 12px 0;
  overflow-wrap: anywhere;
}

body.account-template .wish-copy p {
  color: #56505f;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 16px;
}

body.account-template .wish-copy strong {
  font-size: 14px;
  font-weight: 950;
}

body.account-template .dark-btn.add {
  min-height: 42px;
  width: 100%;
  border-radius: 11px;
  display: inline-flex;
  margin-top: 16px;
  padding-left: 14px;
  padding-right: 14px;
  text-align: center;
}

body.account-template .wishlist a.added_to_cart.wc-forward {
  display: none !important;
}

body.account-template .native-wishlist-integration {
  max-width: 100%;
  overflow-x: auto;
}

body.account-template .native-wishlist-integration table,
body.account-template .native-wishlist-integration .wishlist_table {
  width: 100%;
}

body.account-template .trust-strip {
  margin: 24px 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 18px;
}

body.account-template .trust-strip>div {
  display: grid;
  grid-template-columns: 68px 1fr;
  column-gap: 18px;
  padding: 0 28px;
  border-right: 1.5px dashed var(--line);
}

body.account-template .trust-strip>div:last-child {
  border-right: 0;
}

body.account-template .trust-strip span {
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

body.account-template .trust-strip strong {
  font-size: 12px;
  font-weight: 950;
}

body.account-template .trust-strip p {
  font-size: 13px;
  color: #5c5664;
  font-weight: 500;
  margin: 3px 0 0;
  line-height: 1.3;
}

body.account-template .woocommerce-EditAccountForm,
body.account-template .woocommerce-address-fields,
body.account-template .viraa-hair-profile-form,
body.account-template .woocommerce-form-login,
body.account-template .woocommerce-form-register,
body.account-template .woocommerce-ResetPassword {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

body.account-template .woocommerce-form-row--wide,
body.account-template fieldset,
body.account-template .woocommerce-address-fields__field-wrapper,
body.account-template .woocommerce-address-fields p,
body.account-template .viraa-hair-profile-form .form-row-wide {
  grid-column: 1 / -1;
}

body.account-template .woocommerce-form-login,
body.account-template .woocommerce-form-register,
body.account-template .woocommerce-ResetPassword,
body.account-template .woocommerce-form-login .form-row,
body.account-template .woocommerce-form-register .form-row,
body.account-template .woocommerce-ResetPassword .form-row,
body.account-template .woocommerce-LostPassword {
  grid-column: 1 / -1;
}

body.account-template .woocommerce-address-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

body.account-template fieldset {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 18px;
  margin: 6px 0 0;
}

body.account-template legend {
  float: none;
  width: auto;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 950;
}

body.account-template label {
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 7px;
}

body.account-template .input-text,
body.account-template select {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  padding: 0 14px;
  font-weight: 700;
  box-shadow: none;
}

body.account-template textarea.input-text {
  min-height: 105px;
  padding-top: 12px;
}

body.account-template .woocommerce-message,
body.account-template .woocommerce-error,
body.account-template .woocommerce-info {
  border: 1px solid rgba(36, 29, 42, .12);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(36, 29, 42, .08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
  padding: 15px 18px;
}

body.account-template .woocommerce-error {
  border-left-color: #ff6b5c;
}

body.account-template .woocommerce-info {
  border-left-color: #74dfc2;
}

body.account-template .woocommerce-message::before,
body.account-template .woocommerce-error::before,
body.account-template .woocommerce-info::before {
  display: none;
}

body.account-template .empty-state {
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, .35);
}

body.account-template .empty-state p {
  margin: 0 0 16px;
  color: var(--muted);
}

body.account-template .native-order-detail .woocommerce-order-details,
body.account-template .native-order-detail .woocommerce-customer-details,
body.account-template .order-updates {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, .34);
  margin-top: 16px;
}

body.account-template .native-order-detail table {
  width: 100%;
}

body.account-template mark {
  background: #fff0c9;
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--ink);
}

@media (max-width: 1200px) {
  body.account-template .page-shell {
    padding-left: 28px;
    padding-right: 28px;
  }

  body.account-template .account-layout {
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 26px;
  }

  body.account-template .profile-card {
    grid-template-columns: 110px 1fr;
    gap: 22px;
  }

  body.account-template .avatar {
    width: 110px;
    height: 110px;
  }

  body.account-template .profile-score {
    border-left: 0;
    border-top: 1.5px dashed var(--line);
    padding: 22px 0 0;
    grid-column: 1 / 3;
  }

  body.account-template .profile-card .dark-btn {
    grid-column: 1 / 3;
  }

  body.account-template .order-row {
    grid-template-columns: minmax(0, 1fr) 120px 150px;
    gap: 20px;
  }

  body.account-template .order-actions {
    grid-column: 3;
  }

  body.account-template .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.account-template .page-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.account-template .hero-block {
    padding: 44px 0 20px;
  }

  body.account-template .hero-block h1 {
    font-size: 62px;
  }

  body.account-template .account-layout {
    display: block;
  }

  body.account-template .account-auth-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.account-template .woocommerce-MyAccount-navigation,
  body.account-template .account-sidebar {
    min-height: auto;
    margin-bottom: 18px;
    overflow-x: auto;
    padding: 12px;
  }

  body.account-template .woocommerce-MyAccount-navigation ul,
  body.account-template .account-sidebar {
    display: flex;
    gap: 10px;
  }

  body.account-template .side-link {
    white-space: nowrap;
    min-width: max-content;
    height: 48px;
    padding: 0 16px;
  }

  body.account-template .side-divider {
    display: none;
  }

  body.account-template .two-col,
  body.account-template .address-box-grid {
    grid-template-columns: 1fr;
  }

  body.account-template .wishlist-grid {
    grid-template-columns: 1fr;
  }

  body.account-template .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  body.account-template .account-auth-grid,
  body.account-template .account-auth-grid.has-register {
    grid-template-columns: 1fr;
  }

  body.account-template .trust-strip>div {
    border-right: 0;
    border-bottom: 1.5px dashed var(--line);
    padding: 20px;
  }
}

@media (max-width: 640px) {
  body.account-template .page-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.account-template .hero-block h1 {
    font-size: 48px;
    line-height: .92;
  }

  body.account-template .subtitle {
    font-size: 15px;
  }

  body.account-template .profile-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  body.account-template .profile-copy h2 {
    font-size: 27px;
  }

  body.account-template .avatar {
    width: 92px;
    height: 92px;
    font-size: 38px;
  }

  body.account-template .profile-score {
    min-height: auto;
    border-top: 1.5px dashed var(--line);
    padding-top: 18px;
  }

  body.account-template .profile-card .dark-btn,
  body.account-template .dark-btn.add {
    width: 100%;
  }

  body.account-template .orders-card,
  body.account-template .addresses-card,
  body.account-template .hair-card,
  body.account-template .wishlist,
  body.account-template .auth-card,
  body.account-template .account-reset-card {
    padding: 18px;
  }

  body.account-template .section-head h3 {
    font-size: 22px;
  }

  body.account-template .order-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  body.account-template .order-info h4 {
    font-size: 18px;
  }

  body.account-template .status {
    grid-column: auto;
    justify-self: start;
  }

  body.account-template .order-actions {
    grid-column: auto;
  }

  body.account-template .address-item {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  body.account-template .address-item>a {
    grid-column: 2;
  }

  body.account-template .addr-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  body.account-template .routine {
    flex-wrap: wrap;
  }

  body.account-template .routine-copy {
    width: 100%;
    margin: 12px 0 0;
  }

  body.account-template .wish-card {
    grid-template-columns: 125px 1fr;
    padding: 10px;
    gap: 13px;
  }

  body.account-template .wish-img {
    height: 170px;
  }

  body.account-template .wish-copy h4 {
    font-size: 16px;
    margin-right: 24px;
  }

  body.account-template .wish-copy p {
    font-size: 12px;
  }

  body.account-template .chips {
    gap: 8px;
  }

  body.account-template .chip {
    min-width: 80px;
  }

  body.account-template .trust-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  body.account-template .trust-strip>div {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  body.account-template .trust-strip span {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  body.account-template .woocommerce-EditAccountForm,
  body.account-template .woocommerce-address-fields,
  body.account-template .woocommerce-address-fields__field-wrapper,
  body.account-template .viraa-hair-profile-form,
  body.account-template .woocommerce-form-login,
  body.account-template .woocommerce-form-register,
  body.account-template .woocommerce-ResetPassword {
    grid-template-columns: 1fr;
  }

  body.account-template .auth-form-row {
    align-items: flex-start;
  }

  body.account-template .auth-submit-row .dark-btn,
  body.account-template .auth-submit-row .button {
    width: 100%;
  }
}
