/** Shopify CDN: Minification failed

Line 1313:18 Unexpected "{"
Line 1313:27 Expected ":"
Line 1313:34 Unexpected "{"
Line 1337:18 Unexpected "{"
Line 1337:27 Expected ":"
Line 1337:34 Unexpected "{"
Line 1390:20 Unexpected "{"
Line 1390:29 Expected ":"
Line 1390:36 Unexpected "{"
Line 3880:15 Expected identifier but found whitespace

**/
/* CSS Variables for Font Sizes */
:root {
  --font-size-small: 0.875rem;    /* 14px */
  --font-size-p: 1rem;             /* 16px - base body text */
  --font-size-h6: 1.125rem;        /* 18px */
  --font-size-h5: 1.25rem;         /* 20px */
  --font-size-h4: 1.5rem;          /* 24px */
  --font-size-h3: 1.55rem;        /* 30px */
  --font-size-h2: 2.25rem;         /* 36px */
  --font-size-h1: 3rem;            /* 48px */
}

@media (max-width: 768px) {
  :root {
    --font-size-small: 0.7rem;    /* ~9.8px (30% smaller) */
    --font-size-p: 0.8rem;           /* ~11.2px (30% smaller) */
    --font-size-h6: 0.7875rem;       /* ~12.6px (30% smaller) */
    --font-size-h5: 0.875rem;        /* ~14px (30% smaller) */
    --font-size-h4: 1.05rem;         /* ~16.8px (30% smaller) */
    --font-size-h3: 1.085rem;        /* ~17.4px (30% smaller) */
    --font-size-h2: 1.5rem;        /* ~25.2px (30% smaller) */
    --font-size-h1: 2.1rem;          /* ~33.6px (30% smaller) */
  }
}

/* Global Typography Styles */
html {
  font-size: 15px; /* Root font size - 1rem equals 16px */
}

body {
  font-size: 1rem; /* Inherit from html */
  font-family: 'Neue Haas Display Light', sans-serif;
}

p {
  font-size: var(--font-size-p);
}

h1 {
  font-size: var(--font-size-h1) !important;
}

h2 {
  font-size: var(--font-size-h2) !important;
}

h3 {
  font-size: var(--font-size-h3) !important;
}

h4 {
  font-size: var(--font-size-h4) !important;
}

h5 {
  font-size: var(--font-size-h5) !important;
}

h6 {
  font-size: var(--font-size-h6) !important;
}

small {
  font-size: var(--font-size-small);
}

/* Utility Classes */
.color-white {
  color: #fff !important;
}

@font-face {
  font-family: 'Neue Haas Display Light';
  src: url('{{ "/cdn/shop/files/NeueHaasDisplayLight.ttf?v=1751618151" | asset_url }}') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display Medium';
  src: url('{{ "/cdn/shop/files/NeueHaasDisplayMediu_d8853d14-387b-4bea-a98a-28e8221f23e4.ttf?v=1751619700" | asset_url }}') format('truetype');
  font-weight: 400; 
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'Neue Haas Display Bold';
  src: url('{{ "/cdn/shop/files/NeueHaasDisplayBold_d33f50cb-4782-4e3a-9e66-f3a172c1e8e7.ttf?v=1751557634" | asset_url }}') format('truetype');
  font-weight: 600; 
  font-style: normal;
  font-display: swap; 
}

@font-face {
  font-family: 'Neue Haas Display Roman';
  src: url('{{ "/cdn/shop/files/NeueHaasDisplayRoman_5bdd9ff8-5226-44f4-9a42-6271ffe7005e.ttf?v=1751557630" | asset_url }}') format('truetype');
  font-weight: 500; 
  font-style: normal;
  font-display: swap; 
}

p{
  font-family: 'Neue Haas Display Light', sans-serif;
}

h1{
  font-family: 'Neue Haas Display Light', sans-serif;
}

h2{
  font-family: 'Neue Haas Display Light', sans-serif;
  font-weight:100;
}

h3{
  font-family: 'Neue Haas Display Light', sans-serif;
}

h4{
font-family: 'Neue Haas Display Light', sans-serif;
}

a{
    font-family: 'Neue Haas Display Roman', sans-serif;
}

/* repeater-drawer.css */

button.drawer-trigger, button.drawer-close{
  font-family: 'Neue Haas Display Roman', sans-serif;
  border: 0px;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: underline;
  color:#000;
  font-size: var(--font-size-h6);
  cursor:pointer;
}

button.drawer-close{
  width: 100%;
    text-align: right;
    padding-bottom: 1rem;
}

.drawer-text{
  padding:1rem 0 4rem;
}

.repeater-item img {
  width: 100%;
  display: block;
}

.repeater-text{
  padding:1rem 0;
  color:#000;
}

.repeater-text p{
  line-height:1.25;
}

#accordion-health-benefits a{
  color:#000;
}

#accordion-health-benefits a:hover{
  color:#aaa;
}

.section-headline{
  padding:2rem 1rem;
}

.drawer {
  position: fixed;
  top: 0;
  left: -450px; /* hidden by default */
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: all 0.3s linear;
  z-index: 1001; /* above overlay */
  overflow-y: auto;
  padding: 2rem;
}

.drawer.open {
  left: 0;
  visibility: visible;
}

.drawer-close {
  margin-bottom: 1rem;
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000; /* below drawer */
  pointer-events: none;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
  pointer-events: auto;
}

@media (max-width: 350px) {
.footer-cta-inner button {
  margin-top:2rem;
}
}

@media screen and (max-width: 380px) {
    .carousel-card-image {
        height: 220px !important;
    }
}

@media screen and (max-width: 300px) {
    .carousel-card-image {
        height: 180px !important;
    }
}

.blue-white h2 {
    color: #FFF !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .repeater-grid-two {
    grid-template-columns: repeat(2, 1fr) !important;
  }
.how-to-take-card-title h2 {
    font-size: var(--font-size-h5) !important;
}
  .drawer {
    width: 100%;
    right: -100%;
  }
  .footer-cta-container h1{
    font-size: var(--font-size-h1) !important;
  }

  .drawer.open {
    right: 0;
  }
  .white-black .body-two-column {
    padding: 1rem 2rem 2rem !important;
}
.two-column-right.white-black, .two-column-right.blue-white {
    height: unset !important;
}
.footer__content-top {
  padding-bottom:3rem !important;

}
.footer-block--newsletter {
    margin-top: 3rem !important;
}
.two-column-right{
  order: 1;
}
.two-column-left{
  order: 2;
}
}

.two-column-right{
  order: 2;
}
.two-column-left{
  order: 1;
}

.title--primary{
  padding-top:4rem;
}

#repeater-drawer-template--26544462496091__ingredient_list_grid_tR8GyA{
  padding-top:8rem;
}

.repeater-drawer-section{
  padding:4rem 2rem 2rem;
}


.product-bullets{
  padding-top:1rem;
  color:#000;
}


/* Our Story */
.rich-text-content{
  padding:4rem;
  max-width: 800px;
}
.rich-text-content h1{
  color:#000;
  padding-bottom:2rem;
}
.rich-text-content p{
  color:#000;
  padding-bottom:1rem;
}

#two-col-rounded-template--26524138766683__2_col_image_above_yPnmb9 .two-col-rounded-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 8rem;
}

#two-col-rounded-template--26524138766683__2_col_image_above_yPnmb9 .two-col-rounded-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 4rem;
}

#two-col-rounded-template--26524138766683__2_col_image_above_yPnmb9 .rounded-section-wrapper {
    padding: 4rem 6rem;
}

#two-col-rounded-template--26524138766683__2_col_image_above_yPnmb9 .column-content{
  padding-top:2rem;
}

.two-col-rounded-column {
  display: flex;
  flex-direction: column;
}

.column-image {
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.column-content p {
  margin: 0 0 3rem;
}

.column-button {
  background-color: #000;
  padding: 1rem 2rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 0.5px solid #000;
  transition: all 0.5s linear;
  font-weight: 100;
  font-size: var(--font-size-h6);
  border-radius: 25px;
  margin-top: 4rem;
  line-height: 1;
}
.column-content a{
  text-decoration:none;
}

.column-button:hover {
  background-color: transparent;
  border: 0.5px solid #000;
  color:#000;
}

@media (max-width: 768px) {
  .two-col-rounded-grid {
    grid-template-columns: 1fr;
  }
}



.quote-display h4{
  font-size: var(--font-size-h2);
}

.quote-display h1{
  padding-bottom:1.5rem;
}

.white-black .body-two-column{
  padding:8rem 4rem 4rem;
}

/* Collection Grid */
.collection-grid{
  display: grid;
    margin: 0 auto;
    padding: 4rem 4rem 12rem;
}

.collection-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10rem;
  max-width: 1200px;
}

