:root {
    --vh: 100dvh;
}

@supports not (height: 100dvh) {
    :root {
        --vh: 100vh;
    }
}


/* iOS ONLY — lock to dynamic viewport */
body.ios {
    height: var(--vh);
}

/* All devices — allow scrolling */
html {
    height: auto !important;
}


body {
    min-height: var(--vh);
    /* page can grow */
    height: auto !important;
    /* critical fix */
}

/* =========================================================
   FONT IMPORTS
========================================================= */
@font-face {
    font-family: "VAG Rounded Std";
    src: url("assets/fonts/VAGRoundedLTPro-Bold.otf") format("opentype");
    font-weight: 700;
}

@font-face {
    font-family: "VAG Rounded Std";
    src: url("assets/fonts/VAGRoundedLTPro-Light.otf") format("opentype");
    font-weight: 300;
}

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    --color-brand-red: #d32e28;
    --color-brand-green: #4aab3c;
    --color-yellow: #fff200;
    --color-gray-text: #4c4c4c;
    --color-border-light: #e0e0e0;
    --color-bg-light: #ffffff;
}

/* =========================================================
   BASE STYLES
========================================================= */
body {
    margin: 0;
    font-family: "VAG Rounded Std", sans-serif;
    background-color: #f7f7f7;
    color: var(--color-gray-text);
    -webkit-font-smoothing: antialiased;
    /* padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px)); */
    padding-bottom: 60px;
}

img {
    max-width: 100%;
    display: block;
}

.tiny-group {
    position: relative;
    top: -0.25em;
    display: inline-flex;
    align-items: flex-start;
}

.tiny-star {
    font-size: 0.8em;
    line-height: 1;
    margin-right: -0.05em;
}

.tiny-num {
    font-size: 0.4em;
    /* MAKE THE 1 SMALLER */
    line-height: 1;
    margin-left: 0.05em;
}

/* =========================================================
   MOBILE OVERRIDES
========================================================= */

/* === Disclaimer === */
.breastfeeding-bar {
    background: #ffffff;
    width: 100%;
    padding-left: 3.11vw;
    padding-right: 3.11vw;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    padding-bottom: 3.11vw;
}

.breastfeeding-content {
    max-width: 100%;
}

.notice-text {
    max-width: 95%;
}

.notice-text p:first-child {
    font-weight: 700;
    font-size: 2.78vw;
    color: #4c4c4c;
    text-align: left;
    padding-top: 7.41vw;
    padding-bottom: 2.26vw;
}

.notice-text p:last-child {
    font-weight: 400;
    font-size: 2.78vw;
    color: #4c4c4c;
    margin: 0;
    text-align: left;
    line-height: 6vw;
    letter-spacing: -0.07vw;
    word-spacing: -0.07vw;
}

.understand-btn {
    display: block;
    width: 52.04vw;
    height: 8.43vw;
    background: #d32e28;
    color: #fff;
    font-weight: 400;
    font-size: 2.78vw;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin: 4.94vw auto 0 auto;
    /* 👈 pushes the button down */
    border: 2px solid #d32e28;
}

.understand-btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
    color: #d32e28;
    border: 2px solid #d32e28;
}

/* === Header === */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 14.63vw;
    padding-left: 3.06vw;
    padding-right: 3.06vw;
    background-image: url("assets/BGforHeader.png");

}

.ironup-logo {
    width: 13.0vw;
    height: 7.66vw;
}

.dugro-logo {
    width: 16.76vw;
    height: 12.59vw;
}

.lang-switch {
    width: 12.20vw;
    height: 3.98vw;
    font-weight: 700;
    font-size: 3.52vw;
    color: #4c4c4c;
}

.lang-switch a {
    color: #4c4c4c;
    text-decoration: none;
}

.lang-switch a.active,
.lang-switch a:hover {
    color: #d32e28;
}

/* =========================================================
   SECTION 1 — DID YOU KNOW
========================================================= */
.didYouKnowSection {
    position: relative;
    width: 100%;
    background: #128134 url("assets/dykbg.png") center top / cover no-repeat;
    padding: 60px 0 0;
    overflow: visible;
}

