/** Shopify CDN: Minification failed

Line 188:13 Expected identifier but found whitespace
Line 188:15 Unexpected "{"
Line 188:24 Expected ":"
Line 220:8 Expected identifier but found whitespace
Line 220:10 Unexpected "{"
Line 220:19 Expected ":"
Line 362:13 Expected identifier but found whitespace
Line 362:15 Unexpected "{"
Line 362:24 Expected ":"
Line 447:8 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:about-kinavu (INDEX:1) */
.about-mobile {
  position: relative;
  padding: 140px 16px 0px;
  background: #FCF9F2 ;
  overflow: hidden;
}

.about-mobile__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom : 20px;
}

/* IMAGE STACK */
.about-mobile__images {
  position: relative;
  margin: 0 0 50px;
}

.about-mobile__img-main {
  width: 65%;
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-7.56deg);
}

.about-mobile__img-main img {
  width: 100%;
  display: block;
}

.about-mobile__img-secondary {
  position: absolute;
  right: 0;
  bottom: -22%;
  width: 44%;
  transform: rotate(6deg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-mobile__img-secondary img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* TEXT */
.about-mobile__label {
  font-size: 11px;
  letter-spacing: 4px;
  color: #777575;
  margin-bottom: 10px;
}

.about-mobile__heading {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #777575;
}

.about-mobile__heading span {
  color: #c89b84;
}

.about-mobile__text {
font-size: 13px;
color: #777575;

  margin-bottom: 20px;
  line-height: 1.5;
}

.about-mobile__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #8B9D83;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
}

.about-mobile__btn .about-mobile__btn-arrow {
  width: 16px;
  height: 16px;
  flex: none;
  display: inline-block;
}
/* DECOR */
.decor {
  position: absolute;
  pointer-events: none;
}

.decor-top {
  top: -2%;
    left: -3%;
    width: 70%;
   transform: scaleX(-1);
  z-index: 1;
}

.about-decorDesktop { display: none; }
.about-decorMobile { display: block; }
.decor-top lottie-player { width: 100%; height: 100%; display: block; }

/* ================= DESKTOP ================= */
@media (min-width: 768px) {

  .about-mobile {
    padding: 130px 40px 0;
  }

  .about-mobile__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-bottom : 60px;
  }

  .about-mobile__images {
    width: 50%;
    margin-bottom: 0;
  }

  .about-mobile__img-main {
    width: 65%;
  }

  .about-mobile__img-secondary {
    width: 38%;
    bottom: -10%;
    right: 5%;
  }

  .about-mobile__content {
    width: 45%;
  }

  .about-mobile__heading {
    font-size: 36px;
  }

  .about-mobile__text {
    font-size: 16px;
  }

  .decor-top {
      width: 100%;
      top: 0;
      left: 6%;
  }

  .about-decorDesktop { display: block; }
  .about-decorMobile { display: none; }
}
/* END_SECTION:about-kinavu */

/* START_SECTION:sleep-info-card (INDEX:91) */
.sleep-card {
  padding: 30px 16px 60px;
  background: {{ section.settings.bg_color }};
  position: relative;
  overflow: hidden;
}

.sleep-card__wrapper {
  /* max-width: 1100px; */
  margin: 0 auto;
}

/* IMAGE */
.sleep-card__image {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sleep-card__image img {
  width: 100%;
  display: block;
}

/* CONTENT WRAP */
.sleep-card__content {
  position: relative;
}

/* HEADING (richtext) */
.sleep-card__heading {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: {{ section.settings.heading_color }};
}

.sleep-card__heading p {
  margin: 0;
}

/* TEXT (richtext) */
.sleep-card__text {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sleep-card__text p {
  margin: 0 0 10px;
}

/* BUTTON */
.sleep-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 12px 20px;
  background: #8a9b7b;
  color: #ffffff;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.3s ease;
}

.about-mobile__btn-arrow {
  width: 16px;
  height: 16px;
  flex: none;
  display: inline-block;
}

.sleep-card__btn:hover {
  background: #7a8c6c;
}

.sleep-card__btn:hover::after {
  transform: translateX(4px);
}

/* DECOR */
.sleep-card__decor {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 100px;
  pointer-events: none;
   transform: scaleX(-1);
}

.sleep-card__decor img {
  display: block;
  width: 100%;
  height: auto;
  will-change: transform;
  transform: translate3d(0, 0, 0) rotate(-1deg);
  animation: sleep-card-decor-bounce 2.6s ease-in-out infinite;
}

@keyframes sleep-card-decor-bounce {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1deg); }
}

.sleep-card__decor svg,
.sleep-card__decor canvas {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .sleep-card__decor img {
    animation: none;
    transform: none;
  }
}


.sleep-card__decor svg,
.sleep-card__decor canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ================= DESKTOP ================= */
@media (min-width: 768px) {

  .sleep-card {
    padding: 80px 40px;
  }

  .sleep-card__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .sleep-card__image {
    width: 50%;
    margin-bottom: 0;
  }

  .sleep-card__content {
    width: 45%;
  }

  .sleep-card__heading {
    font-size: 32px;
  }

  .sleep-card__text {
    font-size: 16px;
  }

  .sleep-card__btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  .sleep-card__decor {
    width: 150px;
    right: 40px;
    bottom: 0;
  }
}
/* END_SECTION:sleep-info-card */

/* START_SECTION:why-choose-us (INDEX:104) */
.why-choose {
  padding: 100px 20px;
  background: {{ section.settings.bg_color }};
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-choose__wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TOP DECOR */
.why-choose__decor {
  position: absolute;
  top: 0;
  left: 0%;
  width: 150%;
  pointer-events: none;
  z-index: 3;

}

.why-choose__decor lottie-player {
  width: 100%;
  height: auto;
}

.why-choose__decorDesktop { display: none; }
.why-choose__decorMobile { display: block; }

/* HEADING */
.why-choose__heading {
  font-size: 26px;
  margin-bottom: 10px;
}

.why-choose__subheading {
  font-size: 13px;
  margin-bottom: 40px;
}

/* GRID */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

/* ITEM */
.why-choose__item {
  text-align: center;
}

/* ICON */
.why-choose__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
}

.why-choose__icon {
  background: transparent;
}

.why-choose__icon img {
  width: 28px;
}
.why-choose__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* TITLE */
.why-choose__title {
  font-size: 14px;
  margin-bottom: 6px;
  color: {{ section.settings.title_color }};
}

/* TEXT */
.why-choose__text {
  font-size: 12px;
  color: {{ section.settings.text_color }};
  line-height: 1.5;
}

/* DESKTOP */
@media (min-width: 768px) {
  .why-choose {
    padding: 120px 40px;
  }

  .why-choose__heading {
    font-size: 34px;
  }

  .why-choose__subheading {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .why-choose__icon {
    width: 80px;
    height: 80px;
  }

  .why-choose__icon img {
    width: 80px;
  }
  

  .why-choose__decor {
    width: 89%;
    top: -5;
    left: 16%;
  }

  .why-choose__decorDesktop { display: block; }
  .why-choose__decorMobile { display: none; }
}
/* END_SECTION:why-choose-us */