.collection-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2rem;
  max-width: 1400px;
}


.collection-feature-section{
  padding-top:8rem;
}
.left-side-feature-collection {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    border-top: 0.5px solid #000;
    border-right: 0.5px solid #000;
    border-left: 0.5px solid #000;
    height: 420px;
}



/* Slider Gallery */
.header-grid{
  grid-template-columns:1fr 1fr;
  display:grid;
}
.custom-slider-section {
  position: relative;
  padding: 2rem;
}

.slider-section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.slider-arrows {
  text-align: right;
  margin-bottom: 1rem 0;
}

.carousel-wrapper .header-right{
  text-align:right;
}

.carousel-wrapper .header-grid{
  padding-bottom:2rem;
}

.slider-arrows button {
  border:0.5px solid #262626;
  color: #262626;
  background-color:#fff;
  padding: 0.5rem 2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 25px;
  font-size: var(--font-size-h3);
  font-weight:100;
  transition: background 0.3s ease;
}

.slider-arrows button:hover {
  background: #f8f8f8;
  color:#000;
}


.slider-track-wrapper {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease-in-out;
}

.slider-card {
  flex: 0 0 calc(100% / 3.5);
  background: #fff;
  overflow: hidden;
  text-align: center;
}

.slider-card img {
  width: 100%;
  height: 400px;           
  object-fit: cover;     
  object-position: center center; 
  display: block;
}

.slider-card-text {
  padding-top: 1.5rem;
  font-size: var(--font-size-p);
  text-align:left;
}

.slider-card-text h2{
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .carousel-card-image {
    height: 250px;
}
.carousel-card-title h1 {
    font-size: var(--font-size-h2);
}
.rich-text-content {
    padding: 2rem;
}
.multicolumn .page-width {
    padding: 0px !important;
}
.main-blog.page-width {
    padding: 2rem !important;
}
.footer-cta-display, .footer-cta-grid {
    padding: 6rem 4rem 2rem !important;
}
.main-blog h1.title--primary{
  margin: 8rem 0 2rem !important;
}
.shopify-policy__title {
    padding-top: 2rem;
}
ul.multicolumn-list .grid{
  row-gap: 2rem !important;
}
  .slider-card {
    flex: 0 0 calc(100% / 1.5);
  }
  .footer-cta-container{
    grid-template-columns:1fr !important;
  }
  .left-side-feature {
    height:350px !important;
  }
  .right-side-feature {
    min-height:350px !important;
  }
  .product-submit-button-container {
    padding: 1rem !important;
}
  .rounded-section-wrapper {
    padding: 2rem 1rem 0 !important;
}
.recent-articles-carousel {
    padding: 2rem !important;
}
.footer-cta-input-wrapper {
    width: 100%;
    max-width: 100%;
}
.footer-cta-input-wrapper input {
    min-width: auto;
    padding: 1rem;
    font-size: var(--font-size-p);
}
.footer-cta-input-wrapper button {
    padding: 1rem;
}
.footer-cta-grid {
        display: block !important;
        padding: 2rem 4rem !important;
}
.two-column-square-wrapper{
  height:unset !important;
}
.two-column-left{
  height:400px !important;
}
}

.price {
    font-size: var(--font-size-h3) !important;
}

.product-blurb-two {
    line-height: 1.25;
    color: #262626;
}

/* Hover Gallery */
.left-side-feature {
  position: relative;
  overflow: hidden;
}

.feature-image-link {
  display: block;
  position: relative;
}

.featured-image,
.hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.3s ease-in-out;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* hidden by default */
  z-index: 2;
}

.feature-image-link:hover .hover-image {
  opacity: 1; /* show on hover */
}

.two-col-rounded-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.two-col-rounded-grid.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}


.repeater-content h2{
  padding-bottom:2rem;
  color:#000;
}

.repeater-content p{
  color:#000;
}

.custom-repeater-section {
  padding: 0 4rem;
}

h1.section-title {
  padding-top:2rem;
}

.repeater-grid-two {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  padding-top:2rem;
}

/* === SECTION WRAPPER === */
.recent-articles-how-to-take {
  padding: 2rem 2rem 6rem;
}

/* === DESKTOP GRID === */
.how-to-take-grid.desktop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top:2rem;
}

.how-to-take-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Square images container */
.how-to-take-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;  
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:25px;
  border:0.5px solid #000;
}

.how-to-take-card-title{
  padding:2rem 3rem 0 0;
}

.how-to-take-card-title h2{
  font-size: var(--font-size-h4);
}

.how-to-take-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
  object-position: center;  
}


/* === MOBILE SLIDER === */
.how-to-take-slider.mobile-show {
  display: flex;
  overflow-x: scroll;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  width: 100%;
}

.how-to-take-card-slide {
  flex: 0 0 80%;
  min-width: 80%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-to-take-card-slide:first-child {
  margin-left: 1rem;
}

.how-to-take-card-slide:last-child {
  margin-right: 1rem;
}

/* Square images inside slider */
.how-to-take-card-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}


/* === HIDE MOBILE ON DESKTOP & DESKTOP ON MOBILE === */
@media (min-width: 769px) {
  .how-to-take-slider.mobile-show {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-to-take-grid.desktop-grid {
    display: none;
  }
  .header-wrapper {
    background: #FFFFFF !important;
  }
  .left-header h1{
    white-space: unset !important;
  }

  .header__menu-item span {
    color: black !important;
  }

  .header__heading-logo {
    filter: none !important;
  }

  .header__icon svg path {
    fill: black !important;
  }
}


.sealsubs-container .sls-option-container {
    border: 0.5px solid #000;
}
.footer-cta-hover-section {
    background: #2b4176;
    font-family: 'Neue Haas Display Light', sans-serif;
    padding: 3rem 0;
}

.footer-cta-container {
  display:grid;
  grid-template-columns:1fr 1fr;
  color: #fff;
  padding: 3rem 0;
}

.footer-cta-container input {
  color: #000;
}

.repeater-item.orange-bg {
  background-color: #db6e2d;
  padding: 2rem 3rem 3rem;
  border-radius: 25px;
}

.repeater-item.green-bg {
  background-color: #41ab44;
  padding: 2rem 3rem 3rem;
  border-radius: 25px;
}


.cta-richtext{
  padding-bottom:4rem;
}

.footer-cta-display,
.footer-cta-grid {
  width: 100%;
  display: flex;    
  justify-content: center;
  align-items: center;
  padding: 2rem 4rem;                 
}

.footer-cta-container h1, .footer-cta-container h2, .footer-cta-container h3{
  color:#fff;
}

.footer-cta-container h1,
.footer-cta-headline {
  font-size: var(--font-size-h1);
  font-weight:100;
}

.footer-cta-container h2{
  padding:2rem 0;
}

.footer-cta-inner{
  width:100%;
}

.footer-cta-inner h3{
  font-size: var(--font-size-h1);
  padding-bottom:2rem;
}

.footer-cta-input-wrapper {
  display: flex;
  align-items: stretch;
  border: 0.5px solid #fff;
  background-color: transparent;
  max-width: 500px;
}

.footer-cta-input-wrapper input{
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.5rem;
  font-size: var(--font-size-h5);
  color: #fff;
  outline: none;
  font-family: inherit;
}

.footer-cta-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta-input-wrapper button{
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta-input-wrapper button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === CUSTOM FOOTER LAYOUT === */
.footer-custom-2025 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-newsletter-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-newsletter-col h3 {
  font-size: var(--font-size-h5);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
  padding-left: 0;
  margin-left: 0;
}

#FooterNewsletter {
  width: 100%;
  max-width: 600px;
}

.footer-newsletter-input-wrapper {
  display: flex !important;
  align-items: stretch;
  border: 1px solid #fff;
  background-color: transparent;
  max-width: 600px !important;
  width: 100% !important;
  margin-left: 0;
  padding-left: 0;
}

.footer-newsletter-input-wrapper input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: none !important;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-h5);
  color: #fff;
  outline: none;
  font-family: inherit;
  -webkit-text-fill-color: #fff;
}

