.widget-toggle-open-container .widget-toggle-open {
    background: url(https://mfthcom.bigscoots-staging.com/wp-content/uploads/2025/11/MFTH-Assets.svg) no-repeat center center;
    color: var(--global-palette4);
    padding: 0.4em 0.6em 0.4em 0.6em;
    font-size: 14px;
    background: url(https://mfthcom.bigscoots-staging.com/wp-content/uploads/2025/11/MFTH-Assets.svg) no-repeat center center;
    background-size: contain;
    border-radius: 0;
    padding: 18px;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
}

.widget-toggle-open-container {
    position: relative;
    overflow: visible; /* allow spill outside header */
}

.widget-toggle-open-container .widget-toggle-open {
    position: relative;
    z-index: 2; /* keep the hamburger above the blob */
    color: var(--global-palette4);
    padding: 20px; /* space around the hamburger */
    background: none; /* remove your background so we can add a pseudo-element */
}

/* Add the big squiggly blob behind the button */
.widget-toggle-open-container .widget-toggle-open::before {
    content: "";
    position: absolute;
    inset: -40px; /* how far the blob spills out – adjust bigger/smaller */
    background: url(https://mfthcom.bigscoots-staging.com/wp-content/uploads/2025/11/MFTH-Assets.svg)
        no-repeat center center;
    background-size: contain;
    z-index: -1; /* place behind hamburger */
    pointer-events: none;
}


/* GIF CIRCULAR BUTTON - USE CLASS */
/*********************************************
 FIX: Only allow overflow on the column
 that contains the blob button
**********************************************/
.wp-block-columns .wp-block-column:last-child {
    overflow: visible !important;
}


/*********************************************
 BLOB BUTTON STYLES
**********************************************/
.blob-button {
    position: relative !important;
    display: inline-block !important;
    padding: 14px 28px !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-align: center !important;
    background: transparent !important;
    text-decoration: none !important;
    z-index: 1000 !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
}

/* Blob background */
.blob-button::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 250px !important;   /* Adjust blob size */
    height: 250px !important;

    background: url("https://mfthcom.bigscoots-staging.com/wp-content/uploads/2025/11/MFTH-Assets.gif")
        no-repeat center center !important;
    background-size: contain !important;

    z-index: -1 !important;
    pointer-events: none !important;
}

/* Force the button to always be visible */
.blob-button,
.blob-button:before,
.blob-button:after,
.wp-block-button__link.blob-button {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Stop theme hover animations from hiding the default state */
.blob-button:hover,
.wp-block-button__link.blob-button:hover {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Also stop Kadence from applying transitions that cause the "fade-in on hover" issue */
.blob-button,
.wp-block-button__link.blob-button {
    transition: none !important;
}

.blob-button::before {
    width: 160px !important;
    height: 160px !important;
}

.highlight-yellow {
    background-color: #FFDE88;
    padding: 2px 6px;
    border-radius: 3px;
}
