/** Shopify CDN: Minification failed

Line 868:4 Unexpected "}"

**/
/*// =============================================================================
// Ella Custom CSS - Customize The Style For Layout
// =============================================================================

// =============================================================================
//
// IMPORTANT DISCLAIMER
// Shopify is notifying shop owners about the need to convert scss files to css files.
// Please use only CSS to style the layout.
//
// =============================================================================*/
/* ============================================
   ADD TO COMPARE BUTTON - STABLE BELOW GRID
   ============================================ */

/* Wrapper */
.compare-button-wrapper {
  width: 100%;
  text-align: center;
  padding: 8px 0 5px;
  margin-top: 5px;
}

/* Button Style */
.add-to-compare-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #F42C23;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 14px;
  border: 1px solid #F42C23;
  border-radius: 4px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  line-height: 1.4;
  letter-spacing: 0.3px;
  width: auto;
  max-width: 100%;
}

.add-to-compare-btn:hover {
  color: #fff;
  border-color: #F42C23;
  background-color: #F42C23;
  text-decoration: none;
}

/* Active/Added State */
.add-to-compare-btn.is-compared {
  color: #fff;
  background-color: #F42C23;
  border-color: #F42C23;
}

.add-to-compare-btn.is-compared:hover {
  background-color: #F42C23;
  color: #fff;
}


.add-to-compare-btn.is-compared .compare-text {
  display: none;
}

.add-to-compare-btn.is-compared .compare-text-added {
  display: inline !important;
}

/* Icon */
.compare-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.compare-icon svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablets */
@media screen and (max-width: 1024px) {
  .add-to-compare-btn {
    font-size: 12px;
    padding: 5px 12px;
    gap: 5px;
  }

  .compare-icon svg {
    width: 13px;
    height: 13px;
  }
}

/* Mobile Large */
@media screen and (max-width: 767px) {
  .compare-button-wrapper {
    padding: 6px 0 4px;
    margin-top: 4px;
  }

  .add-to-compare-btn {
    font-size: 11px;
    padding: 5px 10px;
    gap: 4px;
    border-radius: 3px;
  }

  .compare-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* Mobile Small */
@media screen and (max-width: 480px) {
  .add-to-compare-btn {
    font-size: 10.5px;
    padding: 4px 8px;
    gap: 3px;
    width: 100%;
    justify-content: center;
  }

  .compare-icon svg {
    width: 11px;
    height: 11px;
  }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
  .add-to-compare-btn {
    font-size: 10px;
    padding: 4px 6px;
  }
  
  /* Optionally hide icon on very small screens */
  .compare-icon {
    display: none;
  }
}
.customImageBanner--smallImg {
  --item-distance-style: 24px !important;
}
.marquee.active-screen .marquee__list{
  --time-scroll: 20s !important;
}
.halo-popup-wrapper .halo-popup-content {
  display: none !important;
}

/* style for BMI Calculator */

   .bmi-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 900px;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            border: 1px solid #f2f2f2;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
        }

        .bmi-form-section {
            flex: 1;
            /* min-width: 300px; */
            padding: 10px 20px;
        }

        .bmi-result-section {
            flex: 1;
            /* min-width: 300px; */
            padding: 10px 20px;
            text-align: center;
        }

        .bmi-h1 {
            text-align: center;
            color: #333;
        }
        .bmi-input[type=number]::-webkit-inner-spin-button, 
        .bmi-input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .bmi-label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }

        .bmi-input[type="text"], .bmi-input[type="number"] {
            width: 100%;
            padding: 8px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .bmi-gender-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .bmi-gender-group .bmi-label {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            cursor: pointer;
        }

        .bmi-gender-group .bmi-input[type="radio"] {
            display: none;
        }

        .bmi-gender-group .bmi-input[type="radio"]:checked + label {
            background-color: red;
            color: #fff;
            border-color: red;
        }

        .bmi-button {
            background-color: red;
            /* background: linear-gradient(to right, #0b1d51, #556697); */
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            text-decoration: none;
        }

        .bmi-button:hover {
            opacity: 0.9;
        }

        .bmi-result {
            border: 1px solid #f2f2f2;
            padding: 20px;
            border-radius: 10px;
            background-color: #f9f9f9;
        }

        .bmi-result .bmi-value {
            font-size: 48px;
            font-weight: bold;
            color: #0b1d51;
        }

        .bmi-result .bmi-p {
            margin: 10px 0;
        }

        .bmi-range {
            font-size: 14px;
            color: #888;
        }

        .bmi-status {
            font-size: 25px;
            font-weight: bold;
            color: #0b1d51;
        }

        .anime-image {
            margin-top: 20px;
            text-align: center;
        }

        .anime-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

/* css for bmr calculator */

.bmr-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            width: 100%;
            gap: 20px;
            margin: 0 auto;
        }

        .bmr-form-container, .bmr-result-container {
            flex: 1;
            min-width: 280px;
        }

        .bmr-form-container {
            padding-right: 20px;
        }

        .bmr-h1 {
            color: #0b1d51;
            font-size: 2rem;
        }

        .bmr-h2 {
            color: #0b1d51;
            margin-top: 20px;
        }

        .bmr-form {
            display: flex;
            flex-direction: column;
        }

        .bmr-input-group {
            margin: 15px 0;
            text-align: left;
        }

        .bmr-input[type="number"] {
            padding: 10px;
            width: 100%;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-top: 5px;
        }

        .bmr-gender-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .bmr-gender-group .bmr-label {
            flex: 1;
            text-align: center;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            cursor: pointer;
        }

        .bmr-gender-group .bmr-input[type="radio"] {
            display: none;
        }

        .bmr-gender-group .bmr-input[type="radio"]:checked+label {
            background-color: #0b1d51;
            color: #fff;
            border-color: #0b1d51;
        }

        .bmr-label {
            font-size: 1.1rem;
            color: #555;
        }

        .bmr-button {
            background-color: #0b1d51;
            color: white;
            padding: 10px;
            font-size: 1.2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            text-align: center;
        }

        .bmr-button:hover {
            background-color: #0a1347;
        }

        .bmr-input[type=number]::-webkit-inner-spin-button, 
        .bmr-input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .bmr-table {
            width: 100%;
            border-collapse: collapse;
        }

        .bmr-th, .bmr-td {
            border: 1px solid #999;
            padding: 10px;
            text-align: left;
        }

        .bmr-th {
            background-color: #6c5c84;
            color: #fff;
        }

        .bmr-tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .bmr-strong {
            font-weight: bold;
        }

        .bmr-exercise-info {
            margin-top: 10px;
            font-size: 14px;
        }

        .bmr-result-container {
            border-left: 2px solid #e0e0e0;
            padding-left: 20px;
        }

        .bmr-result-container img {
            margin-top: 20px;
            max-width: 100%;
            border-radius: 8px;
        }

        .align-center{
            text-align: center;
        }

        @media (max-width: 768px) {
            .bmr-container {
                flex-direction: column;
                align-items: center;
            }

            .bmr-result-container {
                border-left: none;
                padding-left: 0;
            }
        }

