@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/Inter-SemiBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter Black';
    src: url('./fonts/Inter-BlackItalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MonaSans';
    src: url('./fonts/MonaSans-ExtBdNarrowIta.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CheckCheck Logos';
    src: url('./fonts/CheckCheckLogosRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}




:root {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1600 - 320)));
    --dark: #251F21;
    --light: #FFFFFF;
    --pink: #FF3DA5;
    --corner-radius: 3px;
    --spacer-xs: .375rem;
    --spacer-sm: .75rem;
    --spacer-md: 1.5rem;
    --spacer-lg: 3rem;
    --spacer-xl: 7.5rem;
    --spacer-2xl: 13.75rem;
    --spacer-3xl: 18.75rem;
}

@media (max-width: 320px) {
    :root {
        font-size: 14px; /* Fixed minimum size */
    }
}

@media (min-width: 1600px) {
    :root {
        font-size: 20px; /* Fixed maximum size */
    }
}

@media (max-width: 1200px) {
    :root {
        --spacer-xs: .375rem;
        --spacer-sm: .75rem;
        --spacer-md: 1.5rem;
        --spacer-lg: 2rem;
        --spacer-xl: 4.5rem;
        --spacer-2xl: 12.75rem;
        --spacer-3xl: 15.75rem;
    }
}


@media (max-width: 850px) {
    :root {
        --spacer-xs: .375rem;
        --spacer-sm: .75rem;
        --spacer-md: 1.5rem;
        --spacer-lg: 2rem;
        --spacer-xl: 3rem;
        --spacer-2xl: 5rem;
        --spacer-3xl: 7rem;
    }
}

@media (max-width: 650px) {
    :root {
        --spacer-xs: .25rem;
        --spacer-sm: .625rem;
        --spacer-md: 1.125rem;
        --spacer-lg: 1.125rem;
        --spacer-xl: 1.125rem;
        --spacer-2xl: 5rem;
        --spacer-3xl: 7rem;
    }
}




body {
    font-family: 'Inter', Helvetica, Arial, Sans-serif;
    font-weight: normal;
    font-size: 1rem;
    line-height: 110%; 
    color: var(--dark);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-smooth: always;
    opacity: 0; 
    animation: fadeInAnimation ease 2s; 
    animation-fill-mode: forwards;
    transition: transform .2s;

}
body.showMobile{
    transform: translateX(-100%);
}
body * {
    box-sizing: border-box;
}
.mobile{
    display: none;
}
@keyframes fadeInAnimation {
    from { opacity: 0; }
    to { opacity: 1; }
}

.h0,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin: 0;
}
.h0{
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 14.625rem; 
    line-height: 75%;
    text-transform: uppercase;
    font-weight: normal; 
}
h1,.h1 {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 7.8125rem; 
    line-height: 88%;
    text-transform: uppercase;
    font-weight: normal; 

}
h2,.h2 {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 6rem; 
    line-height: 88%;
    text-transform: uppercase;
    font-weight: normal; 

}
h3,.h3 {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 4.25rem; 
    line-height: 82%;
    text-transform: uppercase;
    font-weight: normal; 

}
h4,.h4 {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 3.25rem; 
    line-height: 95%;
    font-weight: normal; 

}
h5,.h5 {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 2.375rem; 
    line-height: 90%;
    font-weight: normal; 

}
h6,.h6,a.menuItem  {
    font-family: "MonaSans",Impact,Helvetica,Arial;
    font-size: 1.875rem; 
    line-height: 95%;
    font-weight: normal; 

}

.kicker{
    font-family: "Inter",Helvetica,Arial,sans-serif;
    font-size: 1.25rem;
    line-height: 98%;
    letter-spacing: -.0125rem;
    text-transform: uppercase;

}
.bold{
    font-family: "Inter",Helvetica,Arial,sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    letter-spacing: -.025rem;
    line-height: 110%;
}