.didYouKnow-milk-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.didYouKnowContent {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    display: flex;
    max-width: 100%;
    gap: 1vw;
    margin: 0 auto;
    transform: translateY(-25%);
    padding-bottom: 30px;
}

.brain-doodle {
    width: 17vw;
    height: 10vw;
    transform: translateY(1vw);
}

.didYouKnowContent h1 {
    font-weight: 600;
    color: #fff200;
    text-transform: uppercase;
    font-size: 6vw;
}

.didYouKnowContent h2 {
    font-weight: 700;
    color: #ffffff;
    font-size: 4vw;
    line-height: 1.15em;
    transform: translateY(-2vw);
}

.didYouKnowContent h2 .highlight {
    color: #fff200;
    font-size: 5vw;
}

.dykdisclaimer {
    text-align: center;
    color: #4aab3c;
    font-weight: 400;
    font-size: 1.5vw;
    z-index: 25;
    position: relative;
    transform: translateY(-50%);
    line-height: 1;
}

/* =========================================================
   SECTION 2 — EXPERIENCE (MOBILE UPDATED)
========================================================= */

/* --- Main Background --- */
.experienceSection {
    position: relative;
    width: 100%;
    background: #128134 url("assets/ExperienceBackgroundLong.png") center top / cover no-repeat;
    padding-bottom: 8vw;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

/* --- Background Overlay (optional if you have milk overlay image) --- */
.experience-milk-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 101%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    transform: translateY(1vw);
}

/* --- Title --- */
.experience-title {
    text-align: center;
    color: var(--color-yellow);
    text-transform: uppercase;
    font-weight: 700;
    padding-top: 20px;
    margin-bottom: 1.1em;
}

.experience-title .title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.experience-title .title-word {
    font-size: 11vw;
    transform: translateY(5%);
}

.experience-title .subtitle {
    font-size: 4.3vw;
    text-transform: uppercase;
    color: #fff200;
    transform: translateY(-50%);
}

.experience-title .subtitle.bm {
    line-height: 1.1rem;
    transform: translateY(-25%);
}

.experience-title .splash {
    width: 5.65vw;
    height: 4.91vw;
    object-fit: contain;
    display: inline-block;
}

/* --- 2 Section (mobile simplified) --- */
.stepsSection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    text-align: center;
    margin: 0 auto 3rem;
    max-width: 100%;
    color: #fff;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step2-icon {
    transform: translateX(5%);
}

.step-label {
    font-weight: 700;
    font-size: 3.5vw;
    transform: translateY(1vw);
}

.step-desc {
    font-size: 3.5vw;
    line-height: 1.4;
    width: auto;
    transform: translateY(-1.2vw);
}

.step-icon {
    width: 23.15vw;
    height: 23.15vw;
}

/* =========================================================
   VIDEO PLAYER (MOBILE)
========================================================= */

.video-container-mobile {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 80%;
    margin: 0 auto;
    aspect-ratio: 9/16;
    background: #000;
    border: 6px solid #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    object-fit: none;
    overflow: hidden;
}

.video-container-mobile video {
    width: 100%;
    height: 100%;
}

/* Placeholder overlay */
.video-placeholder-mobile {
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}

.videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    box-sizing: border-box;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay-Play {
    width: 18.518vw;
    height: 18.518vw;
    background: url("assets/UI Elements/Play.svg") center center / contain no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.overlay-Replay {
    width: 18.518vw;
    /* 120px */
    height: 18.518vw;
    /* 120px */
    background: url("assets/UI Elements/Replay.svg") center center / contain no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    pointer-events: auto;
}

#videoWrapperMobile {
    position: relative;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    pointer-events: auto;
}

/* Video elements should not block scroll except when interacting */
#videoWrapperMobile video {
    pointer-events: none;
    /* let swipe/scroll pass through video area */
}

/* Restore interactivity for the playable parts */
#videoWrapperMobile video,
#videoWrapperMobile .custom-controls-mobile,
#videoWrapperMobile .control-btn-mobile,
#videoWrapperMobile .video-placeholder-mobile {
    pointer-events: auto;
}

