/** Shopify CDN: Minification failed

Line 246:3 Unexpected "/"
Line 292:43 Expected ":"

**/
/* Healing Process Section Styles */

:root {
    --healing-bg-color: #2a1f3d; /* Dark blue-purple background */
    --healing-text-white: #ffffff;
    --healing-orange: #E39E5E; /* Light orange-brown */
    --healing-blue-gray: #8b9fb8; /* Muted blue-gray */
    --healing-button-red: #8b2635; /* Dark red button */
    --healing-tag-border: rgba(255, 255, 255, 0.3);
  }
    .discover-ayurveda-section.facitop {
   
    align-items: start;
  
}
  .discover-ayurveda-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 156px;
  }
  .facilities.discover-ayurveda-section {
  
    margin-top: -1px;
}
  .discover-ayurveda__container {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
  }
  
  /* Left Section */
  .discover-ayurveda__left {
    display: flex;
    flex-direction: column;
    width:40%;
    gap:15px;
  }
  .discover-ayurveda__content ul{
    padding-left:28px;
  }
  
  .discover-ayurveda__header {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
  .discover-ayurveda-content {
    color: #D7D7D7;
    font-size: 16px;
    font-family: 'avenir_book';
    letter-spacing: 0;
    line-height: 1.5;
    font-weight: 350;
    margin-bottom: 27px;
}
  .discover-ayurveda__label {
    margin-bottom: 10px;
  }
  
  .discover-ayurveda__title {
    color:#FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 57.6px */
    letter-spacing: 0.96px;
    margin: 0 0 20px;
  }
  
  .discover-ayurveda__subtitle {
    color:#8A8A8A;
    font-family: 'avenir_book' !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 150%; /* 24px */
    margin-bottom: 25px;
  }
  
  /* Steps */
  .discover-ayurveda__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .discover-ayurveda__step {
    display: flex;
    align-items: flex-start;
    flex-direction:column;
    gap: 20px;
  }
  
  .discover-ayurveda__step-number {
    color: #fff;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px; /* 123.529% */
    letter-spacing: -0.68px;
  }
  
  .discover-ayurveda__step-number--orange {
    color: var(--healing-orange);
  }
  span.discover-ayurveda__step-number.discover-ayurveda__step-number--orange{
    padding-right: 0;
    width:36px;
  }
  span.discover-ayurveda__step-number.discover-ayurveda__step-number--orange img{
    width:34px;
    height:34px;
  }
  span.discover-ayurveda__step-title-content {
    font-size: 14px;
    color: #8A8A8A;
    line-height: 1.5;
    font-family: avenir_book !important;
}
  .discover-ayurveda__step-number--blue {
    color: var(--healing-blue-gray);
  }
  
  .discover-ayurveda__step-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    width: 100%;
    gap:12px;
  }
