:root {
    --areto-account-bg: #ffffff;
    --areto-account-panel: #f7f7f5;
    --areto-account-border: #e5e2dd;
    --areto-account-text: #1f2937;
    --areto-account-muted: #6b7280;
    --areto-account-soft: #f4f1ed;
    --areto-account-accent: #e6ddd8;
    --areto-account-accent-text: #625650;
}

#areto-account {
    color: var(--areto-account-text);
}

#areto-account .areto-account__spinner,
#areto-account .areto-account__error {
    padding: 24px;
    border: 1px solid var(--areto-account-border);
    background: var(--areto-account-bg);
    color: var(--areto-account-muted);
    font-size: 15px;
}

.lwp_forms_login {
    display: none !important;
}

body.areto-account-popup-open {
    overflow: hidden;
}

.areto-account-popup-shell {
    position: fixed;
    inset: 0;
    z-index: 100000;
    pointer-events: none;
}

.areto-account-popup-shell__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(17, 24, 39, 0.42);
    opacity: 0;
    transition: opacity .28s ease;
}

.areto-account-popup-shell__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(400px, 100vw);
    transform: translateX(100%);
    transition: transform .32s ease;
}

.areto-account-popup-shell.is-open {
    pointer-events: auto;
}

.areto-account-popup-shell.is-open .areto-account-popup-shell__backdrop {
    opacity: 1;
}

.areto-account-popup-shell.is-open .areto-account-popup-shell__panel {
    transform: translateX(0);
}

.areto-account--mini {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: min(400px, 100vw);
    margin-left: auto;
    background: var(--areto-account-bg);
    color: var(--areto-account-text);
    font-family: inherit;
}

.areto-account--mini *,
.areto-account--mini *::before,
.areto-account--mini *::after {
    box-sizing: border-box;
}

.areto-account-mini__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--areto-account-muted);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.areto-account-mini__header {
    padding: 48px 24px 24px;
    text-align: center;
    background: #f6f6f4;
    border-bottom: 1px solid var(--areto-account-border);
}

.areto-account-mini__avatar-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 999px;
    overflow: hidden;
    background: #e5e7eb;
}

.areto-account-mini__avatar {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areto-account-mini__name {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--areto-account-text);
}

.areto-account-mini__email {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--areto-account-muted);
}

.areto-account-mini__menu {
    display: grid;
    padding: 16px;
}

.areto-account-mini__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    color: var(--areto-account-text);
    text-decoration: none;
    border-bottom: 1px solid #f0efec;
    transition: background-color .2s ease;
}

.areto-account-mini__item:last-child {
    border-bottom: 0;
}

.areto-account-mini__item:hover {
    background: #faf9f7;
}

.areto-account-mini__item-left,
.areto-account-mini__item-right {
    display: flex;
    align-items: center;
}

.areto-account-mini__item-left {
    gap: 12px;
}

.areto-account-mini__item-right {
    gap: 10px;
}

.areto-account-mini__item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    flex: 0 0 40px;
}

.areto-account-mini__item-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.areto-account-mini__item-label {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
}

.areto-account-mini__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #ece8e4;
    color: #615952;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.areto-account-mini__chevron {
    color: #a1a1aa;
    font-size: 22px;
    line-height: 1;
}

.areto-account-mini__actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--areto-account-border);
}

.areto-account-mini__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity .2s ease, background-color .2s ease, border-color .2s ease;
}

.areto-account-mini__button:hover {
    opacity: .92;
}

.areto-account-mini__button--primary {
    background: var(--areto-account-accent);
    color: var(--areto-account-accent-text);
}

.areto-account-mini__button--ghost {
    background: #ffffff;
    border-color: #d8d4cf;
    color: var(--areto-account-accent-text);
}

.dialog-type-lightbox.areto-account-mini-popup {
    align-items: stretch !important;
    justify-content: flex-end !important;
}

.dialog-type-lightbox.areto-account-mini-popup .dialog-widget-content,
.dialog-type-lightbox.areto-account-mini-popup .dialog-message,
.dialog-type-lightbox.areto-account-mini-popup .elementor-location-popup {
    width: min(400px, 100vw) !important;
    max-width: min(400px, 100vw) !important;
    height: 100vh !important;
    margin: 0 0 0 auto !important;
    border-radius: 0 !important;
}

.dialog-type-lightbox.areto-account-mini-popup .dialog-widget-content {
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.18) !important;
}

.dialog-type-lightbox.areto-account-mini-popup .elementor-widget-container,
.dialog-type-lightbox.areto-account-mini-popup .elementor-shortcode {
    height: 100%;
}

.dialog-type-lightbox.areto-account-mini-popup .dialog-close-button {
    display: none !important;
}

.site-account-wrap {
    padding: 28px 0 80px;
    background: var(--areto-account-bg);
}