a {
    text-decoration: none;
    color: var(--dark);
    transition: all .2s ease;
}
.button.lg{
    font-family: "Inter Black",Helvetica,Arial,sans-serif;
    font-size: 1.625rem; 
    line-height: 100%;
    text-decoration: none; 
    padding: 1px 12px;
    color: var(--dark);
    border: 5px solid var(--dark);
    border-radius: 100px;
    box-shadow: 2px 2px 0 0;
    box-sizing: border-box;
    white-space: nowrap;
    display: inline-block;
}
.button.sm{
    font-family: "Inter Black",Helvetica,Arial,sans-serif;
    font-size: .8125rem;  
    line-height: 100%;
    text-decoration: none; 
    padding: 1px 6px;
    color: var(--dark);
    border: 2px solid var(--dark);
    border-radius: 100px;
    box-shadow: 1px 1px 0 0;
    box-sizing: border-box;
    white-space: nowrap;
    display: inline-block;

}
button{
    transition: all .2s ease;
}
a:hover,.button:hover{
    transform: scale(1.1) rotate(10deg);
}
footer a:hover{
    transform: scale(1) rotate(0deg)translateX(-10px);
}

.logosSm{
    font-family: "CheckCheck Logos";
    font-size: 1.875rem;
    line-height: 110%;
}
.logosLg{
    font-family: "CheckCheck Logos";
    font-size: 5.9375rem;
    line-height: 60%;
}





@media (max-width: 1200px) {
    .h0{
        font-size: 10rem; 
    }
    h1,.h1 {
        font-size: 6.75rem; 
    }
    h2,.h2 {
        font-size: 5rem; 
    }
    h3,.h3 {
        font-size: 3.75rem; 
    }
    h4,.h4 {
        font-size: 3rem; 
    }
    h5,.h5 {
        font-size: 2rem; 
    }
    h6,.h6,a.menuItem  {
        font-size: 1.4rem; 
    }

    .kicker{
        font-size: 1.25rem;
    }
    .bold{
        font-size: 1.1875rem;
    }
}

@media (max-width: 850px) {
    .h0{
        font-size: 8rem; 
    }
    h1,.h1 {
        font-size: 5.5rem; 
    }
    h2,.h2 {
        font-size: 4rem; 
    }
    h3,.h3 {
        font-size: 3.5rem; 
    }
    h4,.h4 {
        font-size: 2.8rem; 
    }
    h5,.h5 {
        font-size: 1.8rem; 
    }
    h6,.h6,a.menuItem  {
        font-size: 1.3rem; 
    }

    .kicker{
        font-size: 1.25rem;
    }
    .bold{
        font-size: 1.1875rem;
    }
    .logosSm{
        font-size: 1.4rem;
    }
    .logosLg{
        font-size: 5.5rem;
    }


}

@media (max-width: 650px) {
     .h0{
        font-size: 6.25rem; 
    }
    h1,.h1 {
        font-size: 3.75rem; 
    }
    h2,.h2 {
        font-size: 3.25rem; 
    }
    h3,.h3 {
        font-size: 2.7875rem; 
    }
    h4,.h4 {
        font-size: 2rem; 
    }
    h5,.h5 {
        font-size: 1.6875rem; 
    }
    h6,.h6,a.menuItem  {
        font-size: 1.3rem; 
    }

    .kicker{
        font-size: 1.25rem;
    }
    .bold{
        font-size: 1.1875rem;
    }   
    .logosSm{
        font-size: 1.25rem;
    }
    .logosLg{
        font-size: 4.875rem;
    }


}




.pink{
    background-color: var(--pink);
}



section{
    width: 100%;
    border-bottom: 1px solid var(--dark);
    box-sizing: border-box;
    display: flex;
}
.col{
      flex-basis: 50%;

}

