/* iDAY account area refresh. */
.account-page {
  --account-ink: #17284a;
  --account-muted: #7c879c;
  --account-blue: #5d7fb8;
  --account-line: #e4e9f1;
  --account-soft: #f6f8fb;
  padding-bottom: 48px;
  color: var(--account-ink);
}

.account-page > .breadcrumb {
  margin: 18px 0 26px;
}

.account-page > .breadcrumb > li,
.account-page > .breadcrumb > li a,
.account-page > .breadcrumb > li span {
  color: var(--account-muted);
  font-size: 10px;
  letter-spacing: .04em;
}

.account-page > .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.account-page > .row > #column-left,
.account-page > .row > #content,
.account-page > .row > #column-right {
  float: none;
}

.account-page > .row > #content {
  min-height: 0;
}

.account-page > .row > #column-right {
  border-left: 0;
  padding-left: 28px;
  padding-right: 12px;
}

.account-page #column-right .account-sidebar {
  margin: 0;
}

.account-sidebar {
  padding: 0 0 10px;
  color: var(--account-ink);
}

.account-sidebar__intro {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px 22px;
  border-bottom: 1px solid var(--account-line);
}

.account-sidebar__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: #edf3fc;
  color: var(--account-blue);
  font-size: 17px;
}

.account-sidebar__title {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.account-sidebar__title strong {
  overflow: hidden;
  color: var(--account-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.account-sidebar__title small {
  color: var(--account-muted);
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1.2;
}

.account-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
}

.account-sidebar__link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #52617a;
  font-size: 12px;
  line-height: 1.25;
}

.account-sidebar__link i {
  width: 17px;
  color: #9aa7ba;
  font-size: 14px;
  text-align: center;
}

.account-sidebar__link:hover,
.account-sidebar__link:focus,
.account-sidebar__link.is-active {
  color: var(--account-blue);
  background: #f0f4fb;
  text-decoration: none;
}

.account-sidebar__link:hover i,
.account-sidebar__link:focus i,
.account-sidebar__link.is-active i {
  color: var(--account-blue);
}

.account-sidebar__link.is-active {
  font-weight: 700;
}

.account-sidebar__logout {
  margin-top: 12px;
  border-top: 1px solid var(--account-line);
  border-radius: 0;
  padding-top: 17px;
  color: #a16b78;
}

.account-sidebar__logout i {
  color: #c38a95;
}

.account-sidebar__logout:hover,
.account-sidebar__logout:focus {
  color: #a34e61;
  background: transparent;
}

.account-dashboard {
  color: var(--account-ink);
}

.account-dashboard__section {
  margin-top: 28px;
}

.account-dashboard__section:first-child {
  margin-top: 0;
}

.account-dashboard__section--last {
  margin-bottom: 6px;
}

.account-dashboard__section-heading {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.account-dashboard__section-heading h2 {
  margin: 0;
  color: var(--account-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.account-dashboard__section-heading h2:after {
  display: none;
}

.account-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-card-grid--newsletter {
  grid-template-columns: minmax(0, 1fr);
}

.account-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 14px 16px;
  border: 1px solid var(--account-line);
  border-radius: 12px;
  background: #fff;
  color: var(--account-ink);
  box-shadow: 0 5px 18px rgba(25, 48, 89, .035);
}

.account-card:hover,
.account-card:focus {
  border-color: #b9cbea;
  color: var(--account-ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(25, 48, 89, .09);
}

.account-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: #edf3fc;
  color: var(--account-blue);
  font-size: 17px;
}

.account-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  width: 100%;
  gap: 10px;
}

.account-card__content strong {
  color: var(--account-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.account-card__content small {
  color: #9aa7ba;
  font-size: 15px;
}

.account-card:hover .account-card__content small,
.account-card:focus .account-card__content small {
  color: var(--account-blue);
}

/* Standard account screens use the same white panel as checkout blocks. */
.account-page > .row > #content {
  padding-top: 0;
}

.account-page > .row > #content {
  padding: 30px;
  border: 1px solid var(--account-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(25, 48, 89, .045);
}

body.account-account .account-page > .row > #content {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.account-account .account-page > .row > #content .account-dashboard__section-heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.account-page > .row > #content h1,
.account-page > .row > #content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--account-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.account-page > .row > #content h1:after,
.account-page > .row > #content h2:after {
  display: none;
}

.account-page > .row > #content h3 {
  color: var(--account-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.account-page > .row > #content p {
  color: #627088;
  line-height: 1.65;
}

.account-page > .row > #content fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.account-page > .row > #content legend {
  width: 100%;
  margin-bottom: 24px;
  padding: 0 0 13px;
  border-bottom: 1px solid var(--account-line);
  color: var(--account-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.account-page .form-horizontal .form-group {
  margin-right: -12px;
  margin-bottom: 18px;
  margin-left: -12px;
}

.account-page .form-horizontal .control-label {
  padding-top: 13px;
  color: #52617a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.account-page .form-control {
  min-height: 44px;
  height: auto;
  padding: 10px 14px;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--account-ink);
  box-shadow: none;
}

.account-page textarea.form-control {
  min-height: 104px;
  resize: vertical;
}

.account-page .form-control:focus {
  border-color: #9eb6df;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(93, 127, 184, .12);
}

.account-page .required:before {
  top: 0;
  right: 0;
  color: #a16b78;
}

.account-page .text-danger {
  margin-top: 6px;
  color: #a34e61;
  font-size: 11px;
}

.account-page .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--account-line);
}