:fullscreen #videoWrapperMobile .video-container-mobile,
:-webkit-full-screen #videoWrapperMobile .video-container-mobile {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

.play-icon-mobile {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    opacity: 0.85;
}

/* Video layers */
.video-layer-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#videoWrapperMobile.expanded {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
}

/* Force videos to fill viewport correctly on iOS */
#videoWrapperMobile.expanded .video-layer-mobile {
    position: fixed;
    /* ✅ fixes iOS compositing bug */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    /* full video visible */
    background: #000;
    /* letterbox fill */
}

#videoWrapperMobile.expanded .custom-controls-mobile {
    position: fixed;
    bottom: 4vw;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    pointer-events: none;
}

#videoWrapperMobile.expanded .control-btn-mobile {
    pointer-events: auto;
}

.video-layer-mobile.is-front {
    opacity: 1;
    z-index: 2;
}

.video-layer-mobile.is-back {
    opacity: 0;
    z-index: 1;
}

body.ios #videoWrapperMobile.expanded .video-layer-mobile {
    object-fit: contain;
    object-position: center -1vh;
    /* move the actual image upward */
}


/* =========================================================
   CUSTOM CONTROLS
========================================================= */

.custom-controls-mobile {
    position: absolute;
    bottom: 2vw;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.control-btn-mobile {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
    /* re-enable clicks */
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    z-index: 25;
}

.control-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.left-btn-mobile {
    margin-left: 14px;
}

.right-btn-mobile {
    margin-right: 14px;
}

.control-btn-mobile svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Disable native video controls */
video::-internal-media-controls-download-button,
video::-webkit-media-controls-overflow-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

/* =========================================================
CTA
========================================================= */
.cta-container {
    position: relative;
    text-align: center;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25vw;
    gap: 2vw;
}

.cta-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 33.61vw;
    height: auto;
    z-index: 6;
    pointer-events: none;
}

.cta-card {
    width: 84.17vw;
    height: 80.85vw;
    padding-top: 30px;
    border: 0.8vw solid #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-card h3 {
    font-weight: 700;
    color: var(--color-yellow);
    font-size: 4.8vw;
    text-transform: uppercase;
    padding-bottom: 2.5vw;
    padding-top: 1vw;
    line-height: 1.1;
}

.cta-card .desc,
.cta-card .note {
    font-weight: 400;
    font-size: 3.6vw;
    color: #fff;
    line-height: 1.4;
}

.cta-card .desc {
    margin-bottom: 0.6em;
}

.cta-card .note {
    padding-bottom: 5.19vw;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 71.30vw;
    height: 12.22vw;
    background: #d32e28;
    color: #fff;
    font-weight: 700;
    font-size: 5vw;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.2s ease;
    border: 1px solid #d32e28;
}

.cta-button:hover {
    border: 1px solid #d32e28;
    background-color: #fff;
    color: #d32e28;
}

.cta-product-image {
    position: relative;
    width: 100%;
    height: auto;
    transform: translateY(4.5vw);
    padding-left: 10vw;
    padding-right: 10vw;
    z-index: 5;
    align-self: center;
}

.product-lineup {
    margin-top: clamp(40px, 5vw, 80px);
    text-align: center;
    z-index: 25;
    position: relative;
}

.product-lineup img {
    width: 80%;
    margin: 0 auto;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
    z-index: 25;
}

.ctadisclaimer {
    text-align: center;
    color: #4aab3c;
    font-weight: 400;
    font-size: 1.5vw;
    z-index: 25;
    position: relative;
    transform: translateY(4vw);
}

/* =========================================================
   SECTION 4 — CONTACT / TESTIMONIAL (EXACT MATCH)
========================================================= */

.chatSection-mobile {
    background: #ffffff;
}

.chat-wrap-mobile {
    /* narrow column like screenshot */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20vw;
}

/* Grey slab panel */
.chat-panel-mobile {
    padding-top: 22.10vw;
    background: #e6e6e6;
    width: 90%;
    height: 124vw;
}

.chat-panel-mobile.bm {
    height: 130vw;
}


