/** Shopify CDN: Minification failed

Line 130:13 Expected identifier but found whitespace
Line 130:15 Unexpected "{"
Line 130:24 Expected ":"
Line 141:8 Expected identifier but found whitespace
Line 141:10 Unexpected "{"
Line 141:19 Expected ":"
Line 230:8 Expected identifier but found whitespace
Line 230:10 Unexpected "{"
Line 230:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-circles (INDEX:9) */
.ccirc {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.ccirc__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 32px;
}

.ccirc__viewport {
  width: 100%;
  overflow: hidden;
}

.ccirc__track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 20px;
}

.ccirc__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.ccirc__circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  background: #f5f5f5;
}

.ccirc__item:hover .ccirc__circle {
  border-color: #111;
  transform: scale(1.04);
}

.ccirc__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ccirc__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
  color: #aaa;
}

.ccirc__label {
  font-size: 12px;
  color: #222;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Mobile: scrollable, show ~4 items */
@media (max-width: 768px) {
  .ccirc__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ccirc__viewport::-webkit-scrollbar {
    display: none;
  }

  .ccirc__track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    padding: 4px 20px 12px;
    width: max-content;
  }

  .ccirc__circle {
    width: 80px;
    height: 80px;
  }

  .ccirc__label {
    font-size: 11px;
  }
}
/* END_SECTION:collection-circles */

/* START_SECTION:photo-rewievs-slider (INDEX:35) */
.phrev {
  background: {{ section.settings.bg_color }};
  padding: 52px 0 44px;
  overflow: hidden;
}

.phrev__heading {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: {{ section.settings.heading_color }};
  margin: 0 0 36px;
}

.phrev__wrap {
  overflow: hidden;
  width: 100%;
}

.phrev__track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 0 4px;
}

.phrev__slide {
  flex: 0 0 220px;
}

.phrev__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0dde0;
  display: flex;
  flex-direction: column;
}

.phrev__photo {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.phrev__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.phrev__card:hover .phrev__photo img {
  transform: scale(1.03);
}

.phrev__body {
  padding: 14px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phrev__stars {
  font-size: 14px;
  color: #111;
  letter-spacing: 2px;
}

.phrev__quote {
  font-size: 13px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}

.phrev__name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 4px 0 0;
}

.phrev__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.phrev__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: {{ section.settings.heading_color }};
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.phrev__arrow:hover { opacity: 1; }
.phrev__arrow[hidden] { opacity: 0.2; pointer-events: none; }

@media (max-width: 768px) {
  .phrev__slide { flex: 0 0 72vw; }
}
/* END_SECTION:photo-rewievs-slider */

/* START_SECTION:testimontials-slider (INDEX:45) */
.tsec {
  background: #f7f7f7;
  padding: 60px 0 48px;
  overflow: hidden;
}

.tsec__heading {
  text-align: center;
  margin-bottom: 40px;
}

.tsec__heading h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.tsec__viewport {
  overflow: visible;
  position: relative;
  width: 100%;
}

.tsec__track {
  display: flex;
  align-items: center;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tsec__slide {
  flex: 0 0 34%;
  padding: 20px 14px;
  box-sizing: border-box;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.45s ease;
  opacity: 0.45;
  transform: scale(0.88);
}

.tsec__slide.is-center {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.tsec__card {
  background: transparent;
  border-radius: 12px;
  padding: 32px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.tsec__slide.is-center .tsec__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.tsec__stars {
  font-size: 17px;
  color: #111;
  letter-spacing: 2px;
}

.tsec__quote {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

.tsec__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.tsec__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.tsec__avatar--ph {
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.tsec__name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.tsec__loc {
  font-size: 13px;
  color: #888;
  margin: 2px 0 0;
}

.tsec__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.tsec__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.tsec__dot.is-active {
  background: #111;
}

@media (max-width: 768px) {
  .tsec__slide {
    flex: 0 0 80%;
  }
}
/* END_SECTION:testimontials-slider */

/* START_SECTION:trust-badges (INDEX:48) */
.tbadge {
  padding: 56px 24px;
  background: #fff;
}

.tbadge__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.tbadge__item {
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.tbadge__icon {
  width: 56px;
  height: 56px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbadge__icon svg {
  width: 100%;
  height: 100%;
}

.tbadge__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.tbadge__text {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 600px) {
  .tbadge__inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .tbadge__item {
    max-width: 280px;
  }
}
/* END_SECTION:trust-badges */

/* START_SECTION:video-slider (INDEX:49) */
.pvslider {
  padding: 32px 0 24px;
  background: #fff;
  text-align: center;
}

.pvslider__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 24px;
}

.pvslider__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.pvslider__viewport {
  overflow: hidden;
  width: 100%;
}

.pvslider__track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0 4px;
}

.pvslider__slide {
  flex: 0 0 calc(33.333% - 8px);
  min-width: 0;
}

.pvslider__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #111;
  cursor: pointer;
}

.pvslider__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pvslider__play {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  z-index: 2;
  transition: transform 0.2s;
}

.pvslider__play:hover {
  transform: scale(1.1);
}

.pvslider__play svg {
  width: 36px;
  height: 36px;
}

.pvslider__play.is-playing svg circle {
  fill: rgba(0,0,0,0.6);
}

/* hide play btn when playing, show pause-style */
.pvslider__card.is-playing .pvslider__play svg polygon {
  display: none;
}

.pvslider__card.is-playing .pvslider__play svg::after {
  content: '';
}

.pvslider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s;
  padding: 0;
}

.pvslider__arrow:hover {
  background: #f5f5f5;
}

.pvslider__arrow svg {
  width: 18px;
  height: 18px;
  color: #111;
}

.pvslider__arrow--prev {
  left: -18px;
}

.pvslider__arrow--next {
  right: -18px;
}

.pvslider__arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pvslider__slide {
    flex: 0 0 calc(75% - 8px);
  }

  .pvslider__arrow--prev {
    left: 4px;
  }

  .pvslider__arrow--next {
    right: 4px;
  }
}
/* END_SECTION:video-slider */

/* START_SECTION:volume-discount-banner (INDEX:50) */
.volume-discount-banner {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: inherit;
  margin: 0 auto;
}

.volume-discount-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.volume-discount-banner__left {
  flex: 1;
  min-width: 200px;
}

.volume-discount-banner__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 4px;
}

.volume-discount-banner__headline {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.volume-discount-banner__tiers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.volume-discount-banner__tier {
  text-align: center;
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  min-width: 70px;
}

.volume-discount-banner__tier--active {
  background-color: #111;
  border-color: #111;
}

.volume-discount-banner__tier-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 3px;
}

.volume-discount-banner__tier--active .volume-discount-banner__tier-label {
  color: #aaa;
}

.volume-discount-banner__tier-value {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.volume-discount-banner__tier--active .volume-discount-banner__tier-value {
  color: #fff;
}

.volume-discount-banner__footnote {
  text-align: center;
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  .volume-discount-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .volume-discount-banner__tiers {
    width: 100%;
    justify-content: space-between;
  }

  .volume-discount-banner__tier {
    flex: 1;
    min-width: 60px;
  }
}
/* END_SECTION:volume-discount-banner */