.discover-ayurveda__step-title{
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 93%;
    margin: 0;
}
  .discover-ayurveda__step-title-text {
    flex: 1;
    font-family: 'avenir_book';
    font-size: 19px;
        font-weight: 350;
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom:6px;
    color: white;
  }

  .discover-ayurveda__step-chevron {
    display: none;
    transition: transform 0.35s ease;
    margin-left: auto;
    flex-shrink: 0;
  }

  .discover-ayurveda__step-chevron svg {
    width: 24px;
    height: 24px;
  }

  .discover-ayurveda__step.accordion-open .discover-ayurveda__step-chevron {
    transform: rotate(180deg);
  }

  /* Mobile accordion content - smooth open/close */
  .discover-ayurveda__mobile-content {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    transition: max-height 0.4s ease, padding-top 0.35s ease, padding-bottom 0.35s ease;
  }

  .discover-ayurveda__mobile-content.active {
    max-height: 100%;
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  
  .discover-ayurveda__step-divider {
    height: 1px;
    width: 100%;
    max-width: 20rem;
  }
  
  .discover-ayurveda__step-divider--orange {
    background-color: #5A5A5A;
    min-width: 100%;
    display: block;

  }
  .accordion-trigger.active  .discover-ayurveda__step-divider--orange{
    background-color: #E39E5E;
  }
  .discover-ayurveda__step-divider--blue {
    background-color: var(--healing-blue-gray);
  }
  
  .discover-ayurveda__cta {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* Right Section - min-height prevents layout shift when switching tabs on desktop */
  .discover-ayurveda__right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .discover-ayurveda__image-wrapper {
    width: 100%;
    height:auto;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 0;

  }
  /* .discover-ayurveda__image-wrapper--square {
  height: 356px;
}

/* Wide */
.discover-ayurveda__image-wrapper--wide {
  height: 267px;
} */
  .discover-ayurveda__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    align-self: stretch;
    border-radius: 10px;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat; */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), lightgray 50% / cover no-repeat;

  }
  
  .discover-ayurveda__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .discover-ayurveda__image-placeholder svg {
    width: 100%;
    height: 100%;
  }
  
  .discover-ayurveda__content {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  
  .discover-ayurveda__content-title {
    color: #fff;
    font-family: Amster;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%; /* 32.5px */
    letter-spacing: 0.5px;
    margin: 0 0 10px;
  }
  
  .discover-ayurveda__content-text {
    color:#D7D7D7;
    font-family: 'avenir_book' !important;s
    font-size:16px;
    font-style: normal;
    font-weight: 350;
    line-height: 150%; /* 24px */
    margin:0 0;
  }
  .discover-ayurveda__content-text {
color:#8A8A8A;
  }
  .discover-ayurveda__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 20px;
  }
  
  .discover-ayurveda__tag {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid#8a8a8a;
    border-radius:100px;
    background-color: transparent;
    color:#8a8a8a;
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: 150%; /* 24px */
    font-family: 'avenir_book' !important;
  }
@media(max-width:1329px){
  .discover-ayurveda-section{
    padding-left:5rem;
    padding-right:5rem;
  }

}
  /* Slider: image section at max-width 1122px - Slick center mode + loop (reference design) */
  @media screen and (max-width: 1122px) {
    .discover-ayurveda__slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 0 0 0.5rem;
        height: auto;
    }
    .discover-ayurveda__image-wrapper {
height: auto;
    }
    .discover-ayurveda__right{
      flex-direction: row;
    }
    .discover-ayurveda__image-wrapper{
      margin-bottom: 0;
    }
    .discover-ayurveda__slider-track:not(.slick-initialized) {
      display: flex;
      align-items: stretch;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 16px;
      padding: 0 12.5%;
      box-sizing: content-box;
    }
    .discover-ayurveda__slider-track:not(.slick-initialized)::-webkit-scrollbar {
      display: none;
    }
    .discover-ayurveda__slider-track:not(.slick-initialized) .discover-ayurveda__right {
      flex: 0 0 70%;
      min-width: 70%;
      scroll-snap-align: center;
      scroll-snap-stop: always;
      box-sizing: border-box;
    }
    /* Distinctly rounded corners on all slider images (reference) */
    .discover-ayurveda__slider .discover-ayurveda__image {
      border-radius: 16px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    /* Small gap between slides so center and sides are clearly separated */
    .discover-ayurveda__slider .slick-slide {
      padding: 0 9px;
      box-sizing: border-box;
    }
    .discover-ayurveda__slider .slick-list {
      margin: 0 -8px;
    }
    .discover-ayurveda__slider .slick-slide .discover-ayurveda__right {
      display: flex !important;
    }
    .discover-ayurveda__slider .slick-list,
    .discover-ayurveda__slider .slick-track {
      height: 100%;
      display: flex;
      align-items: center;
    }
    .discover-ayurveda__slider .slick-slide.slick-center .discover-ayurveda__right {
      opacity: 1;
    }
    .discover-ayurveda__slider .slick-slide:not(.slick-center) .discover-ayurveda__right {
      opacity: 0.88;
    }
    /* Nav: crisp white outline, white chevron, centered below slider */
    .discover-ayurveda__slider-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 33px;
      margin-top: 20px;
    }
    
    .discover-ayurveda__slider-prev,
    .discover-ayurveda__slider-next {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      padding: 0;
      background: transparent;
      color: #fff;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
      border:0;
    }
    .discover-ayurveda__slider-prev:hover,
    .discover-ayurveda__slider-next:hover {
      /* background: rgba(255, 255, 255, 0.1); */
      transform: scale(1.05);
    }
    .discover-ayurveda__slider-prev svg,
    .discover-ayurveda__slider-next svg {
      width: 100%;
      height: 100%;
    }
    /* Slick overrides - hide default arrow content, use our buttons */
    .discover-ayurveda__slider .discover-ayurveda__slider-prev::before,
    .discover-ayurveda__slider .discover-ayurveda__slider-next::before {
      display: none;
    }
  }

  @media screen and (min-width: 1123px) {
    .discover-ayurveda__slider-nav {
      display: none;
    }
    .discover-ayurveda__slider-track {
      display: block;
      overflow: visible;
    }
    .discover-ayurveda__slider .slick-slide:not(.slick-center) .discover-ayurveda__right {
      opacity: 1;
    }
  }

  /* Responsive Design - Mobile/Tablet (Accordion Mode) */
