
/* parkinsans-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 300;
    src: url('/assets/fonts/parkinsans-v2-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* parkinsans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/parkinsans-v2-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* parkinsans-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/parkinsans-v2-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* parkinsans-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/parkinsans-v2-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* parkinsans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/parkinsans-v2-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* parkinsans-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Parkinsans';
    font-style: normal;
    font-weight: 800;
    src: url('/assets/fonts/parkinsans-v2-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
    /*--toddle-green: #017473;*/
    --toddle-green: #507F7F;
    --toddle-accent-green: #8fcfc7;
    --toddle-bottle-lid-green: #3ac7af;
    /*--toddle-blue: #4e80d1;*/
    --toddle-blue: #009bda;
    --toddle-orange: #f47d46;
    --toddle-orange-70: rgba(244, 125, 70, 0.7);
    --main-bg-color: #ffffff;
    --accent-bg-color: #f5f5f5;

    --toddle-slate: #292b31;

    --error-color: #e74c3c;

    --toddle-heading-font: 'Parkinsans';
    --toddle-body-font: 'Arial';

    --menu-breakpoint: 848px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--toddle-heading-font), sans-serif;
    color: var(--toddle-slate);
}

.font-heading {
    font-family: var(--toddle-heading-font), sans-serif !important;
}

p, a, li, span {
    font-family: var(--toddle-body-font) Arial, serif;
    color: var(--toddle-slate)
}

.font-body {
    font-family: var(--toddle-body-font) Arial, serif !important;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--main-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 8px solid var(--toddle-green);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 15;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--toddle-accent-green);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 11px;
}

.hamburger span:nth-child(4) {
    top: 22px;
}