.account-page .buttons .pull-left,
.account-page .buttons .pull-right {
  display: flex;
  align-items: center;
  float: none !important;
}

.account-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-shadow: none;
  vertical-align: middle;
}

.account-page .buttons > .pull-left .btn,
.account-page .buttons > .pull-right .btn,
.account-page .simpleregister-button-right .btn {
  min-width: 160px;
}

.account-page .btn-primary {
  border-color: var(--account-blue);
  background: var(--account-blue);
  color: #fff;
}

.account-page .btn-primary:hover,
.account-page .btn-primary:focus,
.account-page .btn-primary:active {
  border-color: #496ba4;
  background: #496ba4;
  color: #fff;
}

.account-page .btn-default {
  border-color: #c5d4e9;
  background: #edf3fc;
  color: #486a9f;
}

.account-page .btn-default:hover,
.account-page .btn-default:focus {
  border-color: #aebfdc;
  background: #e1ebf9;
  color: #385883;
}

.account-page .btn-info {
  border-color: #c6d4ea;
  background: #edf3fc;
  color: var(--account-blue);
}

.account-page .btn-info:hover,
.account-page .btn-info:focus {
  border-color: #aabedc;
  background: #e0eaf8;
  color: #496ba4;
}

.account-page .btn-danger {
  border-color: #efd6da;
  background: #fff5f6;
  color: #a34e61;
  text-shadow: none;
}

.account-page .btn-danger:hover,
.account-page .btn-danger:focus {
  border-color: #e5b9c0;
  background: #fce9ec;
  color: #8f4052;
}

.account-page .alert {
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 12px 16px;
}

.account-page .alert-success {
  border-color: #cde8dc;
  background: #f1fbf6;
  color: #34795b;
}

.account-page .alert-danger,
.account-page .alert-warning {
  border-color: #f0d5da;
  background: #fff6f7;
  color: #9c5363;
}

.account-page .table-responsive {
  border: 1px solid var(--account-line);
  border-radius: 10px;
  background: #fff;
}

.account-page .table {
  margin-bottom: 0;
  color: #52617a;
}