.footer-newsletter-input-wrapper input:focus-visible {
  box-shadow: none;
}

.footer-newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.footer-newsletter-input-wrapper button {
  flex: 0 0 auto;
  border: none;
  border-left: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-newsletter-input-wrapper button svg {
  stroke: #fff;
}

.footer-newsletter-input-wrapper button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-links-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-nav-custom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer-nav-custom a {
  color: #fff;
  text-decoration: none;
  font-size: var(--font-size-h5);
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  letter-spacing: 0.05em;
}

.footer-nav-custom a:hover {
  opacity: 0.6;
}

.footer-social-custom {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  margin-left: 0;
  padding-left: 0;
  align-self: flex-start;
}

.footer-social-custom svg,
.footer-social-custom svg path {
  fill: #fff !important;
  color: #fff !important;
}

.footer-logo-custom {
  max-width: 300px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-top: 2rem;
  margin-left: 0;
  padding-left: 0;
}

.footer-links-mobile {
  display: none;
}

.footer-links-desktop {
  display: flex;
}

@media (max-width: 768px) {
  .footer-custom-2025 {
    padding: 1rem 2rem 2rem;
  }

  .footer-row-1 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links-mobile {
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom: 1px solid #fff;
  }

  .footer-links-mobile .footer-nav-custom a {
    font-size: var(--font-size-h5);
  }

  .footer-links-desktop {
    display: none;
  }

  .footer-links-col {
    justify-content: flex-start;
  }

  .footer-nav-custom {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-logo-custom {
    max-width: 200px;
  }

  /* Footer bottom section on mobile */
  .footer__content-bottom-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    max-width: 100% !important;
  }

  .footer__column.footer__localization {
    width: 100%;
    align-items: flex-start !important;
  }

  .footer__localization .localization-form {
    display: block;
    width: 100%;
  }

  .footer__localization .localization-form > div {
    width: 100%;
  }

  .footer__localization .disclosure {
    width: 100% !important;
  }

  .footer__localization .disclosure__button {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .footer__copyright {
    text-align: left !important;
    width: 100%;
  }
}

/* Hide legal policy links on all devices */
.footer__copyright .policies {
  display: none !important;
}

/* === FOOTER 2025 === */
.footer-2025 {
  background-color: #fff;
  border-top: 0.5px solid #000;
  padding: 4rem 0 2rem;
}

.footer-2025-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.footer-2025-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-newsletter-2025 h3 {
  font-size: var(--font-size-h5);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #000;
}

.footer-links-2025 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links-2025 a {
  color: #000;
  text-decoration: none;
  font-size: var(--font-size-p);
  transition: opacity 0.3s ease;
}

.footer-links-2025 a:hover {
  opacity: 0.6;
}

.footer-social-2025 {
  display: flex;
  gap: 1rem;
}

.footer-2025-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-logo-2025 {
  max-width: 150px;
  height: auto;
}

.footer-2025-bottom {
  border-top: 0.5px solid #000;
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-2025-bottom .footer-2025-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr;
}

.footer-2025-bottom p {
  margin: 0;
  font-size: var(--font-size-small);
  color: #666;
}

.footer-policies {
  display: flex;
  gap: 1rem;
}

.footer-policies a {
  color: #666;
  text-decoration: none;
  font-size: var(--font-size-small);
}

.footer-policies a:hover {
  color: #000;
}

@media (max-width: 768px) {
  .footer-2025-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-2025-right {
    justify-content: flex-start;
  }

  .footer-logo-2025 {
    max-width: 120px;
  }

  .footer-newsletter-col {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  #FooterNewsletter {
    width: 100%;
    max-width: 100%;
  }

  .footer-newsletter-input-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .footer-newsletter-input-wrapper input {
    font-size: var(--font-size-p);
    padding: 0.5rem 0.75rem;
    min-width: 0;
  }

  .footer-newsletter-input-wrapper button {
    padding: 0.5rem 0.75rem;
    flex-shrink: 0;
    min-width: 44px;
  }

  .footer-2025-bottom .footer-2025-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}


/* === GRID LAYOUT === */
.product-container-grid {
  display: flex;
  flex-wrap: nowrap; 
}

#product-gallery-{{ product.id }} { 
  flex: 1 1 60%;
  max-height: 100vh;     
  overflow-y: auto;       
  scroll-behavior: smooth;
}

.product-media-item {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-media-item img,
.product-media-item video,
.product-media-item model-viewer {
  width: 100%;      
  height: 100%;      
  object-fit: cover; 
  object-position: center center;
}

#product-gallery-{{ product.id }} {
  scroll-snap-type: y mandatory;
}

.product-media-item {
  scroll-snap-align: start;
}

#sticky-product-info { 
  flex: 0 0 40%;
  position: sticky;
  top: 2rem;            
  align-self: flex-start;
}

/* === ACCORDION === */
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-family: 'Neue Haas Display Roman', sans-serif;
  font-weight:400;
  color:#000;
  background-color:#fff;
  line-height:1.65;
}

.accordion-content {
  padding: 1rem;
  background-color:#f8f8f8;
  font-family: 'Neue Haas Display Light', sans-serif;
  font-weight:100;
  border-top: 0.5px solid #aaa;
}

.accordion-content p{
  font-family: 'Neue Haas Display Light', sans-serif;
  font-weight:100;
  color:#000;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  #sticky-product-info {
    position: relative;
    top: auto;
  }

  #product-gallery-{{ product.id }} {
    max-height: auto;
    overflow-y: visible;
  }
  .product-container-left {
        min-height: 300px;
    }
}

.contact__button button{
  border-radius: 25px;
}

.contact__button button::after{
  border-radius: 25px;
}



.mobile-gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: 0rem 0 1rem 0rem;
  list-style: none;
  margin: 0;
}

.mobile-slider-slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  position: relative;
}

.mobile-slider-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-width {
        padding: 0 4rem !important;
    }

/* article carosel */
.recent-articles-carousel {
  position: relative;
  padding: 4rem 2rem 8rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.5s ease;
}

.carousel-card {
  flex: 0 0 calc(100% / 2.5);
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  border:0.5px solid #000;
  height:100%;
}

.carousel-card-image{
  height:350px;
  overflow:hidden;
}

.carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-card-title {
  padding: 2rem;
  text-align:left;
  border-top:0.5px solid #000;
}

h2.collection-section-title{
  padding:0 4rem;
}

.carousel-card-title h1{
  font-size: var(--font-size-h1);;
}

.carousel-card-title a {
  text-decoration: none;
  color: #000;
}

.carousel-card-title a:hover {
  text-decoration: underline;
}

.carousel-arrow {
  border:0.5px solid #262626;
  color: #262626;
  background-color:#fff;
  padding: 0.5rem 2rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 25px;
  font-size: var(--font-size-h3);
  font-weight:100;
  transition: background 0.3s ease;
}

.carousel-arrow.prev {
  left: 1rem;
}

.carousel-arrow.next {
  right: 1rem;
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(100% / 1.5);
  }
}

/* blog post */
 .article-2col-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr; 
  height: 90vh;
}

/* LEFT COLUMN */
.article-left {
  position: relative;
  overflow: hidden;
}

.article-left .article-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.article-left .article-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 5;
}

.article-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.article-title-overlay {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  color: #FFF;
  font-size: var(--font-size-h1);
  line-height: 1.2;
  z-index: 10;
  font-family: 'Neue Haas Display Roman', sans-serif;
}

.body-two-column h1, .body-two-column h3, .body-two-column p{
  color:#fff;
  padding-bottom:1rem;
}

.body-two-column p{
  line-height:1.5;
}

/* RIGHT COLUMN */
.article-right {
  overflow-y: auto;
  padding:9rem 2rem 2rem;
  max-height: 90vh;
}

.article-right p, .article-right h2{
  color:#000;
  font-family: 'Neue Haas Display Roman', sans-serif;
}

.article-content-wrapper {
  max-width: 700px; 
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .article-2col-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .article-left {
    height: 50vh;
  }

  .article-right {
    max-height: none;
  }

  .article-title-overlay {
    font-size: var(--font-size-h5);
    bottom: 1rem;
    left: 1rem;
  }
}

.accordion-container h2{
  font-family: Neue Haas Display Roman, sans-serif;
  color:#000;
}

.accordion-container p{
  font-family: Neue Haas Display Roman, sans-serif;
  color:#000;
}

.accordion-content {
  padding-bottom: 2rem;
}

