/** Shopify CDN: Minification failed

Line 64:2 Unexpected "{"
Line 64:3 Expected identifier but found "%"
Line 66:13 Unexpected "{"
Line 66:14 Expected identifier but found "%"
Line 89:2 Unexpected "{"
Line 89:3 Expected identifier but found "%"
Line 89:32 Unexpected "{"
Line 89:33 Expected identifier but found "%"
Line 896:1 Comments in CSS use "/* ... */" instead of "//"

**/
.logo-bar__text.color-scheme-4 {
    font-size: 19px!important;
}

::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--colorFooter);
}
/* New Product Pocket style - Lalit 09-02-26 */
#ingredients_product_tab .collapsible-content--all.is-open {
  height: auto !important;
}
.ai-featured-collection-ptt {
  width: 100%;
  background-color: transparent;
  padding: 40px 0;
}

.ai-featured-collection-container-ptt {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: transparent;
}

.ai-featured-collection-header-ptt {
  text-align: center;
  margin-bottom: 40px;
}

.ai-featured-collection-title-ptt {
  font-size: 32px;
  color: #000000;
  margin: 0 0 10px;}

.ai-featured-collection-subtitle-ptt {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.ai-featured-collection-grid-ptt {
  {% comment %} display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; {% endcomment %}
  display: grid;
  grid-auto-flow: column; 
  grid-auto-columns: 350px;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px; 
}

.ai-featured-collection-card-ptt {
  scroll-snap-align: center;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  {% comment %} display: block; {% endcomment %}
}

.ai-featured-collection-card-ptt:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: inherit;
}

.ai-featured-collection-image-wrapper-ptt {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 16px;overflow: hidden;
  border-radius: 6px;
}

.ai-featured-collection-image-ptt {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-featured-collection-image-placeholder-ptt {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-featured-collection-image-placeholder-ptt svg {
  width: 60%;
  height: 60%;opacity: 0.5;
}

.ai-featured-collection-label-ptt {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
  white-space:nowrap;
}
.custom_badges{
  background: white;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(12px,2vw,14px);
  color: #000000;
}

.ai-featured-collection-label-ptt:hover {
  transform: scale(1.1);
}

.ai-featured-collection-product-title-ptt {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 8px;
  line-height: 1.3;
  min-height:42px;
}

.ai-featured-collection-product-price-ptt {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px;
}
.ai-featured-collection-product-price-ptt .grid-product__price--savings{
  font-size: 11px;
  position: relative;
  bottom: 2px;
}
.ai-featured-collection-compareproduct-price-ptt {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  opacity:0.6;
  text-decoration: line-through;
  margin: 0 8px 0 4px;
}

.ai-featured-collection-rating-ptt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ai-featured-collection-stars-ptt {
  display: flex;
  gap: 2px;
  font-size: 14px;
  min-height:44px;
}

.ai-featured-collection-star-ptt {
  color: #ffd700;
  font-size: 14px;
}

.ai-featured-collection-review-count-ptt {
  font-size: 12px;
  color: #666;
}

.ai-featured-collection-add-to-cart-ptt {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  height: 46px;
  position: relative;
  z-index: 3;
}

.ai-featured-collection-add-to-cart-ptt:hover {
  background-color: #333333 !important;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .ai-featured-collection-ptt {
    padding: 20px 0;
  }

  .ai-featured-collection-container-ptt {
    padding: 0 16px;
    max-width: 100%;
  }

  .ai-featured-collection-grid-ptt {
    grid-auto-columns: 250px;
    gap: 16px;
  }

  .ai-featured-collection-card-ptt {
    padding: 12px;
  }

  .ai-featured-collection-image-wrapper-ptt {
    margin-bottom: 12px;
  }

  .ai-featured-collection-label-ptt {
    top:6px;
    right:6px;
  }

  .ai-featured-collection-product-title-ptt {
    font-size: 14px;
  }

  .ai-featured-collection-product-price-ptt {
    font-size: 16px;
  }

  .ai-featured-collection-add-to-cart-ptt {
    font-size: 12px;
  }
}
/* New Product Pocket style - Lalit 09-02-26 */
/* 
#gap-maker{
  padding-top: 32px;
}
.product-custom-labels-scrollspy{
  position:fixed;
  z-index:10;
  margin: 16px 0;
} */
.product-custom-labels ul , .product-custom-labels-scrollspy ul{
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  /* margin-block: 1rem; */
  margin: 1rem 0 0.5rem;
}
.product-custom-labels ul {
  display:none;
}
.product-custom-labels ul li,.product-custom-labels-scrollspy ul li{
  font-size:clamp(12px, 2vw, 15px);
  background: #cec4f5;
  color: #000;
  padding: 4px 8px;
  margin: 0;
  border-radius: 5px;
  cursor:pointer;
}
/* .product-custom-labels-scrollspy ul li {
  padding: 4px 8px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
  background: #f78665;
  color: #fff;
  border-radius: 5px;
  cursor:pointer;
  margin: 0;
} */
.product-block.product-block--tab.styled_tab .collapsibles-wrapper{
 /* border-top: 1px solid #A64D39; */
 border-top: none;
}
.product-block.product-block--tab.styled_tab .collapsible-trigger-btn--borders , .product-block.product-block--tab.styled_tab .collapsible-content--all.is-open{
  border-color: #A64D39 !important;
}
.product-block.product-block--tab.styled_tab {
  color: #A64D39;
}
.product-block.product-block--tab.styled_tab .collapsible-trigger-btn--borders.is-open{
  border-color: transparent !important;
}
.product-block.product-block--tab.styled_tab .collapsible-trigger {
  font-size: 15px;
}
.exclusive-combos {
  max-width: 80%;
  margin: 70px auto;
  position: relative;
}
.exclusive-combos .carousel-cell {
  position: relative;
}
.exclusive-combos .image-wrapper {
  overflow: hidden;
  border-radius: 15px;
}
.exclusive-combos .text-wrap {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40%;
  transform: translateY(-60%);
}
.exclusive-combos .text-wrap:after {
  content: url(ionic-ios-arrow-round-forward.svg);
  position: absolute;
  right: 40px;
  margin-top: 10px;
  transition: transform 0.25s;
}
.exclusive-combos .grid-item__link:hover .text-wrap:after {
  transform: translate(10px);
}
.exclusive-combos .text-wrap h3 {
  margin-bottom: 0;
  font-size: 30px;
}
.block_product_testimonial_slider .testimonials-section{
  padding-top: 2rem;
}
.block_product_testimonial_slider .testimonials-slide{
  width:100% !important;
  opacity: 1 !important;
}
.block_product_testimonial_slider .testimonials-slide.is-selected .testimonials-slider__text {
  transform: scale(1) !important;
  margin: 0;
}
/* Nutrition Facts styling */
.nutrition-info {
  /* max-width: 420px; */
  color: #a64d39;
  font-size: clamp(15px,5vw,18px);
  line-height: 1.6;
}

.nutrition-info .serving {
  margin-bottom: 12px;
  font-weight: 500;
}

.nutrition-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nutrition-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dotted #a64d39;
  padding: 4px 0;
}
.nutrition-info li:last-child {
  border-bottom: none; 
}
.nutrition-info li span:first-child {
  flex: 1;
  position: relative;
}