#promoWrap{
    position: fixed;
    z-index: 1000;
    bottom: var(--spacer-sm);
    left: var(--spacer-sm);
    width: calc(100vw - (4 * var(--spacer-sm)) - 120px);
    max-width:450px;
    transition: transform 0.2s;
}
#promoWrap:hover{
    transform: scale(1.02);
}
#videoWrap{
    position: fixed;
    z-index: 1000;
    bottom: var(--spacer-sm);
    right: var(--spacer-sm);
    width: 120px;
/*    height: auto;*/
    border: 1px solid var(--dark);
    border-radius: var(--corner-radius);
    transition: transform 0.2s;
    aspect-ratio: 720/1280;
}
#videoWrap:hover{
    transform: scale(1.02);
}
#videoWrap #video{

    position: absolute;  
    width: 100%;    
    height: 100%;    
    object-fit: cover; 
    top: 0;    
    left: 0;
    z-index: 100;
    border-radius: var(--corner-radius);

}
#videoWrap #videoClose{
    background-color: var(--pink);
    border: 2px solid var(--dark);
    box-shadow: 1px 1px 0 0;
    border-radius: 100px;
    z-index: 110;
    position: absolute;
    right: -5px;
    top: -1px;
    height: 26px;
    width: 26px;
    display: flex; 
    justify-content: center;   
    align-items: center;
    transition: all 0.2s;
    opacity: 0;

}

#videoWrap:hover #videoClose{
    opacity: 1;
       top: -5px;
}
#videoWrap .close img{
    width: 15px;
    height: auto;

}
/* sections */
#stickyMenu{
        position: fixed;
        padding: var(--spacer-sm) var(--spacer-md);
        top: -100%;
        transition: top 0.5s;
        z-index: 2000;
}
.menu{
    display: flex;
    flex-direction:row;
    justify-content:flex-start;
    align-items:center;
    width: 100%;
}
.menu .menuLogo{
    height: 4rem; width: auto;
}#mobileMenu .top
.menu  > * {
    margin-right: .125rem;
}
.menu .rightMenuItems{
  flex: 1;
  display: flex;
  justify-content: flex-end;    
  margin-right: 0;
}
.menu .rightMenuItems > * {
    margin-left: var(--spacer-xs);
}

#mobileMenu{
background-color: var(--pink);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    top: 0;
    bottom: 0;
    padding: var(--spacer-sm);
    display: flex;
    flex-direction:column;
    justify-content:flex-start;
    transition:  all .5s;
    transform: translateX(100%);
    opacity: 0;
}
#mobileMenu.show{
    transform: translateX(0%);
    opacity: 1;
}
#mobileMenu .heroLogo{
    width: 50%;
    height: auto;
    left: -5px;
    top: -5px;
    position: relative;
}
#mobileMenu .top{
    display: flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom: 3vh;
    position: relative;
}
#stickyMobileMenu{
    position: fixed;
    top: 0;
    right: 0;
    right: -100%;
    transition: right 0.5s;
    z-index: 2000;
}
.mobileNavButton{
    padding: var(--spacer-xs);;
    position: absolute;
    top: 0;
    right: 0;
}
.mobileNavButton img{
}
.divider{
    width: 100%;
    border-bottom: 1px solid var(--dark);
    margin: var(--spacer-sm) 0;
}
.dividerLg{
    width: 100%;
    border-bottom: 3px solid var(--dark);
    margin:  var(--spacer-xs) 0 var(--spacer-sm) ;
}

* {
  cursor: none;
}
#checkCheckCursor {
  width: 139px; 
  height: 139px;
  position: fixed;
  pointer-events: none; 
  background: url('./images/cursor.svg') no-repeat center center;
  background-size: contain; 
  transform: translate(-20px, -20px) scale(1); 
  z-index: 1000000;
    display: none;
    cursor: none;

    transition: transform 0.3s ease;
}
#checkCheckCursor.magnify {
    transform: scale(.75) translate(-40px, -40px);

}
.imageCover{
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center; 
}

.heroImage{
    aspect-ratio:  1440/887;
    background-image: url('./images/heroimage.jpg'); 
    flex-direction: column;
    justify-content: flex-start;
    align-items: top;
    flex: 0 1 auto;
    padding: var(--spacer-sm) var(--spacer-md) var(--spacer-md);
    gap: var(--spacer-md);;
}


