/** Shopify CDN: Minification failed

Line 147:0 Unexpected "<"
Line 272:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:routine-cards (INDEX:69) */
.routine-cards-wrapper {
  padding: 5px 3% 0;
  position: relative;
}
.routine-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #000;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
.routine-title {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
}
.slider-controls {
  display: flex;
  gap: 10px;
}
.slider-arrow {
  width: 32px;
  height: 32px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.routine-cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  scrollbar-width: none;
}
.routine-cards::-webkit-scrollbar {
  display: none;
}
.routine-card-link {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px;
}
.routine-card {
  background: #fff;
}
.routine-card img {
  width: 100%;
  border-radius: 0;
  margin-bottom: 12px;
}
.customer-name {
  font-size: 20px;
  font-family: "Monotype Baskerville", serif;
  font-weight: 200;
}
.labels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.label {
  background: transparent;
  border: 1px solid #6659ee;
  color: #6659ee;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.routine-description {
  font-size: 14px;
  margin: 10px 0;
}
.custom-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.custom-image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.custom-image-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0;
}
.custom-image-item p {
  font-size: 12px;
  margin-top: 4px;
}
.plus-icon {
  font-size: 18px;
  margin: 0 4px;
  color: #333;
}
.routine-button {
  margin-top: 16px;
  background-color: #212121;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    font-family: Jost !important;
    font-size: 14px; 
  text-align: center;
}
.buy-button {
  color: #fff !important;
}

@media (max-width: 768px) {
  .routine-card-link {
    width: 80vw;
  }
}
/* END_SECTION:routine-cards */

/* START_SECTION:unique-custom-slider (INDEX:82) */
<style>
.exact-slider {
  position: relative;
  width: 100%;
  background: var(--section-bg, #faf8f5);
  overflow: visible;
}
.exact-slider-inner {
  position: relative;
  min-height: 620px;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: height 0.3s ease;
}
.exact-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.exact-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.exact-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.exact-slide .text-content {
  padding: 40px;
}
.exact-slide .text-content .overline {
  font-size: 13px;
  text-transform: uppercase;
  font-family: Jost !important;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.exact-slide .text-content .heading {
  font-size: 30px;
  font-family: 'Baskerville', serif;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 16px;
}
.exact-slide .text-content .description {
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: normal;
  margin-bottom: 24px;
}
.exact-slide .text-content .button {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid currentColor;
  background: transparent;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.exact-slide .text-content .button:hover {
  background: var(--btn-hover, #000);
  color: var(--btn-hover-text, #fff);
}
.exact-slide .text-content .button::after {
  content: "→";
  margin-left: 8px;
  font-size: 16px;
}
.exact-slide .media-content img,
.exact-slide .media-content video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .exact-slide {
    grid-template-columns: 1fr;
  }
  .exact-slide .media-content {
    order: -1;
  }
  .exact-slide .text-content {
    padding: 20px;
  }
  .media-web   { display: none !important; }
  .media-mobile{ display: block !important; }
}

/* Desktop */
@media (min-width: 769px) {
  .media-mobile{ display: none !important; }
  .media-web   { display: block !important; }
}

/* Controls */
.slider-controls {
  text-align: center;
  margin: 10px 0;
  font-family: 'Jost';
  justify-content: center;
  font-size: 13px;
  color: var(--controls-color, #666);
}
.slider-controls button {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  font-family: 'Jost';
  font-size: 13px;
  color: inherit;
}
</style>
/* END_SECTION:unique-custom-slider */