
        * {
            box-sizing: border-box;
            user-select: none;
        }

        @font-face {
            font-family: Metropolis-ExtraLight;
            src: url("https://betheoneofficial.com/assets/fonts/Metropolis-ExtraLight.otf") format("opentype");
        }

        @font-face {
            font-family: Metropolis-Medium;
            src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Medium.otf") format("opentype");
        }

        @font-face {
            font-family: Metropolis-Regular;
            src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Regular.otf") format("opentype");
        }

        body {
            margin: 0;
            padding: 0;
            background: black;
            height: auto;
            color: white;
            font-family: "Metropolis-ExtraLight";
            overflow-x: hidden;
        }

        body.menu-open {
            overflow: hidden;
        }

        h2 {
            font-size: clamp(1rem, 5vw, 5rem);
            font-weight: 400;
            text-align: center;
            letter-spacing: 0.5em;
            margin-right: -0.5em;
            color: #cccccc;
            width: 90vw;
            max-width: 1200px;
            display: none;
        }

        header {
            position: fixed;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            width: 100%;
            z-index: 50;
            height: 7em;
            font-family: "Metropolis-Regular";
            font-size: clamp(0.66rem, 2vw, 1rem);
            letter-spacing: 0.5em;
            transition: all 0.3s ease;
        }

.burger-menu {
  cursor: pointer;
  width: 45px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 55; 
}

.bar {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  transform-origin: left;
}
img.header-logo {
    margin-top: 8px;
    width: 120px;
    /*margin-left: calc(50% - 60px);*/
    margin-left: 0;
}
img.footer-logo {
    margin-top: 8px;
    width: 80px;
    margin-left: calc(50% - 40px);
}

.burger-menu.is-open .bar-top {
  transform: rotate(45deg) translate(0, -13px);
}

.burger-menu.is-open .bar-bottom {
  transform: rotate(-45deg) translate(0, 13px);
}

/* --- Sliding Sidebar/Slider Styles --- */
.slider-header {
    position: fixed;
    top: 0;
    right: -90px;
    width: min(90vw, 350px);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98); 
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); 
    z-index: 51;
    transform: translateX(100%) skewX(10deg);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    padding: 7em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Metropolis-Regular"";
    letter-spacing: 0.2em;
    overflow-y: auto; 
} 

.slider-header.is-open {
    transform: translateX(0) skewX(0); 
}

.slider-header nav {
    margin-top: 2em;
}

/* Hover Animation: Slide-in Underline */
.slider-header nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 0.8em;
    transition: color 0.3s;
    font-family: 'Metropolis-ExtraLight';
    text-transform: uppercase;
    
    /* New: Setup for underline effect */
    position: relative; 
    overflow: hidden; /* Hide the sliding line */
    padding-bottom: 5px; /* Add space for the line */
}
.slider-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Line thickness */
    background-color: #d59576; /* Gold color */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: transform 0.3s ease-out;
}
.slider-header nav a:hover::after {
    transform: translateX(0); /* Slide in */
}
.slider-header nav a:hover {
    color: #d59576; 
}

/* Submenu Styling */
.nav-item-with-submenu {
    position: relative;
    /* Ensure the wrapper respects the same padding/margin as a regular link */
    /*margin-bottom: 0.8em; */
}

.nav-item-with-submenu .main-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5px; /* Adjust if needed */
}