.nutrition-info li span:last-child {
  flex-shrink: 0;
  margin-left: 10px;
}

.nutrition-info li.sub {
  padding-left: 20px;
  font-size: 15px;
}
.nutrition-info li {
  position: relative;
}
.nutrition-info li span:first-child::after {
  content: "";
  border-bottom: 1px dotted #999;
  flex: 1;
  margin: 0 10px;
}

/* Nutrition Facts styling */
@media screen and (min-width: 768px) {
.block_product_testimonial_slider .bg-white button.flickity-button.flickity-previous , .block_product_testimonial_slider .bg-white button.flickity-button.flickity-next  {
    top: 80% !important;
}
}
@media only screen and (max-width: 768px) {
  .regular_slider .slick-arrow {
    position: absolute;
    bottom: -60px;
    top: auto;
  }
  .regular_slider .left-arrow {
    right: 90px;
    transform: rotate(180deg);
    left: auto;
  }
  .regular_slider .right-arrow {
    right: 30px;
    transform: translateY(0);
  }
  .exclusive-combos {
    max-width: 100%;
    margin: 40px auto 10px;
  }
  .exclusive-combos .carousel-cell {
    padding: 0;
  }
  .exclusive-combos .text-wrap {
    right: 0px;
    top: 30%;
  }
  .exclusive-combos .text-wrap:after {
    transform: scale(0.5);
    left: 0;
    right: auto;
  }
  .exclusive-combos .grid-item__link:hover .text-wrap:after {
    transform: translate(10px) scale(0.5);
  }
  .exclusive-combos .text-wrap h3 {
    font-size: 20px;
  }
  .regular_slider .right-arrow {
    right: 0px;
  }
  .regular_slider .left-arrow {
    right: 60px;
  }
  /* .product-custom-labels-scrollspy ul li {
    padding: 5px 20px;
  } 
  #gap-maker {
    padding-top: 38px;
  } */
}
.miheso-nutrition {
  position: relative;
}
.slider-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Nunito, sans-serif;
  position: relative;
  overflow: hidden;
}
.nutrition-slider {
  position: relative;
  display: flex;
  width: 80%;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  background-image: url(/cdn/shop/files/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
}
img {
  max-width: 100%;
  display: block;
}
.bg-img {
  width: 80%;
}
.item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.item .tags {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.product-slider {
  display: flex;
  position: static;
  width: 70%;
  justify-content: space-between;
  align-items: center;
}
.product-img {
  width: 55%;
}
.product-img .blob {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-58%, -50%) scale(2);
  color: red;
  max-width: 50%;
}
.product-img .slick-slide .item-img {
  transform: scale(0);
  max-height: 400px;
  margin: 0 auto;
}
.product-img .slick-current .item-img {
  transition: all 0.5s ease-out;
  transform: scale(1);
}
.product-img,
.inside-content-slider {
  position: static;
}
.inside-content-slider {
  width: 45%;
}
.inside-content-slider .slick-slide .head,
.inside-content-slider .slick-slide .desc,
.inside-content-slider .slick-slide .btn {
  opacity: 0;
  transform: translate(50px);
}
.inside-content-slider .slick-current .head {
  transition: all 0.5s ease-out;
  transform: translate(0);
  opacity: 1;
}
.inside-content-slider .slick-current .desc {
  transition: all 0.5s ease-out 0.1s;
  transform: translate(0);
  opacity: 1;
}
.inside-content-slider .slick-current .btn {
  transition: all 0.5s ease-out 0.2s;
  transform: translate(0);
  opacity: 1;
}
.product-block.subtitle {
  color: #B26B5B;
  font-size: 1rem;
  line-height: 100%;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.product-details {
  justify-content: space-between;
  display: flex !important;
  width: 100%;
}
.item .tags button {
  background-color: white;
  border: 1px solid #f05323;
  border-radius: 30px;
  font-size: 20px;
  padding: 10px 0;
  color: #f05323;
  font-weight: 700;
  margin: 10px 0;
  cursor: pointer;
  opacity: 0.5;
}
.inside-content .btn {
  cursor: pointer;
}
.item .tags button.active {
  opacity: 1;
}
.item .inside-content {
  display: flex;
  flex-direction: column;
}
.nutrition-slider .inside-content .head {
  font-size: 40px;
  color: #9e3a25;
  font-weight: 700;
  line-height: 42px;
}
.nutrition-slider .inside-content .desc {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: normal;
  color: #000000;
}
.nutrition-slider .inside-content .btn {
  border: none;
  color: #fff;
  line-height: 28px;
  font-weight: 700;
  border-radius: 25px;
  font-size: 16px;
  background-color: #f05323;
  width: 140px;
  height: 50px;
}
.notActive {
  display: none !important;
}
.left-arrow {
  left: -50px;
  transform: translateY(-50%) rotate(180deg);
}
.right-arrow {
  right: -50px;
  transform: translateY(-50%);
}
.slick-arrow {
  position: absolute;
  top: 45%;
}
.regular_slider .slick-arrow,
.Bestsellers-carousel .slick-arrow,
.collection-grid-carousel .slick-arrow {
  position: absolute;
  top: 27%;
}
@media screen and (max-width: 1199px) {
  .item .tags {
    flex-direction: row;
    justify-content: space-between;
  }
  .item .tags button {
    width: 48%;
    font-size: 14px;
  }
  .product-slider {
    margin-top: 30px;
  }
  .product-slider,
  .item .tags {
    width: 100%;
  }
  .miheso-nutrition .item {
    flex-direction: column;
  }
  .product-img .blob {
    transform: translate(-50%, -50%) scale(1.5);
  }
}
@media screen and (max-width: 991px) {
  .nutrition-slider .slick-arrow {
    top: 45%;
  }
  .nutrition-slider .left-arrow {
    left: 0;
  }
  .nutrition-slider .right-arrow {
    right: 0;
  }
  .product-slider {
    width: 100%;
  }
  .nutrition-slider {
    width: 100%;
    padding: 40px 20px;
    background-position: center;
    background-image: url(/cdn/shop/files/Group_74295.jpg?v=1660923656);
  }
  .nutrition-slider .inside-content .head {
    font-size: 24px;
    text-align: center;
  }
  .nutrition-slider .inside-content .desc {
    text-align: center;
    color: #670d1b;
  }
  .nutrition-slider .inside-content .btn,
  .product-img img {
    margin: 0 auto;
  }
  .product-img .blob {
    transform: translate(-50%, -50%) scale(2.2);
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .Bestsellers-carousel,
  .regular_slider,
  .collection-grid-carousel {
    margin: 0 60px;
  }
}
.unveiling-section {
  position: relative;
}
.unveiling-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 100%;
  padding: 70px 0;
  position: relative;
}
.text-parent-section,
.video-parent-section {
  position: relative;
  width: 40%;
  padding: 5%;
  color: var(--colorNavText);
}
.video-parent-section .hero__link {
  position: absolute;
  display: block;
  z-index: 5;
  bottom: -20%;
  right: -10%;
}
.video-parent-section .hero__media-container {
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (max-width: 769px) {
  .Bestsellers-carousel .slick-arrow,
  .collection-grid-carousel .slick-arrow {
    top: auto;
  }
  .slick-arrow {
    top: auto;
    bottom: -70px;
  }
  .left-arrow {
    left: auto;
    right: 60px;
  }
  .right-arrow {
    right: 0px;
  }
  .miheso-nutrition .item,
  .product-slider {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .product-img,
  .inside-content-slider,
  .item .tags {
    width: 100%;
  }
  .video-parent-section .hero__link {
    bottom: 0%;
    right: 0%;
  }
  .unveiling-media-container {
    flex-direction: column;
    padding: 10px 0;
    margin-bottom: 30px;
  }
  .unveiling-media-container .text-parent-section {
    margin: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  .text-parent-section,
  .video-parent-section {
    width: 90%;
  }
}
.collection-grid-carousel .grid-item {
  margin-bottom: 40px;
}
.grid-product__tag--sale {
  display: none;
}
.grid-product__icons {
  position: absolute;
  top: 10px;
  z-index: 2;
  right: 10px;
}
.grid-item__content {
  background-color: transparent;
}
.grid__image-ratio {
  border-radius: 15px;
  overflow: hidden;
}
.grid-product__title {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
  height: auto;
  overflow: hidden;
  word-break: keep-all;
}
.exclusive-combos_title.grid-product__title {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
  height: auto;
  /* height: 128px; */
}
@media only screen and (max-width: 769px) {
  .exclusive-combos_title.grid-product__title {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    /* height: 140px; */
    height: auto;
  }
}
.grid-product__price--current {
  font-size: 24px;
  font-weight: 600;
  color: #2a2a2a;
}
.grid-product__price--original {
  font-size: 22px;
  font-weight: 400;
  color: #2a2a2a;
}
.grid-product__price--savings {
  font-size: 16px;
  color: #2a2a2a;
  background-color: #f9bc59;
  padding: 0 10px;
  border-radius: 50px;
}
@media only screen and (max-width: 769px) {
  .grid-product__price--original {
    font-size: 14px;
    font-weight: 400;
    color: #2a2a2a;
  }
  .grid-product__price--savings {
    font-size: 14px;
    color: #2a2a2a;
    background-color: #f9bc59;
    padding: 0 5px;
    border-radius: 50px;
  }
}
.bestsellers-section {
  color: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 1px;
}
.miheso-bestsellers {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.miheso-bestsellers .image-wrap {
  border-radius: 15px;
}
.miheso-bestsellers .grid-article__meta .article__title {
  color: #fff;
  font-size: 20px;
}
.miheso-bestsellers .add-to-cart,
.regular_slider .add-to-cart {
  padding: 10px;
}
.miheso-bestsellers .add-to-cart:hover,
.regular_slider .add-to-cart:hover {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
}
*//.miheso-bestsellers .tab
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 40px auto;
  border: 1px solid #ccc;
  border-radius: 50px;
}
.miheso-bestsellers .tab button {
  background-color: inherit;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 10px 50px;
  border-radius: 50px;
  color: #000000;
  opacity: 0.5;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 800;
}
.miheso-bestsellers .tab button.active {
  background-color: #f05323;
  border-color: #7f2837;
  color: #fff;
  transform: scale(1.029);
  opacity: 1;
}
.miheso-bestsellers .tabcontent {
  display: none;
  padding: 6px 12px;
}
.Bestsellerscontent .progress {
  display: none;
}
.product-single__form .payment-buttons,
.grid-product .payment-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.payment-buttons .shopify-payment-button {
  margin: 0;
}
.shopify-payment-button .shopify-payment-button__button--unbranded {
  background-color: transparent;
  color: var(--colorBtnPrimary);
  border: 2px solid var(--colorBtnPrimary);
  padding: 10px;
}
@media only screen and (min-width: 991px) {
  /* .product-single__form {
    width: 80%;
  } */
  .grid-product__actions .product-single__form {
    width: 100%;
  }
  .grid-item__meta {
    margin: 20px 0;
  }
}
@media only screen and (max-width: 769px) {
  .bestsellers-section {
    margin: 20px 0;
  }
  .collection-grid-carousel .grid-item {
    flex: 0 0 50%;
  }
  .grid-product__title {
    /* min-height: 55px;
    height: 110px; */
    line-height: normal;
  }
  .miheso-bestsellers {
    width: 100%;
  }
  .item .inside-content {
    text-align: center;
  }
  .payment-buttons .add-to-cart,
  .payment-buttons .cart__checkout,
  .payment-buttons .shopify-payment-button,
  .payment-buttons .shopify-payment-button__button--unbranded {
    min-height: 44px;
  }
  .grid-item__content .payment-buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 300px) {
  .payment-buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 769px) {
  .miheso-bestsellers .tab {
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto 10px;
    border: none;
    border-radius: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0;
  }
  .miheso-bestsellers .tab button {
    font-size: 16px;
    background-color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    border: 2px solid #7f2837;
    white-space: nowrap;
    margin: 0 5px 10px;
  }
  .miheso-bestsellers .tab button.active {
    background-color: #f05323;
    color: #fff;
    transform: unset;
    opacity: 1;
  }
  .Bestsellerscontent .progress {
    display: none;
    width: 60%;
    height: 4px;
    position: absolute;
    bottom: -28px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #b3435499;
    background-image: linear-gradient(to right, #7f2837, #7f2837);
    background-repeat: no-repeat;
    background-size: 2% 100%;
    transition: background-size 0.4s ease-in-out;
  }
  .Bestsellerscontent .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}
.honest-nutrition {
  position: relative;
}
.with-miheso {
  width: 80%;
  margin: 50px auto;
  position: relative;
}
.with-miheso .background-media-text {
  border-radius: 20px;
  margin-top: -50px;
}
.with-miheso .rotate {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
.with-miheso .rotate .rotate_img {
  animation: rotation 10s infinite linear;
  position: absolute;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 1400px) {
  .with-miheso {
    width: 90%;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .with-miheso .background-media-text {
    margin-top: -100px;
  }
  .background-media-text__container-1 {
    border-radius: 20px;
    overflow: hidden;
  }
  .background-media-text__inner {
    bottom: 0;
  }
  .background-media-text__aligner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .background-media-text__text {
    padding: 22.5px 0;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .with-miheso .rotate {
    position: absolute;
    top: -70px;
    width: 140px;
  }
  .with-miheso .rotate .rotate_img {
    left: 0px;
    top: 0px;
  }
  .with-miheso {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .background-media-text__container-1 {
    border-radius: 20px;
    overflow: hidden;
  }
  .with-miheso .background-media-text {
    margin-top: -100px;
  }
}
.miheso-diaries .tab {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 40px auto;
  border: 1px solid #ccc;
  border-radius: 50px;
}
.miheso-diaries .tab button {
  color: inherit;
  background-color: inherit;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 10px 50px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 800;
}
.miheso-diaries .tab button:hover {
  opacity: 1;
}
.miheso-diaries .tab button.active {
  background-color: white;
  border-color: #f05323;
  position: relative;
  color: #f05323;
}
.miheso-diaries {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.miheso-diaries-section {
  background: #9e3a25d9;
  padding: var(--indexSectionPadding) 0;
  color: #fff;
  position: relative;
  z-index: 2;
}
.miheso-diaries-section .section-header {
  color: #fff9;
}
.block_testimonial_slider{
  padding: 2rem 0 0;
}
.block_testimonial_slider .section-header h2{
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 800;
}
.block_testimonial_slider .flickity-enabled .flickity-viewport{
  max-height: 330px;
}
.miheso-diaries-section .section-header .section-header__title,
.miheso-diaries-section .section-header .active {
  color: #fff;
}
.miheso-diaries .carousel-cell {
  width: 33.33%;
  counter-increment: carousel-cell;
}
.miheso-diaries .flickity-button:disabled {
  display: block;
  cursor: auto;
  pointer-events: none;
  opacity: 0.3;
}
.miheso-diaries .flickity-prev-next-button {
  top: 30%;
  width: 40px;
  height: 40px;
  transform: translateY(50%);
}
.miheso-diaries .flickity-button {
  position: absolute;
  border: none;
  color: #7f2837;
  background: #fff;
  border-radius: 50%;
}

#MainContent > div > div > div.shopify-policy__title > h1
{
  color: #9e3a25;
}

@media only screen and (max-width: 768px) {

  .miheso-diaries .tab button.active {
  background-color: white;
  border-color: #f05323;
  position: relative;
  color: #f05323;
}
  .miheso-diaries {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .miheso-diaries .tab button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .miheso-diaries .flickity-prev-next-button {
    width: 33px;
    height: 33px;
  }
}
.miheso-diaries .flickity-prev-next-button:active {
  transition: none;
}
.miheso-diaries .flickity-previous {
  left: -45px;
}
.miheso-diaries .flickity-next {
  right: -45px;
}
.miheso-diaries .image-wrap {
  border-radius: 15px;
  background: transparent;
}
.miheso-diaries .grid-article__meta .article__title {
  color: #fff;
  font-size: 20px;
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .miheso-bestsellers,
  .miheso-diaries,
  .with-miheso,
  .testimonials-slider,
  .footer__section {
    width: 100%;
  }
  .exclusive-combos {
    max-width: 100%;
    margin: 50px auto;
  }
  .unveiling-media-container {
    padding: 0 var(--pageWidthPadding) var(--pageWidthPadding);
    gap: 1em;
    flex-direction: column;
  }
  .video-parent-section .hero__link {
    bottom: 5%;
    right: 5%;
  }
  .text-parent-section {
    width: 90%;
    padding: 0%;
  }
  .video-parent-section {
    width: 60%;
    padding: 0%;
  }
  .item .inside-content {
    text-align: center;
  }
}
.element {
  position: absolute;
}
.element2 {
  bottom: 10%;
  left: 8%;
  z-index: 1;
}
.element3 {
  top: -200px;
  left: -100px;
  transform: scale(0.7);
}
.element4 {
  bottom: -100px;
  right: 00px;
}
.element5 {
  top: -50px;
  z-index: 2;
  left: -45px;
}
.element6 {
  bottom: -20px;
  z-index: 2;
  right: 25%;
}
.element7 {
  bottom: -100px;
  z-index: 2;
  right: 8%;
}
.element8 {
  top: 10px;
  z-index: 2;
  left: -355px;
}
.element9 {
  bottom: -140px;
  z-index: 1;
  right: -140px;
}
.element10 {
  top: -70px;
  left: -65px;
}
.element10a {
  left: -185px;
  top: 115px;
}
.element10b {
  right: -110px;
  bottom: -65px;
}
.element11 {
  top: 40px;
  right: -60px;
}
.element12 {
  bottom: -80px;
  left: -70px;
}
.element13 {
  bottom: -200px;
  right: -80px;
}
.element18 {
  top: 0%;
  left: -20px;
}
.element19 {
  top: -50px;
  right: -70px;
}
.element20 {
  top: -20%;
  left: -20%;
}
.element21 {
  top: -200px;
  right: -20%;
}
.element22a {
  transform: scale(0.9);
  left: -100px;
  top: -85px;
}
.element22b {
  transform: scale(0.9);
  right: -50px;
  bottom: -100px;
}
@media screen and (max-width: 991px) {
  .element {
    transform: scale(0.5);
    display: none;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .element3 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .element3 {
    top: -200px;
    left: -260px;
  }
  .element4 {
    top: -100px;
    right: -90px;
    bottom: auto;
  }
  .element8 {
    top: -90px;
    z-index: 2;
    left: -175px;
  }
  .element9 {
    bottom: auto;
    top: 440px;
    z-index: 2;
    right: -140px;
  }
  .element10a {
    left: -185px;
    top: -115px;
  }
  .element10b {
    right: -110px;
    bottom: -95px;
  }
  .element1,
  .element2,
  .element5,
  .element6,
  .element7,
  .element10,
  .element11,
  .element12,
  .element13,
  .element20,
  .element21,
  .element22a,
  .element22b {
    display: none;
  }
}
.template-collection .element {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .section-ingredients {
    width: 80%;
    margin: 0 auto;
    position: relative;
  }
}
@media only screen and (max-width: 991px) and (min-width: 769px) {
  .section-ingredients {
    width: 80%;
    margin: 0 auto;
    position: relative;
  }
}
.section-ingredients .logo-bar__item {
  padding: 0;
  background-color: transparent;
}
.section-ingredients .h6 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: normal;
  opacity: 0.8;
}
.section-ingredients .text-spacing {
  opacity: 0.7;
}
.product-single__title {
  color: var(--colorNavText);
}
[data-product-images] .flickity-prev-next-button {
  top: auto;
  bottom: 10px;
  display: none;
}
@media only screen and (max-width: 768px) {
  [data-product-images] .flickity-prev-next-button {
    top: auto;
    bottom: -10px;
    display: none;
  }
  .product-single__title {
    font-size: 24px;
  }
}
[data-product-images] .flickity-prev-next-button .flickity-button-icon {
  opacity: 0;
}
[data-product-images] .flickity-next {
  right: 30px;
}
[data-product-images] .flickity-next:before {
  content: "";
  width: 15px;
  position: absolute;
  background-image: url(Arrow_100x100.svg);
  height: 15px;
  background-size: cover;
  top: 12px;
  left: 13px;
}
[data-product-images] .flickity-previous {
  left: auto;
  right: 80px;
}
[data-product-images] .flickity-previous:before {
  content: "";
  width: 15px;
  position: absolute;
  background-image: url(Arrow_100x100.svg);
  height: 15px;
  background-size: cover;
  top: 12px;
  left: 13px;
  transform: rotate(180deg);
}
.product_description {
  color: var(--colorNavText);
  font-size: 20px;
}
.product_description.rte p {
  margin-bottom: 5px;
  opacity: 0.8;
}
.product_description.rte h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 32px;
  letter-spacing: normal;
}
.icon-and-text span {
  font-size: 16px;
  color: var(--colorNavText);
}
.product_description_extra ul {
  margin-bottom: 0;
}
.product_description_extra .short_disclaimer {
  color: var(--colorNavText);
  font-size: 16px;
  margin-left: 6px;
  opacity: 0.8;
  /* padding-bottom: 20px;
  border-bottom: 1px solid rgba(40, 40, 40, 0.4);
  margin-bottom: 20px; */
}
.product-block--price {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.product__price[data-product-price] {
  font-size: 22px;
  font-weight: 800;
  color: var(--colorNavText);
}
.product__price--compare {
  font-size: 20px;
  opacity: 0.8;
}
.product__price-savings {
  font-size: 16px;
}
.product__policies {
  color: var(--colorNavText);
  margin-bottom: 24px;
  opacity: 0.8;
}
.product-custom-highlights {
  color: #A64D39;
  font-weight: 400;
  font-size: 14px;
  /* line-height: 1; */
}
.product-custom-highlights .highlight-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.product-custom-highlights .highlight-text {
  font-size: 14px;
  color: #A64D39;
  white-space:nowrap;
}
.product-custom-highlights .icon {
  width: auto;
  height: 30px;
}

.product-custom-highlights .emoji {
  width: 24px;
  height: 24px;
}
.product-custom-highlights .highlight-point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.product-custom-highlights .point-icon {
  width: 28px;
  height: 28px;
}
.product__quantity {
  display: flex;
  align-items: center;
}
.product__quantity label {
  display: block;
  margin-bottom: 0;
  margin-right: 10px;
  color: var(--colorNavText);
}
.js-qty__wrapper {
  background-color: transparent;
  border: 2px solid #707070;
  border-radius: 50px;
  max-width: 100px;
  min-width: 100px;
}
.js-qty__num {
  border: none;
  outline: none;
}
.products_offers {
  margin: 15px 0;
  display: flex;
  line-height: normal;
  align-items: center;
  gap: 0.5em;
  background-color: #fbcf5d;
  padding: 5px 15px;
  border-radius: 50px;
  width: 100%;
  max-width: 480px;
  font-size: 16px;
}
.product_desc_icons {
  display: flex;
  gap: 1em;
  justify-content: center;
  /* border-top: 1px solid rgba(40, 40, 40, 0.4); */
  padding: 10px 0 0;
}
/* .product-single__form{
  margin: auto;
} */
#delivery_info_text {
  display: flex;
  font-size: clamp(11px, 1vw, 16px);
  color: #a64d39;
  gap: clamp(4px, 1vw, 12px);
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
#delivery_info_text svg{
  position: relative;
  top: 3px;
}
.logo-bar__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 40px;
  margin-top: -45px;
  background-color: #f0b234;
  border-radius: 5px;
  padding: 6px;
  color: #fff;
}
.jdgm-rev-widg__title {
  margin-bottom: var(--sectionHeaderBottom);
  color: var(--colorNavText);
  letter-spacing: normal;
}
@media only screen and (max-width: 380px) {
  .product-custom-highlights .icon.ingredients-icons{
    height: 20px;
  }
}

  #assorted-ingredient , #assorted-ingredient-chart {
  margin:0;
  }
  /* .collapse-height .collapsible-content {
    height:auto !important
  } */
  #assorted-ingredient .tab-btn , #assorted-ingredient-chart .tab-btn {
  font-size: clamp(12px, 2vw, 15px);
  background: #cec4f5;
  color: #000;
  padding: 4px 8px;
  margin: 0;
  border-radius: 5px;
  cursor: pointer;
  scroll-snap-align: start;
  }
  #assorted-ingredient .assorted-ingredien-buttons-flow , #assorted-ingredient-chart .assorted-ingredien-buttons-flow {
  display: flex;
  gap: 6px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  }
  #assorted-ingredient .assorted-ingredien-buttons-flow::-webkit-scrollbar ,  #assorted-ingredient-chart .assorted-ingredien-buttons-flow::-webkit-scrollbar {
  display:none;
  }
  #assorted-ingredient .tab-btn.active , #assorted-ingredient-chart .tab-btn.active {
  background:rgb(78, 67, 120);
  color: #fff;
  }
  #assorted-ingredient .tab , #assorted-ingredient-chart .tab  {
  display: none;
  padding: 15px 0 5px;
  color: #a64d39;
  font-size: clamp(15px, 5vw, 18px);
  line-height: 1.6;
  }
  #assorted-ingredient .tab.active , #assorted-ingredient-chart .tab.active {
  display: block;
  }

@media only screen and (max-width: 769px) {
  .logo-bar__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    margin-top: -25px;
    background-color: #f0b234;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
  }
  .jdgm-rev-widg__title {
    font-size: 30px !important;
  }
}
@media only screen and (min-width: 769px) {
  .jdgm-rev-widg__title {
    font-size: calc(var(--typeHeaderSize) * 0.75) !important;
  }
}
.variant_img {
  border-radius: 100px;
  margin: 5px auto;
}
.variant-input-wrap label {
  padding: 0;
  margin: 0 20px;
}
.hr--light {
  border-color: #28282866;
}
.bg-white blockquote.testimonials-slider__text {
  border-radius: 0;
}
.bg-white .testimonial-stars {
  color: #9e3a25;
  text-align: left;
  margin-top: 10px;
}
.bg-white .testimonials__info {
  color: #9e3a25;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 18px);
}
.bg-white .testimonials-slider__text p {
  margin: 0;
  font-size: clamp(10px, 2vw, 12px);
  text-align: left;
}
.bg-white .testimonials__title {
  text-align: left;
  position: relative;
  top: -4px;
  font-size: clamp(13px, 2vw, 15px);
}
.bg-white ol{
  display: none;
}
.bg-white .flickity-button {
  opacity: 1 !important;
  bottom: -20px;
  top: unset !important;
  display: block !important;
  background: #cccccc;
  color: #000000;
}
.bg-white button.flickity-button.flickity-previous {
  left: 35%;
}
.bg-white button.flickity-button.flickity-next {
  right: 35%;
}
.slick-dotted.slick-slider {
  margin-bottom: 50px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.nut-spread-recipes .slick-dots {
  display: none;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  content: ".";
  font-size: 26px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "\2022";
  text-align: center;
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
}
.icart
  .icart-main
  .icart-inner
  .icart-cart-main
  .icart-content
  .icart-items
  .icart-item-img
  img {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: contain;
  margin: auto !important;
  padding: 0;
}
.slick-disabled {
  opacity: 0.6;
}
/*# sourceMappingURL=/s/files/1/0550/5607/2753/t/14/assets/Custom.css.map?v=1681291069 */
.site-nav__link {
  padding: 24px 6px;
}

::-webkit-scrollbar-thumb {
  background: #f05323 !important;
}

#shopify-section-toolbar > div > div > div {
  padding-right: 0px;
  padding-left: 0px;
}
.announcement-slider__content p {
  animation: scrollhero 30s linear infinite;
  position: relative;
  width: max-content;
}

.announcement-slider__content p:hover {
  animation-play-state: paused;
}

@keyframes scrollhero {
  0% {
    left: 150%;
  }
  100% {
    left: -140%;
  }
}
/* header */
ul.site-nav.site-navigation.site-navigation--beside.small--hide {
  display: flex;
  column-gap: 15px;
}

/* Banner Issue SOlved */
.hero {
       background-color: transparent !important;
   }
.hero .slideshow__slide:not(.animate-out) .hero__image {
    opacity: 1 !important;
    transition: none !important;
}.hero .slideshow__slide .hero__image-wrapper {
    transform: scale(1) !important;
    opacity: 1 !important;
    transition: none !important;
}