/** Shopify CDN: Minification failed

Line 331:1 Expected "}" to go with "{"

**/
:root {
  --scs-bg: #eeece9;
  --scs-dark: #1c1712;
  --scs-text: #2b2620;
  --scs-muted: #6b6459;
  --scs-line: #c9c2b8;
}

.product-carousel-subheading {
  font-family: var(--heading-font-family) !important;
  font-weight: var(--heading-font-weight) !important;
  color: var(--scs-muted);
}

.product-carousel-heading {
  font-size: 1.75rem;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
  font-family: var(--heading-font-family, "Instrument Sans", sans-serif);
  font-weight: var(--heading-font-weight, 400);
  color: var(--scs-text);
  text-transform: uppercase;
}

.product-carousel-subheading {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--scs-muted);
  font-family: "Instrument Sans", sans-serif !important;
  font-weight: 400 !important;
  margin: 0 auto 40px;
  max-width: 1000px;
}

.product-carousel-section {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
  background-color: #EFEFEF;
}

.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.product-carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  list-style: none;
  margin: 0;
  padding: 8px calc(50% - 110px) 16px;
  flex: 1;
  scrollbar-width: none;
}

.product-carousel-track::-webkit-scrollbar {
  display: none;
}

.product-carousel-slide {
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: none;
  transform-origin: center center;
}

.product-carousel-image-link {
  display: flex;
  width: 340px;
  height: 340px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
}

.product-carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-carousel-slide:hover .product-carousel-image {
  transform: scale(1.02);
}

.product-carousel-info {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  padding: 16px 20px 24px;
  border-radius: 0;
  width: 100%;
  min-height: 150px;
  box-sizing: border-box;
}

.product-carousel-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--scs-text);
  max-width: 300px;
  font-family: var(--heading-font-family, "Instrument Sans", sans-serif);
  text-transform: uppercase;
  font-weight: 400 !important;
  text-align: center;
  display: block;
  transition: opacity 0.2s ease;
}

.product-carousel-title:hover {
  opacity: 0.65;
}

.product-carousel-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--scs-line);
  margin: 12px auto 0;
}

.product-carousel-price {
  font-family: var(--text-font-family, Nunito, sans-serif);
  font-size: 1rem;
  color: var(--scs-muted);
  text-align: center;
  display: block;
}

.product-carousel-add-btn {
  font-family: var(--text-font-family, Nunito, sans-serif);
  margin-top: 8px;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-carousel-add-btn:hover:not(:disabled) {
  background: #111;
  color: #fff;
}

.product-carousel-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-carousel-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--scs-line);
  background: var(--scs-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.product-carousel-arrow:hover {
  background: #e2ddd4;
}

.product-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.product-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--scs-line);
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-carousel-dots .dot.active {
  background: var(--scs-dark);
}

.product-carousel-view-all {
  margin-top: 28px;
}

.product-carousel-view-all-btn {
  font-family: var(--text-font-family, Nunito, sans-serif);
  display: inline-block;
  padding: 10px 28px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--scs-dark);
  text-decoration: none;
  color: var(--scs-dark);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-carousel-view-all-btn:hover {
  background: var(--scs-dark);
  color: #fff;
}

/* ===== MOBILE: completely separate, simple one-at-a-time layout ===== */
@media (max-width: 749px) {
  .product-carousel-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  @media (max-width: 749px) {
  .product-carousel-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .product-carousel-subheading {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .product-carousel-track {
    padding: 8px 0 16px;
    gap: 0;
  }

  .product-carousel-slide {
    width: 100vw;
    transform: none !important;
    opacity: 1 !important;
  }

  .product-carousel-image-link {
    width: 78vw;
    height: 78vw;
    margin: 0 auto;
  }

  .product-carousel-slide:hover .product-carousel-image {
    transform: none;
  }

  .product-carousel-info {
    width: 78vw;
    margin: 0 auto;
  }

  .product-carousel-arrow {
    display: flex;
    position: absolute;
    top: 39vw;
    transform: translateY(-50%);
    z-index: 3;
  }

  .product-carousel-arrow--prev {
    left: 4px;
  }

  .product-carousel-arrow--next {
    right: 4px;
  }

  .product-carousel-title {
    font-size: 1.1rem;
    max-width: 280px;
  }

  .product-carousel-price {
    font-size: 1.1rem;
  }
}

.product-carousel-section .product-carousel-subheading {
  font-family: var(--heading-font-family) !important;
  font-weight: var(--heading-font-weight, 400) !important;
  font-style: normal !important;
}

.product-carousel-heading,
.product-carousel-subheading {
  font-family: var(--heading-font-family) !important;
}

.product-carousel-subheading {
  font-weight: var(--heading-font-weight, 400) !important;
}