.heroImage .menu > *, .heroImage .menu .rightMenuItems > *{
    color: var(--pink);
    border-color:  var(--pink);
}
.heroImage .heroLogo{
    width: 40%;
    height: auto;
}
.heroText{
    background-color: var(--pink);
    padding: var(--spacer-md) var(--spacer-md) var(--spacer-lg) var(--spacer-md);
    flex-direction: column;
    justify-content: flex-start;
    align-items: top;
    flex: 0 1 auto;
}

.productImageOne{
    aspect-ratio: 1440/898;
    background-image: url('./images/prod_1.jpg'); 
    padding: var(--spacer-md);
    color: #fff;
    flex-direction: column;
    justify-content: flex-end;
    flex: 0 1 auto;
}





.productInfo{
    flex-direction: row;
    justify-content: flex-end;
    flex: 0 1 auto;
}


.productInfo .col-1{
    background-image: url('./images/tonguephoto.jpg'); 
}
.productInfo .col-1 img{
    padding: var(--spacer-md);
    height: auto;
    border-right: 1px solid var(--dark);

}
.productInfo .col-2{
    background-image: url('./images/block-clouds.jpg'); 
    padding:  var(--spacer-xl);
}



.productInfo .col-2 h2{
    color: var(--pink);
    margin-bottom: var(--spacer-sm);
}

.caption{
    width: 30%;
}
.productImageTwo{
    aspect-ratio: 1440/909;
    background-image: url('./images/prod_2.jpg'); 
}

.billboardText{
    background-image: url('./images/glitter_cyan.jpg'); 
    padding: var(--spacer-lg);
}




.widgets{
    display:flex;
    align-items: center;
}
.widgets .widgetDivider{
    height: 2.5em;
    border-left: 1px solid var(--dark);
    margin: 0 var(--spacer-sm);
}

.widgets img{
    height:2em;
    width: auto;
    margin: 0 0 0 var(--spacer-xs);

}



/*
    font-size: 15px;
    line-height: 110%;


    */
.billboardText img{
    width: 100%;
    height: auto;
}

.ticker{
    background-color: var(--pink);
    overflow-x: hidden;
}
.ticker .tickerContent{
    padding: var(--spacer-sm) var(--spacer-sm) var(--spacer-xs) var(--spacer-sm);
    display: inline-block;  
    white-space: nowrap;
}
.ticker .tickerContent > *{
    display: inline-block;
    margin-right: var(--spacer-sm);
}

.ticker .tickerContent h3{
    position: relative;
    top: 2px;
}

.ticker.ticker1 .tickerContent{
    animation: tickerScroll1 32s linear infinite;
}
.ticker.ticker2 .tickerContent{
    animation: tickerScroll2 30s linear infinite;
}
.ticker.ticker3 .tickerContent{
    animation: tickerScroll1 32s linear infinite;
}

@keyframes tickerScroll1 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes tickerScroll2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
.productEcom{
    background-image: url('./images/glitter_dark.jpg'); 
    padding: var(--spacer-xl);
    color:  var(--light);
}

 /* scrolling new */

    .productEcom{

        scroll-snap-type: x mandatory;
        padding: var(--spacer-xl) 0;
        user-select: none;

        user-select: none;
        -moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
    }  
    .productEcom::-webkit-scrollbar {    
        display: none;  
    }
    .productEcom .content{

        scrollbar-width: none;    
        -ms-overflow-style: none; 
        flex-direction: row; /* Keep row direction for horizontal scroll */    
        overflow-x: auto; /* Enable horizontal scrolling */    
        scroll-snap-type: x mandatory; /* Smooth snapping */
        scroll-padding-left: var(--spacer-xl);
    padding: 0 var(--spacer-xl);
    box-sizing: border-box;

    }
    .productEcom .content::-webkit-scrollbar {    
        display: none;  
    }
    .productItem{
    flex: 0 0 45%; /* First child takes 85% of screen width */    
/*    scroll-snap-align: start;*/
    box-sizing: border-box;

    }
    .productEcom .content img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

 /* scrolling new end*/





