/** Shopify CDN: Minification failed

Line 221:2 Expected identifier but found "rgb("
Line 228:100 Unexpected "{"
Line 236:136 Unexpected "{"

**/
html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "ivyepic";
  font-display: optional;
}

.off-white {background-color: rgb(255, 253, 249);}


/* SECTION PADDING*/
.mojosection {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
.mojosection {
  padding-top: 50px;
  padding-bottom: 50px;
}
}

/*FONTS*/

p {
    line-height: 28px;
    font-size: 20px;
    color: black;
    font-family: 'open sans';
    font-weight: 400;
    letter-spacing: -0.25px;
    text-wrap: balance;
  }

  h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: black;
  text-transform: uppercase;
}

.MojoH2 {
  font-weight: 600;
  font-size: clamp(2rem, 3vw + 2rem, 6rem);
  letter-spacing: 0px;
  margin-bottom: 25px;
  margin-top: 5px;
  color: black;
  font-family: 'ivyepic';

}

@media only screen and (max-width: 767px) {

p {
    line-height: 24px;
    font-size: 18px;
    color: black;
    font-family: 'open sans';
    font-weight: 400;
    letter-spacing: -0.5px;
  }

  h4 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
}}

.border {border:1px solid black; }



/*HEADER - remove search icon*/
.header__icon--search {
    display: none;
}


/*FONT STYLING */

h1 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: black;
  font-weight: 200;
  font-family:'ivyepic';
}

h2 {
  font-weight: 600;
  font-size: clamp(2rem, 3vw + 2rem, 6rem);
  letter-spacing: 0px;
  margin-bottom: 25px;
  margin-top: 5px;
  color: black;
  font-family:'ivyepic';
}

h3 {
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 24px);
  margin-bottom: 10px;
  color: black;
  font-family:'ivyepic';
  line-height: 30px; 
  text-wrap: balance;
}

h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: black;
  text-transform: uppercase;
}

p {
    line-height: 28px;
    font-size: 20px;
    color: black;
    font-family: 'open sans';
    font-weight: 400;
    letter-spacing: -0.25px;
    text-wrap: balance;
  }


