.lw-faq__tab:hover {
    color: #15171a !important;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    ) !important;
}
.lw-faq__question:hover,
.lw-faq__question:focus {
    background: transparent !important;
}

/* login */

/* Login Container */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.login-container #rememberme,
.login-container .remember-me,
.login-container br {
    display: none !important;
}
.background-accent {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

/* Login Wrapper */
.login-wrapper {
    background: #15171a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 9;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); */
}

html body .login-form,
html body .woocommerce form.login,
html body .woocommerce form.register,
html body .woocommerce form.lost_reset_password {
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;

    background: rgba(245, 245, 245, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.form-label.remember-me {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* Header */
.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    display: inline-block;
    width: 200px;
    height: auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.login-logo svg {
    width: 40px;
    height: 40px;
}

html body main .login-title,
html body main .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f5f5f5f5;
    letter-spacing: -0.5px;
}
html body main .title {
    color: #15171a;
}
.login-subtitle {
    font-size: 14px;
    color: #a0a0a0;
    font-weight: 400;
}

/* Form */
.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 12px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}
.login-wrapper a {
    color: #d4af37;
}
.form-input::placeholder {
    color: #707070;
}

.form-input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #d4af37;
}

.checkbox-label:hover {
    color: #ffffff;
}

.forgot-password a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #e5c158;
}

/* Login Button */
[type="submit"].login-button,
html body main div .lw-button {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #15171a;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    align-self: flex-start;
    font-family: inherit;
    width: 100%;
}

[type="submit"].login-button:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    color: #15171a;
}

.login-button:active {
    transform: translateY(0);
}

/* Divider */
.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
    font-size: 12px;
    color: #707070;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Social Login */
