/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 44:12 Expected identifier but found whitespace
Line 44:14 Unexpected "{"
Line 44:23 Expected ":"
Line 44:50 Expected ":"
Line 47:8 Expected identifier but found whitespace
Line 47:10 Unexpected "{"
Line 47:19 Expected ":"
... and 58 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:90-day-transformation (INDEX:1) */
.section-90 {
  background: {{ section.settings.bg_color }};
  padding: 80px 20px;
}

.section-90 .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.left { flex: 1; }
.right { flex: 1; }

.right img {
  width: 100%;
  border-radius: 20px;
}

/* TEXT */
.heading {
  font-size: {{ section.settings.heading_size }}px;
  font-weight: 700;
  margin-bottom: 15px;
  color: {{ section.settings.heading_color }};
}

.subtext {
  font-size: {{ section.settings.text_size }}px;
  color: {{ section.settings.text_color }};
  margin-bottom: 40px;
}

/* STATS */
.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.stat {
  text-align: center;
  width: 120px;
}

/* PROGRESS */
.progress {
  width: 90px;
  height: 90px;
  position: relative;
  margin: auto;
}

.progress svg {
  transform: rotate(-90deg);
}

.progress circle {
  fill: none;
  stroke-width: 6;
}

.progress .bg {
  stroke: #eee;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: {{ section.settings.stat_size }}px;
  font-weight: 700;
}

/* TEXT BELOW */
.stat p {
  font-size: {{ section.settings.stat_text_size }}px;
  margin-top: 12px;
  color: {{ section.settings.text_color }};
  line-height: 1.4;
}

/* 🔥 BORDER BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  background: transparent;
  color: {{ section.settings.button_color }};

  padding: 10px 20px;
  border-radius: 22px;

  border: 2px solid {{ section.settings.button_color }};

  font-size: {{ section.settings.button_font_size }}px;
  font-weight: 600;
  letter-spacing: 0.3px;

  text-decoration: none;
  line-height: 1;

  transition: all 0.25s ease;
}

.btn span {
  transition: transform 0.25s ease;
}

/* HOVER */
.btn:hover {
  background: {{ section.settings.button_color }};
  color: #ffffff;
}

.btn:hover span {
  transform: translateX(3px);
}

.note {
  margin-top: 12px;
  font-size: {{ section.settings.note_size }}px;
  color: {{ section.settings.note_color }};
}