.productEcom .button{
    align-self: center;
    color: var(--light);
    border-color: var(--light);
}
.productEcom .button:hover{
    transform: none;
}
.productEcom .content{
    width: 100%;
    display: flex;
    flex-direction: row;
/*    justify-content: flex-start;
    align-items: top;
    flex: 0 1 auto;*/
    gap:  var(--spacer-lg);
}
.productEcom .infoBar{
    display: flex;
    gap: var(--spacer-sm);
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.productItem{
    flex-grow: 1;
}
.productItem img{
    width: 100%;
    margin-bottom: var(--spacer-xs);
    border: 1px solid var(--dark);
    border-radius: var(--corner-radius);
}

.tcmInfo{
    padding: var(--spacer-xl) var(--spacer-md);
    background-color:  var(--pink);
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.tcmInfo .content{
    width: 50%;
    background-color:  var(--pink);
    display: flex;
    gap: var(--spacer-sm);
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.tcmInfo .h0{
    white-space: nowrap;
    align-self: center;
}
.tcmInfo .tcmImage{
    width: 100%;
    height: auto;
    align-self: center;
}
.tcmInfo .tcmPhoto{
    width: 40%;
    height: auto;
    align-self: center;
    border: 1px solid var(--dark);
    border-radius: var(--corner-radius);
}


.founderInfo{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;  
}

.founderInfo .col-1{
  background: url('./images/founder.jpg') no-repeat center center;
  background-size: cover; 
  border-right: 1px solid var(--dark);
}
.founderInfo .col-2{
display: flex;
justify-content: flex-start;
flex-direction: column;
flex-wrap: nowrap;  
  gap: var(--spacer-sm);
  background: url('./images/dark_gradient.jpg') no-repeat center center;
  background-size: cover; 
  padding: var(--spacer-3xl) var(--spacer-xl) var(--spacer-xl) ;
  box-sizing: border-box;
  position: relative;
}



.founderInfo .founderSticker{
    position: absolute;
    width: 50%;
    height: auto;
    top: var(--spacer-md);
    right: var(--spacer-md);
}
.founderInfo .founderMobilePhoto{
    border: 1px solid var(--dark);
    border-radius:  var(--corner-radius);
}

.FAQ{
  background: url('./images/glitter_pink.jpg') no-repeat center center;
  background-size: cover; 
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;  
    padding: var(--spacer-xl);
}
.FAQ .content{
  background: url('./images/light_gradient.jpg') no-repeat center center;
  border: 1px solid var(--dark);
  border-radius: var(--corner-radius);
  background-size: cover; 
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;  
    gap: var(--spacer-md);
    padding: var(--spacer-lg) var(--spacer-lg) var(--spacer-xl);
}

.FAQ > * a{
  text-decoration: underline;
}







.FAQ .bold{
    margin-right: var(--spacer-lg);
}
.FAQ .faqSticker{
    width: 40%;
    height: auto;
}
.FAQ .faqItem{
    position: relative;
}

.FAQ .faqItem .text{
    transition: all .3s ease;
    padding: 0 var(--spacer-lg) 0 0;

}
.FAQ .faqItem.closed .text{
    height:0;
    opacity: 0;
    transform: translateY(-20px);

}
.FAQ .faqItem.open .text{
    height: auto;
    opacity: 1;  
    transform: translateY(0);
    padding: var(--spacer-xs) var(--spacer-lg) var(--spacer-xs) 0;

}
.FAQ .faqItem.closed:after{
content: ''; 
position: absolute;  
top: .25rem; 
right: 0;  
width: .8125rem; 
height: .8125rem; 
background-image: url('./images/open.svg'); 
background-size: contain; 
background-repeat: no-repeat;  
pointer-events: none;
}
.FAQ .faqItem.open:after{
content: ''; 
position: absolute;  
top: .25rem; 
right: 0;  
width: .8125rem; 
height: .8125rem; 
background-image: url('./images/close.svg'); 
background-size: contain; 
background-repeat: no-repeat;  
pointer-events: none;
}
.newsletterForm{
    background-color: var(--pink);
    padding: var(--spacer-xl) var(--spacer-lg) var(--spacer-lg);
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.newsletterForm .star{
    font-family: "CheckCheck Logos";
    font-size: 1.5em;
}
.newsletterForm form{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: bottom;
    gap: var(--spacer-xs);
    margin-top: var(--spacer-lg);
}

.newsletterForm input{
    flex-grow: 1;
    background-color: transparent !important;
    border: 0;
    border-bottom: 3px solid var(--dark);
    border-radius: 0;
}

.newsletterForm input:-webkit-autofill,
.newsletterForm input:-webkit-autofill:hover, 
.newsletterForm input:-webkit-autofill:focus, 
.newsletterForm input:-webkit-autofill:active  {
    background-color:   transparent !important;
        -webkit-background-clip: text !important;

/*  -webkit-text-fill-color: transparent !important;
*/}

.newsletterForm button{
    background-color: transparent;
}

.newsletterForm input::placeholder { 
    color: var(--dark);
}
#responseMessage{
    margin-top: var(--spacer-md);
}

footer{
    color: var(--pink);
    background-color:  var(--dark);
    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: bottom;
    gap: var(--spacer-2xl);
    padding: var(--spacer-lg);
    box-sizing: border-box;
}

footer .footerLogo{
    width: 6rem;
    height: auto;
}
footer .footerBold{
    font-weight: bold;
    margin-bottom: var(--spacer-xs);
}
footer .footerLinks{
    width: 50%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
}
footer .footerCol{
    flex-basis: 33.33%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
        line-height: 100%;
}
footer a{
    color: var(--pink);
    text-decoration: none;
}
footer .copyright{
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
footer .copyright > *{
    margin-right: var(--spacer-sm);
}


@media (max-width: 1200px) {
    footer .footerLinks {
        width: 65%;
    }
    footer .bold{
        font-size: 1rem;
    }
    footer .logosSm{
        font-size: 1.6rem;
    }

    .widgets{
         font-size: 15px;
         line-height: 110%;
    }
}


@media (max-width: 850px) {
    .founderInfo .col-2{
      padding: 200px var(--spacer-xl) var(--spacer-xl) ;
    }
    .tcmInfo .content{
        width: 75%;
    }
    footer{
        font-size: 14px;
    }
    footer .footerLinks {
        width: 75%;
    }

    .widgets{
         font-size: 11px;
         line-height: 110%;
    }
    .button.sm{
        font-size: .7125rem;
    }
}


@media (max-width: 750px) {
    .button.sm{
        font-size: .65rem;
    }
}



@media (max-width: 650px) {
    * {
      cursor: auto;
    }
    #checkCheckCursor{
        display: none;
    }
    .desktop{
        display: none;
    }
    .mobile{
        display: block;
    }

    .widgets{
         font-size: inherit;
         line-height: inherit;
    }

    #video{
        width: 100px;
        bottom: var(--spacer-xs);
        right: var(--spacer-xs);
    }
    .heroImage{
        aspect-ratio: 393 / 590;
        background-image: url(./images/m/heroimage_vert.jpg);
        background-size: 100% auto;
        background-position: top center;
    }
    .heroImage .heroLogo {
        width: 53%;
    }
    .productImageOne{
        background-image: url('./images/m/prod_1.jpg'); 
            background-size: auto 100%;
        background-position: top center;
    }
    .productInfo,.founderInfo,.FAQ .content{
        flex-direction: column;
    }
    .col{
        flex-basis: 100%;
    }
    .productInfo .col-1{
        aspect-ratio: 1/1;
        border-bottom: 1px solid var(--dark);
        background-image: url('./images/m/tonguephoto.jpg'); 
        background-size: 100% auto;
        background-position: top center;
    }
    .productInfo .col-2{
        padding: 50px var(--spacer-xl);
        background-image: url('./images/m/block-clouds.jpg'); 
        background-size: 100% auto;
        background-position: top center;
    }


    .billboardText{
            padding: var(--spacer-sm);
    }
    .productImageOne{
        justify-content: center;
        aspect-ratio: 6/7;
    }
    .caption {
        width: 50%;
    }
    .productEcom{
        width: 100%;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        padding: var(--spacer-xl) 0;
        background-image: url('./images/m/glitter_dark.jpg'); 
        background-size: auto 100%;
        background-position: top center;
    }  
    .productEcom::-webkit-scrollbar {    
        display: none;  
    }
    .productEcom .content{
        scrollbar-width: none;    
        -ms-overflow-style: none; 
flex-direction: row; /* Keep row direction for horizontal scroll */    
overflow-x: auto; /* Enable horizontal scrolling */    
scroll-snap-type: x mandatory; /* Smooth snapping */
scroll-padding-left: var(--spacer-xl);
    padding: 0 var(--spacer-xl);
    box-sizing: border-box;

    }
    .productEcom .content::-webkit-scrollbar {    
        display: none;  
    }
    .productItem{
    flex: 0 0 85%; /* First child takes 85% of screen width */    
    scroll-snap-align: start; /* Aligns for snapping */
    box-sizing: border-box;

    }

    .productImageTwo{
        aspect-ratio: 3/4;
    background-image: url('./images/m/prod_2.jpg'); 
        background-size: auto 100%;
        background-position: top center;
    }
    .billboardText{
        background-image: url('./images/m/glitter_cyan.jpg'); 
        background-size: 100% auto%;
        background-position: top center;
    }

    .tcmInfo .content{
        width: 100%;
    }
    .founderInfo .col-2{
        padding-top: var(--spacer-md);
    }
    .founderInfo .founderSticker{
        position: relative;
        margin-bottom: var(--spacer-md);
        align-self: flex-end;
        width: 75%;
        height: auto;
    }
    .founderInfo .col-2{        
        background: url('./images/m/dark_gradient.jpg') no-repeat center center;
        background-size: auto 100%;
        background-position: top center;
    }
    .FAQ{
        background: url('./images/m/glitter_pink.jpg') no-repeat center center;
        background-size: 100% auto;
        background-position: top center;
    }
    .FAQ .content{
        background: url('./images/m/light_gradient.jpg') no-repeat center center;
        background-size: 100% auto;
        background-position: top center;
    }
    .newsletterForm{
            overflow-x: hidden;
    }
    .newsletterForm h3{
        font-size: 2rem;
    }
    .newsletterForm form{
        flex-direction: column;
        gap: var(--spacer-lg);
    }
    footer .footerLinks, footer .copyright{
        flex-direction: column;
        align-items: flex-start;
    }
    footer .footerLinks{
        gap: var(--spacer-lg);
    }
    footer .bold{
        font-size: .85rem;
    }

}


@media (max-width: 480px) {

    .productInfo .col-2, .FAQ,  .FAQ .content{
        background-size: auto 100%;
        background-position: center center;
    }
    .productInfo .col-1{
        background-size: auto 108%;
        background-position: center center;
    }
        .widgets{
         font-size: 15px;
         line-height: 110%;
    }
}







@keyframes anim-1 {
    from, 17% { 
       opacity: 1;
    }
    33%,83%{
       opacity: 0;
    }
    to{
       opacity: 1;
    }
}

@keyframes anim-2 {
    from, 50% { 
       opacity: 1;
    }
    66%,to{
       opacity: 0;
    }
}







@media (max-width: 1500px) {

}






@media (max-width: 1100px) {
 
}

@media (max-width: 750px) {

}

