/*
 Theme Name: Entro Child
 Theme URI: https://yourwebsite.com/
 Description: Child theme for Entro WordPress Theme
 Author: Your Name
 Template: entro
 Version: 1.0.0
*/

/* Import parent theme CSS */
@import url("../entro/style.css");

    /* Overall container spacing */
    .anxiety-section {
        margin-bottom: 60px;
    }

    /* Responsive grid */
    .anxiety-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .anxiety-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile */
    @media (max-width: 600px) {
        .anxiety-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Box styling */
    .resource-box {
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        text-align: center;
        background: #fafafa;
    }

    .resource-box i {
        font-size: 38px;
        margin-bottom: 10px;
    }

    .resource-box h4 {
        margin-top: 10px;
        font-size: 18px;
    }

    .resource-box a {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 15px;
        background: #0073e6;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
    }

    /*form css */
.pms-form input {
    padding: 14px 14px 14px 14px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    border: 1px solid #05050526;
}
.pms-form input:focus, .pms-form input:focus-visible {
    border-color: #ffd012;
    outline: 0;
}
.pms-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #121212;
    font-family: "SunsiveRegular", sans-serif;
    line-height: 1;
}
.pms-account-section-wrapper, .pms-form-fields-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 4px;
}
.pms-form input[type=submit] {
    font-size: 16px;
    border: 0;
    background: #ffd012;
    color: #0b3665;
    font-weight: 700;
    font-family: "SunsiveRegular", sans-serif;
    margin: 0;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}
.pms-form input[type=submit]:hover {
    background: #0B3665;
    color: #fff;
}
.pms-form{
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}
.login-extra a {
    color: #0b3665;
}

.login-extra a:hover {
    color: #ffd012;
}
.pms-form-fields-wrapper li:has(input[type="submit"]){
    grid-column: span 2;
}
@media ( max-width: 767px ){
    .pms-account-section-wrapper,.pms-form-fields-wrapper {
    display: block;
}
}
    /*form css end */

.logged-in article {
    margin: 40px 10px 10px 10px;
    text-align: center;
}

.resource-box a.download-btn.disabled {
    background: #a7a2a2;
    
}



/* Wrapper */
.pms-plans-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Plan Card */
.pms-plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
display: grid;
grid-template-rows: 1fr auto;
}

.pms-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Plan Title */
.pms-plan-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

/* Price */
.pms-plan-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c7be5;
    margin: 10px 0 5px;
}

/* Description */
.pms-plan-card .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* Feature List */
.pms-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pms-plan-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

/* Check icon */
.pms-plan-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
}

/* Select Button */
.btn-select-plan {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #2c7be5;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-select-plan:hover {
    background: #1a5fd0;
    transform: scale(1.05);
}

/* Highlight middle plan (optional) */
/*.pms-plan-card:nth-child(2) {
    border: 2px solid #2c7be5;
}*/
.pms-plan-card.selected-plan {
    border: 2px solid #2c7be5;
    box-shadow: 0 0 15px rgba(44, 123, 229, 0.3);
}

.btn-select-plan.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile */
@media (max-width: 768px) {
    .pms-plan-card {
        padding: 20px;
    }

    .pms-plan-card .price {
        font-size: 1.4rem;
    }
}



/***** Custom PMS CSS *****/
/*.elementor-shortcode a.pms-logout-url {
    color: #000 !important;
}*/
/***** start logout button *****/

a.pms-logout-url {
    color: #000 !important;
    font-family: "SunsiveMedium", Sans-serif;
    font-size: 18px;
    font-weight: normal;
}

p.pms-front-end-logout span {
    display: none;
}
li.logout-pms {
    display: flex;
    align-items: center;
    padding: 0 10px;
}
@media (max-width: 1024px){
    li.logout-pms {
    padding: 0px;
}
}
/***** end logout button *****/

/* start about page royality images */

.ctm-post-img img {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    aspect-ratio: unset !important;
    max-width: 100% !important;
    position: absolute !important;
    inset: 0;
}

.ctm-post-img {
    overflow: hidden;
    padding: 0 !important;
    position: relative;
    padding-bottom: 100% !important;
}

/* end about page royality images */


/* Keep PMS table same as desktop on mobile */
@media (max-width: 768px) {

  /* Enable horizontal scroll */
  #pms-payment-history {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Keep table layout */
  #pms-payment-history table {
    width: 100%;
    border-collapse: collapse;
  }


  /* Prevent column breaking */
  #pms-payment-history th,
  #pms-payment-history td {
    white-space: nowrap;
  }
}


 /**** Main form container *****/
/* Form container */
form#wppb-edit-user {
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

form#wppb-edit-user ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 4px;
    margin: 0;
}

form#wppb-edit-user label {
    display: block;
    width: 100% !important;
    float: unset !important;
    text-align: left;
    font-size: 14px;
    margin-bottom: 6px;
    color: #121212;
    font-family: "SunsiveRegular", sans-serif;
    line-height: 1;
}

form#wppb-edit-user input {
    display: block;
    width: 100%;
    padding: 14px 14px 14px 14px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1;
    border: 1px solid #05050526;
}

form#wppb-edit-user ul span.wppb-password-field-container {
    width: 100%;
}

form#wppb-edit-user input:focus, form#wppb-edit-user input:focus-visible {
    border-color: #ffd012;
    outline: 0;
}

form .form-submit input[type="submit"] {
    font-size: 16px;
    background: #ffd012;
    color: #0b3665;
    border: 0 !important;
    font-weight: 700;
    font-family: "SunsiveRegular", sans-serif;
    margin: 0;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

form .form-submit input[type="submit"]:hover {
    background: #0B3665;
    color: #fff;
}

@media ( max-width: 767px ){
    form#wppb-edit-user ul {
    grid-template-columns: 1fr;
}
}

/* memberzone page if user not log in */
.page-id-8620 .elementor-widget-container {
    text-align: center !important;
}

/* header */
@media (min-width: 992px){
    body.logged-in:not(.elementor-editor-active) header.eel-sticky-header-on {
    top: 0px !important;
}
}



/* ===== Fix WooCommerce Login / Register layout (Entro theme) ===== */

.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Wrapper */
.woocommerce-account #customer_login {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Login & Register columns */
.woocommerce-account #customer_login .col-1,
.woocommerce-account #customer_login .col-2 {
    width: 50%;
    max-width: 520px;
}

/* Headings spacing */
.woocommerce-account #customer_login h2 {
    margin-bottom: 20px;
}

/* Inputs full width */
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"] {
    width: 100%;
}

/* Mobile fix */
@media (max-width: 768px) {
    .woocommerce-account #customer_login {
        flex-direction: column;
    }

    .woocommerce-account #customer_login .col-1,
    .woocommerce-account #customer_login .col-2 {
        width: 100%;
        max-width: 100%;
    }
}

/*Start for join button */
#menu-item-8991 a.eel-menu-item {
    border: 1px solid #ccc;
    padding: 10px 20px !important;
    margin-right: 10px;
    background: #ffd01238;
}
#menu-item-8991 a.eel-menu-item:hover {
    color: #000;
    background: #ffd012;
    border-color: #ffd012;
}
li#menu-item-8991 {
    display: flex;
    align-items: center;
}
/*end for join button */