/* css for body fat calculator */
.fat-container {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: row;
            gap: 20px;
            transition: transform 0.3s ease;
            margin: 0 auto;
        }
        .fat-container:hover {
            transform: scale(1.02);
        }
        .fat-left-section {
            flex: 1;
        }
        .fat-right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .fat-h1 {
            text-align: center;
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 25px;
        }
        .fat-label {
            display: block;
            margin-bottom: 10px;
            color: #34495e;
            font-weight: 600;
            font-size: 14px;
        }
        .fat-input, .fat-select {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .fat-input:focus, .fat-select:focus {
            border-color: #3498db;
        }
        .fat-gender-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .fat-gender-container .fat-input[type="radio"] {
            display: none;
        }
        .fat-input[type=number]::-webkit-inner-spin-button, 
        .fat-input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .fat-gender-container .fat-label {
            background-color: #ecf0f1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            flex: 1;
            margin: 0 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .fat-gender-container .fat-input[type="radio"]:checked + label {
            background-color: #0b1d51;
            color: #fff;
        }
        .fat-button {
            background-color: #0b1d51;
            color: #fff;
            border: none;
            padding: 14px;
            font-size: 18px;
            border-radius: 8px;
            cursor: pointer;
            width: 30%;
            margin-bottom: 15px;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }
        .fat-button:hover {
            background-color: #0b1d51;
        }
        #result {
            margin-top: 20px;
            font-size: 18px;
            text-align: center;
            color: #2c3e50;
            line-height: 1.6;
        }
        .fat-underfat {
            color: lightgreen;
        }
        .fat-healthy {
            color: green;
        }
        .fat-overweight {
            color: lightcoral;
        }
        .fat-obese {
            color: red;
        }
        .info-section {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: left;
            line-height: 1.6;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        .info-section p {
            margin: 10px 0;
        }
        .info-section strong {
            color: #0b1d51;
        }
        .info-image {
            margin-top: 20px;
            max-width: 75%;
            height: auto;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .fat-container {
                flex-direction: column;
                gap: 0;
            }
            .fat-button {
                width: 100%;
            }
        }

/* css for nutrition calculator */

.nutri_container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            margin: 0 auto;
        }

        .nutri_h1 {
            color: #2e7d32;
            font-size: 24px;
            text-align: center;
            margin-bottom: 20px;
        }

        .nutri_icons {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .nutri_icons div {
            text-align: center;
            margin: 0 10px;
        }

        .nutri_icons div i {
            font-size: 30px;
            color: #4caf50;
        }

        .icons div p {
            font-size: 14px;
            color: #555;
        }

        .nutri_search-container {
            position: relative;
            margin-bottom: 20px;
        }

        .nutri_search-container input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .nutri_search-container .fa-search {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: #888;
        }

        .nutri_suggestion-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            max-height: 200px; 
            overflow-y: auto;
            z-index: 10;
        }

        .nutri_suggestion-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
        }

        .nutri_suggestion-item:hover {
            background-color: #e6ffe6;
        }

        .nutri_results-container {
            margin-top: 20px;
        }

        .nutri_result-item {
            /* display: flex; */
            /* justify-content: space-between; */
            align-items: center;
            background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          /* max-width:400px; */
        }

        .nutri_result-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .nutri_result-item div {
            text-align: center;
        }

        .nutri_result-item div span {
            display: block;
            font-size: 20px;
            font-weight: bold;
            color: #00796b;
        }

        .nutri_result-item div small {
            font-size: 14px;
            color: #555;
        }

        .nutri_h4 {
            color: #2e7d32;
            font-size: 12px;
            text-align: center;
            margin-bottom: 20px;
        }