.account-page .table > thead > tr > td,
.account-page .table > thead > tr > th {
  border: 0;
  border-bottom: 1px solid var(--account-line);
  background: var(--account-soft);
  color: #7a879b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.account-page .table > tbody > tr > td,
.account-page .table > tfoot > tr > td {
  border-top: 0;
  border-bottom: 1px solid #edf0f5;
  padding: 14px 12px;
  vertical-align: middle;
}

.account-page .table > tbody > tr:last-child > td {
  border-bottom: 0;
}

.account-page .table-hover > tbody > tr:hover > td {
  background: #fbfcfe;
}

.account-orders-table {
  table-layout: fixed;
}

.account-orders-table__col--id {
  width: 11%;
}

.account-orders-table__col--status {
  width: 23%;
}

.account-orders-table__col--date {
  width: 14%;
}

.account-orders-table__col--products {
  width: 10%;
}

.account-orders-table__col--customer {
  width: 20%;
}

.account-orders-table__col--total {
  width: 14%;
}

.account-orders-table__col--action {
  width: 8%;
}

.account-orders-table > thead > tr > td,
.account-orders-table > tbody > tr > td {
  padding-right: 10px;
  padding-left: 10px;
}

.account-orders-table > thead > tr > td {
  white-space: nowrap;
}

.account-orders-table__order-id strong {
  color: var(--account-blue);
  font-weight: 600;
}

.account-orders-table__date,
.account-orders-table__products,
.account-orders-table__total {
  white-space: nowrap;
}

.account-orders-table__customer {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-orders-table__total strong {
  color: var(--account-ink);
  font-weight: 700;
}

.account-order-status {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf3fc;
  color: #5276b2;
  font-size: 11px;
  line-height: 1.25;
  text-align: left;
}

.account-order-view {
  width: 38px;
  height: 38px;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 8px !important;
}

/* Order details are presented as content blocks instead of legacy tables. */
.account-order-page {
  color: var(--account-ink);
}

.account-order-page__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.account-order-page__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--account-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-order-page h1 {
  margin: 0 !important;
  color: var(--account-ink);
  font-size: 28px !important;
  line-height: 1.2;
  text-transform: none !important;
}

.account-order-page__status {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  gap: 5px;
  padding: 13px 16px;
  border: 1px solid #c9d8ed;
  border-radius: 10px;
  background: #edf3fc;
  color: #5276b2;
}

.account-order-page__status span {
  color: #7c91b2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-order-page__status strong {
  color: #385883;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.account-order-section,
.account-order-address,
.account-order-comment {
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--account-line);
  border-radius: 12px;
  background: #fff;
}

.account-order-section__heading {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--account-line);
  background: var(--account-soft);
  color: var(--account-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.account-order-section__heading i {
  color: var(--account-blue);
  font-size: 14px;
}

.account-order-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-order-summary__item {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px 16px;
  border-right: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
}

.account-order-summary__item:nth-child(3n) {
  border-right: 0;
}

.account-order-summary__item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.account-order-summary__item--wide {
  grid-column: span 1;
}

.account-order-summary__item span {
  color: var(--account-muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-order-summary__item strong {
  color: var(--account-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.account-order-summary__heading {
  justify-content: space-between;
}

.account-order-summary__heading > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.account-order-summary__date {
  color: #52617a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  text-transform: none;
}

.account-order-summary__list {
  display: flex;
  flex-direction: column;
}

.account-order-summary__list .account-order-summary__item {
  min-height: 0;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 16px;
  border-right: 0;
  border-bottom: 0;
  text-align: left;
}

.account-order-summary__list .account-order-summary__item span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.account-order-summary__list .account-order-summary__item:last-child {
  padding-bottom: 14px;
}

.account-order-summary__tracking a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  max-width: 100%;
  color: var(--account-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.account-order-summary__tracking a:hover,
.account-order-summary__tracking a:focus {
  color: #385883;
  text-decoration: underline;
}

.account-order-summary__tracking a i {
  flex: 0 0 auto;
  font-size: 11px;
}

.account-order-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.account-order-address {
  margin-bottom: 0;
}

.account-order-address:only-child {
  grid-column: 1 / -1;
}

.account-order-address__body {
  min-height: 0;
  padding: 14px 16px 16px;
  color: #627088;
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.account-order-product-list {
  display: flex;
  flex-direction: column;
}

.account-order-product {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 105px 105px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #edf0f5;
}

.account-order-product:last-child {
  border-bottom: 0;
}

.account-order-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid #e4e9f1;
  border-radius: 9px;
  background: #f8fafc;
}

.account-order-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.account-order-product__image--voucher {
  color: var(--account-blue);
  font-size: 24px;
}

.account-order-product__main {
  min-width: 0;
}

.account-order-product__main h3 {
  overflow: hidden;
  margin: 0 0 7px;
  color: var(--account-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.account-order-product__main h3 a {
  color: inherit;
}

.account-order-product__option {
  color: var(--account-muted);
  font-size: 11px;
  line-height: 1.4;
}

.account-order-product__quantity {
  margin-top: 8px;
  color: var(--account-muted);
  font-size: 11px;
}

.account-order-product__quantity strong {
  color: var(--account-ink);
}

.account-order-product__price,
.account-order-product__total {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}

.account-order-product__price span,
.account-order-product__total span {
  color: var(--account-muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.account-order-product__price strong {
  color: #52617a;
  font-size: 13px;
  font-weight: 600;
}

.account-order-product__total strong {
  color: var(--account-ink);
  font-size: 14px;
  font-weight: 700;
}

.account-order-product__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.account-order-product__actions .btn {
  width: 36px;
  height: 36px;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 8px !important;
}

.account-order-product__actions .btn-danger {
  background: #fff5f6;
}

.account-order-totals {
  width: 100%;
  max-width: 360px;
  margin: 0 0 18px auto;
  border-top: 1px solid var(--account-line);
}

.account-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid #edf0f5;
  color: #627088;
  font-size: 12px;
}

.account-order-total strong {
  color: var(--account-ink);
  font-weight: 700;
  text-align: right;
}

.account-order-comment__body {
  padding: 16px;
  color: #627088;
  font-size: 13px;
  line-height: 1.55;
}

.account-page > .row > #content > table {
  overflow: hidden;
  border: 1px solid var(--account-line);
  border-radius: 10px;
}

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

.account-page .pagination > li > a,
.account-page .pagination > li > span {
  border: 1px solid transparent;
  border-radius: 7px;
  color: #61708a;
}

.account-page .pagination > li.active > span,
.account-page .pagination > li > a:hover,
.account-page .pagination > li > a:focus {
  border-color: #c6d4ea;
  background: #edf3fc;
  color: var(--account-blue);
}

/* Wishlist cards reuse the category grid; the only card action is removal. */
.wishlist-products-row .wishlist-product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.wishlist-products-row .wishlist-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e4e9f1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #a16b78;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.wishlist-products-row .wishlist-product-card:hover .wishlist-remove,
.wishlist-products-row .wishlist-remove:focus {
  opacity: 1;
  pointer-events: auto;
}

.wishlist-products-row .wishlist-remove:hover,
.wishlist-products-row .wishlist-remove:focus {
  border-color: #e5b9c0;
  background: #fff5f6;
  color: #8f4052;
  text-decoration: none;
}

.wishlist-products-row .wishlist-product-actions .category-cart-icon {
  transition: none;
}

body.account-wishlist .account-page > .row > #content {
  padding: 0 0 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.account-wishlist .account-page > .row > #content h2 {
  margin-bottom: 30px;
}

body.account-wishlist .wishlist-products-row {
  margin-right: -4px;
  margin-left: -4px;
  background: transparent;
}

#content #category-product-list.wishlist-products-row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
}

body.account-wishlist .wishlist-products-row::before,
body.account-wishlist .wishlist-products-row::after {
  display: none;
}

body.account-wishlist .wishlist-products-row > .product-layout.product-grid {
  width: auto !important;
  float: none;
  padding-right: 4px;
  padding-left: 4px;
  background: transparent;
}

#content #category-product-list.wishlist-products-row > .product-layout.product-grid {
  width: auto !important;
  flex: 0 0 25% !important;
  float: none;
}

#content #category-product-list.wishlist-products-row .wishlist-product-images {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

#content #category-product-list.wishlist-products-row .wishlist-product-images > .image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  overflow: hidden;
  float: none;
}

#content #category-product-list.wishlist-products-row .wishlist-product-images > .image.hover {
  z-index: 2;
}

#content #category-product-list.wishlist-products-row .wishlist-product-images > .image > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: none;
}

#content #category-product-list.wishlist-products-row .wishlist-product-images img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  #content #category-product-list.wishlist-products-row {
    display: flex !important;
  }

  #content #category-product-list.wishlist-products-row > .product-layout.product-grid {
    flex-basis: 50% !important;
  }

  #content #category-product-list.wishlist-products-row .wishlist-product-images > .image.hover a,
  #content #category-product-list.wishlist-products-row .wishlist-product-images > .image.hover a:hover {
    opacity: 1;
  }
}

