/** Shopify CDN: Minification failed

Line 25:21 Expected identifier but found whitespace
Line 25:23 Unexpected "{"
Line 25:32 Expected ":"
Line 26:12 Expected identifier but found whitespace
Line 26:14 Unexpected "{"
Line 26:23 Expected ":"
Line 26:58 Unexpected "0"
Line 26:61 Unexpected "{"
Line 26:70 Expected ":"
Line 26:107 Expected ":"
... and 3 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:eatwise_way (INDEX:72) */
/* =====================================================
     EatWise Way Section Styles
  ===================================================== */
  .eatwise-way {
    background-color: {{ section.settings.background_color }};
    padding: {{ section.settings.section_padding_top }}px 0 {{ section.settings.section_padding_bottom }}px;
  }

  /* 1380px container with side padding */
  .eatwise-way__container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .eatwise-way__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }

  /* ---- Left Column ---- */
  .eatwise-way__left {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .eatwise-way__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 36px;
    max-width: 420px;
  }

  .eatwise-way__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eatwise-way__image.placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;
  }

  .eatwise-way__subheading {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0 0 14px;
  }

  .eatwise-way__body {
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.7;
    margin: 0;
  }

  /* ---- Right Column — pinned to top ---- */
  .eatwise-way__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-self: flex-start;
  }

  /* ---- Cards Grid ---- */
  .eatwise-way__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .eatwise-way__card {
    border-radius: 14px;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 110px;
  }

  .eatwise-way__card-label {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
    display: block;
  }

  /* ---- Headline ---- */
  .eatwise-way__headline-text {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0;
  }

  .eatwise-way__headline-accent {
    color: {{ section.settings.accent_color }};
  }

  /* ---- Responsive ---- */
  @media screen and (max-width: 900px) {
    .eatwise-way__inner {
      flex-direction: column;
      gap: 36px;
    }

    .eatwise-way__left,
    .eatwise-way__right {
      flex: unset;
      max-width: 100%;
      width: 100%;
      align-self: auto;
    }

    .eatwise-way__image-wrap {
      max-width: 320px;
      margin: 0 auto 28px;
    }
  }

  @media screen and (max-width: 480px) {
    .eatwise-way__container {
      padding: 0 20px;
    }

    .eatwise-way__cards {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .eatwise-way__card {
      padding: 28px 14px;
      min-height: 90px;
    }
  }
/* END_SECTION:eatwise_way */

/* START_SECTION:main-product (INDEX:128) */
.share-popup {
  border: none;
  border-radius: 16px;
  padding: 24px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  font-family: inherit;
}

.share-popup::backdrop {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.product-share-icon button {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  color: #666;
}

.product-share-icon button:hover {
  opacity: 0.7;
  color: #6b7a2e;
}

.share-copy-link input:focus {
  outline: none;
  border-color: #6b7a2e;
}

.share-copy-link button {
  transition: background-color 0.2s;
}

.share-copy-link button:hover {
  background-color: #5a6827;
}

.share-social a {
  transition: transform 0.2s;
  display: inline-block;
}

.share-social a:hover {
  transform: scale(1.1);
}

.product-top-badges{
display:flex;
gap:6px;
flex-wrap:wrap;
margin-top:10px;
margin-bottom:10px;
  align-items: center;
}
.custom-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 50px;
  border: 1px solid #e0e0e0;
  white-space: nowrap;   /* keeps each badge text on one line */
  max-width: 100%;       /* prevents any single badge overflowing its container */
}

.badge-pill{
background:#f4efe6;
color:#6b7a2e;
padding:6px 14px;
border-radius:30px;
font-size:13px;
font-weight:500;
border:1px solid #e0d9cc;
}

.product-benefits{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px 28px;
margin-top:15px;
margin-bottom:20px;
}

.benefit-item{
display:flex;
align-items:center;
gap:12px;
}

.benefit-item.hidden-benefit{
display:none;
}

.benefit-icon{
width:34px;
height:34px;
stroke: var(--icon-color, #8a8f45);
stroke-width:1.6;
fill:none;
}

.benefit-text{
display:flex;
flex-direction:column;
font-size:14px;
color: var(--text-color, #8a8f45);
}

.benefit-text strong{
font-weight:600;
color: var(--text-color, #8a8f45);
line-height:1.2;
}

.benefit-text span{
color: var(--text-color, #8a8f45);
line-height:1.2;
}

/* Short Description - Simple Version */
.product-short-description {
  margin: 15px 0 25px 0;
  padding: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  font-family: inherit;
  max-width: 100%;
}

@media (max-width: 768px) {
  .product-short-description {
    font-size: 15px;
    margin: 10px 0 20px 0;
    line-height: 1.6;
  }
}
/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  
  /* Benefits - Make them stack vertically */
  .product-benefits {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .benefit-item {
    width: 100%;
  }
  
  /* Variant options - Make them stack vertically */
  .product-variants,
  .variant-options,
  .alo-variant-cards {
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .alo-variant-card,
  .variant-item,
  .single-option-selector {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }
  
  /* If you have radio buttons or dropdowns */
  .variant-input-wrapper,
  .variant-select-wrapper {
    width: 100%;
    margin-bottom: 12px;
  }
  
  select.variant-selector {
    width: 100%;
    padding: 12px;
  }
  
  /* Price and quantity section */
  .product-price {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quantity-selector {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .add-to-cart-btn {
    width: 100%;
  }
}

/* Exact match to your screenshot */
@media (max-width: 768px) {
  
  .alo-variant-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    margin: 20px 0 !important;
  }
  
  .alo-variant-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #ffffff !important;
    border: 1px solid #e8e1d6 !important;
    border-radius: 8px !important;
    padding: 15px 5px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
  }
  
  .alo-variant-card .var-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 8px !important;
  }
  
  .alo-variant-card .var-price {
    font-size: 14px !important;
    color: #7d8b49 !important;
    font-weight: 500 !important;
  }
  
  /* Active state for selected variant */
  .alo-variant-card.active {
    background: #7d8b49 !important;
    border-color: #7d8b49 !important;
  }
  
  .alo-variant-card.active .var-title,
  .alo-variant-card.active .var-price {
    color: #ffffff !important;
  }
}
/* END_SECTION:main-product */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:benefit-icon (INDEX:238) */
/* Your existing styles here */

/* Add this new CSS for benefits */
.benefit-icon {
  width: 34px;
  height: 34px;
  stroke: var(--icon-color, #8a8f45);
  stroke-width: 1.6;
  fill: none;
  display: block;
  flex-shrink: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text span:first-child {
  font-weight: 600;
  color: var(--text-color, #8a8f45);
}

.benefit-text span:last-child {
  font-size: 13px;
  color: var(--text-color, #8a8f45);
  opacity: 0.9;
}
/* END_SNIPPET:benefit-icon */