@media screen and (max-width: 1121px) {
    .discover-ayurveda-section {
        flex-direction: column;
        padding: 0 1rem;
    }

    .discover-ayurveda__container {
        padding: 0 1rem;
    }

    .discover-ayurveda__left {
        width: 100%;
        max-width: 100%;
    }

    .discover-ayurveda__header {
        width: 100%;
    }

    .discover-ayurveda__step {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }

    .discover-ayurveda__step-title {
        font-size: 24px;
        line-height: 32px;
        cursor: pointer;
        margin-bottom: 0;
    }

    .discover-ayurveda__step-title-text {
        flex: 1;
        margin-right: 1rem;
    }

    .discover-ayurveda__step-chevron {
        display: block;
    }

    .discover-ayurveda__step-divider {
        margin-top: 10px;
        margin-bottom: 0;
        width: 100%;
    }

    .discover-ayurveda__step-content {
        width: 100%;
    }

    /* Hide standalone right section on mobile */

    /* Show mobile accordion content - smooth transition */
    .discover-ayurveda__mobile-content {
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        width: 100%;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.35s ease;
    }

    .discover-ayurveda__mobile-content.active {
        max-height: 100%;
        padding-top: 0;
    }

    .discover-ayurveda__mobile-content .discover-ayurveda__image-wrapper {
        margin-bottom: 10px;
    }

    .discover-ayurveda__mobile-content .discover-ayurveda__content {
        width: 100%;
    }

    /* First accordion chevron rotated when open */
    .discover-ayurveda__step[data-step="1"].accordion-open .discover-ayurveda__step-chevron {
        transform: rotate(180deg);
    }
    .discover-ayurveda__label{
      color:#E39E5E;
      text-align: center;
      font-size: 12px;
      font-style: normal;
      font-weight: 800;
      line-height: 130%; /* 15.6px */
      letter-spacing: 2.4px;
      text-transform: uppercase;
    }
    .discover-ayurveda__title{
      color:#FFF;
      text-align: center;
      font-size: 34px;
      font-style: normal;
      font-weight: 300;
      line-height: 130%; /* 44.2px */
      letter-spacing: 0.68px;
    }
    .discover-ayurveda__subtitle{
      color: #D7D7D7;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 350;
      line-height: 150%; /* 24px */
    }
    span.discover-ayurveda__step-number.discover-ayurveda__step-number--orange{
      padding-right: 0;
    }
    .discover-ayurveda__left {
      gap: 20px;
    }
    .discover-ayurveda__cta {
      margin: 10px auto 0 auto;
  }
    .discover-ayurveda__slider .slick-slide  .discover-ayurveda__image-wrapper {
      height: 204px;
      border-radius: 10px;
      margin-bottom: 0;
    }
    .discover-ayurveda__slider .slick-slide.slick-active  .discover-ayurveda__image-wrapper {
      height: 304px;
    }
    .discover-ayurveda__content-title{
      color: #FFF;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 130%; /* 26px */
    }
  .index-  .discover-ayurveda__content-text{
      font-size: 14px;
    }
    .discover-ayurveda__tag{
      color:#D7D7D7;
      font-size: 14px;
      font-style: normal;
      font-weight: 350;
      line-height: 24px; /* 171.429% */
    }
    .testimonial-video-section{
      padding-bottom: 0;
    }
   
}

  @media screen and (min-width: 1122px) {
    .discover-ayurveda__container {
      gap: 4rem;
      padding: 0 3rem;
      align-items: start;
      display:flex;
    }
  
    .discover-ayurveda__subtitle {
      max-width: 100%;
    }
  
    .discover-ayurveda__steps {
      gap: 2.5rem;
    }
    .discover-ayurveda__slider {
        padding: 0 3rem;
        padding: 0 !important;
        width: 50%;
        height: auto;
        display: flex;
        align-self: stretch;
        
        /* min-height set by JS to tallest tab content so section doesn't shift */
    }
    /* Hide mobile accordion content on desktop */
    .discover-ayurveda__mobile-content {
      display: none !important;
    }
  }
  
  /* Responsive Design - Desktop */
  @media screen and (min-width: 1122px) {
    .discover-ayurveda__container {
      gap: 125px;
      padding: 0;
    }
  
    .discover-ayurveda__header {
      gap: 0;
    }
  
    .discover-ayurveda__steps {
      gap: 3rem;
    }
  
    .discover-ayurveda__right {
      gap: 2.5rem;
    }
  
    .discover-ayurveda__content {
      gap: 0px;
    }
    /* .discover-ayurveda__right {
        padding: 0 4rem;
    } */
      .discover-ayurveda__right.hover-content {
    display: none; 
    min-height:100% !important;
    align-self: stretch;
    flex-direction:row;
}
  }
 


