/* ============================================================
   MYE | My Account UX/UI
   Path: /wp-content/themes/TU-TEMA/woocommerce/myaccount/assets/myaccount.css
   ============================================================ */
:root{
    --mye-bg: #ffffff;
    --mye-bg-alt: #f7f7f7;
    --mye-border: #e6e6e6;
    --mye-border-soft: #ededed;
    --mye-text: #111111;
    --mye-text-muted: #6b6b6b;
    --mye-text-soft: #9a9a9a;
    --mye-dark: #111111;
    --mye-success: #28a76b;
    --mye-success-bg: #e7f6ee;
    --mye-warning: #ffb648;
    --mye-warning-bg: #fff2dd;
    --mye-danger: #e74c3c;
    --mye-danger-bg: #fde8e6;
    --mye-info: #3b82f6;
    --mye-info-bg: #e7efff;
    --mye-radius: 14px;
    --mye-radius-sm: 10px;
    --mye-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* Reset WC styles que se pueden colar */
.woocommerce-account .woocommerce > .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-content{
    background: transparent;
}
.woocommerce-MyAccount-content > p:first-of-type:has(strong){ display:none; }


/* ============================================================
   ELEMENTOR / FULL WIDTH FIX
   Hace que Mi Cuenta ocupe el 100% del contenedor padre de
   Elementor, sin forzar 100vw ni salirse del layout.
   ============================================================ */
body.woocommerce-account .elementor-widget-woocommerce-my-account,
body.woocommerce-account .elementor-widget-woocommerce-my-account > .elementor-widget-container,
body.woocommerce-account .elementor-widget-shortcode,
body.woocommerce-account .elementor-widget-shortcode > .elementor-widget-container,
body.woocommerce-account .elementor-shortcode,
body.woocommerce-account .woocommerce{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
}

body.woocommerce-account .woocommerce *,
body.woocommerce-account .woocommerce *::before,
body.woocommerce-account .woocommerce *::after{
    box-sizing: border-box;
}

/* Reemplaza los floats nativos de WooCommerce por un layout estable. */
body.logged-in.woocommerce-account .woocommerce{
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}
body.logged-in.woocommerce-account .woocommerce::before,
body.logged-in.woocommerce-account .woocommerce::after{
    content: none !important;
    display: none !important;
}
body.logged-in.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation{
    grid-column: 1;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
body.logged-in.woocommerce-account .woocommerce > .woocommerce-MyAccount-content{
    grid-column: 2;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    float: none !important;
}
body.logged-in.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
body.logged-in.woocommerce-account .woocommerce > .woocommerce-message,
body.logged-in.woocommerce-account .woocommerce > .woocommerce-error,
body.logged-in.woocommerce-account .woocommerce > .woocommerce-info{
    grid-column: 1 / -1;
}

.mye-auth,
.mye-dashboard,
.mye-addresses,
.mye-edit-address,
.mye-vieworder,
.mye-orders-card,
.mye-orders-list,
.mye-addresses__list{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 900px){
    body.logged-in.woocommerce-account .woocommerce{
        display: block;
    }
    body.logged-in.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation{
        margin-bottom: 24px;
    }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.mye-myaccount-nav{ background: transparent; }
.mye-myaccount-nav__list{
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.mye-myaccount-nav__list li{ list-style: none; }
.mye-myaccount-nav__list li a{
    display: block; padding: 12px 14px; border-radius: 10px;
    color: var(--mye-text-muted); text-decoration: none; font-weight: 500;
    transition: background .2s ease, color .2s ease;
}
.mye-myaccount-nav__list li a:hover{ background: var(--mye-bg-alt); color: var(--mye-text); }
.mye-myaccount-nav__list li.is-active a{
    color: var(--mye-text); font-weight: 700; background: var(--mye-bg-alt);
}
.mye-myaccount-nav__logout{
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px; padding: 10px 14px;
    color: var(--mye-text-muted); text-decoration: none; font-weight: 500;
}
.mye-myaccount-nav__logout:hover{ color: var(--mye-danger); }

/* ============================================================
   DASHBOARD / ORDERS
   ============================================================ */
.mye-dashboard__header{ margin-bottom: 20px; }
.mye-dashboard__title{ font-size: 28px; font-weight: 600; margin: 0 0 6px; color: var(--mye-text); }
.mye-dashboard__greeting{ color: var(--mye-text-muted); margin: 0; }

.mye-orders-card{
    background: var(--mye-bg); border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius); padding: 20px 22px; box-shadow: var(--mye-shadow);
}
.mye-orders-card__head{
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
}
.mye-orders-card__title{
    font-size: 14px; letter-spacing: .12em; font-weight: 700;
    text-transform: uppercase; margin: 0; color: var(--mye-text);
}
.mye-orders-card__count{ color: var(--mye-text-muted); font-weight: 500; }
.mye-orders-card__seeall{
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--mye-text); text-decoration: underline; font-weight: 600;
}

.mye-orders-list{ display: flex; flex-direction: column; gap: 14px; }

.mye-order-item{
    border: 1px solid var(--mye-border); border-radius: var(--mye-radius-sm);
    padding: 16px 18px; background: var(--mye-bg);
}
.mye-order-item__head{
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 12px; margin-bottom: 12px;
    border-bottom: 1px solid var(--mye-border); font-size: 14px;
}
.mye-order-item__number{ font-weight: 600; }
.mye-order-item__date{ color: var(--mye-text-muted); }
.mye-order-item__body{
    display: grid; grid-template-columns: minmax(0,1fr) auto auto auto;
    gap: 18px; align-items: center;
}
.mye-order-item__product{ display: flex; gap: 12px; align-items: center; min-width: 0; }
.mye-order-item__img{
    width: 56px; height: 56px; object-fit: cover;
    border-radius: 8px; background: var(--mye-bg-alt);
}
.mye-order-item__info{ min-width: 0; }
.mye-order-item__name{
    margin: 0 0 6px; font-size: 14px; font-weight: 500; color: var(--mye-text);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mye-order-item__qty{ font-size: 14px; color: var(--mye-text-muted); }
.mye-order-item__price{ font-size: 18px; font-weight: 600; }
.mye-order-item__actions{ display: flex; flex-direction: column; gap: 8px; min-width: 170px; }

.mye-orders-card__foot{ display: flex; justify-content: center; margin-top: 18px; }
.mye-orders-empty{ text-align: center; padding: 40px 20px; color: var(--mye-text-muted); }
.mye-orders-empty p{ margin-bottom: 16px; }
.mye-orders-pagination{ display: flex; gap: 10px; justify-content: center; margin-top: 18px; }

/* ============================================================
   BADGES
   ============================================================ */
.mye-badge{
    display: inline-flex; align-items: center;
    padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 600; line-height: 1;
}
.mye-badge.is-success{ background: var(--mye-success-bg); color: var(--mye-success); }
.mye-badge.is-warning{ background: var(--mye-warning-bg); color: #b97900; }
.mye-badge.is-info   { background: var(--mye-info-bg);    color: var(--mye-info); }
.mye-badge.is-danger { background: var(--mye-danger-bg);  color: var(--mye-danger); }
.mye-badge.is-muted  { background: var(--mye-bg-alt);     color: var(--mye-text-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.mye-btn{
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 18px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; text-decoration: none; border: 1px solid transparent;
    cursor: pointer; transition: all .2s ease; line-height: 1.2; white-space: nowrap;
}
.mye-btn--dark{ background: var(--mye-dark); color: #fff; }
.mye-btn--dark:hover{ background: #000; color: #fff; }
.mye-btn--ghost{ background: transparent; color: var(--mye-text); border-color: var(--mye-border); }
.mye-btn--ghost:hover{ border-color: var(--mye-text); }
.mye-btn--block{ width: 100%; }
.mye-btn--pill{ padding: 12px 28px; }

/* ============================================================
   VIEW ORDER
   ============================================================ */
.mye-vieworder__head{
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;
}
.mye-vieworder__title{ font-size: 28px; font-weight: 600; margin: 0; }
.mye-vieworder__back{
    text-transform: uppercase; font-size: 13px; letter-spacing: .12em;
    font-weight: 600; color: var(--mye-text); text-decoration: underline;
}
.mye-vieworder__grid{
    display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 22px;
    background: var(--mye-bg); border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius); padding: 22px;
}
.mye-vieworder__items-head{
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--mye-border);
}
.mye-vieworder__section-title{
    font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
    font-weight: 700; margin: 0 0 4px;
}
.mye-vieworder__order-number{ color: var(--mye-text-muted); margin: 0; font-size: 14px; }
.mye-vieworder__date{ color: var(--mye-text-muted); margin: 0; font-size: 14px; }
.mye-vieworder__sub-section{
    font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
    font-weight: 700; margin: 18px 0 10px; color: var(--mye-text-muted);
}
.mye-vieworder__row{
    display: grid; grid-template-columns: minmax(0,1fr) auto auto;
    gap: 16px; align-items: center; padding: 12px 0;
}
.mye-vieworder__product{ display: flex; gap: 14px; align-items: center; min-width: 0; }
.mye-vieworder__img{
    width: 64px; height: 64px; object-fit: cover; border-radius: 8px;
    background: var(--mye-bg-alt);
}
.mye-vieworder__product-name{ margin: 0 0 4px; font-weight: 500; }
.mye-vieworder__meta{ list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--mye-text-muted); }
.mye-vieworder__meta li{ list-style: none; }
.mye-vieworder__meta p{ display: inline; margin: 0; }
.mye-vieworder__qty{ color: var(--mye-text-muted); font-size: 14px; }
.mye-vieworder__price{ font-weight: 600; font-size: 16px; }

.mye-vieworder__totals{
    background: var(--mye-bg); border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius-sm); padding: 18px; align-self: start;
}
.mye-vieworder__totals ul{ list-style: none; margin: 0; padding: 0; }
.mye-vieworder__totals li{
    list-style: none; display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 14px; color: var(--mye-text);
}
.mye-vieworder__totals li.is-total{
    border-top: 1px solid var(--mye-border); margin-top: 6px; padding-top: 14px;
    font-size: 18px; font-weight: 700;
}

.mye-vieworder__addresses{
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px;
}
.mye-vieworder__addresses > div{
    background: var(--mye-bg); border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius-sm); padding: 20px 22px;
}
.mye-vieworder__addresses h3{
    font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
    font-weight: 700; margin: 0 0 14px; color: var(--mye-text);
}
.mye-vieworder__addresses dl{
    display: grid; grid-template-columns: 110px 1fr;
    gap: 8px 12px; margin: 0; font-size: 14px;
}
.mye-vieworder__addresses dt{ color: var(--mye-text-muted); }
.mye-vieworder__addresses dd{ margin: 0; color: var(--mye-text); }

.mye-vieworder__notes{
    margin-top: 22px; background: var(--mye-bg);
    border: 1px solid var(--mye-border); border-radius: var(--mye-radius-sm);
    padding: 20px 22px;
}
.mye-vieworder__notes article{ padding: 10px 0; border-top: 1px solid var(--mye-border); }
.mye-vieworder__notes article:first-of-type{ border-top: 0; }

/* ============================================================
   AUTH (LOGIN / REGISTER)
   ============================================================ */
.mye-auth{
    display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; gap: 0;
    background: var(--mye-bg); border-radius: var(--mye-radius); overflow: hidden;
}
.mye-auth__panel--form{ padding: 60px 50px; display: flex; align-items: center; }
.mye-auth__panel--image{ background-size: cover; background-position: center; min-height: 600px; }
.mye-auth__form{ width: 100%; max-width: 380px; margin: 0 auto; }
.mye-auth__title{ font-size: 32px; font-weight: 600; margin: 0 0 6px; }
.mye-auth__subtitle{ color: var(--mye-text-muted); margin: 0 0 28px; }
.mye-auth__form .form-row{ margin-bottom: 16px; display: block; }
.mye-auth__form label{
    display: block; font-size: 13px; font-weight: 500;
    margin-bottom: 6px; color: var(--mye-text);
}
.mye-auth__form .input-text{
    width: 100%; padding: 12px 0; border: 0;
    border-bottom: 1px solid var(--mye-border); background: transparent;
    font-size: 15px; color: var(--mye-text); outline: none;
    transition: border-color .2s ease;
}
.mye-auth__form .input-text:focus{ border-bottom-color: var(--mye-text); }
.mye-auth__row-inline{
    display: flex; justify-content: space-between; align-items: center;
    margin: 8px 0 20px; font-size: 13px;
}
.mye-auth__row-inline label{ display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.mye-auth__forgot{ color: var(--mye-text-muted); text-decoration: none; }
.mye-auth__forgot:hover{ color: var(--mye-text); }
.mye-auth__switch{ text-align: center; margin-top: 18px; font-size: 14px; color: var(--mye-text-muted); }
.mye-auth__switch a{ color: var(--mye-text); }
.mye-auth__privacy{ color: var(--mye-text-muted); }

/* ============================================================
   ADDRESSES OVERVIEW (my-address.php) -- Figma Image 2
   ============================================================ */
.mye-addresses__head{ margin-bottom: 28px; }
.mye-addresses__title{
    font-size: 32px; font-weight: 600; margin: 0;
    color: var(--mye-text); letter-spacing: -0.01em;
}
.mye-addresses__section-title{
    font-size: 14px; letter-spacing: .14em; font-weight: 700;
    text-transform: uppercase; margin: 0 0 18px;
    color: var(--mye-text);
}
.mye-addresses__list{
    display: flex; flex-direction: column; gap: 20px;
}

/* Card de cada dirección - estilo Figma: borde gris fino, padding generoso */
.mye-address-card{
    background: var(--mye-bg);
    border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius);
    padding: 26px 32px;
    box-shadow: var(--mye-shadow);
}
.mye-address-card__head{
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 18px; margin-bottom: 20px;
    border-bottom: 1px solid var(--mye-border-soft);
}
.mye-address-card__title{
    font-size: 13px; text-transform: uppercase; letter-spacing: .14em;
    font-weight: 700; margin: 0; color: var(--mye-text);
}
.mye-address-card__edit{
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--mye-text); text-decoration: underline;
    font-weight: 600;
}
.mye-address-card__edit:hover{ color: #000; }

/* Filas label · valor (label izq, valor der) */
.mye-address-card__body{
    display: flex; flex-direction: column;
}
.mye-address-card__row{
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; padding: 7px 0;
    font-size: 14px;
}
.mye-address-card__label{
    color: var(--mye-text-muted);
    font-weight: 400;
}
.mye-address-card__value{
    color: var(--mye-text);
    text-align: right;
    word-break: break-word;
}
.mye-address-card__empty{
    color: var(--mye-text-muted); font-style: italic; margin: 0;
}
.mye-address-card__empty a{
    color: var(--mye-text); text-decoration: underline; margin-left: 6px;
}

/* ============================================================
   EDIT ADDRESS FORM (form-edit-address.php) -- Figma Image 3
   ============================================================ */
.mye-edit-address{
    width: 100%;
}

/* Card container blanco que envuelve TODO el form (igual que el Figma) */
.mye-edit-address__card{
    background: var(--mye-bg);
    border: 1px solid var(--mye-border);
    border-radius: var(--mye-radius);
    padding: 32px 40px 36px;
    box-shadow: var(--mye-shadow);
}

.mye-edit-address__head{
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px;
}
.mye-edit-address__title{
    font-size: 28px; font-weight: 600; margin: 0;
    color: var(--mye-text);
}
.mye-edit-address__back{
    text-transform: uppercase; font-size: 13px; letter-spacing: .12em;
    font-weight: 600; color: var(--mye-text); text-decoration: underline;
}
.mye-edit-address__back:hover{ color: #000; }

.mye-edit-address__form{
    background: transparent;
    padding: 0;
}

/* Grid 2 columnas con gap amplio */
.mye-edit-address__fields{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    margin-bottom: 32px;
}

/* Cada campo (p generado por woocommerce_form_field) */
.mye-edit-address__field{
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}
.mye-edit-address__field--full{ grid-column: 1 / -1; }

/* Anular floats nativos de WC (form-row-first/last/wide) */
.mye-edit-address__field.form-row-first,
.mye-edit-address__field.form-row-last,
.mye-edit-address__field.form-row-wide,
.mye-edit-address__field.form-row{
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

/* Labels arriba, sutiles */
.mye-edit-address__field > label{
    display: block !important;
    font-size: 13px !important;
    color: var(--mye-text) !important;
    font-weight: 500 !important;
    margin-bottom: 10px !important;
    line-height: 1.3;
}
.mye-edit-address__field > label .required{
    color: var(--mye-danger); text-decoration: none;
}
.mye-edit-address__field > label .optional{
    color: var(--mye-text-soft); font-weight: 400; margin-left: 4px;
}

/* Wrapper del input que añade WC */
.mye-edit-address__field .woocommerce-input-wrapper{
    width: 100%; display: block;
}

/* Inputs estilo underline (placeholder "0000 0000 0000 0000") */
.mye-edit-address__field input.input-text,
.mye-edit-address__field input[type="text"],
.mye-edit-address__field input[type="email"],
.mye-edit-address__field input[type="tel"],
.mye-edit-address__field input[type="number"],
.mye-edit-address__field textarea,
.mye-edit-address__field select{
    width: 100% !important;
    padding: 10px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--mye-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 15px !important;
    color: var(--mye-text) !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s ease;
    height: auto !important;
    line-height: 1.5 !important;
    appearance: none;
}
.mye-edit-address__field input.input-text:focus,
.mye-edit-address__field input[type="text"]:focus,
.mye-edit-address__field input[type="email"]:focus,
.mye-edit-address__field input[type="tel"]:focus,
.mye-edit-address__field textarea:focus,
.mye-edit-address__field select:focus{
    border-bottom-color: var(--mye-text) !important;
}
.mye-edit-address__field input::placeholder,
.mye-edit-address__field textarea::placeholder{
    color: var(--mye-text-soft) !important;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Select nativo */
.mye-edit-address__field select{
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 4px center !important;
    background-size: 10px !important;
    padding-right: 24px !important;
    cursor: pointer;
}

/* Select2 (country/state) - misma estética underline */
.mye-edit-address__field .select2-container{
    width: 100% !important;
}
.mye-edit-address__field .select2-container--default .select2-selection--single{
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--mye-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    height: 42px !important;
    line-height: 42px !important;
}
.mye-edit-address__field .select2-container--default.select2-container--focus .select2-selection--single,
.mye-edit-address__field .select2-container--default.select2-container--open .select2-selection--single{
    border-bottom-color: var(--mye-text) !important;
    outline: none !important;
    box-shadow: none !important;
}
.mye-edit-address__field .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 42px !important;
    padding-left: 0 !important;
    padding-right: 24px !important;
    color: var(--mye-text) !important;
    font-size: 15px !important;
    font-weight: 600;
}
.mye-edit-address__field .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: var(--mye-text-soft) !important;
    font-weight: 400;
}
.mye-edit-address__field .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100% !important;
    right: 0 !important;
    top: 0 !important;
}
.mye-edit-address__field .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: var(--mye-text-muted) transparent transparent transparent !important;
}

/* Mensajes de error inline */
.mye-edit-address__field .woocommerce-error,
.mye-edit-address__field .woocommerce-message{
    font-size: 12px;
    color: var(--mye-danger);
    margin: 4px 0 0;
    list-style: none;
    padding: 0;
}

/* Botón GUARDAR centrado, redondo */
.mye-edit-address__actions{
    display: flex; justify-content: center;
    padding-top: 12px;
}
.mye-edit-address__actions .mye-btn--pill{
    min-width: 200px;
    padding: 14px 40px;
    font-size: 13px;
    letter-spacing: .14em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
    .mye-auth{ grid-template-columns: 1fr; }
    .mye-auth__panel--image{ display: none; }
    .mye-auth__panel--form{ padding: 40px 22px; }

    .mye-vieworder__grid{ grid-template-columns: 1fr; }
    .mye-vieworder__addresses{ grid-template-columns: 1fr; }

    .mye-edit-address__card{ padding: 24px 22px 28px; }
    .mye-edit-address__fields{ grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px){
    .mye-order-item__body{ grid-template-columns: 1fr; gap: 12px; }
    .mye-order-item__actions{ flex-direction: row; min-width: 0; }
    .mye-order-item__actions .mye-btn{ flex: 1; }
    .mye-vieworder__row{ grid-template-columns: 1fr; }

    .mye-address-card{ padding: 20px 22px; }
    .mye-address-card__row{
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 6px 0;
    }
    .mye-address-card__value{ text-align: left; }

    .mye-edit-address__head{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mye-edit-address__title{ font-size: 24px; }
}