.product-description p{
  color:#000;
}

.sls-option-container:first-child {
  border-top-left-radius: 25px !important;
  border-top-right-radius: 25px !important;
}

#seal-purchase-options-label{
  display:none;
}

.seal-col.seal-col-radio {
    display: none;
}

[data-product] .sls-purchase-options-container{
  border:0px !important;
}

.sls-active{
  background-color:#9ebfd6 !important;
  color:#fff !important;
}

/* Last item */
.sls-select, .sealsubs-container .sls-select-container select.sls-select {
    border-radius: 0 !important;
    border-width: 0.5px !important;
}

.sls-selling-plan-group-first-line{
  display:block !important;
}
.selling-plan-group-options-name-select {
    padding-right: 1rem !important;
}

.sls-savings-badge {
    border:0.5px solid #000;
    transform:none !important;
    border-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    font-size: var(--font-size-p) !important;
    background-color:#f2ca4f !important;
}
.sls-savings-badge::before{
  display:none !important;
}
.sls-total-price {
    line-height: 1;
}
.sls-active .sls-selling-plan-group-options {
    display: block;
}

.sls-price{
  font-size: var(--font-size-h5);
  color:#000;
}
.sls-more-info-container .sls-sub-icon{
  display:none !important;
}
.sealsubs-container .sls-option-container .sls-select-container{
  width:100%;
}

.sls-more-info-text{
  padding-bottom:0px !important;
  font-family: 'Neue Haas Display Roman', sans-serif;
  font-weight:400 !important;
}
.sls-more-info-container{
  border-bottom:0.5px solid #000;
}

.sls-active .sls-price {
    color: #fff !important;
}

label.sls-selling-plan-group-name{
  font-family: 'Neue Haas Display Roman', sans-serif;
  font-weight:400 !important;
  text-transform:uppercase;
  font-size: var(--font-size-h6);
}
.sealsubs-container .sls-option-container.sls-active label{
 font-family: 'Neue Haas Display Roman', sans-serif;
  font-weight:400 !important;
  text-transform:uppercase;
  font-size: var(--font-size-h6);
  color:#fff;
}
.sealsubs-container .sls-purchase-options-container .sls-option-container.sls-active, .sealsubs-container .sls-option-container.sls-active{
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0) !important;
  border-top:0.5px solid #000;
  border-bottom:0.5px solid #000;
  border-left:0px solid #000;
  border-right:0px solid #000;
  color:#fff;
}

.sls-discount-description-container{
  color:#aaa !important;
}

.sealsubs-container label{
  font-family: Neue Haas Display Roman, sans-serif;
  font-weight:400 !important;
}

.sealsubs-container {
  font-family: Neue Haas Display Roman, sans-serif;
}

.list-menu__item{
  font-family: Neue Haas Display Light, sans-serif;
  font-weight:100;
}

/* Faux Google Reviews Slider */
.review h5{
  padding-top:1rem;
  font-family: 'Neue Haas Display Roman', sans-serif;
  color:#f8f8f8;
}
.review p{
  font-family: 'Neue Haas Display Roman', sans-serif;
  color:#f8f8f8;
  margin-top: 2rem;
  font-size: var(--font-size-small);
}
.faux-reviews-container {
  overflow-x: auto; 
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; 
  display: flex;
  gap: 1rem;
  padding: 1rem 0 0rem 2rem;
  margin-left: 1rem;
}

.faux-reviews-section{
  background-color:#262626;
}

.faux-reviews-slider {
  display: flex;
  gap: 1rem;
}

.review-individual-container {
  flex: 0 0 calc(100% / 3.5); 
  padding: 2rem;
  scroll-snap-align: start; 
}

.review-stars {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.2rem;
}

.review-stars .star {
  color: #f8f8f8;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

/* 4 default stars stay solid */
.review-stars .star.solid {
  opacity: 1;
}

/* outline for 5th star */
.review-stars .star.outline {
  opacity: 0.4; /* lighter to show “border-only” effect */
}

.custom-repeater-section {
  padding: 2rem 0;
}

.repeater-section-title {
  margin-bottom: 2rem;
}

.footer-block--menu{
  padding:0 4rem;
}

.footer-block .link--text{
  color: #fff;
    text-transform: uppercase;
    font-size: var(--font-size-h3) !important;
}

.repeater-grid-logo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
}

#faq-section-template--26546134483291__faq_repeater_8Q34e6{
  padding-top:8rem;
  padding-bottom: 60vh;
}

.footer__content-top {
    padding-bottom: 10rem;
}

#shopify-section-template--26226613551451__form{
  padding-bottom: 60vh;
    padding-top: 8rem;
}

.main-blog{
  padding-bottom:60vh !important;
}
.card__information{
  text-align: left;
  max-width: 82rem;
    margin: 0 auto 2rem;
}
.repeater-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding-bottom:4rem;
}

.repeater-card img {
  width: 100%;
  height: auto;
  display: block;
}

.repeater-card-text {
  margin-top: 0.5rem;
}

/* Slider styles for mobile */
@media (max-width: 768px) {
  .repeater-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
  }

  .repeater-card {
    flex: 0 0 66.66%; /* 1.5 cards visible */
    scroll-snap-align: start;
  }
  .collection-grid.two-col {
    grid-template-columns: 1fr;
  }
  .left-side-feature-collection{
    height:320px;
  }
  #two-col-rounded-template--26524138766683__2_col_image_above_yPnmb9 .column-content {
    padding-bottom: 4rem;
}
}

.custom-repeater-section{
  padding:0 2rem;
}

.shopify-policy__container {
    max-width: 85ch !important;
    padding-top: 8rem;
    padding-bottom: 60vh;
}

.shopify-policy__title{
  padding-bottom:2rem;
}

@media (max-width: 768px) {
  .review-individual-container {
    flex: 0 0 60%; 
  }
.product-container-right {
    padding-top: 0!important;
}
.recent-articles-how-to-take {
    padding: 0 0 2rem 1rem !important;
}
.custom-slider-section {
    padding: 1rem 0 0 1rem !important;
}
}

/* Marque */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding:2rem 0;
}

.marquee-inner {
  display: inline-block;
}

.marquee-track {
  display: flex;
  align-items: center;
}

.marquee-content {
  display: inline-block;
  padding-right: 2rem; 
}

.faq-container {
    margin: 0 auto;
    padding: 2rem 2rem 0;
  }

  .faq-container h1, .faq-container h2, .faq-container p{
    color:#000;
    margin-left: 0;
  }

  .faq-container h1, .faq-container h2{
    margin-bottom: 1.5rem;
  }

  .faq-item {
    border-bottom: 0.5px solid #000;
    padding: 1rem 0 2rem;
    cursor: pointer;
  }

  .faq-question {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .faq-toggle {
    font-weight: 100;
    font-size: var(--font-size-h1);
    transition: transform 0.3s ease;
    color:#000;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(0deg);
  }

  .faq-answer {
    padding-top: 0.5rem;
    max-width:900px;
  }


/* Product 2025 */
.product-container{
  border-bottom:2px solid #000;
}
.product-submit-button-container button.feature-product-dark {
  width:100%;
}

.product-price h2{
  font-size: var(--font-size-h3);
}

.grid-product-info-right {
  display: block;
  grid-template-columns: 1fr 1.25fr;
}

.gallery-thumb.active {
    border:1px solid #fff; 
  }

/* Make left column scrollable */
.grid-product-left {
  overflow-y: auto; 
  height: 55vh; 
  border-left: 0.5px solid #000;
  background-color:#f8f8f8;
}

.grid-product-left::-webkit-scrollbar {
  width: 6px;
}

.grid-product-left::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 3px;
}

.grid-product-left::-webkit-scrollbar-track {
  background: transparent;
}


.product-container-left{
  border-right:0.5px solid #000;
}