.site-account-wrap .container--account {
    width: min(100%, 1660px);
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 32px;
}

.areto-account-recent {
    margin-bottom: 44px;
}

.areto-account-recent__header {
    margin-bottom: 18px;
}

.areto-account-recent__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--areto-account-text);
}

.areto-account-recent__track {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.areto-account-recent__card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.areto-account-recent__image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    margin-bottom: 18px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    overflow: hidden;
}

.areto-account-recent__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.areto-account-recent__meta {
    display: grid;
    gap: 8px;
}

.areto-account-recent__brand {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #7b8395;
}

.areto-account-recent__name {
    font-size: 16px;
    line-height: 1.45;
    color: var(--areto-account-text);
}

.areto-account-recent__price,
.areto-account-recent__price .amount,
.account-viewed-card__price,
.account-viewed-card__price .amount {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #121826;
}

.site-account-wrap .areto-account-shell {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.account-nav {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 32px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
}

.account-nav__eyebrow {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #7b8395;
}

.account-nav__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: #2f3748;
}

.account-nav__list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.account-nav__item {
    margin: 0;
}

.account-nav__link,
.account-nav__logout {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 0 22px;
    color: #3a4557;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.account-nav__item.is-active .account-nav__link {
    background: #f7f5f1;
    color: #111827;
    font-weight: 600;
}

.account-nav__link:hover,
.account-nav__logout:hover {
    background: #faf8f5;
}

.account-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: currentColor;
    flex: 0 0 30px;
}

.account-nav__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.account-nav__text {
    font-size: 22px;
    line-height: 1.35;
}

.account-nav__logout {
    margin-top: auto;
    background: linear-gradient(90deg, rgba(246, 238, 234, 0.95), rgba(240, 231, 226, 0.95));
}

.areto-account-main {
    min-width: 0;
}

.account-section {
    display: grid;
    gap: 24px;
    padding: 40px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
}

.account-section__title {
    margin: 0;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.05;
    font-weight: 400;
    color: #171e2d;
}

.account-section__lead {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--areto-account-muted);
}

.account-section__edit,
.account-link-button,
.account-empty__button,
.site-account-wrap .woocommerce-Button,
.site-account-wrap .button,
.site-account-wrap button.button,
.site-account-wrap input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    background: var(--areto-account-accent);
    color: var(--areto-account-accent-text);
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    border-radius: 0;
    box-shadow: none;
}

.account-section__edit:hover,
.account-link-button:hover,
.account-empty__button:hover,
.site-account-wrap .woocommerce-Button:hover,
.site-account-wrap .button:hover,
.site-account-wrap button.button:hover,
.site-account-wrap input.button:hover {
    background: #ddd1ca;
    color: #4c433d;
}

.account-profile-head {
    display: flex;
    align-items: center;
    gap: 24px;
}

.account-profile-head__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: #ebe6e1;
    color: #534842;
    font-size: 32px;
    font-weight: 600;
    flex: 0 0 72px;
}

.account-profile-head__meta {
    flex: 1 1 auto;
    min-width: 0;
}

.account-card-list {
    display: grid;
    gap: 20px;
}

.account-info-card,
.account-action-card {
    display: grid;
    gap: 8px;
    padding: 24px 26px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.account-info-card__label {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #7b8395;
}

.account-info-card__value,
.account-action-card__title {
    font-size: 22px;
    line-height: 1.35;
    color: #1f2937;
}

.account-action-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--areto-account-muted);
}

.account-action-card--accent {
    background: linear-gradient(90deg, rgba(246, 238, 234, 0.95), rgba(240, 231, 226, 0.95));
}

.account-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 48px 24px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    text-align: center;
}

.account-empty__icon {
    margin-bottom: 20px;
    color: #c7ccd4;
    font-size: 28px;
    line-height: 1;
}

.account-empty__heading {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.4;
    color: #4b5563;
}

.account-empty__text {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--areto-account-muted);
}

.account-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--areto-account-border);
}

.account-orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.account-orders-table th,
.account-orders-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--areto-account-border);
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
}

.account-orders-table th {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7b8395;
}

.account-viewed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.account-viewed-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.account-viewed-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
}

.account-viewed-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.account-viewed-card__name {
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
}

.site-account-wrap .woocommerce-form-row,
.site-account-wrap .form-row {
    margin-bottom: 18px;
}

.site-account-wrap label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7b8395;
}

.site-account-wrap input[type="text"],
.site-account-wrap input[type="email"],
.site-account-wrap input[type="password"],
.site-account-wrap input[type="tel"],
.site-account-wrap select,
.site-account-wrap textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    color: #1f2937;
    border-radius: 0;
    box-shadow: none;
}

.site-account-wrap fieldset {
    margin: 28px 0 0;
    padding: 24px;
    border: 1px solid var(--areto-account-border);
}