.social-login {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-button {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-button:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

/* Sign Up Link */
.signup-link {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #a0a0a0;
}

.signup-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #e5c158;
}

/* Responsive */
@media (max-width: 600px) {
    .login-container {
        padding: 15px;
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .login-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }

    html body main .login-title {
        font-size: 26px;
    }

    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .checkbox-label {
        width: 100%;
    }

    .social-button {
        width: 44px;
        height: 44px;
    }

    [type="submit"].login-button {
        padding: 14px 24px;
        font-size: 16px;
    }

    html body .login-form,
    html body form.login,
    html body form.register,
    html body form.lost_reset_password {
        padding: 20px;
    }
}
/* My account */

.woocommerce-MyAccount-navigation {
    position: sticky;
    top: 100px;
    z-index: 99;
    width: 100%;
    padding: 0px 10px;
}
.woocommerce-MyAccount-content{
    padding: 0 10px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-nav li a {
    display: block;
    padding: 12px 20px;
    background: radial-gradient(
        ellipse at center,
        #f7ef9c 0%,
        #f5e58a 25%,
        #e6c768 55%,
        #c99832 80%,
        #a56e26 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: #2b2929;
    text-decoration: none;
    font-weight: 600;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

/* .dashboard-nav li a:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    color: #15171a;
} */

.required {
    display: none !important;
}
a.lw-login-button.lw-header-btn {
    font-weight: 700;
}
/* Played Videos (My Account) */
.lifewise-played-videos {
    margin: 24px 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(16, 24, 32, 0.06);
    border: 1px solid rgba(21, 23, 26, 0.04);
}
.lifewise-played-videos h2 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #15171a;
}
.lifewise-played-videos-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.lifewise-played-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
    transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
    background: linear-gradient(180deg, rgba(245,245,245,0.6), rgba(255,255,255,0.6));
    border: 1px solid rgba(21,23,26,0.03);
}
.lifewise-played-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16,24,32,0.08);
}
.lifewise-played-item a { text-decoration: none; color: inherit; display: flex; align-items: center; width: 100%; }
.lifewise-played-item__thumb {
    width: 72px;
    height: 48px;
    background: #f4f4f6;
    border-radius: 8px;
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lifewise-played-item__thumb img { width: 100%; height: 100%; object-fit: cover; display:block }
.lifewise-played-item__meta {
    display: flex;
    flex-direction: column;
}
.lifewise-played-item__title { font-size: 15px; font-weight: 600; color: #15171a; margin-bottom: 4px; }
.lw-played-course { font-size: 13px; color: #6b6f76; margin-left: 6px; }
.lifewise-played-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lifewise-played-badge .badge {
    background: #fff6e6;
    color: #8a5a00;
    border: 1px solid rgba(218, 165, 32, 0.15);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.lifewise-played-item small { display:block; color:#9aa0a6; font-size:12px }

@media (min-width: 700px) {
    .lifewise-played-videos-list { grid-template-columns: 1fr; }
    .lifewise-played-item { padding: 14px 16px; }
}

@media (max-width: 480px) {
    .lifewise-played-item { gap: 10px; padding: 10px; }
    .lifewise-played-item__thumb { width: 56px; height: 40px; }
    .lifewise-played-videos { padding: 12px; }
}

/* Utility: make links inside the list clearly visible */
.lifewise-played-item a:hover .lifewise-played-item__title { text-decoration: underline; }

/* Disable sticky on mobile */
@media screen and (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
    }
}

.entry-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000f5;
    letter-spacing: -0.5px;
}

body .lw-article-details__content a {
    color: #000000;
    background-color: transparent;
}

html body [type="button"].lw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    gap: 6px;
    text-decoration: none;
}
html body [type="button"].lw-btn:hover{
        color: #15171a;
}
html body .lw-article-details [type="button"].lw-article-details__footer-btn {
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #be7a2b;
    color: #15171a;
}

html
    body
    .lw-article-details
    [type="button"].lw-article-details__footer-btn:hover,
html
    body
    .lw-article-details
    [type="button"].lw-article-details__footer-btn:focus {
    background: none;
}

html body a.lw-article__link {
    font: 700 14px/1.2 var(--global-font);
    color: rgba(2, 0, 9, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    transition: color 0.2s ease;
    margin-top: auto;
}

.lw-hero .lw-hero__cta--primary:hover {
    color: #15171a;
}
a.lw-hero__cta.lw-hero__cta--primary {
    border: none !important;
}
[type="button"].lw-roadmap__card-play-button {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 44px;
    width: 44px;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}
[type="button"].lw-roadmap__card-play-button:hover,
[type="button"].lw-roadmap__card-play-button:focus {
    background-color: transparent;
}

a.choose-country__block-item.countey-block {
    text-decoration: none;
}

.mt-137 {
    margin-top: 137px;
}
html body div.mdf-container {
    width: clamp(320px, 100%, 1325px);
}

.page-id-954 .lw-hero-wrapper .lw-gradient-circle::before,
.page-id-737 .lw-hero-wrapper .lw-gradient-circle::before,
.page-id-16 .lw-hero-wrapper .lw-gradient-circle::before {
    background: radial-gradient(
        ellipse at center,
        #f3ec98 0%,
        #24274b8f 40%,
        #24274b 70%,
        transparent 90%
    );
    z-index: -1;
    height: 500px;
    filter: blur(150px);
    top: 0;
    width: 1500px;
    /* transform: translate(0); */
    max-width: 100%;
}
.page-id-954 .lw-hero-wrapper .lw-gradient-circle::after,
.page-id-737 .lw-hero-wrapper .lw-gradient-circle::after,
.page-id-16 .lw-hero-wrapper .lw-gradient-circle::after {
    background: radial-gradient(
        circle closest-side,
        #f3ec9861 0%,
        rgb(91 91 91 / 11%) 100%
    );
    background-color: rgb(2 2 2 / 48%);
    height: 100%;
    z-index: 9;
}

.page-id-954 .lw-hero::before,
.page-id-954 .lw-hero::after,
.page-id-737 .lw-hero::before,
.page-id-737 .lw-hero::after,
.page-id-16 .lw-hero::before,
.page-id-16 .lw-hero::after {
    display: none;
}
.page-id-16 .lw-hero {
    margin-top: 53px;
}

.page-id-737 .lw-hero {
    margin-top: 60px;
}
/* Responsive adjustments for hero margin
@media (max-width: 1024px) {
    .page-id-16 .lw-hero {
        margin-top: 40px;
    }
}
*/

body .lw-offcanvas {
    max-width: 100% !important;
    padding-top: 90px;
}
.overflow-hidden {
    overflow: hidden !important;
}
.lw-header__close-icon .elementor-icon {
    display: none;
}
section.lw-tab.lw-dots-floating-section.lw-dots-floating--light:after {
    content: "";
    position: absolute;
    height: 25%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(183, 183, 183) 0%, rgb(246, 248, 250) 100%);
    z-index: -1;
}
section.lw-tab.lw-dots-floating-section.lw-dots-floating--light:before {
    content: "";
    position: absolute;
    height: 25%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        0deg,
        rgb(183, 183, 183) 0%,
        rgb(246, 248, 250) 100%
    );
    z-index: -1;
}

html body .min-shape .lw-gradient-shape div.lw-gradient-circle-wrap--alt {
    padding: 30px 0px;
    min-height: 35px;
}
section.lw-testimonials.lw-dots-floating-section {
    z-index: 1;
}
section.lw-testimonials.lw-dots-floating-section:before {
    content: "";
    position: absolute;
    height: 25%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        0deg,
        rgb(183, 183, 183) 0%,
        rgb(246, 248, 250) 100%
    );
    z-index: -1;
}
section.lw-testimonials.lw-dots-floating-section:after {
    content: "";
    position: absolute;
    height: 25%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(183, 183, 183) 0%, rgb(246, 248, 250) 100%);
    z-index: -1;
}
.lw-scrollstack .lw-scrollstack__card {
    top: 110px !important;
}
.lw-scrollstack .lw-scrollstack__card:nth-child(2) {
    top: 150px !important;
}
.lw-scrollstack .lw-scrollstack__card:nth-child(3) {
    top: 170px !important;
}
.lw-fancy-cards--style-05 .lw-fancy-cards__inner {
    min-height: 400px;
}
.lw-fancy-cards--style-05 .lw-fancy-card {
    border-radius: 0px !important;
}
.lw-fancy-cards--style-05 .lw-fancy-card img {
    object-fit: contain !important;
}
.lw-dots-floating {
    z-index: 1;
}
.woocommerce-MyAccount-navigation ul li br {
    display: none;
}
html body  h4{
    letter-spacing: inherit !important;
}
.ov-h {
    overflow: hidden !important;
}
html body section.custom-page {
    padding: 120px 0;
    padding-top: 145px;
}
html body .custom-page-alt {
    padding: 150px 0px 120px;
}
.disabled-auto-hight {
    min-height: auto !important;
}
.lw-playlist-item.lw-playlist-item--played{
        color: #15171a;
    background: #efe6c891;
}
.woocommerce form .form-row .required {
    visibility: visible;
    display: none;
}

