/** Login **/
.page-account-form {
    width: 100%;
    background: rgba(39, 47, 79, 0.9);
    padding: 42px 20px;
}


.page-account-form .section-login,
.page-account-form .section-register {
    display: none;
}

.page-account-form[data-page="login"] .section-login {
    display: flex;
}

.page-account-form[data-page="register"] .section-register {
    display: flex;
}

.page-account-form[data-page="lostPassword"] .section-lost-password {
    display: flex;
}

.page-account-form[data-page="resetPassword"] .section-reset-password {
    display: flex;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: none;
    margin: 0;
    padding: 0;
}

.modal-account-form {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    border-radius: 20px;
    background: var(--color-white);
}

.modal-account-form .section-form {
    justify-content: space-between;
    padding: 23px;
}

.modal-account-form .section__column {
    width: calc(50% - 10px);

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-account-form .section__column .section__column__container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 50px 0;
}

.modal-account-form .section-form .section__title {
    width: 100%;
    text-align: center;
    font-size: clamp(24px, 2.7vw, 34px);
    line-height: 1.3;
}

.modal-account-form .section-form .section__subtitle {
    width: 100%;
    text-align: center;
    font-size: 15px;
    line-height: 1.3;
    margin: 18px 0 0 0;
}

.modal-account-form .social-login-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
}

.modal-account-form .social-login-buttons button {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    background: none;
}

.modal-account-form .separator {
    width: 100%;
    text-align: center;
    font-size: 15Px;
    margin: 0 0 20px 0;
}

.modal-account-form .form-row--rememberme {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-account-form .form-row--rememberme::before,
.modal-account-form .form-row--rememberme::after {
    display: none !important;
}

.modal-account-form .form-row--controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.woocommerce .woocommerce-form-login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
}

.woocommerce .woocommerce-form-login .form__group input {
    width: 100%;
    line-height: 72px;
    padding: 0 20px;
    border-radius: 10px;
    background: rgba(241, 239, 238, 1);
    border: none;
}

.woocommerce .woocommerce-form-login .form__group label {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 72px;
    padding: 0 20px;
    font-size: 15px;
    transition: linear .15s
}

.woocommerce .woocommerce-form-login .form__group label.focused {
    line-height: 24px;
    font-size: 12px;
    font-weight: 700;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
    display: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
    padding-left: 32px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid var(--color-blue);
    border-radius: 5px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input:checked ~ span::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--color-blue);
    border-radius: 3px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme:hover span {
    text-decoration: underline;
}

.woocommerce .woocommerce-form-login .lost_password a {
    color: var(--color-blue-light);
    font-size: 15px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 304px;
    text-align: center;
    border: 2px solid var(--color-blue);
    color: var(--color-white);
    line-height: 46px;
    background: var(--color-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
    background: none;
}

.woocommerce .woocommerce-form-login .btn-switch-register {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 304px;
    text-align: center;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    line-height: 46px;
    background: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

.woocommerce .woocommerce-form-login .btn-switch-register:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.woocommerce form.register label {
    text-align: left;
    width: 100%;
    font-size:15px;
    margin: 0 0 5px 0;
}
.woocommerce form.register input {
    text-align: left;
    width: 100%;
    border-radius: 10px;
    border:1px solid var(--color-blue);
    line-height: 72px;
    padding: 0 32px;
}
.woocommerce form.register .form__group {
    margin:0 0 10px 0;
}






.woocommerce .woocommerce-form__label-for-checkbox {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.woocommerce .woocommerce-form__label-for-checkbox input {
    display: none;
}

.woocommerce .woocommerce-form__label-for-checkbox span {
    padding-left: 32px;
}
.woocommerce .woocommerce-form__label-for-checkbox span a{
    color:var(--color-blue);
    text-decoration: underline;
}

.woocommerce .woocommerce-form__label-for-checkbox span::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid var(--color-blue);
    border-radius: 5px;
}

.woocommerce .woocommerce-form__label-for-checkbox input:checked ~ span::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--color-blue);
    border-radius: 3px;
}

.woocommerce .woocommerce-form__label-for-checkbox span a:hover{
    color:var(--color-red);
}
.woocommerce form.register .form__controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 27px 0 0 0;
}