.site-account-wrap fieldset legend {
    padding: 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #1f2937;
}

.site-account-wrap .woocommerce-message,
.site-account-wrap .woocommerce-info,
.site-account-wrap .woocommerce-error {
    margin: 0 0 20px;
    padding: 18px 22px;
    border: 1px solid var(--areto-account-border);
    background: #ffffff;
    color: #4b5563;
}

.site-account-wrap .woocommerce-message::before,
.site-account-wrap .woocommerce-info::before,
.site-account-wrap .woocommerce-error::before {
    display: none;
}

.site-account-wrap ul.woocommerce-error {
    list-style: none;
}

@media (max-width: 1279px) {
    .site-account-wrap .container--account {
        padding: 0 24px;
    }

    .areto-account-recent__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .site-account-wrap .areto-account-shell {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
    }

    .account-nav__text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .site-account-wrap {
        padding-top: 20px;
    }

    .site-account-wrap .container--account {
        padding: 0 16px;
    }

    .areto-account-recent {
        margin-bottom: 32px;
    }

    .areto-account-recent__track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .areto-account-recent__card {
        flex: 0 0 210px;
    }

    .site-account-wrap .areto-account-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .account-nav {
        position: static;
        padding: 20px;
    }

    .account-nav__list {
        gap: 8px;
    }

    .account-nav__link,
    .account-nav__logout {
        min-height: 64px;
        padding: 0 16px;
    }

    .account-nav__text {
        font-size: 16px;
    }

    .account-section {
        padding: 24px 20px;
    }

    .account-profile-head {
        flex-wrap: wrap;
    }

    .account-section__edit {
        width: 100%;
    }

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

@media (max-width: 767px) {
    .areto-account--mini {
        width: 100vw;
    }

    .areto-account-mini__header,
    .areto-account-mini__actions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .areto-account-mini__menu {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dialog-type-lightbox.areto-account-mini-popup .dialog-widget-content,
    .dialog-type-lightbox.areto-account-mini-popup .dialog-message,
    .dialog-type-lightbox.areto-account-mini-popup .elementor-location-popup {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .areto-account-recent__card {
        flex-basis: 170px;
    }

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

    .account-empty {
        min-height: 300px;
        padding: 32px 20px;
    }
}

.site-account-wrap {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    padding: 0 0 72px;
    overflow: visible;
}

.site-account-wrap .container--account {
    width: min(100%, 1200px) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
}

.areto-account-hero {
    padding: 24px 0 30px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 26px;
}

.areto-account-hero__top,
.areto-account-hero__main {
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.areto-account-hero__top {
    align-items: center;
    margin-bottom: 44px;
}

.areto-account-hero__back,
.areto-account-hero__links a,
.areto-account-hero__user a {
    color: #161616;
    text-decoration: none;
}

.areto-account-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b4b4b;
}

.areto-account-hero__back span {
    font-size: 25px;
    line-height: 1;
}

.areto-account-hero__links {
    display: flex;
    gap: 12px;
}

.areto-account-hero__links a {
    min-width: 96px;
    padding: 14px 18px;
    border: 1px solid #d8d8d8;
    text-align: center;
    font-size: 14px;
    background: #fff;
}

.areto-account-hero__main {
    align-items: flex-start;
}

.areto-account-hero__eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .34em;
    color: #657085;
}

.areto-account-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(42px, 3.6vw, 56px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.045em;
    color: #080808;
}

.areto-account-hero p {
    margin: 0;
    max-width: 760px;
    color: #181818;
    font-size: 15px;
    line-height: 1.45;
}

.areto-account-hero__user {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 210px;
}

.areto-account-hero__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #eceff5;
    color: #1f2937;
    font-size: 18px;
}

.areto-account-hero__user-meta {
    display: grid;
    gap: 4px;
}

.areto-account-hero__user-meta strong {
    font-size: 17px;
    font-weight: 500;
    color: #111;
}

.areto-account-hero__user-meta small,
.areto-account-hero__user-meta a {
    font-size: 14px;
    color: #111;
}

.areto-account-recent {
    margin-bottom: 34px;
}

.areto-account-recent__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: #111;
}

.areto-account-recent__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-color: #bfbfbf #f4f4f4;
    scrollbar-width: thin;
}

.areto-account-recent__track::-webkit-scrollbar {
    height: 8px;
}

.areto-account-recent__track::-webkit-scrollbar-track {
    background: #f4f4f4;
}

.areto-account-recent__track::-webkit-scrollbar-thumb {
    background: #bfbfbf;
}

.areto-account-recent__card {
    flex: 0 0 180px;
}

.areto-account-recent__image-box {
    height: 160px;
    margin-bottom: 12px;
    border-color: #dedede;
}