.hover-content.active {
    display: flex; 
}
.discover-ayurveda__image-wrapper img{
  height:100%;
  object-fit:cover;
}
  .hover-trigger{
    cursor: pointer;
  }

  @media screen and (min-width:767px) and (max-width:1121px){
    .discover-ayurveda__mobile-content{
      width:60%;
    }
  }
@media screen and (min-width:1121px) and (max-width:1361px){
  .discover-ayurveda__tag{
        padding: 10px 15px;
        font-size:15px;
  }
}
@media screen and (max-width:768px){
  .discover-ayurveda__step-title-text {
    font-size: 16px;
    margin-bottom: 6px;
}
 .index- .discover-ayurveda__step-title-text {
    font-size: 25px;
}
.discover-ayurveda-content{
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
  h3.discover-ayurveda__step-title{
    color:#F2F2F2 !important;
    padding:0;
  }
  .discover-ayurveda__left{
    gap:14px;
  }
  .discover-ayurveda__step-number{
    color:#E39E5E !important;
  }
  .discover-ayurveda__container{
    gap:44px;
  }
  .discover-ayurveda__step-divider--orange{
    background-color:#5A5A5A !important;
  }
  .discover-ayurveda__mobile-content{
    padding-bottom:0;
  }
  .discover-ayurveda__step{
    gap:0;
  }
  .accordion-open.active {
    gap: 1.5rem;
}
  .discover-ayurveda__content ul{
    margin-bottom:0;
  }
      .discover-ayurveda__tag {
        font-size: 12px;
        line-height: 22px;
        padding: 6px 14px;
        color:#8a8a8a;
    }
    .discover-ayurveda-section ,.discover-ayurveda__container{
      padding-left: 0;
      padding-right: 0;
    }
    .discover-ayurveda__left{
      padding: 0 30px;
    }
}
@media(max-width:375px){
  .discover-ayurveda__button-text{
        font-size: 14px;
  }
}