/** Shopify CDN: Minification failed

Line 311: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);
  }
    
  .healing-process-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 156px;
  }
  
  .healing-process__container {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
  }
  
  /* Left Section */
  .healing-process__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 576px;
    width:576px
  }
  .healing-process__content ul{
    padding-left:28px;
  }
  
  .healing-process__header {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    width: 549px;
  }
  
  .healing-process__label {
    color:#E39E5E;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 18.2px */
    letter-spacing: 2.8px;
    text-transform: uppercase;  
    font-family: 'avenir_heavy' !important;
  }
  
  .healing-process__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;
  }
  
  .healing-process__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 */
  .healing-process__steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
  }
  
  .healing-process__step {
    display: flex;
    align-items: flex-start;
    flex-direction:column;
    gap: 1.5rem;
  }
  
  .healing-process__step-number {
    color: #fff;
    font-size: 34px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px; /* 123.529% */
    letter-spacing: -0.68px;
  }
  
  .healing-process__step-number--orange {
    color: var(--healing-orange);
  }
  span.healing-process__step-number.healing-process__step-number--orange{
    color:#E39E5E;
    font-family: Span !important;
    font-size: 48px;
    font-style: italic;
    font-weight: 300;
    line-height: 236.6px; /* 492.917% */
    letter-spacing: -0.96px;
    display: flex;
    height: 54px;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
  }
  
  .healing-process__step-number--blue {
    color: var(--healing-blue-gray);
  }
  
  .healing-process__step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .healing-process__step-title {
    color: #fff;
    font-size: 34px;
    font-style: normal;
    line-height: 42px; /* 123.529% */
    letter-spacing: 0.68px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
  }

  .healing-process__step-title-text {
    flex: 1;
    font-family: 'amster' !important;
    font-size: 34px;
  }

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

  .healing-process__step-chevron svg {
    width: 24px;
    height: 24px;
  }

  .healing-process__step.accordion-open .healing-process__step-chevron {
    transform: rotate(180deg);
  }

  /* Mobile accordion content - smooth open/close */
  .healing-process__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;
  }

  .healing-process__mobile-content.active {
    max-height: 100%;
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
  
  .healing-process__step-divider {
    height: 1px;
    width: 100%;
    max-width: 20rem;
  }
  
  .healing-process__step-divider--orange {
    background-color: #8A8A8A;
    min-width: 100%;
    display: block;

  }
  .index- .healing-process__step-divider--orange{
    background-color: #627890;
  }
  .accordion-trigger.active  .healing-process__step-divider--orange ,.index- .accordion-trigger.active  .healing-process__step-divider--orange{
    background-color: var(--healing-orange);
  }
  .healing-process__step-divider--blue {
    background-color: var(--healing-blue-gray);
  }
  
  /* CTA Button */
  .healing-process__cta {
    margin-top: 0;
  }
  
  .healing-process__button {
    display: flex;
    width: fit-content;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 200px;
    background: #9E1D45;
  }
  
  
  .healing-process__button-icon {
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  .healing-process__button-text {
    color:#FFF;
    font-family: Avenir;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 20.8px */
  }
  
  /* Right Section - min-height prevents layout shift when switching tabs on desktop */
  .healing-process__right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .healing-process__image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 20px;

  }
  .healing-process__image-wrapper--square {
  height: 356px;
}

/* Wide */
.healing-process__image-wrapper--wide {
  height: 267px;
}
  .healing-process__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;

  }
  
  .healing-process__image-placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .healing-process__image-placeholder svg {
    width: 100%;
    height: 100%;
  }
  
  .healing-process__content {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
  
  .healing-process__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;
  }
  
  .healing-process__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;
  }
  .healing-process__content-text {
color:#8A8A8A;
  }
  .healing-process__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 20px;
  }
  
  .healing-process__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;
  }
 a.healing-process__button.secondbtn {
    border: 1px solid #9E1D45;
    background: transparent;
} 
@media(max-width:1329px){
  .healing-process-section{
    padding-left:5rem;
    padding-right:5rem;
  }

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

    .healing-process__container {
        padding: 0 1rem;
    }

    .healing-process__left {
        width: 100%;
        max-width: 100%;
    }

    .healing-process__header {
        width: 100%;
    }

    .healing-process__step {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }

    .healing-process__step-title {
        font-size: 24px;
        line-height: 32px;
        cursor: pointer;
        margin-bottom: 0;
        padding: 1rem 0;
        justify-content: space-between;
    }

    .healing-process__step-title-text {
        flex: 1;
        margin-right: 1rem;
    }

    .healing-process__step-chevron {
        display: block;
    }

    .healing-process__step-divider {
        margin-top: 0.5rem;
        margin-bottom: 0;
        width: 100%;
    }

    .healing-process__step-content {
        width: 100%;
    }

    /* Hide standalone right section on mobile */
    .healing-process__right {
        display: none !important;
    }

    /* Show mobile accordion content - smooth transition */
    .healing-process__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;
    }

    .healing-process__mobile-content.active {
        max-height: 100%;
        padding-top: 0;
    }

    .healing-process__mobile-content .healing-process__image-wrapper {
        margin-bottom: 10px;
    }

    .healing-process__mobile-content .healing-process__content {
        width: 100%;
    }

    /* First accordion chevron rotated when open */
    .healing-process__step[data-step="1"].accordion-open .healing-process__step-chevron {
        transform: rotate(180deg);
    }
    .healing-process__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;
    }
    .healing-process__title{
      color:#FFF;
      text-align: center;
      font-size: 34px;
      font-style: normal;
      font-weight: 300;
      line-height: 130%; /* 44.2px */
      letter-spacing: 0.68px;
    }
    .healing-process__subtitle{
      color: #D7D7D7;
      text-align: center;
      font-size: 16px;
      font-style: normal;
      font-weight: 350;
      line-height: 150%; /* 24px */
    }
    span.healing-process__step-number.healing-process__step-number--orange{
      color:  #E39E5E;
      font-size: 25px;
      font-style: italic;
      font-weight: 300;
      line-height: 236.6px; /* 946.4% */
      letter-spacing: -0.5px;
      padding-right: 16px;
      height: 32px;
    }
    .healing-process__left {
      gap: 20px;
    }
    .healing-process__cta {
      margin: 10px auto 0 auto;
  }
    .healing-process__step-title{
      color: #F2F2F2;
      font-size: 25px;
      font-style: normal;
      font-weight: 300;
      line-height: 130%; /* 32.5px */
      letter-spacing: 0.5px;
    }
    .healing-process__image-wrapper {
      height: 200px;
    }
    .healing-process__content-title{
      color: #FFF;
      font-size: 20px;
      font-style: normal;
      font-weight: 400;
      line-height: 130%; /* 26px */
    }
  .index-  .healing-process__content-text{
      font-size: 14px;
    }
    .healing-process__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 (max-width:768px){
  .healing-process__step-title-text {
    font-size: 20px;
}
 .index- .healing-process__step-title-text {
    font-size: 25px;
}
  h3.healing-process__step-title{
    color:#F2F2F2 !important;
  }
  .healing-process__step-number{
    color:#E39E5E !important;
  }
  .healing-process__step-divider--orange{
    background-color:#E39E5E;
  }
  .healing-process__mobile-content{
    padding-bottom:0;
  }
  .healing-process__step{
    gap:0;
  }
  .accordion-open.active {
    gap: 1.5rem;
}
  .healing-process__content ul{
    margin-bottom:0;
  }
      .healing-process__tag {
        font-size: 12px;
        line-height: 22px;
        padding: 6px 14px;
        color:#8a8a8a;
    }
}



  @media screen and (min-width: 1122px) {
    .healing-process__container {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      padding: 0 3rem;
      align-items: start;
    }
  
    .healing-process__subtitle {
      max-width: 100%;
    }
  
    .healing-process__steps {
      gap: 2.5rem;
    }
    .healing-process__right {
        padding: 0 3rem;
        max-width: 456px;
        padding: 0 !important;
        width: 100%;
        /* min-height set by JS to tallest tab content so section doesn't shift */
    }
    .healing-process__step-title{
      align-items:flex-start;
    }
    /* Hide mobile accordion content on desktop */
    .healing-process__mobile-content {
      display: none !important;
    }
  }
  
  /* Responsive Design - Desktop */
  @media screen and (min-width: 1122px) {
    .healing-process__container {
      gap: 6rem;
      padding: 0;
    }
  
    .healing-process__header {
      gap: 0;
    }
  
    .healing-process__steps {
      gap: 3rem;
    }
  
    .healing-process__right {
      gap: 2.5rem;
    }
  
    .healing-process__content {
      gap: 0px;
    }
    .healing-process__right {
        padding: 0 4rem;
    }
  }
 
  .hover-content {
    display: none; 
}

.hover-content.active {
    display: block; 
}
  .hover-trigger{
    cursor: pointer;
  }

  @media screen and (min-width:767px) and (max-width:1121px){
    .healing-process__mobile-content{
      width:60%;
    }
  }
@media screen and (min-width:1121px) and (max-width:1361px){
  .healing-process__tag{
        padding: 10px 15px;
        font-size:15px;
  }
}
@media(max-width:375px){
  .healing-process__button-text{
        font-size: 14px;
  }
}