/** Shopify CDN: Minification failed

Line 298:13 Expected identifier but found whitespace
Line 298:15 Unexpected "{"
Line 298:24 Expected ":"
Line 299:8 Expected identifier but found whitespace
Line 299:10 Unexpected "{"
Line 299:19 Expected ":"
Line 327:8 Expected identifier but found whitespace
Line 327:10 Unexpected "{"
Line 327:19 Expected ":"

**/
/* ============================================================
   How To Use Section — how-to-use-section.css
   ============================================================ */

.htu-section {
  background-color: #FFFFFF;
  padding: 72px 0;
}

.htu-inner {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
}

/* .htu-image-wrap video.htu-image {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: top center;
} */

.htu-image-wrap video.htu-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 9 / 16;
  max-height: 750px;
}

/* ── LEFT ── */
.htu-left {
  flex: 1;
  width: 100%;
  max-width: 670px;
}

/* Tag line */
.htu-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #AF9152;
  margin: 0 0 16px;
}

/* Headline */
.htu-headline {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.96px;
  color: #202020;
  margin: 0 0 32px;
}

.htu-headline em {
  color: #AF9152;
  font-style: italic;
}

/* Steps */
.htu-steps {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.htu-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #2020201A;
}

.htu-step:first-child {
  padding-top: 0px;
}

.htu-step:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

.htu-step__number {
  font-size: 20px;
  line-height: 14px;
  letter-spacing: 0px;
  font-weight: 500;
  background: #F4F0EB;
  color: #202020;
  border: 1px solid #E2D0BD;
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.htu-step__content {
  flex: 1;
}

.htu-step__title {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #202020;
  margin: 0 0 8px;
}

.htu-step__desc {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #202020;
  margin: 0;
}

/* Note box */
.htu-note {
  background-color: #F4F0EB;
  border-left: 3px solid #AF9152;
  padding: 18px;
}

.htu-note__label {
  display: block;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  font-weight: 500;
  color: #202020;
}

.htu-note__text {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #202020;
  margin: 0;
}

.htu-note__text:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  background: #202020;
  display: block;
}

/* ── RIGHT ── */
.htu-right {
  flex: 1;
  width: 100%;
  max-width: 400px;
  position: sticky;
  top: 172px;
}

.htu-image-wrap {
  position: relative;
  overflow: hidden;
}

/* .htu-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 620px;
} */

.htu-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 750px;
}

/* Complete the routine card */
.htu-ctr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F4F0EB;
  border: 1px solid #E2D0BD;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
}

.htu-ctr__thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e0dbd0;
}

.htu-ctr__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htu-ctr__body {
  flex: 1;
}

.htu-ctr__label {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: 500;
  color: #202020;
  margin: 0 0 4px;
}

.htu-ctr__text {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #202020;
  margin: 0;
}

.htu-ctr__link {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #202020;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  text-underline-offset: 3px;
}

.htu-ctr__link:hover {
  color: #AF9152;
}

/* Buttons */
.routine-banner__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.htu-left .routine-banner__btn-primary {
  margin-top:48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: {{ section.settings.button_bg_color }};
  color: {{ section.settings.button_text_color }};
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 4px 4px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.routine-banner__btn-primary:hover {
  background-color: #b79c63;
  transform: translateY(-2px);
}


.routine-banner__btn-primary-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 14px;
}