.account-page .well {
  border: 1px solid var(--account-line);
  border-radius: 12px;
  background: #fbfcfe;
  box-shadow: none;
}

.account-page .well h2 {
  margin-bottom: 16px;
  font-size: 19px;
}

.account-page .well p {
  margin-bottom: 14px;
}

/* Simple account forms use the same field treatment when the extension opens them separately. */
.account-simpleedit #simpleedit,
.account-simpleaddress #simpleaddress,
.account-simpleregister #simpleregister {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.account-simpleedit .simple-content,
.account-simpleaddress .simple-content,
.account-simpleregister .simple-content {
  color: var(--account-ink);
}

@media (max-width: 991px) {
  .account-page > .row > #column-right {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .account-page {
    padding-bottom: 28px;
  }

  .account-page > .breadcrumb {
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .account-page > .row {
    display: block;
    margin-right: -15px;
    margin-left: -15px;
  }

  .account-page > .row > #content,
  .account-page > .row > #column-right,
  .account-page > .row > #column-left {
    width: 100%;
  }

  .account-page > .row > #content {
    margin-bottom: 24px;
    padding: 22px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  body.account-account .account-page > .row > #content {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .account-page > .row > #column-right {
    display: block !important;
    margin-top: 22px;
    padding: 22px 15px 0;
    border-top: 0;
    border-left: 0;
  }

  .account-dashboard__section {
    margin-top: 26px;
  }

  .account-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-page .form-horizontal .form-group {
    margin-bottom: 14px;
  }

  .account-page .form-horizontal .control-label {
    padding-top: 0;
    padding-bottom: 7px;
    text-align: left;
  }

  .account-page .buttons {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .account-page .buttons .pull-left,
  .account-page .buttons .pull-right,
  .account-page .buttons .btn {
    width: 100%;
  }

  .account-page .table-responsive {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .account-page .table-responsive .table {
    min-width: 620px;
  }

  .account-order-page__heading {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .account-order-page h1 {
    font-size: 24px !important;
  }

  .account-order-page__status {
    width: 100%;
  }

  .account-order-summary__grid,
  .account-order-address-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-order-summary__item,
  .account-order-summary__item:nth-child(3n),
  .account-order-summary__item:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 0;
  }

  .account-order-summary__item:last-child {
    border-bottom: 0;
  }

  .account-order-product {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .account-order-product__image {
    width: 64px;
    height: 64px;
    grid-row: span 4;
  }

  .account-order-product__price,
  .account-order-product__total,
  .account-order-product__actions {
    grid-column: 2;
  }

  .account-order-product__price,
  .account-order-product__total {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .account-order-product__actions {
    justify-content: flex-start;
  }

  .account-order-totals {
    width: 100%;
  }

  body.account-wishlist .account-page > .row > #content {
    padding: 0 14px 30px;
  }

  body.account-account .account-page > .row > #content {
    padding: 0 14px 30px;
  }

  .account-sidebar__intro {
    padding-right: 0;
  }
}