.product-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* LEFT MEDIA */
.product-container-left {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.product-media-gallery {
  position: absolute;
  display: flex;
  gap: 1rem;
  bottom:2rem;
  left:2rem;
}

.product-media-gallery img,
.product-media-gallery video {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border:0.5px solid #000;
}

/* RIGHT INFO */
.product-container-right {
  padding-top:6.5rem;
}

.product-title{
  border-bottom: 0.5px solid #000;
  padding: 0 2rem 2rem;
}

.selling-plan-group-options-name-select{
  margin-top:0 !important;
}

.product-submit-button-container{
  padding:2rem;
}
.sls-more-info-popup{
  border-radius:0px !important;
}
.sls-more-info-popup-content{
  font-family: 'Neue Haas Display Roman', sans-serif;
    font-weight: 100 !important;
    font-size: var(--font-size-p) !important;
}
.sls-more-info-popup-content strong{
  text-transform: uppercase;
}
.product-price {
  font-size: var(--font-size-p);
  color: #000;
  padding: 2rem 1rem;
}

.product-form input[type="number"] {
  width: 80px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-container-grid {
    grid-template-columns: 1fr;
  }
  .product-container-left {
    min-height: 400px;
  }
  .product-media-gallery {
    bottom: 1rem !important;
    left: 1rem !important;
  }
}


/* Navigation overlay */

.header .header__menu-item span{
  color: black !important;
  transition: all 0.3s ease;
}

.header .header__icon svg path {
  fill: black !important;
  transition: all 0.3s ease;
}

.header__heading-logo {
  filter: none;
  transition: all 0.3s ease;
}

.header .disclosure__button,
.header .localization-form__select {
  color: black !important;
}

.header .disclosure__button svg path {
  fill: black !important;
}

/* Ensure footer is on top */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50; /* above everything else */
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto; /* allows clicks */
}

/* Optional: smooth scroll effect for last section (DISABLED) */
/* .last-section {
  position: relative;
  z-index: 1;
} */

.feature-product-dark-wrapper-dbl-drk{
  background-color: #262626;
}

.feature-product-dark-wrapper-dbl-drk h1{
  color:#fff !important;
}

/* Container */
.quote-container{
  display:grid;
  grid-template-columns :2fr 1fr;
}
.quote-hover-section {
  background: #262626;
  font-family: 'Neue Haas Display Light', sans-serif;
  height:120vh;
}

/* Quote display area */
.quote-display {
  margin: 4rem;
    padding: 4rem 6rem;
    background: #f8f8f8;
    color: #262626;
    border-radius: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.quote-display .quote-text {

}

/* Repeater grid */
.quote-grid {

}

/* Hover items */
.quote-name-hover-container {
  border:0.5px solid #f8f8f8;
  color:#f8f8f8;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 50px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-size: var(--font-size-h3);
    font-weight: 100;
    text-align: center;
}

.quote-grid{
  padding: 4rem 4rem 4rem 0;
}

.quote-name-hover-container:hover,
.quote-name-hover-container.active {
  background: #f8f8f8;
  color: #262626;
  border:0.5px solid #262626;
}



.header-wrapper .page-width{
  max-width:100vw;
}

.header-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
  background: #FFFFFF;
  padding: 1rem 0;
}

.header-wrapper.scrolled {
  background: #FFFFFF;
}

nav a{
  font-family: 'Neue Haas Display Light', sans-serif;
  text-transform:uppercase;
}

/*    Header Banner Video     */

.header-banner-video {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.header-banner-video .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.header-banner-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.header-banner-video .banner-content-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

.header-banner-video .banner-content-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 850px;
  margin: 0;
  text-align: left;
  padding: 0 6rem;
  box-sizing: border-box;
}

.banner--mobile-bottom .banner__box {
    max-width: 700px;
}

/* .footer {
  transform: translateY(100%);
  transition: transform 0.6s ease;
  will-change: transform;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  visibility: hidden;
  height:105vh;
} */

/* Normal footer - no positioning tricks */
.footer {
  position: static;
  width: 100%;
  visibility: visible;
  transform: none;
  transition: none;
}

.mobile-margin{
    margin-bottom:0;
  }

.desktop-show { display: block; }
.mobile-show { display: none; }

@media screen and (max-width: 768px) {
  .desktop-show { display: none; }
  .mobile-show { display: block; }



  .quote-container{
    padding:2rem;
  }
  .quote-display {
    margin: 0 !important;
  }
  .quote-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem; /* spacing between slides */
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    scroll-snap-type: x mandatory;
    margin-left:1rem;
  }

  .mobile-media-wrapper {
  position: relative; /* allows overlay positioning */
  width: 100%;
  height: auto; /* or set a fixed height if you want */
}

.mobile-media {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps the image/video filling the container */
  display: block;
}

.mobile-overlay-text {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10; /* ensures it’s on top of the media */
  max-width: 90%; /* optional, to prevent overflowing on small screens */
  pointer-events: none; /* optional, allows clicks to pass through if needed */
}

.mobile-overlay-text .body-two-column {
  pointer-events: auto; /* allow interacting with buttons inside */
}

.mobile-overlay-text .bottom-button a{
  background-color:#262626;
  color:#fff;
}

  .mobile-margin{
    margin-bottom:4rem;
  }

  .header-banner-video-short {
    height: 100vh !important;
}

.right-side-content-grid {
    grid-template-columns: 1fr 1fr !important;
}
.right-block {
    height: 130px !important;
}

  .quote-display {
    padding: 2rem !important;
    min-height: 400px;
}
.quote-display .quote-text {
    font-size: var(--font-size-h1);
}
  .quote-display-slide {
    flex: 0 0 85%; 
    scroll-snap-align: start;
  }

.header-banner-video .banner-content-left{
  padding:1rem 2rem;
}
h1.banner-headline {
    font-size: var(--font-size-h1) !important;
}

.quote-name-hover-container{
  text-align:center;
}

.video-wrapper.mobile-show{
  height:100vh;
}

.header-banner-video-short .video-wrapper video {
    height: 100vh !important;
}

.right-block-inner img {
    max-width: 60px !important;
}

@media (max-width: 768px) {
  .right-copy{
   margin-top: 0rem;
   margin-bottom: 2rem;
  }
}

.right-copy{
  padding-left: 0 !important;
  text-align: left !important;
  margin-top: 4rem;
}
.two-col-rounded-grid, .headline-copy-container-button, .headline-copy-container, .feature-product-dark-container{
  display:block !important;
}

.feature-product-dark-container{
  padding:4rem 4rem 6rem !important;
}

.mobile-scroll-gallery-header{
  padding:3rem 2rem 2rem;
}

h1.section-headline{
  padding-left:1rem;
}
.column-content h2 {
    font-size: var(--font-size-h5);
}
.carousel-card-image {
    height: 250px;
}

.two-column-square-section.black-bg h1 {
    font-size: var(--font-size-h1) !important;
}

.feature-product-dark-container{
  padding:0 2rem !important;
}

/* Horizontal scroll container */
.mobile-scroll-gallery-container .item-container {
  display: flex;           /* row flex */
  flex-direction: row;     
  overflow-x: auto;        /* horizontal scroll */
  gap: 1rem;
  margin-left: 1rem;      /* some spacing at start */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth on iOS */
}

/* Each image block */
.mobile-scroll-gallery-container .image-text-container {
  flex: 0 0 80%;       /* 1.5 blocks visible */
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}

/* Image inside block */
.mobile-scroll-gallery-container .image-text-container img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Right-side content over the image */
.mobile-scroll-gallery-container .right-side {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  z-index: 1;
  padding: 1rem;
}

/* Hide scrollbars */
.mobile-scroll-gallery-container .item-container::-webkit-scrollbar {
  display: none;
}
.mobile-scroll-gallery-container .item-container {
  -ms-overflow-style: none;  /* IE 10+ */
  scrollbar-width: none;     /* Firefox */
}

.two-column-square-section.black-bg{
  padding: 0 0 8rem !important;
}

.two-col-rounded-grid {
    padding: 2rem 1rem !important;
}
.custom-repeater-section {
    padding: 0 1rem !important;
}
.rounded-section-wrapper-single {
    padding: 4rem 1rem !important;
}

.two-col-rounded-left{
  margin-bottom:4rem;
}

.headline-copy-container-button {
    padding: 0 2rem 2rem !important;
}

.two-column-left{
  bottom:0 !important;
}



}


.video-wrapper video{
    width:100% !important;
    height:auto;
}

h1.banner-headline{
 font-size: var(--font-size-h1);
 text-align:left;
 color:white;
 line-height:1.2;
 margin-bottom:0!important;
}

h1.banner-headline .headline-line {
 display: block;
}



.footer-block__newsletter h2{
  font-family: Neue Haas Display Light, sans-serif !important;
    font-size: var(--font-size-h3) !important;
    line-height: 1.25 !important;
    font-weight:100 !important;
}

.footer-block__image-wrapper {
    max-width: 1500px !important;
}