.lw-newsletter .sib_signup_form p{
    margin: 0;
}
td.product-name {
    font-weight: 600;
    font-size: 18px;
}
.lw-courses .lw-btn--gold,
html body [type="button"].lw-btn {
    color: #15171a !important;
}
@media (max-width: 991px) {
    html body section.custom-page {
        padding: 50px 0;
        padding-top: 68px;
    }
}
@media (max-width: 767px) {
    .lw-gradient-circle,
    .lw-gradient-circle-border {
        height: 400px !important;
        width: 250%;
    }

    .lw-gradient-circle-wrap {
        min-height: 75px;
    }
    .mt-137 {
        margin-top: 60px !important;
    }
    .lw_footer .lw-gradient-shape .lw-gradient-circle-border {
        width: 250%;
    }
    .lw-gradient-circle-wrap--alt {
        padding: 30px 0px !important;
    }
    html body section.custom-page {
        padding: 36px 0;
    }
    html body section.custom-page-alt {
        padding: 80px 0;
    }
    html body .lw-learning {
        padding: 60px 0 100px;
    }
        html body section.custom-page {
              padding: 40px 0;
       padding-top: 66px;
    }
}
@media (max-width: 576px) {
    html body section.custom-page {
       padding-top: 54px;
    }
}
@media (max-width: 480px) {
    .lw-fancy-cards--style-01 .lw-fancy-cards__inner {
        transform: translateX(16px);
    }
    /* Left image - front, bottom layer - MOST FORWARD */
    .lw-fancy-cards--style-01 .lw-fancy-card--left {
        width: 40%;
    }

    /* Center image - middle layer, behind left, slightly up */
    .lw-fancy-cards--style-01 .lw-fancy-card--center {
        width: 40%;
    }

    /* Right image - back layer, most behind */
    .lw-fancy-cards--style-01 .lw-fancy-card--right {
        width: 40%;
    }
    .style--7 .lw-fancy-cards__inner {
        min-height: 300px;
    }
    .call-to-action-alt .lw-gradient-circle,
    .call-to-action-alt .lw-gradient-circle-border {
        height: 500px !important;
    }
    .lw-fancy-cards--style-02 .lw-fancy-cards__inner,
    .lw-fancy-cards--style-01 .lw-fancy-cards__inner {
        min-height: 300px;
    }
    html body section.custom-page-alt {
        padding: 60px 0;
    }
       html body .lw-learning {
           padding: 48px 0 90px;
        }
    }
    @media (max-width: 430px) {
        .lw-fancy-cards--style-05 .lw-fancy-cards__inner {
          min-height: 300px;
        }
    }
    html {
        visibility: hidden;
    }
    html.elementor-ready {
        visibility: visible;
    }
    .elementor-kit-6 h3 {
    letter-spacing: inherit !important;
}