@media only screen and (max-width: 767px) {
p { 
    line-height: 24px;
    font-size: 18px;
    color: black;
    font-family: 'open sans';
    font-weight: 400;
    letter-spacing: -0.5px;
  }

h4 {    
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
}





/* BUTTONS NO CORNERS*/
/* Icon inside buttons */
.button-icon{
  width: 1.1em;
  height: 2.5em;
  object-fit: contain;
  flex: 0 0 auto;
}




/* Base button styles (shared) */

.red-button, 
.orange-button, .product-form__submit, .shopify-payment-button .shopify-payment-button__button,
.white-button  {
  --btn-w: 275px;
  --btn-h: 60px;
  --btn-gap: 1.5rem;
  --btn-pad: 16px 30px;
  --btn-radius: 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  width: var(--btn-w);
  max-width: 100%;
  height: var(--btn-h);
  padding: var(--btn-pad);
  margin-top: 10px;

  font: 600 18px 'ivyepic', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;

  border-radius: var(--btn-radius);
  border: none;
  box-shadow: none;
  -webkit-appearance: none;

  transition: background-color .25s ease, color .25s ease, transform .15s ease, box-shadow .2s ease;
  cursor: pointer;
}

/* Variants */
.red-button,.product-form__submit { background:#ed1c24; color:#fff; } /**/
.orange-button,.shopify-payment-button .shopify-payment-button__button { background:rgb(255,157,0); color:#fff; } /*  */
.white-button{ background:transparent; color:#000; border:2px solid #000; }

/* Hover */
.red-button:hover, 
.orange-button:hover, .product-form__submit:hover, .shopify-payment-button .shopify-payment-button__button:hover {
  rgb(255,157,0); color:#fff;
} /**/
.white-button:hover{ background:#000; color:#fff; border-color:#000; }

/* Links inside buttons inherit styles */
.red-button a, 
.orange-button a, 
.white-button a, .product-form__submit a, .shopify-payment-button .shopify-payment-button__button a,{
  color: inherit;
  text-decoration: none;
} /*  */

/* Focus-visible (accessible) */
.red-button:focus-visible, 
.orange-button:focus-visible, 
.white-button:focus-visible, .product-form__submit:focus-visible, .shopify-payment-button .shopify-payment-button__button:focus-visible,{
  outline: 2px solid #111;
  outline-offset: 2px;
} /**/

/* Active/pressed + disabled */
.red-button:active, 
.orange-button:active, 
.white-button:active, .product-form__submit:active, .shopify-payment-button .shopify-payment-button__button:active{
  transform: translateY(1px);
} /**/

/*.product-form__submit[disabled],*/
.shopify-payment-button .shopify-payment-button__button[disabled]{
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
}

/* BUTTONS WITH CORNERS */

.red-button-corners, .orange-button-corners, .white-button-corners, .btn-corners {
  /* sizing */
  --btn-w: 275px;
  --btn-h: 60px;
  --btn-pad: 16px 30px;
  --btn-gap: 1rem;
  --btn-radius: 0px;

  /* corner config */
  --corner-size: 15px;
  --corner-stroke: 3px;
  --corner-offset: calc(var(--corner-stroke) * 2); /* was 6px */

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  width: var(--btn-w);
  height: var(--btn-h);
  max-width: 100%;
  padding: var(--btn-pad);
  margin-top: 10px;

  font: 600 18px 'ivyepic', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;

  border: none;
  border-radius: var(--btn-radius);
  box-shadow: 3px 3px 8px rgba(0,0,0,.2);
  cursor: pointer;

  background: var(--bg, #ed1c24);
  color: var(--text, #fff);

  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}


/* Keep links clean if used as <a> */
a.red-button-corners, a.orange-button-corners, a.btn-corners { text-decoration: none; }

/* Accessible focus */
.red-button-corners:focus-visible,
.orange-button-corners:focus-visible, .white-button-corners:focus-visible,
.btn-corners:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

/* Hover */
.red-button-corners:hover,
.orange-button-corners:hover,.white-button-corners:hover,
.btn-corners:hover {
  transform: translateY(-2px);
  background: rgb(255,157,0);
  color: #fff;
}

/* ===== Variant Colors (old + new names) ===== */
.red-button-corners, .btn-corners--red {
  --bg: #ed1c24;
  --text: #fff;
  --corner-color: #ed1c24;
}
.orange-button-corners, .btn-corners--orange {
  --bg: rgb(255,157,0);
  --text: #fff;
  --corner-color: rgb(255,157,0);
}

.white-button-corners, .btn-corners--white {
  --bg:  rgb(68, 68, 68);
  --text: white;
  --corner-color: rgb(68,68,68);
}




/* ===== Corner elements (shared) ===== */
.red-button-corners .corner,
.orange-button-corners .corner,
.btn-corners .corner,
.white-button-corners .corner {
  position: absolute;
  width: var(--corner-size);
  height: var(--corner-size);
  border: var(--corner-stroke) solid var(--corner-color, var(--bg));
  pointer-events: none;
}

.red-button-corners .corner.tl,
.orange-button-corners .corner.tl,
.btn-corners .corner.tl,
.white-button-corners .corner.tl {
  top: calc(-1 * var(--corner-offset));
  left: calc(-1 * var(--corner-offset));
  border-right: none; border-bottom: none;
}
.red-button-corners .corner.tr,
.orange-button-corners .corner.tr,
.btn-corners .corner.tr,
.white-button-corners .corner.tr {
  top: calc(-1 * var(--corner-offset));
  right: calc(-1 * var(--corner-offset));
  border-left: none; border-bottom: none;
}
.red-button-corners .corner.bl,
.orange-button-corners .corner.bl,
.btn-corners .corner.bl,
.white-button-corners .corner.bl {
  bottom: calc(-1 * var(--corner-offset));
  left: calc(-1 * var(--corner-offset));
  border-right: none; border-top: none;
}
.red-button-corners .corner.br,
.orange-button-corners .corner.br,
.btn-corners .corner.br,
.white-button-corners .corner.br {
  bottom: calc(-1 * var(--corner-offset));
  right: calc(-1 * var(--corner-offset));
  border-left: none; border-top: none;
}



/*FOOTER*/
/*ul.footer__list-social.list-unstyled.list-social:before {
    content: "Follow Us";
    position: absolute;
    top: -100%;
    left: 50%;
    translate: -50% 50%;
    width: max-content;
    height: auto;
    display: block;
}

ul.footer__list-social.list-unstyled.list-social {
    position: relative;
  text-transform: uppercase;
  font-weight: 600;
} */


.footer-block--newsletter {
  display: flex;
  flex-direction: column; /* stack children vertically */
  align-items: flex-start; /* align them to the left */
  gap: 10px;
}

.footer-block--newsletter .footer__list-social {
  margin-left: 0 !important;   /* remove forced right alignment */
  align-self: flex-start !important; /* keep it left aligned in flex column */
  justify-content: flex-start !important; /* ensure icons align left */
}

/* Layout the social list nicely */
.footer .footer-block--newsletter .footer__list-social {
  margin-left: 0px !important;           /* kill right-alignment */
  align-self: flex-start !important;
  display: flex !important;
  flex-direction: row;                  /* icons in a row */
  flex-wrap: wrap;
  gap: 10px;                            /* space between circles */
}

@media only screen and (max-width: 767px) {
  .footer .footer-block--newsletter .footer__list-social {
  margin-left: auto !important;
margin-right: auto !important;}

    .footer__follow-on-shop {display: none !important}
}

/* Turn each social link into a circle */
.footer .footer__list-social .list-social__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #fff !important;               /* icon color via currentColor */
  background: #3a3a3a;                  /* fallback for other networks */
  transition: filter .2s ease, transform .05s ease;
}

/* Size the SVGs and force them to inherit the link color */
.footer .footer__list-social .list-social__link svg {
  width: 18px;
  height: 18px;
  display: inline-block;
}
.footer .footer__list-social .list-social__link svg path,
.footer .footer__list-social .list-social__link svg circle,
.footer .footer__list-social .list-social__link svg rect,
.footer .footer__list-social .list-social__link svg line {
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* Network-specific circle colors */
.footer .footer__list-social a[href*="instagram.com"].list-social__link {
  background: #ed1c24;                  /* red circle for Instagram */
}
.footer .footer__list-social a[href*="tiktok.com"].list-social__link {
  background: #fbb03b;                  /* orange circle for TikTok */
}

/* Simple interaction */
.footer .footer__list-social .list-social__link:hover {
  filter: brightness(0.9);
}
.footer .footer__list-social .list-social__link:active {
  transform: translateY(1px);
}


#shopify-section-sections--18596995924107__footer > footer > div.footer__content-top.page-width > div.footer-block--newsletter > ul {text-align: left}



#shopify-section-template--18596999561355__apps_PPnFHB {background-color: #FFFDF9 !important}

#shopify-section-template--18596999561355__apps_We9Xtf{background-color: #FFFDF9 !important;}

#AWGhWaklFcFNWR0VtU__gsc_instagram_feed_instafeed_ghPX7J > div > div.gfa-content__text.heading-FKvpXZaQROMF > h3 {  
  font-weight: 600;
  font-size: clamp(2rem, 3vw + 2rem, 6rem);
  letter-spacing: 0px;
  margin-bottom: 25px;
  margin-top: 5px;
  color: black;
  font-family: 'ivyepic';}

#AWGhWaklFcFNWR0VtU__gsc_instagram_feed_instafeed_ghPX7J > div > div.gfa-content__text.text-tniJOqsXaVRs > span {
  font-weight: 600;
  font-size: clamp(20px, 3.5vw, 24px);
  margin-bottom: 10px;
  color: black;
  font-family:'ivyepic';
  line-height: 30px; 
  text-wrap: balance;
}

#judgeme_product_reviews > div > div.jdgm-rev-widg__header > h2 {  
  font-weight: 600;
  font-size: clamp(2rem, 3vw + 2rem, 6rem);
  letter-spacing: 0px;
  margin-bottom: 25px;
  margin-top: 5px;
  color: black;
  font-family: 'ivyepic';}


  #AWGhWaklFcFNWR0VtU__gsc_instagram_feed_instafeed_ghPX7J > div > div.gfa-content__button-container.button-FqaUEKHBzNgL {

  font: 600 24px 'ivyepic', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 300px;
  height: 60px;
  letter-spacing: 1px;
}