.woocommerce form.register .woocommerce-form-register__submit{
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    border: 2px solid var(--color-blue);
    color: var(--color-white);
    line-height: 46px;
    background: var(--color-blue);
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
}

.woocommerce form.register .form__redirect {
    width: 100%;
    text-align: center;
    margin: 27px 0 0 0;
    font-weight: 400;
    font-size:15px;
}
.woocommerce form.register .form__redirect button {
    background:none;
    display: inline;
    font-weight: 700;
    border:none;
    font-size:15Px;
    cursor:pointer;
}
.woocommerce form.register .form__redirect button:hover {
    text-decoration: underline;
}

.modal-account-form .block-infos {
    width: 100%;
    min-height: 100%;
    border-radius: 13px;
    background: rgba(64, 102, 167, 1);
    padding: 200px 0 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-account-form .block-infos--login {
    padding: 200px 0 100px 0;
}

.modal-account-form .block-infos--register {
    padding: 100px 0 90px 0;
}

.modal-account-form .block-infos--login::before {
    content: '';
    width: 100%;
    height: 200px;
    max-height: 18%;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: center center;
    transform: rotateY(180deg);
    background: url(/wp-content/uploads/top-right.png) no-repeat top right;
    background-size: contain;
    z-index: 10;
}

.modal-account-form .block-infos--login::after {
    content: '';
    width: 100%;
    height: 200px;
    max-height: 18%;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: center center;
    transform: rotateY(180deg);
    background: url(/wp-content/uploads/bottom-left.png) no-repeat bottom left;
    background-size: contain;
    z-index: 10;
}

.modal-account-form .block-infos .block-infos__title {
    color: var(--color-white);
    text-align: center;
    font-size: clamp(20px, 2.5vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    padding: 0 50px;
    z-index: 100;
}

.modal-account-form .block-infos .block-infos__title span {
    text-decoration: underline;
    font-weight: 700;
}

.modal-account-form .block-infos .block-infos__text {
    color: var(--color-white);
    text-align: center;
    margin: 30px 0 0 0;
    padding: 0 50px;
    z-index: 100;
}

.modal-account-form .block-infos .block__image {
    width: 100%;
    height: 380px;
    z-index: 100;
}

.modal-account-form .block-infos .block__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.modal-account-form .block-infos--register .block__image {
    width: calc(100% - 100px);
}

.page-account-form .section-register .social-login-buttons {
    margin: 30px 0;
}
.page-account-form .section-register .separator::before {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color-blue);
    position: absolute;
    top:calc(50% - 1px);
    left:0;
    z-index: 1;
}

.page-account-form .section-register .separator span {
    background: var(--color-white);
    padding: 0 10px;
    z-index: 10;
    font-size:15px;
    text-transform: uppercase;
}

.modal-account-form .block-infos--lost-password {
    background: none;
    padding: 0;
}

.lost_reset_password {
    margin: 73px 0 0 0;
}
.lost_reset_password .separator{
    margin: 50px 0 0 0;
}

.lost_reset_password .form__group  label {
    text-align: left;
    width: 100%;
    font-size:15px;
    margin: 0 0 5px 0;
}
.lost_reset_password .form__group  input {
    text-align: left;
    width: 100%;
    border-radius: 10px;
    border:1px solid var(--color-blue);
    line-height: 72px;
    padding: 0 32px;
}

.lost_reset_password .form__controls {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 27px 0 0 0;
}

.lost_reset_password .form__controls button{
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    border: 2px solid var(--color-blue);
    color: var(--color-white);
    line-height: 46px;
    background: var(--color-blue);
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
}

.section-lost-password .block-infos .block__image {
    height: 100%;
}
.section-lost-password .section__column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-reset-password .block-infos .block__image {
    height: 100%;
}
@media all and (max-width: 1080px) {
    .modal-account-form .section-form {
        flex-wrap: wrap;
    }

    .modal-account-form .section__column {
        width: 100%;
    }
}

@media all and (max-width: 750px) {
    .page-account-form {
        padding: 30px 0;
    }

    .modal-account-form .section-form {
        padding: 50px 10px 10px 10px;
    }
}







.block-infos--register .slider {
    width: 100%;
}

.block-infos--register .slider__list {
    display: flex;
    transition: transform 0.5s ease;
}
.block-infos--register .slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.block-infos--register .slider__dots {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin: 65px 0 0 0;
}
.block-infos--register .slider__dots .dot {
    background: #fff;
    border: none;
    width: 50px;
    height: 5px;
    cursor: pointer;
}
.block-infos--register .slider__dots .dot.active {
    background: rgba(106, 197, 209, 1);
}






/** Dashboard **/
.dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard-header .btn-settings {
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 20px;
    padding: 30px 22px;
    transition: linear .15s;
}

.dashboard-header .btn-settings:hover {
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
}

.dashboard-header__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
}