.hamburger.open span:nth-child(1),
.hamburger.open span:nth-child(4) {
    top: 11px;
    width: 0;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links img {
    display: none;
}

.nav-links a:hover {
    color: var(--toddle-accent-green);
}

.buy-button {
    background-color: var(--toddle-accent-green);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit; /* Inherit the button's background */
    z-index: -1; /* Place it behind the text */
    transition: filter 0.3s ease; /* Smooth transition for the effect */
}

.buy-button:hover::before {
    filter: brightness(0.3); /* Darken the background on hover (adjust value as needed) */
}

.buy-button span {
    color: white
}


/* Mobile Menu Styles */
@media (max-width: 848px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--main-bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0.5rem;
        z-index: 11;
        text-align: center;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    /*.buy-button {*/
    /*    margin: 2rem 0 0 0;*/
    /*}*/
}


dialog {

    max-width: 400px;
    box-shadow: 4px 4px 4px #f5f5f5;
    padding: 1em;
    outline: 0;
    border: 1px solid black;
    border-radius: 8px;
    margin: auto;
    z-index: 101;
}

dialog .dialog-header h3 {
    display: inline-block;
}

dialog .dialog-close {

    float: right;
}

dialog .dialog-body {
    margin-top: 1em;
}


.hero {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/** desktop styles **/

.hero video {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/** mobile styles **/

.hero img {


    width:100%;
    object-fit: cover;
    object-position: right;
}

.hero-overlay, .blog-overlay {
    height: 100%;
    width:100%;
    position:absolute;
    z-index: 1;
}

.overlay-light {
    background: linear-gradient(transparent, #f8f8f8);
}

.overlay-dark {
    background-color: rgba(0, 0, 0, 0.44);
}

.hero-heading {
    color: var(--toddle-green);
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: -0.04em;
    font-family: var(--toddle-heading-font);
}

.hero-heading strong {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: var(--toddle-heading-font);
}

.hero-content {
    position: relative;
    margin: -10vh auto auto auto;
    width: 75%;
    z-index: 2;
}

.hero-subheading {
    margin-top: 1em;
    font-size: 1.2em;
    line-height: 1.6em;
    color: var(--toddle-green);
    letter-spacing: -0.04em;
    font-family: var(--toddle-heading-font);
}

.hero-cta-button {
    margin-top: 2em;
    background: transparent;
    border: 2px solid var(--toddle-green);
    color: var(--toddle-green);
    border-radius: 3em;
    padding: 12px 15px;
    font-size: 1em;
    margin-bottom: 3em;
    display:inline-block;
    text-decoration: none;
}

.hero-cta-button:hover {
    color:white;
    border-color: white;
    background: var(--toddle-green);
}

.hero-lower-banner {
    margin-top: -10px;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
    text-align:center;

}

.hero-lower-banner-content {
    display:flex;
    align-items: center;
    width:fit-content;
    margin:auto;
}



.hero-lower-banner img.toddle-text-logo {
    height: 42px;
    width:auto;
    margin-top: -6px;
}

.hero-lower-banner-content span {
    color:white;
    font-size: 10px;
    font-family: var(--toddle-heading-font);
}

@media(min-width: 480px) {

    .hero-lower-banner img.toddle-text-logo {
        height: 60px;
        width:auto;
        margin-top: -6px;
    }

    .hero-lower-banner-content span {
        color:white;
        font-size: 18px;
        font-family: var(--toddle-heading-font);
    }

}


@media (min-width: 628px) {

    .hero-overlay {
        display:none;
    }

    .hero img {
        width: 100%;
        height: auto;
        object-position: 50% 50%;
    }

    .hero-heading {
        color: var(--toddle-green);
        font-size: 2.4rem;
        line-height: 2.4rem;
        text-align: left;
        font-weight: 400;
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-heading strong {
        font-weight: 700;
        letter-spacing: -0.02em;
        font-family: var(--toddle-heading-font);
    }

    .hero-content {
        position: absolute;
        top: 30%;
        left: 8%;
        z-index: 2;
    }

    .hero-subheading {
        margin-top: 1em;
        font-size: 1.2em;
        line-height: 1.5em;
        color: var(--toddle-green);
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-cta-button {
        margin-top: 2em;
        background: transparent;
        border: 2px solid var(--toddle-green);
        color: var(--toddle-green);
        border-radius: 3em;
        padding: 8px 12px;
    }


}


@media (min-width: 848px) {

    .hero-lower-banner-content span {
        color:white;
        font-size: 1.7em;
        font-family: var(--toddle-heading-font);
    }

    .hero-lower-banner img.toddle-text-logo {
        height: 100px;
        width:auto;
        margin-top: -6px;
    }


    .hero-heading {
        color: var(--toddle-green);
        font-size: 2.4rem;
        line-height: 2.4rem;
        text-align: left;
        font-weight: 400;
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-heading strong {
        font-weight: 700;
        letter-spacing: -0.02em;
        font-family: var(--toddle-heading-font);
    }

    .hero-content {
        position: absolute;
        top: 30%;
        left: 10%;
        /*transform: translate(-50%, -10%);*/
        z-index: 2;
    }

    .hero-subheading {
        margin-top: 1em;
        font-size: 1.2em;
        line-height: 1.5em;
        color: var(--toddle-green);
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-cta-button {
        margin-top: 3em;
        background: transparent;
        border: 2px solid var(--toddle-green);
        color: var(--toddle-green);
        border-radius: 3em;
        padding: 8px 12px;
    }


}


@media (min-width: 1200px) {


    .hero-heading {
        color: var(--toddle-green);
        font-size: 4vw;
        line-height: 4vw;
        text-align: left;
        font-weight: 400;
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-heading strong {
        font-weight: 700;
        letter-spacing: -0.02em;
        font-family: var(--toddle-heading-font);
    }

    .hero-content {
        position: absolute;
        top: 30%;
        left: 10%;
        /*transform: translate(-50%, -10%);*/
        z-index: 2;
    }

    .hero-subheading {
        margin-top: 1em;
        font-size: 2vw;
        line-height: 2.8vw;
        color: var(--toddle-green);
        letter-spacing: -0.04em;
        font-family: var(--toddle-heading-font);
    }

    .hero-cta-button {
        margin-top: 4.6em;
        background: transparent;
        border: 2px solid var(--toddle-green);
        color: var(--toddle-green);
        border-radius: 3em;
        padding: 8px 12px;
        font-size: 1vw;
    }


}


.container-fluid {
    width: 100%;
    text-align: center;

}

.container {
    margin: auto;
    max-width: 1100px;
    background: var(--main-bg-color);
}


.container-alt {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--accent-bg-color);
}


.section-title {
    font-size: 1.6rem;
    /*margin-bottom: 3rem;*/
    /*color: var(--toddle-accent-green);*/
}

.intro-section {
    padding-top: 3em;
}

.product-title-row {
    /*display: inline-flex;*/
    /*align-items: center;*/
    position: relative;
    display: block;
    text-align: center;
}


.product-icon {
    /*display:block;*/
    max-width: 96px;
    height: auto;
    flex-basis: 30%;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    gap: 2rem;
    max-width: 1200px;
}


@media (min-width: 628px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
    }

    /* Push the third item to center */
    .products-grid div:nth-child(3) {
        grid-column: span 2;
        width: calc(50% - 2rem);
        justify-self: center;
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

}

.product-card {
    background-color: var(--main-bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-more-info {
    background-color: var(--main-bg-color);
    transition: transform 0.3s;
    padding: 1.5em;
    display: none;
    height: 100%;
    /*font-size: 0.7em;*/
    /*color: var(--toddle-green);*/
}

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

.product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;

}

.product-info {
    padding: 1.5rem 0;
}

.product-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #333;
    flex-basis: 70%;
}

.product-title-icon {
    height: 1.5em;
    margin-bottom: -8px;
    margin-left: -5px;
}

.products-grid a {
    text-decoration: none;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
}

.suitable-from-container {
    margin-top: 3em;
}


.suitable-from-container p {
    font-weight: bold;
}

/* Full Width Section */
.full-width-section {
    padding: 4rem 2rem;
    text-align: center;
}

.full-width-content {
    max-width: 1100px;
    margin: 0 auto;
}

.full-width-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center !important;
}

.uppercase {
    text-transform: uppercase;
}

.text-green {
    color: var(--toddle-green);
}

.bg-green {
    background: var(--toddle-green);
}

.hover-bg-green:hover {
    background: var(--toddle-green) !important;
}

.border-green {
    border-color: var(--toddle-green) !important;
}


.text-light-green {
    color: var(--toddle-accent-green);
}

.bg-light-green {
    background: var(--toddle-accent-green);
}

.hover-bg-light-green:hover {
    background: var(--toddle-accent-green) !important;
}

.border-light-green {
    border-color: var(--toddle-accent-green) !important;
}

.text-bottle-lid-green {
    color: var(--toddle-bottle-lid-green) !important;
}

.bg-bottle-lid-green {
    background: var(--toddle-bottle-lid-green) !important;
}

.hover-bg-bottle-lid-green:hover {
    background: var(--toddle-bottle-lid-green) !important;
}

.border-bottle-lid-green {
    border-color: var(--toddle-bottle-lid-green) !important;
}


.text-blue {
    color: var(--toddle-blue) !important;
}

.bg-blue {
    background: var(--toddle-blue) !important;
}

.hover-bg-blue:hover {
    background: var(--toddle-blue) !important;
}

.border-blue {
    border-color: var(--toddle-blue) !important;
}

.text-orange {
    color: var(--toddle-orange) !important;
}

.bg-orange {
    background: var(--toddle-orange) !important;
}

.hover-bg-orange:hover {
    background: var(--toddle-orange) !important;
}

.border-orange {
    border-color: var(--toddle-orange) !important;
}

.text-white {
    color: white !important;
}

.bg-white {
    background: white;
}


.text-lg {
    font-size: 1em !important;
}

.text-xl {
    font-size: 1.1em !important;
    /*font-weight: bolder;*/
}

.text-xxl {
    font-size: 1.5em !important;
    /*font-weight: 900;*/
}

.display-title-lg {
    font-size: 3.1em;
}

@media (min-width: 428px) {

    .text-lg {
        font-size: 1.1em !important;
    }

    .text-xl {
        font-size: 1.4em !important;
        /*font-weight: bolder;*/
    }

    .text-xxl {
        font-size: 2em !important;
        /*font-weight: 900;*/
    }

    .display-title-lg {
        font-size: 4.2em;
    }

}


@media (min-width: 576px) {

    .text-lg {
        font-size: 1.4em !important;
    }

    .text-xl {
        font-size: 1.8em !important;
        /*font-weight: bolder;*/
    }

    .text-xxl {
        font-size: 2.6em !important;
        /*font-weight: 900;*/
    }

    .display-title-lg {
        font-size: 6em;
    }

}


.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}


.quote-container {
    margin: 1em auto;
    /*padding-top: 2em;*/
    padding-bottom: 2em;
    max-width: 800px;
    /*margin-bottom: 2.4em;*/
}

.quoted-text {
    font-size: 3.4em;
    font-weight: bolder;
}

/* Responsive Styles */
@media (max-width: 848px) {
    .navbar {
        /*flex-direction: column;*/
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0.5rem;
    }

    .nav-links img {
        display: block;
        margin-bottom: 4em;
    }


}


.form-container {
    background-color: var(--accent-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--toddle-accent-green);
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: none;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--accent-bg-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--toddle-accent-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(143, 207, 199, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-group input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--toddle-green);
}

.checkbox-group label {
    font-size: 14px;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--toddle-accent-green);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--toddle-accent-green);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #77b7b0;
}

/* Error states */
.error {
    border-color: var(--error-color) !important;
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }

    .form-control {
        padding: 10px 12px;
    }
}

footer {
    background-color: var(--accent-bg-color);
    padding-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--toddle-accent-green);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--toddle-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: var(--toddle-green);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--toddle-accent-green);
}

.footer-contact p {
    /*color: var(--light-text);*/
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--toddle-accent-green);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    background: var(--toddle-accent-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    color: white;
    background: var(--toddle-green);
    transform: translateY(-3px);
}

.social-links i {
    color: white;
}

.footer-bottom {
    background: var(--toddle-green);
    text-align: center;
    padding: 1em 0;
    margin-top: 40px;
    border-top: 1px solid #e1e1e1;
    color: white;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--toddle-accent-green);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
        margin: auto;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

.status-page-container {
    display: flex;
    justify-content: center; /* Horizontal */
    align-items: center; /* Vertical */
    height: 60vh;
}

.status-content {
    text-align: center;
}

.status-code {
    font-size: 6em;
    text-align: center;
    color: var(--toddle-green);
}

.status-message {
    font-size: 2em;
    text-align: center;
    color: var(--toddle-green);
}

.status-image {
    max-width: 200px;
    margin: 3em;
}

.form-feedback {
    display: none;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
    padding: 0.8em;
}

.show {
    display: block !important;
}


.explainer-video video {
    width: 100%;
    height: auto;
}

.skin-microbiome,
.about-us {
    padding: 4em 2em;
    max-width: 1100px;
    margin: auto;
    /*text-align: center;*/
}

@media (min-width: 848px) {
    .skin-microbiome,
    .about-us {
        text-align: left;
    }

}

.skin-microbiome h1,
.about-us h1 {
    font-size: 2.4em;
    color: var(--toddle-green);
}

.skin-microbiome h2, .skin-microbiome h3, .skin-microbiome strong {
    color: var(--toddle-green);
}

.skin-microbiome p,
.about-us p {
    font-size: 1.2em;
    margin: 1.2em auto;
}

.skin-microbiome li,
.about-us li {
    font-size: 1.2em;
    margin: 1em auto;
    list-style-type: none;
}

.skin-microbiome ul,
.about-us ul {
    margin-bottom: 2em;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col {
    flex: 1;
}

.col, .col-sm-3, .col-sm-4, .col-sm-6, .col-sm-9, .col-sm-12 {
    flex-basis: 100%;
    width: 100%;
}

@media (min-width: 768px) {


    .col-sm-3 {
        flex-basis: calc(3 / 12 * 100%);
        width: calc(3 / 12 * 100%);
    }

    .col-sm-6 {
        flex-basis: calc(6 / 12 * 100%);
        width: calc(6 / 12 * 100%);
    }

    .col-sm-9 {
        flex-basis: calc(9 / 12 * 100%);
        width: calc(9 / 12 * 100%);
    }

    .col-sm-4 {
        flex-basis: calc(4 / 12 * 100%);
        width: calc(4 / 12 * 100%);
    }

}

.col-3 {
    flex-basis: calc(3 / 12 * 100%);
    width: calc(3 / 12 * 100%);
}

.col-4 {
    flex-basis: calc(4 / 12 * 100%);
    width: calc(4 / 12 * 100%);
}

.col-6 {
    flex-basis: calc(6 / 12 * 100%);
    width: calc(6 / 12 * 100%);
}

.col-9 {
    flex-basis: calc(9 / 12 * 100%);
    width: calc(9 / 12 * 100%);
}

.col-12 {
    flex-basis: 100%;
    width: 100%;
}


.product-gallery {
    display: none;
    /*flex-direction: row;*/
}

.product-main-image {
    width: 70%;
    height: auto;
    margin: auto;
}

.product-video-row {
    margin-bottom: 2em;
}

.bears-seesaw-image {
    width: 80%;
    height: auto;
    margin: 3em auto 0;
}

.badges-row {
    max-width: 400px;
    margin: auto;
    text-align: center !important;
}

.badges-row img {
    height: 75px;
    width: auto;
    margin: auto;
    text-align: center !important;
}

.single-tube {
    display: none;
}


.hacks-for-grownups {
    margin: 2em;
    padding: 2em 2em 0 2em;
    border-radius: 8px;
    color: white !important;

}


.hacks-for-grownups.show-mobile {
    margin: 1.8em 0;
}

.hacks-for-grownups h3 {
    color: white !important;
    text-decoration: underline;
}

.hacks-for-grownups li {
    color: white;
    font-size: 0.8em;
    padding-top: 0.4em;
}

.hacks-for-grownups img {
    height: 60px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-top: 0.6em;
}

.product-recommendations-row {
    padding-top: 3em;
}

.product-recommendations {
    display: flex;
    flex-direction: column;
    padding: 2em;
}

.product-recommendations img {
    box-shadow: 0 0 4px 4px #f5f5f5;
    margin: 1em;
    width: 100%;
    height: auto;
    cursor: pointer;
    padding: 1.6em;
    min-width: 0;
}

.badges-row h3 {
    display: none;
}


@media (min-width: 768px) {

    .product-gallery {
        margin: 1em;
        display: flex;
        flex-direction: row;
        padding: 2em;
    }

    .product-gallery img {
        box-shadow: 0 0 4px 4px #f5f5f5;
        margin: 1em;
    }

    .product-recommendations {
        flex-direction: row;
    }

    .product-image-pane {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .single-tube {
        display: block;
    }

    .two-tubes {
        display: none;
    }


    .bears-seesaw-image {
        width: 50%;
        margin: 5em auto 3em;
    }


    .badges-row {
        max-width: 500px;
    }

    .badges-row img {
        height: 72px;
    }

    .badges-row h3 {
        display: block;
    }

    .index-products-container {
        padding-top: 8em;
        padding-bottom: 8em;
    }

}

.side-nav-toddle-bear {
    width: 40%;
    margin: 0 auto !important;
    height: auto;
}

.side-nav-toddle-logo {
    width: 65%;
    height: auto;
    margin: auto;
}


.accordion {
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid var(--toddle-accent-green);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    /*background-color: var(--secondary-color);*/
    /*color: var(--text-color);*/
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    /*background-color: #999;*/
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--toddle-accent-green);
    transition: transform 0.3s;
}

.accordion-header-orange::after {
    color: var(--toddle-orange);
}

.accordion-header-bottle-lid-green::after {
    color: var(--toddle-bottle-lid-green);
}

.accordion-header-blue::after {
    color: var(--toddle-blue);
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    /*transition: max-height 0.3s ease-in-out;*/
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 20px;
}

.ingredients-text {
    line-height: 1.6;
    font-size: 0.9rem;
}

.ingredients-text h3 {
    margin-top: 15px;
}

.ingredients-text ul {
    padding-left: 20px;
    margin: 10px 0;
}

.logo .toddle-bear,
.logo .toddle-logo {
    height: 38px;
    margin-top: 12px;

}

.selling-points {
    /*text-transform: uppercase;*/
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    list-style-type: circle;
}

.selling-points li {
    font-family: var(--toddle-heading-font) !important;
}

@media (min-width: 1200px) {

    .logo {
        /*flex-grow: 1;*/
        flex-basis: calc(50% + 30px);
        margin-bottom: -10px;
        /*align-items: baseline;*/
    }

    .logo .toddle-logo {
        /*margin-top:15px;*/
        /*height: 45px;*/
    }

    .logo .toddle-bear {
        float: right;
        width: 60px;
        height: auto;
    }

    .nav-links {
        margin-top: 25px;
    }

}

.product-title-row .product-icon {
    margin-top: -8px;
}

.bullets-orange li::marker {
    color: var(--toddle-orange);
}

.bullets-bottle-lid-green li::marker {
    color: var(--toddle-bottle-lid-green);
}

.bullets-blue li::marker {
    color: var(--toddle-blue);
}


@media (min-width: 768px) {

    .show-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .show-desktop {
        display: none;
    }
}


/* Dropdown Styles */

.dropdown-container {
    position: relative;
}

.dropdown {
    /*width: 200px;*/
    opacity: 0;
    max-height: 0;
    /*visibility: hidden;*/
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    list-style: none;
    z-index: 12;
}

@media (min-width: 848px) {


    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-right {
        text-align: right !important;
    }


    .dropdown {
        position: absolute;
        left: 0;
        top: 100%;
        width: 0;
        background-color: #f5f5f5;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    }

    .dropdown.active {
        width: auto;
    }

}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--toddle-accent-green);
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    /*background-color: white;*/
    color: var(--toddle-accent-green);
    /*padding-left: 1.2rem;*/
}

/* Dropdown Indicator */
.dropdown-indicator {
    display: inline-block;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.nav-item:hover .dropdown-indicator {
    transform: rotate(180deg);
}

.dropdown.active {
    opacity: 1;
    max-height: 500px;
}

.news-index-hero {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-posts, .pinned-posts {
    padding: 1em 0;
    display:flex;
    flex-wrap:wrap;
}

.news-post {
    margin: 2em 0;
    /*padding: 1.5em 0.5em;*/
    background-color: white;
    border-radius: 8px;
    width: 100%;
    flex-basis: 100%;
    /*box-shadow: 4px 4px 4px 8px #f5f5f5;*/

}

.news-header-section, .news-content-section {
    padding: 1.5em 0.5em;
}

.news-heading {
    color: var(--toddle-green);
    font-weight: 500;
    font-size: 1.8em;

}

a.news-heading-link {
    text-decoration:none !important;
}

.product-icon {
    cursor:pointer;
}

@media (min-width: 848px) {

    .news-posts {
        padding: 2em;
        gap: 32px;
    }

    .news-posts .news-post {
        flex-basis: calc(50% - 16px);
        width: calc(50% - 16px);
    }

    .news-heading {
        font-weight: 700;
        font-size: 1.8em;

    }



}

.news-content {

    margin-top: 1.4em;
    text-align: left;

}

.video-thumbnail {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.video-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--toddle-accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    margin-left: 5px;
}

.play-icon:hover {
    background-color: var(--toddle-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.faq-accordion p {
    width: 100% !important;
}

.col {
    flex: 1 1 0%;
}

.d-none {
    display: none !important;
}

.product-card {
    height: 100%;
    /*min-height:600px;*/
}

.product-info {
    height: 83%;
}

.product-image-row {
    position: relative;
    height: 110vw;
    /*border: 2px solid red;*/
}

.more-info-section {
    position: absolute;
    width: 45%;
    left: 50%;
    top: 8%;
}

@media (min-width: 400px) and (max-width: 628px) {
    .more-info-section {
        top: 20%;
    }
}

@media (min-width: 836px) and (max-width: 992px) {
    .more-info-section {
        top: 20%;
    }
}

@media (min-width: 628px) {

    .product-image-row {
        height: 55vw;
    }


}

@media (min-width: 992px) {

    .product-image-row {
        height: 33vw;
    }


}


@media (min-width: 1200px) {

    .product-image-row {
        height: 400px;
    }

}

.product-image-container {
    height: 100%;
    width: auto;
    position: absolute;
}

.aside-left {
    left: -35%;
    transition: all 300ms ease-in-out 500ms;
}

.aside-left img {
    width: 70% !important;
    transition: width 500ms ease-in-out;
}

.footer-bottom p, .footer-bottom span {
    color: white !important;
}

#mc_embed_signup.footer-signup {
    padding: 0 !important;
    max-width: 280px;
}

footer .mc-field-group {
    padding-bottom: 0.4em;
}

footer .mc-field-group input {
    padding: 6px 8px;
}

footer .footer-signup-button {
    float: right;
}

.news-featured-image {
    width: 100%;
    height: 400px;
    object-fit:cover;
}

.single-post-outer-container {
    padding: 0.8em;
    background-image: repeating-linear-gradient(
            135deg,
            #e0e0e0, #e0e0e0 2px,
            var(--toddle-green), var(--toddle-accent-green) 4px
    );

}

@media(min-width: 768px) {

    .single-post-outer-container {
        padding: 2em;
        background-image: repeating-linear-gradient(
                135deg,
                #e0e0e0, #e0e0e0 2px,
                var(--toddle-green), var(--toddle-accent-green) 4px
        );

    }

    .news-featured-image {
        height: 350px;
    }
}

.w-100 {
    width:100%;
}

.w-sm-50 {
    width: 100%;
}

@media(min-width: 628px) {
    .w-sm-50 {
        width: 50%;
    }

}



.img-left {
    float:left;
    margin: 1.6em 1.6em 1.6em 0;
}

.img-right {
    float:right;
    margin: 1.6em 0 1.6em 1.6em;
}

.m-1 { margin: 1em; }
.m-2 { margin: 2em; }
.m-3 { margin: 3em; }
.m-4 { margin: 4em; }
.m-5 { margin: 5em; }

.p-1 { padding: 1em; }
.p-2 { padding: 2em; }
.p-3 { padding: 3em; }
.p-4 { padding: 4em; }
.p-5 { padding: 5em; }

.framed-image {
    box-shadow:  4px 4px 2px 2px #f5f5f5;
    padding: 1em;
    width:100%;
    height:90%;
    object-fit:cover;
}

@media(min-width: 768px) {

    .framed-image {
        width:90%;
        height:90%;
    }


}

#subscribeResponseToast {

    border-radius: 4px;
    color:white;
    margin-bottom: 1.6em;
}

#subscribeResponseToast.error {
    background: #EF7D7DFF;
}

#subscribeResponseToast.success {
    background: #5eab6e;
}


.news-featured-image-section {
    position:relative;
}

.pinned-post-indicator {
    position:absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 20px;
    display:none;
}

.pinned-post-indicator.pinned {
    display:block !important;
}

.pinned-post-indicator i {
    color: white;
    font-size: 2em;
    padding:0.5em;
}