.areto-account-recent__image {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

.areto-account-recent__meta {
    gap: 6px;
}

.areto-account-recent__brand {
    font-size: 12px;
    letter-spacing: .12em;
    color: #657085;
}

.areto-account-recent__name {
    display: -webkit-box;
    min-height: 68px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 17px;
    line-height: 1.35;
    color: #111;
}

.areto-account-recent__price,
.areto-account-recent__price .amount {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

.areto-account-recent__price del {
    color: #111;
    opacity: .75;
}

.areto-account-recent__price ins {
    background: #fff9bd;
    color: #111;
    text-decoration: none;
}

.areto-account-recent__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 13px;
    letter-spacing: .08em;
}

.areto-account-recent__rating small {
    color: #111;
    font-size: 12px;
    letter-spacing: 0;
}

.site-account-wrap .areto-account-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
}

.account-nav {
    top: 104px;
    gap: 18px;
    padding: 24px 10px 16px;
    border-color: #dedede;
}

.account-nav__title {
    display: none;
}

.account-nav__eyebrow {
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: .18em;
    color: #4b5563;
}

.account-nav__link,
.account-nav__logout {
    min-height: 54px;
    padding: 0 18px;
    gap: 14px;
    color: #111;
}

.account-nav__item.is-active .account-nav__link {
    background: #f3f4f6;
    font-weight: 500;
}

.account-nav__icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
}

.account-nav__icon svg {
    width: 17px;
    height: 17px;
}

.account-nav__text {
    font-size: 15px;
}

.account-nav__logout {
    margin-top: 20px;
    background: transparent;
}

.account-section {
    padding: 32px;
    border-color: #dedede;
}

.account-profile-head {
    justify-content: space-between;
    gap: 20px;
}

.account-section__title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -.02em;
    color: #111;
}

.account-section__edit,
.account-empty__button,
.account-link-button {
    min-height: 38px;
    padding: 0 22px;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.account-section__edit:hover,
.account-empty__button:hover,
.account-link-button:hover {
    background: #f5f5f5;
    color: #111;
}

.account-profile-card {
    display: grid;
    gap: 0;
    border: 1px solid #dedede;
    background: #fff;
}

.account-info-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 98px;
    padding: 22px 28px;
    border-bottom: 1px solid #ededed;
}

.account-info-row:last-child {
    border-bottom: 0;
}

.account-info-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111;
}

.account-info-row__icon svg {
    width: 20px;
    height: 20px;
}

.account-info-row__content {
    display: grid;
    gap: 6px;
}

.account-info-row__label {
    color: #6b7280;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.account-info-row__content strong {
    color: #111;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.account-info-row__content small {
    color: #6b7280;
    font-size: 14px;
}

.account-info-row__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid currentColor;
    color: #10b981;
    font-size: 16px;
}

.account-info-row__button {
    padding: 9px 16px;
    border: 1px solid #d8d8d8;
    color: #111;
    text-decoration: none;
    font-size: 14px;
}

.account-profile-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 18px 24px 24px;
    padding: 16px 18px;
    background: #fff9d7;
    color: #3f3f1f;
    font-size: 14px;
    line-height: 1.45;
}

.account-section .account-card-list {
    display: grid;
    grid-template-columns: 1fr;
}

.account-section .account-info-card,
.account-section .account-action-card {
    border-color: #dedede;
}

body.woocommerce-account.elementor-page-9 .elementor-element.e-con-boxed > .e-con-inner,
body.woocommerce-account.elementor-page-9 .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: none !important;
}

body.woocommerce-account.elementor-page-9 .elementor-widget-shortcode,
body.woocommerce-account.elementor-page-9 .elementor-widget-container {
    width: 100%;
}

body.woocommerce-account .woocommerce,
body.woocommerce-account .woocommerce-account {
    width: 100%;
}

.account-profile-note p {
    margin: 0;
}

@media (max-width: 991px) {
    .areto-account-hero__top,
    .areto-account-hero__main {
        display: grid;
    }

    .areto-account-hero__links {
        justify-content: stretch;
    }

    .areto-account-hero__links a {
        flex: 1;
    }

    .site-account-wrap .areto-account-shell {
        grid-template-columns: 1fr;
    }

    .account-nav {
        position: static;
    }
}

@media (max-width: 767px) {
    .site-account-wrap .container--account {
        padding: 0 16px;
    }

    .areto-account-hero {
        padding-top: 14px;
        margin-bottom: 22px;
    }

    .areto-account-hero h1 {
        font-size: 34px;
    }

    .areto-account-recent__card {
        flex-basis: 164px;
    }

    .account-section,
    .account-nav {
        padding: 20px;
    }

    .account-info-row {
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 18px;
    }

    .account-info-row__status,
    .account-info-row__button {
        grid-column: 2;
        justify-self: start;
    }
}