.chat-panel-mobile>* {
    transform: translateY(-35vw);
    /* 👈 shifts everything inside up */
}

/* Avatar with green circle background (no rounded card) */
.chat-avatar-wrap {
    display: flex;
    justify-content: center;
}

.chat-avatar-ring {
    /* green circle */
    display: grid;
    place-items: center;
    padding-bottom: 6.20vw;
}

.chat-avatar-ring img {
    width: 30.09vw;
    height: 30.09vw;
    object-fit: cover;
}

/* Title (green, centered) */
.chat-title-mobile {
    font-family: "VAG Rounded Std", sans-serif;
    font-weight: 700;
    font-size: 6.30vw;
    color: #45ac34;
    text-align: center;
    padding-bottom: 4.99vw;
}

/* Paragraph (centered, narrower line length) */
.chat-copy-mobile {
    font-family: "VAG Rounded Std", sans-serif;
    font-weight: 400;
    font-size: 3.5vw;
    line-height: 1.75;
    color: #4c4c4c;
    text-align: center;
    margin: 0 auto 18px;
    width: 88.89vw;
    height: 28.43vw;
    padding-bottom: 18.70vw;
}

.chat-copy-mobile.bm {
    padding-bottom: 35vw;
}

.contactboxwrapper {
    margin-bottom: 5vw;
    padding-bottom: 10vw;
    transform: translateY(-75%);
}

/* White contact card inside grey panel */
.contact-box-mobile {
    background: #ffffff;
    width: 94%;
    /* margin: 13.7vw auto 0 auto; */
    /* center horizontally */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    justify-content: center;
    justify-items: center;
    transform: translate(2.5vw, 10vw);
    /* 👈 shifts entire box content downward */

}

/* Each column */
.contact-row-mobile {
    display: flex;
    align-items: center;
    height: 22.31vw;
    padding-left: 5vw;
}

.contact-row-mobile+.contact-row-mobile {
    margin-top: 8px;
}

.contact-icon-mobile {
    width: 10vw;
    height: 10vw;
    object-fit: contain;
    /* use the red-outline icons as-is */
    filter: brightness(0) saturate(100%) invert(57%) sepia(57%) saturate(729%) hue-rotate(61deg) brightness(99%) contrast(88%);
    transition: filter 0.2s ease;
    margin-right: 5vw;
    transform: translateY(1vw);
}

.contact-row-mobile:hover .contact-icon-mobile {
    filter: brightness(0) saturate(100%) invert(27%) sepia(82%) saturate(2340%) hue-rotate(345deg) brightness(94%) contrast(92%);
}

/* Headings & small text */
.contact-texts-mobile h4 {
    font-weight: 400;
    color: var(--color-brand-green);
    font-size: 6.02vw;
}

.contact-texts-mobile p {
    font-family: "VAG Rounded Std", sans-serif;
    font-weight: 400;
    font-size: 3.51vw;
    color: #2f2f2f;
    margin: 0;
}

.contact-row-mobile:hover .contact-texts-mobile h4,
.contact-row-mobile:hover .contact-texts-mobile p {
    color: var(--color-brand-red);
}

/* =========================================================
   REFERENCES — 2 COLUMNS (TITLE ON LEFT)
========================================================= */

.reference-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2vw 0 2vw 0;
    background: #ffffff;
}

.reference-container {
    max-width: 60vw;
    width: 100%;
}

.ref-columns {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
}

.ref-col {
    flex: 1;
}

.ref-title {
    font-weight: 700;
    color: #4aab3c;
    font-size: 0.73vw;
    line-height: 1;
}

.ref-col p {
    margin: 0 0 0.4vw 0;
    font-size: 0.73vw;
    color: #4aab3c;
    line-height: 1.3;
}

/* =========================================================
   MOBILE OVERRIDE (same class names)
========================================================= */
@media (max-width: 786px) {
    .reference-container {
        max-width: 90%;
        padding: 5vw 0 2vw 0;
    }

    .ref-columns {
        display: block;
        gap: 0;
    }

    .ref-title {
        font-size: 2vw;
        margin-bottom: 50px;
    }

    .ref-col p {
        font-size: 2vw;
        margin-bottom: 1vw;
        max-width: 75%;
    }
}


