/** Shopify CDN: Minification failed

Line 147:14 Expected identifier but found whitespace
Line 147:15 Unexpected "1"

**/
.video-content {
  display: none;
}

.video-content {
  width: 100%; 
  height: auto; 
  overflow: hidden;
}

.video-content video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-content.active {
    display: block;
    height: auto;
}

.active:active {
  transition: height 0.3s ease-in-out;
}

#shopify-section-template--24968860860710__vidio_with_text_NEzW8p {
  background-color: #ffffff;
}
  
  .combined-content {
    /* max-width: var(--page-width); */
    /* margin: 0 auto; */
    padding: 3.6rem 5rem;
    display: flex;
    align-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    justify-content: center;
}

  .vidio-with-text {
    width: 50%;
    height: 80vh;
    display: flex;
    flex-direction: column;
  }

  .stored-video, .external-video {
    border-radius: 20px;
    overflow: hidden; /* Ensure no overflow */
    height: 80vh;
  }

  .stored-video video, .external-video iframe {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
  }

  .skincare-routine {
    width: 50%;
    display: flex; /* Changed to flex */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    text-align: center;
  }

  .skincare-steps {
    width: 100%; /* Ensure it takes full width */
    max-width: 90%;
    color: #212123;
    margin: 20px;
  }

  .skincare-steps h2 {
    color: #212123;
    font-size: 40px;
    text-align: left;
  }

  .skincare-steps ul {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 5px;
    border-radius: 20px;
    list-style: none;
    padding: 2rem;
    text-align: left;
  }

  .skincare-steps details summary {
    padding: 1rem;
    color: #5b5a5ab8;
  }

  .skincare-steps h3 {
    color: #212123;
  }

  .step-details {
    margin-top: 20px;
    display: none; /* Initially hidden */
    text-align: left; /* Align text to the left */
    width: 100%; /* Ensure it takes full width */
  }

  .smooth-transition a {
    color: #212123;
    text-decoration: none;
    border: 1px solid;
    border-radius: 20px;
    padding: 0.2rem 2rem;
    text-align: center;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .skincare-steps details:hover {
    background-color: #fdf5e0;
    border-radius: 10px;
  }
   
  .skincare-steps summary {
    cursor: pointer; /* Pointer cursor for summary */
  }

  .skincare-steps details[open] {
    background-color: #fdf5e0;
    border-radius: 10px;
  }

  .skincare-steps details {
    transition: all 0.4s ease; /* Smooth transition for opening and closing */
    overflow: hidden;
    padding: 1.4rem;
  }

  /* .skincare-steps details[open] .details-content {
      display: block;
      max-height: 200px; /* Adjust based on content size */
      opacity: 1;
      transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
  } */
  
  .skincare-steps details .details-content {
      max-height: 0;
      opacity: 0;
      transition: max-height 0.8s ease-in-out, opacity 0.6s ease-in-out;
      overflow: hidden;
  }

  @media (max-width: 768px) {
    .combined-content {
      padding: 36px 1.5rem; /* Reduce padding on smaller screens */
      flex-wrap: wrap;
    }

    .vidio-with-text {
      width: 100%;
    }

    .skincare-routine {
      width: 100%;
    }
  }

  @media screen and (max-width: 600px) {
    .combined-content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }

    .vidio-with-text {
      width: 100%;
    }

    .skincare-routine {
      width: 100%;
    }
  }

  @media screen and (max-width: 425px) {
    .stored-video, .external-video {
      height: auto;
    }
    
    .combined-content {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
    }

    .vidio-with-text {
      width: 100%;
      height: 100%;
    }

    .skincare-routine {
      width: 100%;
    }

    .skincare-steps h2 {
      font-size: 30px;
    }

    .skincare-steps {
      margin: 0;
    }
  }

  @media screen and (max-width: 375px) {
    .vidio-with-text {
      height: 100%;
    }
  }

.product__accordion details {
  background-color: transparent;
} 