.field__label{
  font-family: Neue Haas Display Light, sans-serif !important;
    text-transform:uppercase;
    font-weight:100 !important;
}

.banner-body{
    color:white;
    padding:2rem 0 4rem;
    max-width:600px;
}

.banner-body p {
    font-family: Neue Haas Display Light, sans-serif;
    font-size: var(--font-size-h5);
    line-height: 1.25;
    font-weight:100;
}

a.banner-button{
    padding: 1rem 0;
    width: 250px;
    text-align: center;
    color: #262626 !important;
    border: .5px solid #fff;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    background-color: white; 
    transition: all .5s linear;
    font-weight: 100;
    font-size: --font-size-small;
    border-radius: 25px;
}

a:hover.banner-button{
    color:#fff !important;
    border:1px solid #fff;
    background-color:transparent;
    text-decoration: none !important;
}

/*    Feature Blend      */

.feature-blend-section {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
}

.feature-blend-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;      
  background-position: center; 
  background-repeat: no-repeat;
  z-index: 1;                  
}


.feature-blend-content {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch; 
    justify-content: center;
    max-width: 1200px; 
    padding: 8rem 2rem 0;
}

.feature-blend-headline {
    text-align: center;
    margin-bottom: 2rem;
    color:#262626;
}

.feature-blend-columns {
    display: flex;
    justify-content: space-between; /* space between left/right columns */
    width: 100%;
    margin-bottom: 4rem;
}
.feature-blend-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.left-column {
    align-items: flex-start;
}
.right-column {
    align-items: flex-end;
}
.feature-card {
    width: 300px; 
}
.feature-card-headline {
    margin-bottom: 0;
    font-size: var(--font-size-h3);
    color:#aaa;
    font-family: Neue Haas Display Light, sans-serif;
    padding: 1rem 2rem;
    border: 0.5px solid #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#262626;
}

.feature-card-text {
    line-height: 1.5;
    color:#262626;
    padding: 1rem 2rem;
    border: 0.5px solid #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-family: Neue Haas Display Light, sans-serif;
    background-color:#f7f8ff;
}
.feature-blend-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
button.buy-button {
  background-color: #41ab44;
  color: #fff;
  padding: 2rem 0;
  text-decoration: none;
  border-radius: 0;
  width:250px;
  text-align: center;
  white-space: nowrap;
  border-bottom-left-radius: 10px;
  text-transform:uppercase;
  font-weight:100;
  line-height:1;
  transition: all 0.5s linear;
  font-size: var(--font-size-h5);
  font-family: Neue Haas Display Light, sans-serif;
  border: 0.5px solid #262626;
  box-sizing: none;
}
button.buy-button:hover{
  background-color:#db6e2d;
  color:#262626;
}
.subscribe-button {
  background-color: white;
  border:0.5px solid #262626;
  color: #262626;
  padding: 2rem 0;
  text-decoration: none;
  border-radius: 0;
  width:250px;
  text-align: center;
  white-space: nowrap;
  text-transform:uppercase;
  font-weight:100;
  line-height:1;
  transition: all 0.5s linear;
  font-family: Neue Haas Display Light, sans-serif;
  font-size: var(--font-size-h5);
  border-bottom-right-radius: 10px;
}
.subscribe-button:hover {
  background-color: #2b4176;
}
form.feature-add-to-cart-form button{
    background-color:#262626;
    font-family: 'Neue Haas Display Medium', sans-serif;
    text-align:center;
    padding:2rem;
    text-transform:uppercase;
    font-size: var(--font-size-h5);
    width: 100%;
    color: white;
    border: 0px;
    transition: all 0.5s linear;
}

form.feature-add-to-cart-form button:hover{
    background-color:#2b4176;
}
.center-center{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}
.feature-card-text p{
    color:#262626;
}
.feature-blend-content h1{
    font-size: var(--font-size-h1);
    padding: 4rem 0 3rem;
    margin:0;
    font-weight:600;
}

#ultimateTrustBadgeswidgetDiv{
    display:none;
}

.feature-subscription-popup{
    position:absolute; width:400px; padding:0; background:#262626; color:#000; z-index:1000;
    bottom: 0;
    left: 20%;
    color:#fff;
    font-family: 'Neue Haas Display Medium', sans-serif;
    border:1px solid #262626;
}

.product-price {
padding: 1rem 0!important;
}

.sealsubs-container .sls-purchase-options-container .sls-option-container, .sealsubs-container .sls-purchase-options-container .sls-option-container.sls-active, .sealsubs-container .sls-option-container, .sealsubs-container .sls-option-container.sls-active{
    margin-bottom:0 !important;
    padding:0.5rem 1rem 1rem !important;
}

.sealsubs-container{
    margin-bottom:0 !important;
}

.feature-subscription-popup p{
    padding-left:2rem;
    color:#aaa;
}

.feature-subscription-close{
    position:absolute; top:5px; right:8px; background:none; border:none; font-weight:bold; font-size:16px; cursor:pointer;
    color:#aaa;
    font-family: 'Neue Haas Display Bold', sans-serif;
}

.sealsubs-container .sls-purchase-options-container .sls-option-container, .sealsubs-container .sls-purchase-options-container .sls-option-container.sls-active, .sealsubs-container .sls-option-container, .sealsubs-container .sls-option-container.sls-active{
    border-radius:0px;
}


/*   2 Column Square     */

.two-column-square-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    height: 80vh;
    overflow: hidden;
}

/* LEFT COLUMN */

.two-column-left {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.two-column-left-inner{
  padding:4rem;
border-radius:25px;
}

.two-column-left img,
.two-column-left video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.right-side-feature h1 a{
  color:#000;
  text-decoration:none;
}

.right-side-feature h1 a:hover{
  text-decoration:underline;
}

.right-side-feature h1 a:visited{
  color:#000;
}

/* RIGHT COLUMN */
.body-two-column{
 display:flex;
 align-items:center;
 justify-content:center;
 max-width: 700px;
    margin: 0 auto;
    padding: 4rem;
    line-height: 1.2;
    font-family: Neue Haas Display Roman, sans-serif;
}

.body-two-column h4{
  padding-top:2rem;
}



.two-column-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

/* Color Schemes */
.two-column-right.orange-black {
  background-color: #db6e2d;
  color: #262626;
  height: 80vh;
    position: relative;
}

.two-column-right.blue-white {
  background-color: #2b4176;
  color: white;
  height: 80vh;
    position: relative;
}

.two-column-right.white-black {
  background-color: white;
  color: #262626;
  height: 80vh;
    position: relative;
}

.announcement-bar{
  font-family: Neue Haas Display Light, sans-serif;
  font-weight:100;
  text-transform:uppercase;
}

.footer-block__newsletter h2{
  font-family: Neue Haas Display Roman, sans-serif;
  font-weight:500;
}

.bottom-button{
    font-family: Neue Haas Display Light, sans-serif;
}

.bottom-button a{
    background-color:transparent;
    padding:1rem 2rem;
    color:#fff;
    text-align:center;
    text-transform:uppercase;
    border:0.5px solid #fff;
    transition: all 0.5s linear;
    font-weight:100;
    border-radius: 25px;
    margin-top:4rem;
}

.bottom-button a:hover{
    background-color:#FFF;
    color:#262626;
}

/* Responsive */
@media (max-width: 768px) {
  .two-column-square-wrapper {
    display: block;
  }

  .two-column-right {
    padding: 1rem 0;
  }
}

/*    Matter Chart     */

.chart-header{
    text-align:center;
    max-width:650px;
    margin:0 auto;
}

.chart-header h1{
    font-size: var(--font-size-h1);
    color:#262626;
    margin: 0 !important;
    padding-top: 4rem;
}

.chart-header-body{
    color:#262626;
    line-height: 1.5;
    font-size: var(--font-size-h3);
}

.chart-titles{
    display:grid;
    grid-template-columns:1fr 0.6fr 0.6fr 0.6fr;
    max-width:1200px;
    margin:0 auto;
    color:#262626;
    font-size: var(--font-size-h3);
    border-bottom:0.5px solid #262626;
    color:#262626;
    font-family: Neue Haas Display Light, sans-serif;
    font-weight:100;
    line-height:1.25;
}

.chart-titles .text-align-center{
    padding-bottom:1.5rem;
    padding-top: 1.5rem;
}

.chart-row {
    display:grid;
    grid-template-columns:1fr 0.6fr 0.6fr 0.6fr;
    max-width:1200px;
    margin:0 auto;
    color:#262626;
    font-size: var(--font-size-h3);
    border-bottom:0.5px solid #262626;
    color:#262626;
    font-family: Neue Haas Display Roman, sans-serif;
    font-weight:500;
    line-height: 1.25;
}

.text-title-content{
    padding:1rem 2rem;
}

.text-align-center{
    text-align:center;
}

.sky-blue-background{
    background-color:#66b9e3;
}

.chart-grid{
    background-color:white;
    color:#262626;
    border-top:2px solid #262626;
    padding-top:2rem;
    margin:0 auto;
    padding-bottom:2rem;
}

.chart-border-right{
    border-right:2px solid #262626;
    border-left:2px solid #262626;
}

.chart-header-body{
    padding-bottom:2rem;
}

.chart-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom: 2px solid #262626;
}