/* =========================================================
   FOOTER (EXACT MATCH)
========================================================= */

.footer-mobile {
    font-family: "VAG Rounded Std", sans-serif;
    color: #ffffff;
    text-align: center;
    margin-top: 0;
}

/* lighter green band */
.footer-top-mobile {
    background: #45ac34;
    width: 100%;
    height: 52vw;
    justify-content: center;
    align-items: center;
    padding: 10.83vw 32.96vw 7.96vw 32.96vw;

}

.footer-links-mobile {
    display: flex;
    flex-direction: column;
    /* stacked links */
    align-items: center;
    width: auto;
    height: auto;
    gap: 5.28vw;
}

.footer-links-mobile a {
    color: #ffffff;
    font-size: 4vw;
    opacity: 1;

}

.footer-icons-mobile {
    margin-top: 11.67vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7.87vw;
    margin-bottom: 6px;
}

.footer-icons-mobile img {
    width: 6.02vw;
    height: 6.02vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* white icons */
}

/* darker green band */
.footer-bottom-mobile {
    background: #2e7d32;
    height: 30.56vw;
    font-size: 3.52vw;
    line-height: 1.45;
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.footer-bottom-mobile .text-inside {
    position: relative;
    top: 25%;
}

/* =============================================
   UNIVERSAL STICKY BAR (Updated)
============================================= */

/* --- Base Container (Bottom Mode) --- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    bottom: calc(env(safe-area-inset-bottom) + 0px);
    background: #fcda3b;
    border: 2px solid #fcda3b;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    margin: 0;
    z-index: 100;
    font-size: .675rem;
    flex-direction: column;
    border-top: 3px solid white;
}

/* Side mode (desktop) */
@media (min-width: 787px) {
    .sticky-bar {
        width: auto;
        right: 0;
        left: auto;
        bottom: 50%;
        transform: translateY(50%);
        display: flex;
        flex-direction: column;
        font-size: .875rem;
        justify-content: center;
        text-decoration: none;
        /* border: 3px solid #ffffff; */
        /* border-right: 0px; */
        width: 2.5625rem !important;
        border: 0;
    }
}

/* --- Button --- */
.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #fcda3b;
    padding: 10px 0 6px;
    text-decoration: none;

    padding: 0.5vw;
    padding-top: 1.5vw;
}

/* Desktop vertical borders */
@media (min-width: 787px) {
    .sticky-btn {
        border: 2px solid #ffffff;
        border-right: none;
        border-left: 4px solid #ffffff;
        padding: 0.5vw;
    }

    .sticky-btn:first-child {
        border-top: 4px solid #ffffff;
    }

    .sticky-btn:last-child {
        border-bottom: 4px solid #ffffff;
    }
}

/* --- SVG Icons (Normal: Gray) --- */
.sticky-icon {
    width: 25px;
    height: 25px;
    transition: filter 0.25s ease;
    margin-bottom: 4px;
}

/* --- Text (Normal: Gray) --- */
.sticky-btn span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #4c4c4c;
    transition: color 0.25s ease;
}

/* =============================================
   HOVER STATES (Desktop Only)
============================================= */
@media (hover: hover) and (pointer: fine) {
    .sticky-btn:hover {
        background-color: #d32e28;
    }

    .sticky-btn:hover .sticky-icon {
        filter: brightness(5);
    }

    .sticky-btn:hover span {
        color: #ffffff;
    }

    .sticky-btn:hover .sticky-icon {
        filter: brightness(5);
        /* temporary whiten */
    }
}

/* =============================================
   ACTIVE (Touch Devices)
============================================= */
.sticky-btn:active {
    background-color: #d32e28 !important;
}

.sticky-btn:active span,
.sticky-btn:active .sticky-icon {
    color: #ffffff !important;
    filter: brightness(5) !important;
}

body.ios #videoWrapperMobile.expanded {
    padding-bottom: env(safe-area-inset-bottom);
    background-color: black;
}