.dashboard-header .dashboard-title {
    font-size: clamp(28px, 2.5vw, 40px);
    line-height: 1.3;
    font-weight: 400;
}

.dashboard-header .dashboard-title span {
    font-weight: 700;
}

.dashboard-header .dashboard-text {
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 400;
}

.dashboard-introduction {
    font-size: clamp(16px, 2.5vw, 24px);
    line-height: 1.3;
    font-weight: 400;
    margin-top: 24px;
    width: 100%;
    max-width: 980px;
}

.dashboard-introduction a {
    color: var(--color-black);
    text-decoration: underline;
}

/** Orders **/
.orders__title {
    margin-top: 103px;

    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
}

.orders__empty {
    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 400;
    max-width: 980px;
}

.orders__empty a {
    color: var(--color-black);
    text-decoration: underline;
}

/** Related product **/

.wishlist__title {
    margin-top: 103px;

    font-size: clamp(16px, 2.5vw, 25px);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
}

.wishlist-slider {
    position: relative;
    overflow: hidden;
    margin: 0 0 70px 0;
}

.wishlist-slider .slider-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    gap: 20px;
    margin: 0;
    padding: 0;

}


.wishlist-slider .card--product {
    flex: 0 0 auto;
    width: 250px; /* fixe ou ajustable */
}

.wishlist .slider-prev,
.wishlist .slider-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform-origin: center center;
    background: var(--color-sky);
    border: none;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 16px;
}

.wishlist .slider-prev {
    left: -33px;
    transform: rotate(180deg) translateY(50%);
}

.wishlist .slider-next {
    right: -33px;
    transform: translateY(-50%);
}


/**
*
 */

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 247px;
    margin-top: 38px;
    margin-bottom: 150px;
    margin-left:24Px;
}

.woocommerce-account .woocommerce-MyAccount-navigation .box {
    border-top: 1px solid rgba(128, 128, 128, 1);

    padding: 19px 0 19px 50px;
}
.woocommerce-account .woocommerce-MyAccount-navigation .box-logo {
    width: 134px;
    height: 134px;
    border-radius: 50%;
    border: 1px solid rgba(189, 189, 189, 1);
    overflow: hidden;
    margin: 0 auto 24px auto;
}
.woocommerce-account .woocommerce-MyAccount-navigation .box-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce-account .woocommerce-MyAccount-navigation .box .box-title {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation .box ul a {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-black);
}

.woocommerce-account .woocommerce-MyAccount-content {
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.3);
    padding: 65px 50px 30px 50px;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    width: calc(100% - 300px - 24px);
}

.woocommerce-account .woocommerce-MyAccount-content::before {
    content: '';
    width: 100%;
    height: 1600px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(106, 197, 209, 0) 89.34%, #6AC5D1 100%);
}

.woocommerce-account .woocommerce-MyAccount-content fieldset{
    border:none;
    margin: 32px 0 0 0;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 16px 0;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px 0;
}
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
    width: 100%;
    line-height: 72px;
    border: 1px solid rgba(128, 128, 128, 1);
    border-radius: 10px;
    padding: 0 15px;
}

.woocommerce form .form-row > span {
    display:block;
    text-align:right;
    width: 100%;
    font-size:14px;
    margin: 4px 0 0 0;
    padding: 0 8px;
    line-height:1.3;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button {
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 12px 25px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s;
    font-size: clamp(14px, 2vw, 20px);
    margin: 24px 0 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover {
    text-decoration: none;
    color:var(--color-white);
    background-color: var(--color-red) !important;
}