.routine-banner__btn-primary-icon svg {
  width: 20px;
  height: 20px;
  color: {{ section.settings.button_bg_color }};
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

  .htu-section {
  padding: 50px 30px;
}

.htu-inner {
  gap: 24px;
}

/* ── LEFT ── */
.htu-left {
  flex: 1;
  width: 100%;
  max-width: 470px;
}

/* Tag line */
.htu-tag {
  gap: 14px;
}

/* Headline */
.htu-headline {
  font-size: 38px;
  line-height: 46px;
  letter-spacing: -0.76px;
  color: #202020;
  margin: 0 0 24px;
}

/* Steps */
.htu-steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.htu-step {
  gap: 16px;
  padding: 14px 0;
}

.htu-step__number {
  font-size: 18px;
  line-height: 14px;
  letter-spacing: 0px;
  min-width: 32px;
  height: 32px;
}

.htu-step__title {
  margin: 0 0 6px;
}

/* Note box */
.htu-note {
  padding: 16px;
}

.htu-note__text {
  padding-left: 14px;
  margin: 0;
}

.htu-note__text:before {
  left: 4px;
  width: 4px;
  height: 4px;
}

.htu-image-wrap video.htu-image {
  aspect-ratio: 9 / 16;
  max-height: 680px;
}

/* Complete the routine card */
.htu-ctr {
  gap: 16px;
  padding: 14px 16px;
  flex-wrap: wrap;
}

.htu-ctr__thumb {
  width: 52px;
  height: 52px;
}

.htu-ctr__label {
  font-size: 14px;
  line-height: 21px;
}

.htu-ctr__text {
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  color: #202020;
  margin: 0;
}

.htu-ctr__link {
  width: 100%;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #202020;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  text-underline-offset: 3px;
}

.htu-ctr__link:hover {
  color: #AF9152;
}

.routine-banner__btn-primary{
  display: inline-flex;
  align-items: center;
  padding: 4px 4px 4px 24px;
  gap: 12px;
  }

  .routine-banner__btn-primary-icon{
    padding: 12px;
    height: 42px;
}

.routine-banner__btn-primary-icon svg{
    width: 18px;
    height: 18px;
}


}


/* ── Responsive ── */
@media(max-width: 767px) {

  .htu-section {
    padding: 30px 24px;
  }

  .htu-inner {
    flex-direction: column;
    gap: 30px;
  }

  .htu-left,
  .htu-right {
    width: 100%;
  }

/* .htu-image-wrap video.htu-image {
  min-height: 440px;
} */

.htu-image-wrap video.htu-image {
  aspect-ratio: 9 / 16;
  max-height: 500px;
  min-height: unset;
}

  /* Tag line */
.htu-tag {
  gap: 12px;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 1.2px;
  color: #AF9152;
  margin: 0 0 12px;
}

  .htu-headline {
    font-size: 34px;
    line-height: 41px;
    letter-spacing: -0.68px;
    margin: 0 0 24px;
  }

  /* Steps */
.htu-steps {
  margin: 0 0 30px;
}

  .htu-step {
    padding: 12px 0;
    gap: 16px;
  }

.htu-step__number {
  font-size: 16px;
  line-height: 12px;
  letter-spacing: 0px;
  min-width: 32px;
  height: 32px;
}

  .htu-step__title {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0px;
    margin: 0 0 6px;
  }

  .htu-step__desc {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0px;
  }

  .htu-note {
    padding: 16px;
}

.htu-note__text {
  padding-left: 12px;
}

  .htu-note__label,
  .htu-note__text {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0px;
  }

  .htu-note__text:before {
    left: 3px;
    top: 6px;
    width: 4px;
    height: 4px;
}

/* .htu-image {
  max-height: 340px;
} */

.htu-image {
  max-height: 560px;
  min-height: 340px;
}

/* Complete the routine card */
.htu-ctr {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F4F0EB;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 16px;
}

.htu-ctr__thumb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e0dbd0;
}

.htu-ctr__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.htu-ctr__body {
  flex: 1;
}

.htu-ctr__label {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #202020;
}

.htu-ctr__text {
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #202020;
  margin: 0;
}

.htu-ctr__link {
  width: 100%;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #202020;
  text-decoration: underline;
  white-space: nowrap;
  flex-shrink: 0;
  text-underline-offset: 3px;
}

.htu-ctr__link:hover {
  color: #AF9152;
}

/* Buttons */
.routine-banner__buttons {
  gap: 20px;
  flex-wrap: wrap;
}

.htu-left .routine-banner__btn-primary {
  gap: 10px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  padding: 2px 2px 2px 20px;
  margin-top: 24px;
}

.routine-banner__btn-primary-icon {
  padding: 11px;
}

.routine-banner__btn-primary-icon svg {
  width: 16px;
  height: 16px;
}

}