/* Main Card */
.nutri_result-item {
    background: linear-gradient(to bottom, #e6f7ff, #f0faff); /* Light blue gradient */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin: 15px auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.nutri_result-item:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Table */
.nutri_table {
    width: 100%;
    text-align: center;
    font-size: 1.2em;
   border-collapse: collapse;
}
nutri_table td {
    padding: 10px;
    color: #007bff; /* Blue text */
    font-weight: bold;
}

/* Remove table borders */
.nutri_table, .nutri_table th, .nutri_table td {
    border: none; /* Removes borders completely */
}

/* Table Labels (First Row) */
.nutri_label {
    font-weight: bold;
    color: #007bff;
  text-align:center;
    padding-bottom: 5px;
}

/* Table Values (Second Row) */
.nutri_value {
    font-weight: bold;
    color: #007bff; 
  text-align:center;
}

/* Responsive Table */
@media (max-width: 768px) {
    .nutri_table {
        font-size: 12px;
    }
}

.nutri_result-item-header{
  text-align: center;
  font-size: 1.5em; 
  font-weight: bold; 
  margin-bottom: 10px;
}
.nutri_result-item-para{
  display: flex;
  justify-content: space-between; 
  padding: 5px 10px; 
  font-weight: bold;
  font-size: 1.2em;
  flex-wrap: wrap; 
}
.nutri-result-para-result-head{
display: flex; 
  justify-content: space-between;
  font-size: 1em; 
  font-weight: bold;
  padding: 5px 10px;
}

        @media (max-width: 768px) {
            .nutri_container {
                padding: 15px;
            }

            .nutri_h1 {
                font-size: 20px;
            }

            .nutri_icons div i {
                font-size: 24px;
            }

            .nutri_icons div p {
                font-size: 12px;
            }

            .nutri_search-container input {
                font-size: 14px;
            }

            .result-item div span {
                font-size: 18px;
            }

            .result-item div small {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {

            .nutri_icons div {
                margin-bottom: 10px;
            }

            .result-item div {
                margin-bottom: 10px;
            }
          .nutri_result-item div span{
            font-size:12px;
          }
        }
    }
.cpt-acc-body .halo-text-format{
    color: #000 !important;
    --color-text2: #000 !important;
}

.breadcrumb-left{
    font-size: 13px !important;
}


/* Make first blog article same size as all others — remove featured treatment */
.blog-block-item.column-1 .item--first {
  grid-column: auto !important;
  width: 100% !important;
}

.blog-block-item.column-1 .item--first .card-article--featured,
.blog-block-item.column-1 .item--first .card-article--first,
.blog-block-item.column-1 .item--first [class*="featured"],
.blog-block-item.column-1 .item--first [class*="first"] {
  display: block !important;
  flex-direction: column !important;
}

.blog-block-item.column-1 .item--first .card-article__image,
.blog-block-item.column-1 .item--first .media {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}

.blog-block-item.column-1 .item--first .card-article__info,
.blog-block-item.column-1 .item--first .card-article__content {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  float: none !important;
}

/* Hide Featured badge */
.blog-block-item.column-1 .item--first .badge--featured,
.blog-block-item.column-1 .item--first [class*="badge"] {
  display: none !important;
}

.blog-row .item--first{
    display: none !important;
}

.jdgm-rev-widg{
    padding: 24px 45px !important;
}

.pkf-accordion-section .pkf-icon .pkf-h,
.pkf-accordion-section .pkf-icon .pkf-v { display: none; }

.pkf-accordion-section .pkf-trigger::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}
.pkf-accordion-section .pkf-item.is-active .pkf-trigger::after {
  transform: rotate(45deg);
}

.section-heading-block .shb__desc.rte {
  max-width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
}

.section-heading-block .shb__desc.rte img,
.section-heading-block .shb__desc.rte iframe,
.section-heading-block .shb__desc.rte table,
.section-heading-block .shb__desc.rte video,
.section-heading-block .shb__desc.rte embed {
  max-width: 100% !important;
  height: auto !important;
}

.header__icon--wishlist{
    display: none !important;
}

.compare-button-wrapper{
    display: none !important;
}