/* MOBILE */
@media(max-width:768px){
  .section-90 .container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* END_SECTION:90-day-transformation */

/* START_SECTION:benefits-split (INDEX:15) */
/* SECTION */
.benefit-section {
  padding: 90px 20px;
  text-align: center;
}

/* HEADING */
.benefit-heading {
  max-width: 900px;
  margin: 0 auto 10px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-sub {
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* GRID */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 460px 1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.benefit-image img {
  width: 100%;
  border-radius: 20px;
}

/* ITEM */
.benefit-item {
  margin-bottom: 45px;
  max-width: 320px;
}

.benefit-left {
  text-align: right;
}

.benefit-right {
  text-align: left;
}

/* ICON */
.benefit-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  border: 2px solid var(--icon-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.benefit-icon svg {
  width: var(--icon-inner-size);
  height: var(--icon-inner-size);
  stroke: var(--icon-color);
}

/* CUSTOM IMAGE ICON */
.benefit-icon img {
  width: var(--icon-inner-size);
  height: var(--icon-inner-size);
  object-fit: contain;
}

/* TEXT */
.benefit-title {
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* BUTTON */
.benefit-btn {
  margin-top: 40px;
}

.benefit-btn a {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {

  .benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .benefit-image {
    order: -1;
  }

  .benefit-left,
  .benefit-right {
    text-align: center;
  }

  .benefit-item {
    max-width: 100%;
    margin-bottom: 25px;
  }
}
/* END_SECTION:benefits-split */

/* START_SECTION:community-posts (INDEX:28) */
/* SECTION */
.community-section {
  padding: 70px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADING */
.community-heading {
  text-align: center;
  margin-bottom: 50px;
}

.community-heading h2 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.community-heading span {
  color: var(--highlight-color);
}

/* GRID */
.community-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* CARD */
.community-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* IMAGE */
.community-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* CONTENT */
.community-content {
  padding: 20px;
}

.community-number {
  display: inline-block;
  font-size: 13px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  margin-bottom: 10px;
}

.community-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.community-desc {
  font-size: 14px;
  color: #555;
}

/* MOBILE SLIDER */
@media (max-width: 768px) {

  .community-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
  }

  .community-grid::-webkit-scrollbar {
    display: none;
  }

  .community-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
/* END_SECTION:community-posts */

/* START_SECTION:comparison-table (INDEX:30) */
/* SECTION */
.compare-section {
  padding: 80px 20px;
  text-align: center;
}

/* HEADING */
.compare-heading {
  font-weight: 700;
  margin-bottom: 10px;
}

.compare-sub {
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* TABLE */
.compare-table {
  max-width: 1000px;
  margin: 0 auto;
}

/* GRID (LOCKED LIKE DESIGN) */
.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
}

/* HEADER */
.compare-header {
  margin-bottom: 30px;
}

/* CENTER COLUMN */
.compare-product {
  background: {{ section.settings.highlight_bg }};
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
}

/* IMAGE SAME SIZE */
.product1-image {
  width: {{ section.settings.product1_image_size }}px;
  height: {{ section.settings.product1_image_size }}px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 10px;
}

.product2-image {
  width: {{ section.settings.product2_image_size }}px;
  height: {{ section.settings.product2_image_size }}px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 10px;
}

/* ROW */
.compare-row {
  padding: 20px 0;
  border-top: 1px solid #e5dfd8;
}

/* TEXT */
.compare-feature {
  text-align: left;
  font-size: 15px;
}

/* ICON */
.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 14px;
  color: #fff;
}

.icon-yes { background: #22c55e; }
.icon-no { background: #ef4444; }

/* BUTTON */
.compare-btn {
  margin-top: 50px;
}

.compare-btn a {
  padding: 12px 26px;
  border-radius: 28px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* MOBILE SAME LAYOUT */
@media (max-width: 768px) {

  .compare-header,
  .compare-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .compare-feature {
    font-size: 13px;
  }

  .compare-product {
    padding: 20px 10px;
  }

}
/* END_SECTION:comparison-table */

/* START_SECTION:doctor-recommendation (INDEX:35) */
.doctor-section {
  padding: 60px 20px;
  background: #f5efe9;
}

.doctor-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.doctor-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.doctor-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.doctor-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.doctor-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--btn-color);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.doctor-btn:hover {
  opacity: 0.85;
}

/* Mobile */
@media(max-width: 768px){
  .doctor-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .doctor-content h2 {
    font-size: 26px;
  }
}
/* END_SECTION:doctor-recommendation */

/* START_SECTION:faq-image-split (INDEX:36) */
.faq-section {
  padding: 60px 20px;
  background: #f5efe9;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.faq-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.faq-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-content h2 span {
  font-style: italic;
  font-weight: 500;
}

.faq-content p {
  color: #666;
  margin-bottom: 25px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 15px 20px;
  cursor: pointer;
  border: 1px solid #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #777;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-btn {
  margin-top: 20px;
}

.faq-btn a {
  background: #7d5e2b;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.faq-btn a:hover {
  background: #7d5e2b;
  opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-content h2 {
    font-size: 28px;
  }
}
/* END_SECTION:faq-image-split */

/* START_SECTION:reviews-slider (INDEX:158) */
/* SECTION */
.review-section {
  padding: 80px 20px;
  max-width: 1350px;
  margin: auto;
  text-align: center;
}

/* TOP RATING */
.review-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* STAR BOX */
.star-box {
  background: var(--star-bg);
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 3px;
}

/* HEADING */
.review-heading {
  font-weight: 700;
  margin-bottom: 45px;
}

.review-heading i {
  font-style: italic;
  font-weight: 500;
}

/* GRID */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.review-card {
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.review-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* STARS ROW */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}

.stars span {
  background: var(--star-bg);
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  border-radius: 3px;
}

/* TITLE */
.review-title {
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.review-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

/* USER */
.review-user {
  font-size: 13px;
  font-weight: 600;
}

.verified {
  color: var(--verified-color);
  font-size: 12px;
  margin-left: 6px;
}

/* DOT SLIDER */
.slider-dots {
  margin-top: 25px;
}

.slider-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
}

.slider-dots span.active {
  background: var(--accent);
}

/* BUTTON */
.review-btn {
  margin-top: 30px;
}

.review-btn a {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
/* END_SECTION:reviews-slider */

/* START_SECTION:ritual-steps (INDEX:160) */
/* SECTION */
.ritual-section {
  padding: 80px 20px;
  text-align: center;
}

/* HEADING */
.ritual-heading {
  font-weight: 700;
  margin-bottom: 10px;
}

.ritual-heading i {
  font-style: italic;
}

.ritual-sub {
  color: #6b6b6b;
  margin-bottom: 50px;
}

/* GRID (DESKTOP) */
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.ritual-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
  text-align: left;
}

/* IMAGE */
.ritual-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* CONTENT */
.ritual-content {
  padding: 20px;
}

/* NUMBER */
.ritual-number {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  margin-right: 10px;
}

/* TITLE */
.ritual-title {
  font-weight: 700;
  display: inline-block;
}

/* TEXT */
.ritual-text {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 10px;
}

/* 🔥 MOBILE SLIDER */
@media (max-width: 768px) {

  .ritual-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-left: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .ritual-grid::-webkit-scrollbar {
    display: none;
  }

  .ritual-card {
    min-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
/* END_SECTION:ritual-steps */