/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #babysitter-ms-form-container { width: 100%; position: relative; }
#msform { text-align: center; position: relative; margin-top: 30px; }
#msform fieldset { background: white; border: 0 none; border-radius: 8px; box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1); padding: 20px 30px; box-sizing: border-box; width: 100%; margin: 0 10px; position: relative; }
#msform fieldset:not(:first-of-type) { display: none; }
#msform input, #msform textarea, #msform select { padding: 12px; border: 1px solid #ccc; border-radius: 4px; margin-bottom: 10px; width: 100%; box-sizing: border-box; font-family: inherit; font-size: 14px; }
.action-button { width: 100px; background: #27AE60; font-weight: bold; color: white; border: 0 none; border-radius: 4px; cursor: pointer; padding: 10px 5px; margin: 10px 5px; }
.action-button-previous { width: 100px; background: #C5C5F1; font-weight: bold; color: white; border: 0 none; border-radius: 4px; cursor: pointer; padding: 10px 5px; margin: 10px 5px; }
#progressbar { margin-bottom: 30px; overflow: hidden; counter-reset: step; }
#progressbar li { list-style-type: none; 
    color: #666; 
    text-transform: uppercase; 
    font-size: 9px; 
    width: 25%; 
    float: left; 
    position: relative; 
    letter-spacing: 1px;
    text-align: center;
}
#progressbar li:before { 
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 17px;
    color: #333;
    background: white;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    border: 1px solid #ddd;
}
#progressbar li.active:before, #progressbar li.active:after { background: #27AE60; color: white; }
.field-row { text-align: left; margin-bottom: 15px; }

p.error {
    border: solid 2px #ff5d5d;
    margin: 30px 0 0 0;
    padding: 6px;
    border-radius: 35px;
    font-size: 17px;
    text-align: center;
    color: #941919;
}

#parent-ms-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.field-row label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

/* #msform-parent fieldset {
    border: none;
    display: none;
} */
/* Hide all steps by default except the first one */
#msform-parent fieldset:not(:first-of-type) {
    display: none;
    opacity: 0;
}

#msform-parent fieldset {
    display: block; /* The first one will stay visible due to the :not rule above */
}
/* #msform-parent fieldset:first-of-type {
    display: block;
} */

.error-msg {
    color: #d9534f;
    background: #fdf7f7;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Font custom colours */

.orange{
    color: #ff8c83;
}
.blue{
    color: #5abcb4;
}


/* Tags */

/* Container for the tags */
.nu-tags-container {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* The "Pill" Style (White background with Green Dot) */
.nu-tag-pill {
    background: white;
    border: 0.5px solid #E2E2E0; /* Matches your var-color-border-secondary */
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    color: #5F5E5A;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
}

.nu-trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1D9E75; /* Trusted Green */
    flex-shrink: 0;
}

/* The "Badge" Style (Teal background, used on sitter cards) */
.nu-tag-badge {
    display: inline-block;
    background: #E1F5EE;
    color: #0F6E56;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}


/* Pricing Cards    */
.pricing-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.pricing-card {
    background: #FFF8F2; /* Your Hero background */
    border: 1px solid #F5C4B3;
    border-radius: 16px;
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover { transform: translateY(-10px); }

.pc-title {
    font-family: 'Fraunces', serif; /* */
    font-size: 20px;
    color: #2C2C2A;
    margin-bottom: 10px;
}

.pc-price {
    font-size: 32px;
    font-weight: 700;
    color: #5abcb4; /* Your Brand Coral */
}

.pc-price span { font-size: 14px; color: #5F5E5A; }

.pc-features {
    margin: 20px 0;
    font-size: 14px;
    color: #5F5E5A;
    line-height: 1.6;
}

.btn-subscribe {
    display: block;
    background: #ff8c83;
    color: white !important;
    text-decoration: none;
    padding: 12px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}


/* DASHBOARD */
nav.woocommerce-MyAccount-navigation {
    background-color: #5bbbb4;
    margin: 0;
    padding: 0;
    list-style: none;
}
nav.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
nav.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #fff;
}
nav.woocommerce-MyAccount-navigation ul li a {
    display: block;
    height: 60px;
    line-height: 21px;
    padding: 0 0 0 8px;
    color: #fff;
    font-weight: 200;
}

nav.woocommerce-MyAccount-navigation ul li.is-active a, nav.woocommerce-MyAccount-navigation ul li:hover a {
    font-weight: bold;
}