.green-highlight-chart{
    background-color:#41ab44;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.chart-row > div:nth-child(2) {
    background-color: #41ab44;
}

.green-highlight-chart-bottom{
    background-color:#41ab44;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.feature-blend-button-title{
    display: block;
    padding: 1rem;
    border-top: 2px solid #262626;
    background-color: white;
    width: 650px;
    margin: 0 auto;
    border-left: 2px solid #262626;
    border-right: 2px solid #262626;
    font-size: var(--font-size-h5);
  font-family: Neue Haas Display Roman, sans-serif;
  color:#262626;
  text-align:center;
  text-transform:uppercase;
}

.right-side-chart{
    max-width:50vw;
    width:100%;
    height:auto;
}

.right-side-chart img{
 width:100%;
}

.product-media-inner{
    position:relative;
}

.product-card-chart{
    position:absolute;
    bottom:0;
    width:100%;
}

.product-card-chart .feature-blend-button-title{
    border-left: 0px;
    border-right: 0px;
}

.product-card-chart .feature-blend-button-title a{
    color:#262626;
    text-decoration:none;
    transition:all 0.5s linear;
}
.feature-blend-button-title-2 a{
    display: block;
    padding: 1rem;
    border-top: 2px solid #262626;
    background-color: #fff;
    margin: 0 auto;
    font-size: var(--font-size-h2);
    font-family: Neue Haas Display Bold, sans-serif;
    color: #262626;
    text-align: center;
    transition:all 0.5s linear;
    text-decoration:none;
    font-weight:600;
}
.feature-blend-button-title-2 a:hover{
    color:#fff;
    background-color:#262626;
    text-decoration:none;
}
.feature-blend-button-title-2 a:visited{
    color:#2b4176;
    text-decoration:none;
}

.chart-section{
    height:92vh;
    overflow:hidden;
    border-bottom: 2px solid #262626;
}

.collection-section-title{
  padding-left:4rem;
}

a.feature-product-dark-main {
    padding: 2rem 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    border: .5px solid #262626;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    background-color: #262626;
    transition: all .5s linear;
    font-weight: 100;
    font-size: var(--font-size-h6) !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin:0;
    display: inline-block;
}

.product-card-chart button{
    background-color: #41ab44;
    color: #fff;
    padding: 2rem 0;
    text-decoration: none;
    border-radius: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    border-top: 2px solid #262626;
    border-right: 0px;
    border-left:0px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    transition: all .5s linear;
    font-size: var(--font-size-h5);
    font-family: Neue Haas Display Bold, sans-serif;
    cursor: pointer;
}

.product-card-chart button:hover{
  background-color:#db6e2d;
  color:#262626;
}


/*      Video Background 2 Col      */

.header-banner-video-short {
  position: relative;
  width: 100%;
  overflow: hidden;
  height:50vh;
}

.header-banner-video-short .video-wrapper video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner-content-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.left-side-content,
.right-side-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-button {
  display: inline-block;
   margin-top: 5rem;
}

a.left-button {
  padding: 1rem 2rem;
  text-decoration: none;
  background-color: #fff;
  color: #262626;
 text-align:center;
  border:0.5px solid #fff;
  font-family: 'Neue Haas Display Bold', sans-serif;
  text-transform:uppercase;
  transition:all 0.5s linear;
  font-size: var(--font-size-h6);
  border-radius:25px;
  font-weight:100;
}

a.left-button:hover{
 background-color:transparent;
 color:#fff;
}

.right-side-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.right-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .two-col-rounded-right{
    margin-bottom:4rem;
  }
  .two-col-grid {
    grid-template-columns: 1fr;
  }
}

.left-side-content-grid{
    max-width:650px;
    margin:0 auto;
    padding:2rem;
}

.left-text{
    font-family: 'Neue Haas Display Bold', sans-serif;
    font-weight:600;
    font-size: var(--font-size-h1);
    line-height:1.25;
    color:white;
}

.right-side-content-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 1fr;
    gap:1rem;
    justify-items: center;
}

.right-block-image {
  width: 100%;
  height: 80px; 
  display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.right-block{
    height:200px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.right-block h3{
 color:white;
    font-family: 'Neue Haas Display Light', sans-serif;
    font-weight:100;
    font-size: var(--font-size-h5);
    line-height:1.25;
    text-transform:uppercase;
    text-align:center;
}

.right-block img {
  width: 100%;
  height: auto; 
  object-fit: contain;
  display: block;
}

.right-block-inner img{
    max-width:80px;
    height:auto;
    width:100%;
}

/* Two Column Listed Item */
.two-column-square-section.black-bg {
  background-color: #F7F8FF;
  color: #262626 !important;;
  padding: 2rem 2rem 6rem;
}

.two-column-square-section.black-bg h1, .two-column-square-section.blue-bg h1 {
  color: #262626 !important;
  font-weight:200;
  line-height:1.2;
  margin: 4rem 0 2rem 0;
}

#two-column-square-template--26226613453147__text_item_image_select_exxyn9 .two-column-left h3{
  color:#000 !important;
  padding-bottom:3rem;
}

.two-column-square-section.black-bg h1{
  font-size: var(--font-size-h1);
}

.two-column-square-section.black-bg h2{
  color:#000;
} 
.two-column-square-section.blue-bg h2 {
  color: #fff !important;;
}

.two-column-square-section.black-bg p{
  color: #262626;
  line-height: 1.5;
  padding-top: 1rem;
}

.image-text-container h2,
.image-text-container p,
.image-text-container a {
  color: #000;
}

/* When toggled on */
.image-text-container.white-text h2,
.image-text-container.white-text p,
.image-text-container.white-text a {
  color: #fff;
}

.two-column-square-section.blue-bg p {
  color: #aaa !important;;
}

.two-column-square-section.blue-bg {
  background-color:  #2b4176; 
  color: #fff;
  padding: 2rem 2rem 6rem;
}

.right-side h2{
  font-weight: 500;
  line-height: 1.2;
}

h2.header-item{
  margin:2rem 0 4rem !important;
  font-size: var(--font-size-h1);
  font-weight:500;
}

.two-col-grid-item {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

.two-col-grid-item .left {
  flex: 1 1 40%;
}

.two-col-grid-item .left img {
  max-width: 100%;
  height: auto;
}

.two-col-grid-item .right {
  flex: 1 1 55%;
}

.item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
}

.two-column-left{
  padding:4rem 2rem;
}

.two-column-square-wrapper-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:5rem;
}

.two-column-square-wrapper-item {
  display: flex;
  gap: 2rem; /* space between left and right */
}

/* LEFT COLUMN STICKY */
.two-column-left {
  flex: 0 0 50%;  /* adjust width */
  position: sticky;
  bottom: 35%;      
  align-self: end;
}

/* RIGHT COLUMN FLEX */
.two-column-right {
  flex: 1 1 50%;
}

/* Optional: spacing for blocks */
.item-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Image fills left side card (from your previous tweak) */
.left-side {
  background-color: #fff;
  border-radius: 25px;
  overflow: hidden;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #262626;
}

.left-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right side content */
.right-side {
  position:absolute;
  bottom:40%;
  left:0;
  padding: 2rem 4rem 0 4rem;
}

/* Links */
.item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}



/* Background / text color */
.feature-product-dark-section.dark-bg {
  background-color: #F7F8FF;
  color: #262626;
}

.feature-badge{
  position: absolute;
    top: 2rem;
    left: 2rem;
    background: #2b4176;
    border: 0.5px solid #262626;
    color: #fff;
    padding: .5rem 2rem;
    font-size: var(--font-size-p);
    font-family: Neue Haas Display Light, sans-serif;
  font-weight:100;
  text-transform:uppercase;
    border-radius: 50px;
    line-height: 1.25;
}

