/* ╔═══════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                     ACCOUNT PAGE                                              ║ */
/* ╚═══════════════════════════════════════════════════════════════════════════════════════════════╝ */


/*
.u-columns {} 
.u-columns.col2-set {}
.u-columns .u-column1.col-1 {}
.u-columns .u-column2.col-2 {}
*/

.u-columns {
    display: grid; grid-column-gap: 50px; grid-row-gap: 50px;
    justify-content: center; /* Align grid content horizontally to the center */
}
.u-columns.col1-set { grid-template-columns: repeat(1, 1fr); }
.u-columns.col2-set { grid-template-columns: repeat(2, 1fr); }
.u-columns [class^="u-column"] { }

/* Form Headings */
.woocommerce-MyAccount-content > h2, 
.woocommerce-MyAccount-content header > h2 { text-transform: uppercase; font-size: 18px; }

/* Address Book */
.woocommerce-Address-title { margin-bottom: 15px; }
.woocommerce-Address-title .edit { 
    display: block; border-radius: 4px; text-decoration: none;  padding: 10px 15px; border: 2px solid  #2D84CE;  
    color:#2D84CE; font-weight: 500; transition:all 0.2s; 
}
.woocommerce-Address-title .edit:hover { background-color: #2D84CE; color: white;  }
.woocommerce-Address-title .edit::before { margin-inline-end: 3px;  font-family: "Font Awesome 6 Free"; content: "\f31c"; }
.woocommerce-Address address { font-size: 16px; font-style: italic; }


/* ALL: Account + Layout  */
body.woocommerce-dashboard .component-heading,
body.woocommerce-edit-account .component-heading,
body.woocommerce-edit-address .component-heading,
body.woocommerce-orders .component-heading { display: none;   } 
.my-account-section  { display: flex;   }

.heading-my-profile { margin-bottom: 16px; }
.heading-my-profile .heading { margin: 0; font-size: 16px; text-transform: uppercase; }
.heading-my-profile hr { margin: 10px 0 0 0; }

.woocommerce-MyAccount-navigation { 
    flex-grow: 1; flex-shrink: 0; flex-basis: 25%;
    max-width: 25%; width: 25%;
     padding-right: 30px; 
    border-right: 1px solid var(--grey-light);  
}
.woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none none; list-style-position: inside; }
.woocommerce-MyAccount-navigation ul li {}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--dark);
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px; text-decoration: none;
    transition:all 0.2s;
}
.woocommerce-MyAccount-navigation a:hover { background-color: var(--grey-light); }
.woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: var(--blue);
    color: var(--white);
    cursor: default;
}



.woocommerce-MyAccount-content { 
    flex-grow: 1; flex-shrink: 0; flex-basis: 75%;
    max-width: 75%; width: 75%; padding-left: 30px; 
}

/* Dashboard */
body.woocommerce-dashboard {}

.dashgrid-wrapper {}
.dashgrid  { padding: 15px 0; }
.dashgrid ul {
    margin: 0; padding: 0; list-style: none none; list-style-position: inside;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}
.dashgrid ul li {}
.dashgrid-link a {
    display: block; text-align: center; padding: 20px; color: inherit; text-decoration: none; border-radius: 6px; font-weight: 500;
    border: 2px solid transparent;  
    box-shadow: 0 0 6px rgba(0,0,0,0.10); transition: all .25s ease;
    color: var(--grey-dark);
}
.dashgrid-link a::before {
    display: block;
    margin-bottom: 10px;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    transition: color .25s ease;
    content: "\f013";
    font-family: "Font Awesome 6 Free";
    transition:all 0.2s;
}
.dashgrid-link--dashboard { display: none;  }
.dashgrid-link--dashboard a::before { content: "\e3c1"; /* e488 */ }
.dashgrid-link--orders a::before { content: "\f847"; }
.dashgrid-link--downloads a::before { content: "\f339"; }
.dashgrid-link--loyalty_reward a::before { content: "\f013"; }
.dashgrid-link--wc-smart-coupons a::before { content: "\f013"; }
.dashgrid-link--edit-address a::before { content: "\f2b9"; }
.dashgrid-link--payment-methods a::before { content: "\f09d"; }
.dashgrid-link--edit-account a::before { content: "\f2bd"; }
.dashgrid-link--customer-logout a::before { content: "\f2f5"; }

.dashgrid-link a:hover { color: var(--blue); border-color: var(--blue); background-color: #FAFAFA;  }
.dashgrid-link a:hover::before { transform: scale(1.1); }

/* Form actions margin */
.woocommerce-address-fields__field-wrapper { margin-bottom: 35px; }




/* ╔══════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║ ####################################   DEVELOPMENT BREAKPOINTS   ##################################  ║ */
/* ╚══════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

/* LG */ 
@media (max-width: 1279.98px) {
 
} /* @media ---| width < 1200px |--- */

/* MD */ @media (max-width: 991.98px) {
 

} /* @media ---| width < 992px |--- */

/* SM */ @media (max-width: 767.98px) {

    .u-columns.col2-set { grid-template-columns: 1fr; }

    .my-account-section { flex-wrap: wrap; }
    .woocommerce-MyAccount-navigation { max-width: 100%; width: 100%; flex-basis: 100%; padding-right: 0px; display: none; }
    .woocommerce-MyAccount-content { flex-basis: 100%; max-width: 100%; width: 100%; padding-left: 0px; }


} /* @media ---| width < 768px |--- */

/* XS */ @media (max-width: 575.98px) and (orientation:landscape) {}
@media (max-width: 575.98px) {

  
} /* @media ---| width < 576px |--- */

@media screen and (min-width: 320px) and (max-width: 767.98px) and (orientation: landscape) { }

/* XXS */ @media (max-width: 319.98px) and (orientation:landscape) {}
@media (max-width: 319.98px) {


} /* @media ---| width < 320px |--- */

/* ---| END |--- */
/* ¡ NO STYLES BELOW THIS LINE PLEASE ! */