.submenu-toggle-icon {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.nav-item-with-submenu.submenu-open .submenu-toggle-icon {
    transform: rotate(90deg); /* Rotate arrow when submenu is open */
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    padding-left: 20px; /* Indent submenu links */
    margin-top: 5px;
}

.submenu a {
    font-size: 15px; /* Smaller font for submenu links */
    margin-bottom: 0.4em;
    padding-bottom: 3px;
}

.nav-item-with-submenu.submenu-open .submenu {
    max-height: 200px; /* Sufficient height to show all links */
    opacity: 1;
}

/* Remove slide-in effect for the submenu links themselves */
.submenu a::after {
    display: none;
}
.submenu a:hover::after {
    transform: translateX(-100%);
}

/* * FIX: Restructure pointer-events CSS to enable clicking on submenu links
 */
.main-nav-link .submenu-toggle-icon {
    /* Prevents the arrow from being part of the 'a' hover effect if needed */
    pointer-events: none; 
}

.main-nav-link {
    pointer-events: auto; /* Re-enable pointer events for the main link text */
}

.submenu a {
    /* ENSURE submenu links are fully clickable */
    pointer-events: auto; 
}

/* On mobile, adjust the main-nav-link padding */
@media (max-width: 768px) {
    .slider-header nav a {
        padding-bottom: 3px;
        font-size: 15px !important;
        text-transform: uppercase;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.is-open {
    visibility: visible;
    opacity: 1;
} 
.footer-content {
    width: 100%;
    height: 100%;
    min-height: 50vh; 
    padding: 5% 5% 2% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-family: "Metropolis-ExtraLight";
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: none;
}
.footer-content a {
    color: #d59576;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.9em;
}
.footer-content .logo {
    font-family: "Metropolis-Regular";
    font-size: 2em;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 20px;
    margin-top: 50px;
}
.footer-content .links a {
    letter-spacing: 0.1em;
}
.footer-content .copyright {
    margin-top: 40px;
    font-size: 0.85em;
    color: #888888;
} 
/* --- END NEW CSS: Footer Style --- */


/* IMPORTANT: Exclude submenu toggle icon and submenu links from the full underline hover */
 
.main-nav-link {
    pointer-events: auto; /* Re-enable pointer events for the main link text */
}
        /* On mobile, adjust the main-nav-link padding */
        @media (max-width: 768px) {
            .slider-header nav a {
                padding-bottom: 3px;
            }
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 50;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .overlay.is-open {
            visibility: visible;
            opacity: 1;
        }

        .footer-content {
            width: 100%;
            height: 100%;
            min-height: 50vh;
            padding: 5% 5% 2% 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-family: "Metropolis-ExtraLight";
            font-size: 1.1rem;
            color: #cccccc;
            text-transform: none;
        }

        .footer-content a {
            color: #d59576;
            text-decoration: none;
            margin: 0 10px;
            text-transform: uppercase;
            font-size: 0.9em;
        }

        .footer-content .logo {
            font-family: "Metropolis-Regular";
            font-size: 2em;
            letter-spacing: 0.2em;
            color: white;
            margin-bottom: 20px;
            margin-top: 50px;
        }

        .footer-content .links a {
            letter-spacing: 0.1em;
        }

        .footer-content .copyright {
            margin-top: 40px;
            font-size: 0.85em;
            color: #888888;
        }
 

        /* --- END NEW CSS: Footer Style --- */

        /* =============================
        Banner Video Section
        ==============================*/
        .banner-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
        }

        .banner-section video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.2);
        }

        /* Header text inside video */
        .banner-text {
            position: absolute;
            bottom: 5%;
            left: 5%;
            color: white;
            text-transform: uppercase;
            font-size: clamp(2rem, 6vw, 4rem);
            font-family: "Metropolis-ExtraLight";
            letter-spacing: 0.1em;
            opacity: 0;
            z-index: 10;
            /* Ensure text is above video */
        }


        @media (max-width: 768px) {
            img.header-logo {
                width: 70px;
                margin-left: 0;
                margin-top: 25px;
            }
            .banner-text {
                padding-bottom: 40px;
            }

            img.footer-logo {
                width: 80px;
                margin-left: calc(50% - 40px);
            }

            .burger-menu {
                width: 35px;
                /*margin-right: 15px;*/
            }

            header {
                height: 4em;
                background: #0000008c;
            }

            .footer-content p {
                line-height: 25px;
            }

            .footer-content .links a {
                font-size: 14px;
                line-height: 1.5rem;
            }
 
            .nav-item-with-submenu .main-nav-link {
                padding-right: 10px;
            }

            .ingredients_sections .how-heading {
                margin-top: 80px;
                text-align: left;
            }
            h4.how-sub{
                text-align: left;
            } 
            .how-para{
                text-align: left;
            }

            section.butterfly {
                align-items: center;
                padding-top: 65%;
                height: unset;
            }

            .butterfly svg {
                width: 100% !important;
            }
        } 
        .ingredients_sections {
            position: relative;
            overflow: visible
        }

        .ingredients_sections .gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%
        }

        .ingredients_sections .gradient .innergradient {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            height: 100lvh;
            overflow: hidden
        }

        .ingredients_sections .innergradient:before {
            content: "";
            position: absolute;
            background-image: url(https://betheoneofficial.com/assets/images/circle.png);
            background-position: 50%;
            background-size: contain;
            background-repeat: no-repeat;
            width: Max(100vh, 100vw);
            height: 200vh;
            left: Min(-72.5vh, -50vw);
            top: -40vh;
            pointer-events: none;
            -webkit-transform-origin: 100%;
            transform-origin: 100%;
            opacity: 1;
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: opacity 1s ease-in-out, -webkit-transform 0s ease-in-out;
            transition: opacity 1s ease-in-out, -webkit-transform 0s ease-in-out;
            transition: transform 0s ease-in-out, opacity 1s ease-in-out;
            transition: transform 0s ease-in-out, opacity 1s ease-in-out, -webkit-transform 0s ease-in-out;
            z-index: -1;
            -webkit-transition: .2s ease-out;
            transition: .2s ease-out;
            -webkit-transform: var(--transform) !important;
            transform: var(--transform) !important
        }

        @media (min-width: 1280.5px) {
            .ingredients_sections .innergradient:before {
                width: 90vw;
                height: 160vh;
                left: -40vw;
                top: -15vh
            }
        }

        .after_ingredients .ingredients_sections .innergradient:before,
        .ingredients_sections .ingr_outer_container div[data-animation*=fade]:not(.animated) {
            opacity: 0
        }

        .ingredients_sections .ingr_outer_container .like_h1 {
            font-size: calc(20px + .5vw + .5vh);
            line-height: calc(30px + .5vw + .5vh)
        }

        .ingredients_sections .cont_canv {
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            top: 0;
            overflow: hidden;
            pointer-events: none
        }

        .ingredients_sections .circledots {
            max-width: 1000px;
            left: 50%;
            position: absolute;
            -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
            width: 180%;
            -webkit-transform: translate(-50%, -68%);
            transform: translate(-50%, -68%);
            top: 83%
        }

        @media (min-width: 480.5px) and (max-width:980px) {
            .ingredients_sections .circledots {
                width: 150%;
                max-width: 800px;
                -webkit-transform: translate(-50%, -65%);
                transform: translate(-50%, -65%);
                top: 85%
            }
        }

        @media (max-height: 800.5px) and (max-width:980px) {
            .ingredients_sections .circledots {
                width: auto;
                height: 90lvh
            }
        }

        @media (max-height: 800.5px) and (max-width:980px) and (max-height:650.5px) {
            .ingredients_sections .circledots {
                height: 75lvh
            }
        }

        @media (min-height: 800.5px) and (max-width:980px) {
            .ingredients_sections .circledots {
                -webkit-transform: translate(-50%, -60%);
                transform: translate(-50%, -60%);
                top: 75%
            }
        }

        @media (min-width: 981px) {
            .ingredients_sections .circledots {
                width: 80%;
                left: 27.5%;
                -webkit-transform: translateX(-50%);
                transform: translate(-50%, -50%);
                position: absolute;
                top: 50%
            }

            .on_ingredient_1 .ingredients_sections .circledots {
                top: 75%
            }
        }

        @media (min-width: 1440.5px) {
            .ingredients_sections .circledots {
                left: 30%
            }
        }

        .ingredients_sections .space_x2:before,
        .ingredients_sections .space_x3:before,
        .ingredients_sections .space_x4:before {
            content: "";
            display: block;
            padding-bottom: 262.5vh
        }

        .ingredients_sections .space_x3:before {
            padding-bottom: 394vh
        }

        .ingredients_sections .space_x4:before {
            padding-bottom: 525vh
        }

        .ingredients_sections .ingredient_1,
        .ingredients_sections .ingredient_2,
        .ingredients_sections .ingredient_3,
        .ingredients_sections .ingredient_4,
        .ingredients_sections .ingredient_5,
        .ingredients_sections .section_pill {
            position: absolute;
            top: 0;
            left: 5%
        }

        @media (min-width: 1440.5px) {

            .ingredients_sections .ingredient_1,
            .ingredients_sections .ingredient_2,
            .ingredients_sections .ingredient_3,
            .ingredients_sections .ingredient_4,
            .ingredients_sections .ingredient_5,
            .ingredients_sections .section_pill {
                left: 10%
            }
        }

        .ingredients_sections .controls {
            position: absolute;
            z-index: 3;
            top: 0
        }

        .ingredients_sections .section_results {
            position: relative;
            z-index: 1
        }

        .ingredients_sections .ingr_list {
            position: sticky;
            top: 0;
            min-height: 100vh;
            min-height: 100lvh;
            width: 100%;
            overflow: hidden
        }

        .ingredient_section {
            height: 100vh;
            height: 100lvh;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
            pointer-events: none
        }

        .section_results .ingredient_section {
            height: auto;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row
        }

        @media (max-width: 980px) {
            .section_results .ingredient_section .side_image {
                max-width: 340px;
                margin: 0 auto 50px
            }
        }

        .ingredient_section.ingredient_0 {
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding-bottom: 0;
            z-index: 1;
            height: Max(40lvh, 600px);
            padding-top: calc(100px + 1vw)
        }

        @media (min-width: 981px) {
            .ingredient_section.ingredient_0 {
                height: Max(65lvh, 700px);
                padding-top: calc(160px + 1vw)
            }
        }

        @media (min-width: 981px) {
            .ingredient_section {
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center
            }
        }

        @media (min-width: 1440.5px) {

            .ingredient_section.ingredient_0>.w_90,
            .ingredient_section.w_90 {
                width: 80%
            }
        }

        .ingredient_section .w_50_ {
            width: 100%;
            max-height: 100%
        }

        @media (max-width: 980px) {
            .ingredient_section .w_50_ {
                text-align: center
            }

            .ingredient_section .w_50_.side_text {
                height: 40%;
                margin-right: 5%;
            }

            .ingredient_section .w_50_.side_image {
                height: 60%
            }
        }

        @media (max-width: 600px) and (max-height:700.5px) {
            .section_results .ingredient_section .w_50_.side_text {
                height: 40%;
                margin-right: 5%;
            }

            .section_results .ingredient_section .w_50_.side_image {
                height: 60%;
                -webkit-transform: translateY(10%);
                transform: translateY(10%)
            }
        }

        @media (min-width: 981px) {
            .ingredient_section .w_50_ {
                width: 50%
            }
        }

        .section_results .ingredient_section .w_50_.side_text p {
            font-size: 1.1em;
            line-height: 1.6em
        }

        .section_results .ingredient_section .w_50_.side_text a.cta {
            margin-top: 10px
        }

        @media (min-width: 981px) and (max-width:1200.5px) {
            .section_results .ingredient_section .w_50_.side_text {
                width: 60%;
                padding-left: calc(70px + .5vw)
            }

            .section_results .ingredient_section .w_50_.side_image {
                width: 40%
            }
        }

        @media (min-width: 1200.5px) {
            .section_results .ingredient_section .w_50_.side_image {
                -webkit-transform: translateX(-5vw);
                transform: translateX(-5vw)
            }
        }

        @media (max-width: 600px) and (max-height:800.5px) {
            .ingredient_section.section_pill .like_h1 {
                font-size: 1.4em;
                line-height: 1.6em
            }
        }

        @media (max-width: 600px) {

            .ingredient_section.section_pill .w_50_.side_image,
            .ingredient_section.section_pill .w_50_.side_text {
                height: 50%
            }
        }

        @media (min-width: 601px) and (max-width:980px) {
            .ingredient_section.section_pill .w_50_.side_text {
                height: 40%
            }

            .ingredient_section.section_pill .w_50_.side_image {
                height: 60%
            }
        }

        .ingredient_section .big_title {
            font-size: calc(35px + .8vw);
            line-height: calc(50px + .8vw)
        }

        @media (min-width: 981px) {
            .ingredient_section .big_title {
                font-size: calc(65px + .8vw);
                line-height: calc(80px + .8vw)
            }
        }

        @media (min-width: 981px) {
            .ingredient_section .side_text {
                padding-left: calc(40px + .5vw);
                font-size: 1.15em
            }
        }

        .ingredient_section .ingredient_icon {
            width: 50px
        }

        .ingredient_section .progress_out {
            display: block;
            height: 1px;
            background-color: #fff;
            position: relative;
            margin-bottom: 20px
        }

        .ingredient_section .progress_in {
            background-color: #414042;
            position: absolute;
            left: 0;
            top: 0;
            height: 1px;
            width: 20%;
            z-index: 1
        }

        .ingredient_section.ingredient_2 .progress_in {
            width: 40%
        }

        .ingredient_section.ingredient_3 .progress_in {
            width: 60%
        }

        .ingredient_section.ingredient_4 .progress_in {
            width: 80%
        }

        .ingredient_section.ingredient_5 .progress_in {
            width: 100%
        }

        @media (max-width: 980px) {
            .ingredient_section.section_pill {
                padding-top: calc(80px + .5vw)
            }
        }

        @media (max-width: 600px) {
            .ingredient_section.section_pill {
                overflow: visible
            }
        }

        .ingredient_section.section_pill .side_image {
            -webkit-transform-origin: top;
            transform-origin: top
        }

        @media (max-width: 600px) {
            .ingredient_section.section_pill .side_image {
                overflow: visible
            }
        }

        .ingredient_section.section_pill .side_image img {
            -o-object-position: 50% 0;
            object-position: 50% 0
        }

        @media (max-width: 600px) {
            .ingredient_section.section_pill .side_image img {
                height: calc(100% + 60px) !important
            }
        }

        @media (min-width: 981px) {
            .ingredient_section.section_pill .side_image {
                -ms-flex-item-align: end;
                align-self: flex-end;
                height: 75%
            }

            .ingredient_section.section_pill .side_image img {
                -o-object-fit: contain;
                object-fit: contain;
                -o-object-position: 50% 100%;
                object-position: 50% 100%;
                min-width: 600px;
                left: 50%;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%)
            }
        }

        @media (min-width: 981px) {
            .ingredient_section.section_pill .side_text {
                padding-block: calc(80px + .5vw)
            }
        }

        .on_ingredient_1 .ingredient_section.ingredient_1,
        .on_ingredient_2 .ingredient_section.ingredient_2,
        .on_ingredient_3 .ingredient_section.ingredient_3,
        .on_ingredient_4 .ingredient_section.ingredient_4,
        .on_ingredient_5 .ingredient_section.ingredient_5,
        .on_ingredient_6 .ingredient_section.ingredient_6 {
            pointer-events: auto
        }


        .butterfly svg {
            position: absolute;
            width: 75%;
            top: 0;
            margin-top: 20px;
        }

        .butterfly {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
        }

        h3.how-heading {
            font-family: Metropolis-Regular;
            font-size: 45px;
        }

        h4.how-sub {
            color: #d59576;
            margin-bottom: 15px;
        }

        p.how-para {
            margin-bottom: 12px;
        }
        .read-more-toggle{
            display: none;
        }
        /* Apply only on mobile (max-width: 980px is used by your existing CSS) */
        @media (max-width: 600px) {
            
            /* 1. Hide the full text wrapper by default */
            .toggle-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-in-out;
            }
        
            /* 2. Show content when the 'open' class is toggled by JavaScript */
            .toggle-content.open {
                max-height: 500px; /* Sufficiently large value for smooth transition */
            }
        
            /* 3. Style the toggle button */
            .read-more-toggle {
                cursor: pointer;
                color: #d59576; /* Gold color from your menu hover */
                margin-top: 10px;
                font-family: 'Metropolis-Regular';
                letter-spacing: 0.1em;
                font-size: 16px;
                display: block; /* Ensure it's on its own line */
                text-align: left; /* Aligns with the mobile text alignment */
            }
        
            /* 4. Initially hide the "Collapse" text and show "Read more" */
            .read-less-text {
                display: none;
            }
            .read-more-toggle.open .read-more-text {
                display: none;
            }
            .read-more-toggle.open .read-less-text {
                display: inline;
            }
            
            /* 5. Implement 150-character limit using CSS ellipsis/truncation */
            .summary-text {
                /* Reset any existing styles that interfere with truncation */
                white-space: normal;
                overflow: visible;
            }
        
            /* Note: Since you requested the *first* 150 characters, and the text
               is already contained in the first <p>, we only need to truncate that <p>.
               Due to CSS limitations, precise character count truncation is hard.
               The approach below truncates based on lines, which is often a better UX
               on mobile, assuming 150 chars fits ~2-4 lines. */
            /*.summary-text:not(.full) {*/
            /*    display: -webkit-box;*/
                /*-webkit-line-clamp: 2;*/
            /*    -webkit-box-orient: vertical;*/
            /*    overflow: hidden;*/
            /*    text-overflow: ellipsis;*/
            /*    white-space: normal;*/
            /*} */
        }
        @media (max-width: 980px) {

        /* CRUCIAL FIX: Make the entire graphics container non-interactive on mobile. */
        /* This allows the mouse clicks to pass straight through to the element underneath it. */
        .ingr_list {
            pointer-events: none !important;
            /* Reinforce z-index to be safe, but pointer-events is the primary fix */
            position: relative; 
            z-index: 5;
        }
    
        /* Ensure the Read More button is explicitly clickable */
        .read-more-toggle {
            pointer-events: auto !important; 
            position: relative;
            z-index: 30; /* Keep it high */
        }
        
        /* Optional: If the overall section is still causing a layout issue, apply this: */
        .ingredient_section {
            height: auto !important; 
            min-height: unset !important;
        }
    }
     