.feature-badge-orange{
  position: absolute;
    top: 2rem;
    left: 2rem;
    background-color: #db6e2d;
  color: #262626;
    padding: .5rem 2rem;
    font-size: var(--font-size-p);
    font-family: Neue Haas Display Light, sans-serif;
  font-weight:400;
  text-transform:uppercase;
    border-radius: 50px;
    line-height: 1.25;
    border: 0.5px solid #262626;
}

.notifyButtonStyle {
  font-size: var(--font-size-p);
}

.product-page-badge{
    background: #2b4176;
    border: 0.5px solid #262626;
    color: #fff;
    padding: .5rem 2rem;
    font-size: var(--font-size-small);
    font-family: Neue Haas Display Light, sans-serif;
  font-weight:100;
  text-transform:uppercase;
    border-radius: 50px;
    line-height: 1.25;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-page-badge-orange{
    background-color: #db6e2d;
  color: #262626;
    padding: .5rem 2rem;
    font-size: var(--font-size-p);
    font-family: Neue Haas Display Light, sans-serif;
  font-weight:400;
  text-transform:uppercase;
    border-radius: 50px;
    line-height: 1.25;
    border: 0.5px solid #262626;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-product-dark-section.dark-bg h1{
  font-weight:200;
  font-size: var(--font-size-h1);
  line-height:1.2;
  color:#262626 !important;
  margin:0;
}

.feature-product-title a {
  text-decoration: none !important;
  color: #000;
}

.feature-product-dark-section.dark-bg p{
  color:#262626 !important;
}

.feature-product-dark-section.light-bg {
  background-color: #fff;
  color: #000;
}

.feature-blend-button-container{
  max-width:500px;
  width:100%;
}

.left-header h1{
  font-weight:800;
  margin: 1rem 0;
}

/* Container grid */
.feature-product-dark-container {
  display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    grid-column-gap:8rem;
    padding:4rem 4rem 12rem;
}

.product-blurb{
  line-height:1.25;
  color:#262626;
  min-height:90px;
}

/* Left image */
.left-side-feature {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position:relative;
  border-top-left-radius: 20px;
border-top-right-radius: 20px;
width:100%;
border-top:0.5px solid #000;
border-right:0.5px solid #000;
border-left:0.5px solid #000;
height:450px;
}

.height-90{
  height:90vh;
}

.height-110{
  height:110vh;
}

.white-black h1, .white-black h3, .white-black p{
  color:#000;
}

.white-black h1, .white-black h2{
  padding-bottom:2rem;
}

.white-black .bottom-button a {
    background-color: #000;
    padding: 1rem 2rem;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border: 0.5px solid #000;
    transition: all 0.5s linear;
    font-weight: 100;
    font-size: var(--font-size-h6);
    border-radius: 25px;
    margin-top: 4rem;
    line-height:1;
}

/* Top border when toggle is enabled */
.two-column-square-section.top-border {
 /* border-top: 2px solid #000; */
}


.white-black .bottom-button a:hover {
    background-color: transparent;
    color: #000;
}

.left-side-feature img {
  display:block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Right side */
.product-price-main h2 {
  font-size: var(--font-size-h3);
}

.product-blurb {
  padding: 2rem;
}

.add-to-cart {
  display: inline-block;
  margin-bottom: 1rem;
}

.subscription-optin {
  font-size: var(--font-size-small);
  opacity: 0.8;
}

.right-side-feature{
  width:100%;
  margin:0;
border: 0.5px solid #000;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
background-color: #fff;
min-height:450px;
display:flex;
flex-direction:column;
justify-content: space-between;
}

.product-price-main{
  padding:1rem 2rem;
  border-bottom:0.5px solid #000;
}

button.feature-product-dark{
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    color: #fff !important;
    border: .5px solid #262626;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    background-color: #262626; 
    transition: all .5s linear;
    font-weight: 100;
    font-size: var(--font-size-h6) !important;
    border-radius: 25px;
}

button:hover.feature-product-dark{
    color:#262626 !important;
    text-decoration: none !important;
    background-color:transparent;
    border: .5px solid #262626;
}

.headline-copy-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width:1400px;
    margin:0 auto;
    padding:6rem 2rem 0;
}

@media (max-width: 768px) {
  .headline-copy-container {
    padding: 1rem 1rem;
  }

  .faq-container {
    padding: 3rem 1rem;
  }
}

.left-header-button{
  padding-top:2rem;
}

@media (max-width: 768px) {
  .left-header-button{
    padding-top: 0rem;
  }
}

.right-copy{
  padding-left:10vw;
  font-family: "Neue Haas Display Roman" ,sans-serif;
  text-align:right;
  color:#000;
}

.feature-product-dark-section.dark-bg .left-side h1 {
    margin-bottom: 0 !important;
    line-height:1.25;
}
.left-header-button a{
    padding: 1rem 2.5rem;
    text-align: center;
    color:#fff !important;
    border: .5px solid #262626;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    background-color: #262626;
    transition: all .5s linear;
    font-weight: 100;
    font-size: var(--font-size-small);
    border-radius: 25px;
}

.left-header-button a:hover{
    color:#262626 !important;
    border:1px solid #262626;
    background-color:transparent;
    text-decoration: none !important;
}

a.button:after{
  box-shadow: none;
}

a.button{
  border-radius: 50px;
    border: 0px !important;
    font-family: Neue Haas Display Light, sans-serif;
    text-transform:uppercase;
    font-weight: 100;
    font-size: var(--font-size-h6);
    box-shadow: none;
}

a.button:hover::after {
  box-shadow: none !important; 
}

a.button:hover: {
  box-shadow: none !important; 
}

h2.banner__heading{
  font-family: Neue Haas Display Light, sans-serif;
  font-size: var(--font-size-h1);
    font-weight: 500;
    line-height: 1.2;
}

.banner__box{
  border-radius:25px;
}

/* Rounded images */

.two-col-rounded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding:2rem 0 0;
}

.rounded-section-wrapper{
  padding:4rem;
}

.two-col-rounded-grid h4{
padding:2rem 4rem;
}

.two-col-rounded-left,
.two-col-rounded-right {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center center;
  border-radius: 25px;
  overflow: hidden;
}

.two-col-rounded-left-inner,
.two-col-rounded-right-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.two-col-rounded-left-headline,
.two-col-rounded-right-headline {
  position: absolute;
  top: 4rem;
  left: 4rem;
  color: #fff;
}

.two-col-rounded-left-button,
.two-col-rounded-right-button {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}

.two-col-rounded-left-button a,
.two-col-rounded-right-button a {
  text-decoration: none;
  color: #262626;
  background-color:white;
  padding:1rem 2rem;
  border:0.5px solid white;
  font-weight:100;
  text-transform:uppercase;
  font-size: var(--font-size-h6);
  border-radius:25px;
  transition:all 0.5s linear;
}

.two-col-rounded-left-button a:hover,
.two-col-rounded-right-button a:hover {
  color: white;
  background-color:transparent;
}

.two-col-rounded-right-headline h2, .two-col-rounded-left-headline h2{
  color:white !important;
  max-width: 300px;
  padding-right:1rem;
  font-size: 3rem;
    font-weight: 400;
}
.footer-block--newsletter{
  margin-top:8rem ;
}
.headline-copy-container-button {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 0;
}
.right-copy-button {
    text-align: right;
}
.one-col-rounded-left {
  width: 100%;           
  height: 400px;         
  border-radius: 25px;   
  overflow: hidden;      
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat; 
  position: relative;  
}

.one-col-rounded-left-headline h1{
  color:#fff;
  position:absolute;
  top:4rem;
  left:4rem;
  width:500px;
  font-weight: 500;
  line-height: 1.2;
}

.one-col-rounded-left-button a {
  text-decoration: none;
  color: #262626;
  background-color:white;
  padding:1rem 2rem;
  border:0.5px solid white;
  font-weight:100;
  text-transform:uppercase;
  font-size: var(--font-size-h6);
  border-radius:25px;
  transition:all 0.5s linear;
}

.one-col-rounded-left-button a:hover {
  color: white;
  background-color:transparent;
}

.one-col-rounded-left-button{
  position: absolute;
    bottom: 6rem;
    left: 4rem;
}

.rounded-section-wrapper-single{
  padding:4rem;
}